/* 애니메이션 */
@-webkit-keyframes bounce1 {
  50% {
    -webkit-transform: translate3d(-8%, 6%, 0);
    transform: translate3d(-8%, 6%, 0);
  }
}
@keyframes bounce1 {
  50% {
    -webkit-transform: translate3d(-8%, 6%, 0);
    transform: translate3d(-8%, 6%, 0);
  }
}

@-webkit-keyframes bounce2 {
  50% {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
}
@keyframes bounce2 {
  50% {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
}

.dot-list {
    position: relative;
    padding-left: 16px;
    /* 도트와 텍스트 사이 여백 */
}

.dot-list::before {
    content: "•";
    /* 도트 문자 */
    position: absolute;
    left: -2px;
    top: 2px;
    color: #555;
    /* 도트 색상 (브랜드 컬러 예시) */
    font-size: 1.0em;
    /* 도트 크기 (텍스트 대비) */
    line-height: 1;
    /* 세로 정렬 안정 */
}

/* ------------------------------------------------------------------------------- */

/* 버튼 타입 */
.btn-type-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #0033A3;
  border-radius: 999px;
  box-sizing: border-box;
  border: 2px solid #263B96;
  transition: all 0.3s;
}
.btn-type-1:hover {
  background: #263B96;
}

.btn-type-2 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #263B96;
  background: #fff;
  border-radius: 999px;
  box-sizing: border-box;
  border: 2px solid #0033A3;
  transition: all 0.3s;
}
.btn-type-2:hover {
  background: #eef7ff;
}

.btn-type-3 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #0d3566;
  background: #ffe812;
  border-radius: 999px;
  box-sizing: border-box;
  border: 2px solid #ffce0d;
}

.btn-type-4 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #263B96;
  background: #fff;
  border-radius: 999px;
  box-sizing: border-box;
  border: 2px solid #263B96;
  transition: all 0.3s;
  overflow: hidden;
}
.btn-type-4 .bg {
  width: 0;
  height: 100%;
  background: #263B96;
  top: 0;
  left: 0;
  transition: all 0.3s;
}
.btn-type-4:hover .bg {
  width: 100%;
}
.btn-type-4 .text {
  color: #263B96;
  transition: all 0.3s;
}
.btn-type-4:hover .text {
  color: #fff;
}
.btn-type-4 .ico-box > img {
  transition: all 0.3s;
}
.btn-type-4:hover .ico-box > img {
  content: url(../img/arrow-right-fff.svg);
}

/* ------------------------------------------------------------------------------- */

/* 헤더 영역 */
.hearder-area {
  height: 100px;
  transition: all 0.3s;
}
.hearder-area .con {
  max-width: 1480px;
  padding: 0 40px;
}
.hearder-area .logo-box {
  width: 98px;
}
.hearder-area .menu-box {
  gap: 68px;
}
.hearder-area .menu-box li:last-child {
  margin-right: 68px;
}
.hearder-area .menu-box li a {
  color: #fff;
  font-size: 18px;
  transition: all 0.3s;
}
.hearder-area .menu-box li a.active,
.hearder-area.active .menu-box li a.active {
  color: #0074e7;
}
.hearder-area .support-btn {
  width: 140px;
  height: 40px;
  font-size: 17px;
  background-color: #fff;
  color: #000;
  border-radius: 2px;
}
.hearder-area .ham-btn {
  width: 32px;
  display: none;
  filter: brightness(100);
}
.hearder-area.active {
  background: rgba(238, 247, 255, 1);
}
.hearder-area.active .logo-box img {
  content: url(../img/logo.svg);
}
.hearder-area.active .menu-box li a {
  color: #000;
}
.hearder-area.active .support-btn {
  background-color: #263B96;
  color: #fff;
}
.hearder-area.active.hearder-area .ham-btn {
  filter: none;
}

@media (max-width: 1200px) {
  .hearder-area .menu-box li:not(:last-child) {
    margin-right: 32px;
  }
}

@media (max-width: 1023px) {
  .hearder-area {
    height: 80px;
  }
  .hearder-area .con {
    padding: 0 40px;
  }
  .hearder-area .menu-box {
    display: none;
  }
  .hearder-area .support-btn {
    display: none;
  }
  .hearder-area .ham-btn {
    display: block;
  }
}

@media (max-width: 767px) {
  .hearder-area {
    height: 60px;
  }
  .hearder-area .con {
    padding: 0 20px;
  }
  .hearder-area .logo-box {
    width: 84px;
  }
  .hearder-area .ham-btn {
    width: 24px;
  }
}

/* ------------------------------------------------------------------------------- */

/* 사이드 메뉴 영역 */
.side-menu-area {
  top: 0;
  right: -100%;
  transition: all 0.3s;
  height: 100dvh;
}
.side-menu-area.active {
  right: 0;
}
.side-menu-area .top-box {
  height: 80px;
  box-sizing: border-box;
  padding: 0 40px;
  border-bottom: 1px solid #73b3ff;
}
.side-menu-area .top-box .logo-box {
  width: 140px;
}
.side-menu-area .top-box .x-btn {
  width: 32px;
}
.side-menu-area .middle-box {
  box-sizing: border-box;
  padding: 100px 40px;
}
.side-menu-area .middle-box .menu-box li {
  text-align: center;
}
.side-menu-area .middle-box .menu-box li:not(:last-child) {
  margin-bottom: 60px;
}
.side-menu-area .middle-box .menu-box li a {
  font-size: 24px;
  text-align: center;
  box-sizing: border-box;
  display: inline-block;
}
.side-menu-area .middle-box .menu-box li a.active {
  color: #263B96;
  font-family: "Pretendard-Bold";
}
.side-menu-area .middle-box .support-btn {
  width: 200px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  margin-top: 64px;
  font-size: 20px;
  background-color: #263B96;
  color: #fff;
}

@media (max-width: 767px) {
  .side-menu-area .top-box {
    height: 60px;
    padding: 0 20px;
  }
  .side-menu-area .top-box .logo-box {
    width: 84px;
  }
  .side-menu-area .top-box .x-btn {
    width: 24px;
  }
  /* .side-menu-area .middle-box {
    padding: 140px 20px;
  } */
  .side-menu-area .middle-box .menu-box li:not(:last-child) {
    margin-bottom: 40px;
  }
  .side-menu-area .middle-box .menu-box li a {
    font-size: 20px;
  }
  .side-menu-area .middle-box .support-btn {
    margin-top: 44px;
  }
}

/* ------------------------------------------------------------------------------- */

/* 픽스 버튼 영역 */
.flx-btn-area {
  right: 128px;
  bottom: 40px;
}
.flx-btn-area .btn-type-3 {
  width: 240px;
  height: 64px;
  font-size: 24px;
  margin-right: 20px;
}
.flx-btn-area .support-btn {
  display: none;
}
.flx-btn-area .kakao-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-sizing: border-box;
  background: #ffe812;
  border: 2px solid #ffce0d;
}
.flx-btn-area .kakao-btn .img-box {
  width: 42px;
}

@media (max-width: 1023px) {
  .flx-btn-area {
    right: 52px;
  }
  .flx-btn-area .btn-type-3 {
    height: 60px;
    font-size: 20px;
  }
  .flx-btn-area .kakao-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }
}

@media (max-width: 767px) {
  .flx-btn-area {
    right: 50%;
    bottom: 28px;
    transform: translateX(50%);
  }
  .flx-btn-area .consulting-btn {
    display: none;
  }
  .flx-btn-area .support-btn {
    display: inline-flex;
  }
}

/* ------------------------------------------------------------------------------- */



/* 컨텐츠 영역 */
.ctn-area .cnt-box h1 {
  font-size: 48px;
  letter-spacing: -0.05em;
  text-align: center;
  color: #010215;
  margin-bottom: 80px;
}
.ctn-area .cnt-box .cnt {
  box-sizing: border-box;
}
.ctn-area .cnt-box .cnt .space-area h2 {
  border-radius: 4px;
  font-size: 24px;
  padding: 18px 0px;
  text-align: center;
  /* width: 100%; */
  min-width: 220px;
  background-color: #263B96;
}
.job-posting-box .cnt .space-area-1 > ul > li h3,
.job-posting-box .cnt .space-area-1 > ul > li p span {
  color: #263B96;
}

@media (max-width: 1023px) {
  .ctn-area .cnt-box h1 {
    font-size: 36px;
  }
  .ctn-area .cnt-box .cnt .space-area h2 {
    font-size: 24px;
    padding: 12px 0px;
    min-width: 180px;
  }
}

@media (max-width: 767px) {
  .ctn-area .cnt-box h1 {
    font-size: 24px;
    margin-bottom: 60px;
  }
  .space-area-5 .recruitment-text-box > li h2 {
    font-size: 24px;
  }
  .ctn-area .cnt-box .cnt .space-area h2 {
    font-size: 20px;
    padding: 10px 32px;
    min-width: auto;
  }
}

/* ------------------------------------------------------------------------------- */

/* 채용공고 박스 */
.job-posting-box {
  box-sizing: border-box;
  padding-top: 160px;
  overflow: hidden;
}
.job-posting-box .cnt {
  padding: 40px 0 112px 0;
}
.job-posting-box .cnt .space-area {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.job-posting-box .cnt .space-area:not(:last-child) {
  margin-bottom: 50px;
}
.job-posting-box .cnt .space-area-1 > ul {
  box-sizing: border-box;
}
.job-posting-box .cnt .space-area-1 > ul > li {
  font-size: 24px;
}
.job-posting-box .cnt .space-area-1 > ul > li:not(:last-child) {
  margin-bottom: 28px;
}
.job-posting-box .cnt .space-area-1 > ul > li .line {
  width: 1px;
  height: 32px;
  background: #0033A3;
  margin: 0 28px;
}
.job-posting-box .cnt .space-area-1 > ul > li h3 {
  white-space: nowrap;
  margin-top: 2px;
}
.job-posting-box .cnt .space-area-1 > ul > li p {
  line-height: 44px;
  margin-top: -6px;
}
.job-posting-box .cnt .space-area-1 > ul > li p br {
  display: none;
}
.job-posting-box .cnt .space-area-1 > ul > li p span {
  /* margin-left: 16px; */
  margin-right: 4px;
  text-underline-position: under;
}
.job-posting-box .cnt .space-area-2 > ul {
  box-sizing: border-box;
}
.job-posting-box .cnt .space-area-2 > ul > li {
  line-height: 48px;
  font-size: 24px;
  box-sizing: border-box;
  padding-left: 30px;
  position: relative;
  letter-spacing: -0.02rem;
}
.job-posting-box .cnt .space-area-2 > ul > li::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  top: 20px;
  left: 10px;
}
.job-posting-box .cnt .space-area-2 > ul > li span {
  line-height: 48px;
}
.job-posting-box .cnt .space-area-3 {
  display: block;
}
.job-posting-box .cnt .space-area-3 .box {
  gap: 40px;
}
.job-posting-box .cnt .space-area-3 .space-area-3-1 {
  gap: 62px;
}
.job-posting-box .cnt .space-area-3 .space-area-3-1 li.list {
  width: calc(25% - 24px);
}
.job-posting-box .cnt .space-area-3 .space-area-3-1 li.list .img-box {
  box-sizing: border-box;
  position: relative;
  width: 180px;
  height: 180px;
  padding: 40px;
  border-radius: 50%;
  background-color: #EEF7FF;
}
.job-posting-box .cnt .space-area-3 .space-area-3-1 li.list:not(:last-child) .img-box::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: url(../img/arrow-right-A7A7A7.svg) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  right: -47px;
  transform: translateY(-50%);
  z-index: 1;
}
.job-posting-box .cnt .space-area-3 .space-area-3-1 li.list h3 {
  font-size: 24px;
  margin-top: 24px;
}
.job-posting-box .cnt .space-area-3 .space-area-3-1 li.list p {
  font-size: 20px;
  margin-top: 16px;
}
.job-posting-box .cnt .space-area-3 .space-area-3-1 li.arrow {
  width: 32px;
  margin-top: 4%;
}
.job-posting-box .cnt .space-area-3 .space-area-3-2 {
  margin-top: 80px;
  row-gap: 12px;
}
.job-posting-box .cnt .space-area-3 .space-area-3-2 .list {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 32px 0;
}
.job-posting-box .cnt .space-area-3 .space-area-3-2 li h3 {
  min-width: 220px;
  font-size: 22px;
  color: #333;
  line-height: 1.6;
  position: relative;
}
.job-posting-box .cnt .space-area-3 .space-area-3-2 li.line-1 h3::before {
  position: absolute;
  content: '';
  width: 1px;
  height: 20px;
  background-color: #ccc;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.job-posting-box .cnt .space-area-3 .space-area-3-2 li.line-2 h3 {
  height: 270px;
  border-right: 1px solid #ccc;
}
.job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box {
  width: calc(100% - 260px);
  border-radius: 12px;
  box-sizing: border-box;
  /* padding: 20px 20px; */
}
.job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box > li {
  font-size: 22px;
  line-height: 1.6;
  box-sizing: border-box;
  padding-left: 30px;
  position: relative;
  word-break: keep-all;
}
.job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box > li.none{
  padding-left:8px;
}
.job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box > li.none:after {
  display: none;
}
.job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box > li::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  top: 15px;
  left: 10px;
}
.job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box > .point-blue::after {
  /* background-color: #263B96; */
  background-color: #000;
}
.job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box > li.dot-none{
  padding-left: 0;
}
.job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box > li.dot-none::after {
  display: none;
}
.job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box > li.dot-none > div {
  padding-left: 30px;
  line-height: 1.6;
}
.job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box > li.dot-none > div::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  top: 15px;
  left: 10px;
}
.job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box > li > span {
  line-height: 1.6;
}
.job-posting-box .cnt .space-area-3 .notice-text {
  margin-top: 40px;
  margin-bottom: 120px;
  font-size: 20px;
}
.job-posting-box .cnt .space-area-4 > ul > li {
  line-height: 48px;
  font-size: 24px;
  box-sizing: border-box;
  padding-left: 30px;
  position: relative;
}
.job-posting-box .cnt .space-area-4 > ul > li::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  top: 20px;
  left: 10px;
}

/* 모집 부문 */
.space-area-5 {
  padding: 180px 0 220px 0;
  border-top: 1px solid #263B96;
}
.space-area-5 .recruitment-text-box {
  margin-top: 38px;
  row-gap: 28px;
}
.space-area-5 .recruitment-text-box > li {
  gap: 20px;
}
.space-area-5 .recruitment-text-box > li h2 {
    border-radius: 4px;
    font-size: 24px;
    padding: 18px 0px;
    text-align: center;
    min-width: 220px;
    background: #263B96;
}
.space-area-5 .recruitment-text-box > li .line {
  width: 1px;
  height: 30px;
  background: #263B96;
  margin: 7.4px 20px 0 0;
}
.space-area-5 .recruitment-text-box > li p {
  font-size: 24px;
  line-height: 140%;
  width: calc(100% - 131px);
  letter-spacing: -0.01em;
}
.space-area-5 .tab-menu-box-1 {
  gap: 20px;
  margin-top: 64px;
}
.space-area-5 .tab-menu-box-1 li a {
  font-size: 24px;
  box-sizing: border-box;
  padding: 32px 48px;
  border-radius: 12px;
  border: 2px solid #263B96;
  color: #263B96;
}
.space-area-5 .tab-menu-box-1 li a.active {
  background: #EEFFFF;
  color: #263B96;
  border: 2px solid #263B96;
}
.space-area-5 .tab-cnt-box-1 {
  margin-top: 64px;
  box-sizing: border-box;
  padding: 0 20px;
}
.space-area-5 .tab-cnt-box-1 > li .list-box > li h3 {
  font-size: 28px;
  color: #263B96;
}
.space-area-5 .tab-cnt-box-1 > li .list-box > li:not(:last-child) {
  margin-bottom: 52px;
}
.space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box {
  margin-top: 20px;
}
.space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .title-area {
  width: 30%;
}
.space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .title-area .title-box {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 32px;
  background: #EEF7FF;
  border-top: 1px solid #73b3ff;
  border-bottom: 1px solid #73b3ff;
}
.space-area-5 .tab-cnt-box-1 > li .list-box > li.type-1 .jobs-box > li .title-area .title-box {
  height: auto;
}
.space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li:nth-child(n + 2) .title-area .title-box {
  border-top: none;
}
.space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .title-area .title-box h4 {
  font-size: 28px;
  line-height: 140%;
}
.space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .title-area .title-box h5 {
  font-size: 24px;
  margin-top: 16px;
  /* line-height: 140%; */
}
.space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .title-area .title-box:nth-child(n + 2) {
  border-top: none;
}
.space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .jobs-cnt-area {
  width: 70%;
  box-sizing: border-box;
  border-top: 1px solid #73b3ff;
  border-bottom: 1px solid #73b3ff;
}
.space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li:nth-child(n + 2) .jobs-cnt-area {
  border-top: none;
}
.space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .jobs-cnt-area .jobs-cnt-box {
  /* width: 50%; */
  box-sizing: border-box;
  padding: 32px 28px;
}
.space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .jobs-cnt-area .jobs-cnt-box-2 {
  width: 50%;
  box-sizing: border-box;
  padding: 4px 28px 32px 28px;
}

.space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .jobs-cnt-area .jobs-cnt-box h6 {
  font-size: 20px;
  line-height: 140%;
}
.space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .jobs-cnt-area .jobs-cnt-box p {
  font-size: 24px;
  margin-top: 16px;
  line-height: 140%;
  letter-spacing: -0.04em;
  word-break: keep-all;
}
.space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .jobs-cnt-area .jobs-cnt-box p:nth-child(n+2):nth-child(-n+20){
  margin-top: 0;
}
.space-area-5 .notice-text {
  margin-top: 20px;
  font-size: 20px;
  box-sizing: border-box;
  padding: 0 32px;
}

@media (max-width: 1240px) {
  .job-posting-box .cnt .space-area-3 .space-area-3-1 li.list .img-box {
        width: 150px;
        height: 150px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-1 {
    gap: 40px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-1 li.list:not(:last-child) .img-box::after {
    right: -37px;
  }
}

@media (max-width: 1023px) {
  .job-posting-box {
    padding: 180px 0;
  }
  .job-posting-box .cnt {
    padding: 0;
  }
  .job-posting-box .cnt .space-area {
    gap: 30px;
  }
  .job-posting-box .cnt .space-area:not(:last-child) {
    margin-bottom: 80px;
  }
  .job-posting-box .cnt .space-area,
  .job-posting-box .cnt .space-area-3 .box,
  .job-posting-box .cnt .space-area-3 .space-area-3-2 .list {
    /* margin-bottom: 120px; */
    flex-direction: column;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-2 .list {
    /* align-items: flex-start; */
    padding: 32px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-2 li h3 {
    width: auto;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-2 li h3::before,
  .job-posting-box .cnt .space-area-3 .space-area-3-2 li.line-2 h3 br {
    display: none;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-2 li.line-2 h3 {
    height: auto;
    border: none;
    width: auto;
  }
  .job-posting-box .cnt .space-area-3 .notice-text {
    font-size: 16px;
  }
  .job-posting-box .cnt .space-area-1 > ul {
    padding-left: 0;
  }
  .job-posting-box .cnt .space-area-1 > ul > li {
    font-size: 20px;
  }
  .job-posting-box .cnt .space-area-1 > ul > li:not(:last-child) {
    margin-bottom: 28px;
  }
  .job-posting-box .cnt .space-area-1 > ul > li .line {
    height: 30px;
    margin: 0 20px;
  }
  .job-posting-box .cnt .space-area-1 > ul > li h3 {
    margin-top: 3px;
  }
  .job-posting-box .cnt .space-area-1 > ul > li p {
    line-height: 36px;
    margin-top: -3px;
  }
  .job-posting-box .cnt .space-area-1 > ul > li p br.tb-ver {
    display: block;
  }
  .job-posting-box .cnt .space-area-1 > ul > li p span {
    margin-left: 0;
  }
  .job-posting-box .cnt .space-area-2 > ul > li {
    line-height: 40px;
    font-size: 20px;
    padding-left: 36px;
  }
  .job-posting-box .cnt .space-area-2 > ul > li::after {
    width: 5px;
    height: 5px;
    top: 17.5px;
    left: 15.5px;
  }
  .job-posting-box .cnt .space-area-2 > ul > li span {
    line-height: 40px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-1 {
    margin-top: 0;
    gap: 30px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-1 li.list:not(:last-child) .img-box::after {
    right: -29px;
    width: 28px;
    height: 28px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-1 li.list h3 {
        font-size: 20px;
        margin-top: 24px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-1 li.list p {
            font-size: 16px;
                margin-top: 14px
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-1 li.list .img-box {
    width: 150px;
    height: 150px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-2 {
    margin-top: 60px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-2 li h3 {
    width: auto;
    min-width: auto;
    font-size: 24px;
    border-radius: 0;
    text-align: left;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box {
    width: calc(100% - 196px);
    /* padding: 20px 28px; */
    padding: 0;
    margin-top: 20px;
    border-radius: 8px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box > li {
    font-size: 20px;
    line-height: 140%;
    padding-left: 20px;
  }  
  .job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box > li br {
    display: none;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box > li::after {
    width: 4px;
    height: 4px;
    top: 9.8px;
    left: 8px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box > li > span {
    line-height: 140%;
  }
  .job-posting-box .cnt .space-area-4 > ul > li {
    line-height: 160%;
    font-size: 20px;
    padding-left: 37px;
  }
  .job-posting-box .cnt .space-area-4 > ul > li::after {
    width: 5px;
    height: 5px;
    top: 16.7px;
    left: 16px;
  }
  .space-area-5 .recruitment-text-box {
    margin-top: 40px;
    row-gap: 20px;
  }
  .space-area-5 .recruitment-text-box > li {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  .space-area-5 .recruitment-text-box > li h2 {
        font-size: 24px;
        padding: 12px 0px;
        min-width: 180px;
  }
  .space-area-5 .recruitment-text-box > li h3 {
    font-size: 24px;
    width: 103px;
  }
  .space-area-5 .recruitment-text-box > li .line {
    display: none;
  }
  .space-area-5 .recruitment-text-box > li p {
    font-size: 20px;
    /* width: calc(100% - 103px); */
  }
  
  .space-area-5 .tab-menu-box-1 {
    margin-top: 48px;
    gap: 16px;
  }
  .space-area-5 .tab-menu-box-1 li a {
    font-size: 24px;
    padding: 20px 28px;
  }
  .space-area-5 .tab-cnt-box-1 {
    margin-top: 60px;
    padding: 0 4px;
  }
  .space-area-5 .tab-cnt-box-1 > li .list-box > li h3 {
    font-size: 24px;
  }
  .space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .title-area .title-box h4 {
    font-size: 24px;
  }
  .space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .title-area .title-box h5 {
    font-size: 22px;
  }
  .space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .jobs-cnt-area .jobs-cnt-box h6 {
    font-size: 16px;
  }
  .space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .jobs-cnt-area .jobs-cnt-box p {
    font-size: 20px;
  }
  .job-posting-box
    .cnt
    .space-area-5
    .tab-cnt-box-1
    > li
    .list-box
    > li:not(:last-child) {
    margin-bottom: 64px;
  }
  .job-posting-box
    .cnt
    .space-area-5
    .tab-cnt-box-1
    > li
    .list-box
    > li
    .jobs-box
    > li {
    flex-direction: column;
  }
  .job-posting-box
    .cnt
    .space-area-5
    .tab-cnt-box-1
    > li
    .list-box
    > li
    .jobs-box
    > li
    .title-area {
    width: 100%;
  }
  .job-posting-box
    .cnt
    .space-area-5
    .tab-cnt-box-1
    > li
    .list-box
    > li
    .jobs-box
    > li
    .title-area
    .title-box {
    padding: 28px 32px;
    border-bottom: none;
  }
  .job-posting-box
    .cnt
    .space-area-5
    .tab-cnt-box-1
    > li
    .list-box
    > li
    .jobs-box
    > li
    .title-area
    .title-box
    h4 {
    font-size: 24px;
  }
  .job-posting-box
    .cnt
    .space-area-5
    .tab-cnt-box-1
    > li
    .list-box
    > li
    .jobs-box
    > li
    .title-area
    .title-box
    .h4-box {
    display: flex;
  }
  .job-posting-box
    .cnt
    .space-area-5
    .tab-cnt-box-1
    > li
    .list-box
    > li
    .jobs-box
    > li
    .title-area
    .title-box
    .h4-box
    h4:not(:last-child) {
    margin-right: 8px;
  }

  .job-posting-box
    .cnt
    .space-area-5
    .tab-cnt-box-1
    > li
    .list-box
    > li
    .jobs-box
    > li
    .title-area
    .title-box
    h5 {
    font-size: 20px;
    margin-top: 12px;
  }

  .job-posting-box
    .cnt
    .space-area-5
    .tab-cnt-box-1
    > li
    .list-box
    > li
    .jobs-box
    > li
    .jobs-cnt-area {
    width: 100%;
    border-top: none;
    flex-direction: column;
  }
  .job-posting-box
    .cnt
    .space-area-5
    .tab-cnt-box-1
    > li
    .list-box
    > li
    .jobs-box
    > li
    .jobs-cnt-area
    .jobs-cnt-box {
    width: 100%;
  }
  .job-posting-box
    .cnt
    .space-area-5
    .tab-cnt-box-1
    > li
    .list-box
    > li
    .jobs-box
    > li
    .jobs-cnt-area
    .jobs-cnt-box:first-child {
    padding: 36px 32px 20px 32px;
  }
  .job-posting-box
    .cnt
    .space-area-5
    .tab-cnt-box-1
    > li
    .list-box
    > li
    .jobs-box
    > li
    .jobs-cnt-area
    .jobs-cnt-box:last-child {
    padding: 20px 32px 36px 32px;
  }
  .job-posting-box
    .cnt
    .space-area-5
    .tab-cnt-box-1
    > li
    .list-box
    > li
    .jobs-box
    > li
    .jobs-cnt-area
    .jobs-cnt-box
    h6 {
    font-size: 18px;
  }
  .job-posting-box
    .cnt
    .space-area-5
    .tab-cnt-box-1
    > li
    .list-box
    > li
    .jobs-box
    > li
    .jobs-cnt-area
    .jobs-cnt-box
    p {
    font-size: 24px;
    margin-top: 12px;
  }
  .space-area-5 .notice-text {
    margin-top: 32px;
    font-size: 18px;
    padding: 0 4px;
  }
}

@media (max-width: 767px) {
  .job-posting-box {
    padding: 100px 0;
  }
  .job-posting-box .cnt .space-area {
    gap: 20px;
  }
  .job-posting-box .cnt .space-area:not(:last-child) {
    margin-bottom: 68px;
  }
  .job-posting-box .cnt .space-area-1 > ul {
    padding-left: 4px;
  }
  .job-posting-box .cnt .space-area-1 > ul > li {
    font-size: 16px;
  }
  .job-posting-box .cnt .space-area-1 > ul > li:not(:last-child) {
    margin-bottom: 20px;
  }
  .job-posting-box .cnt .space-area-1 > ul > li .line {
    height: 12px;
    margin: 2px 16px 0 16px;
  }
  .job-posting-box .cnt .space-area-1 > ul > li h3 {
    margin-top: 0;
  }
  .job-posting-box .cnt .space-area-1 > ul > li p {
    line-height: 22px;
  }
  .job-posting-box .cnt .space-area-1 > ul > li p br.tb-ver {
    display: none;
  }
  .job-posting-box .cnt .space-area-1 > ul > li p span {
    margin-left: 4px;
    line-height: 1.4;
  }
  .job-posting-box .cnt .space-area-2 > ul {
    margin-top: 16px;
  }
  .job-posting-box .cnt .space-area-2 > ul > li {
    line-height: 26px;
    font-size: 16px;
    padding-left: 24px;
  }
  .job-posting-box .cnt .space-area-2 > ul > li::after {
    width: 4px;
    height: 4px;
    top: 11px;
    left: 10px;
  }
  .job-posting-box .cnt .space-area-2 > ul > li span {
    line-height: 26px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-1 {
    flex-wrap: wrap;
    justify-content: center;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-1 li.list {
    width: calc(50% - 20px);
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-1 li.list:nth-child(2n) {
    margin-right: 0;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-1 li.list:last-child {
    margin-right: 0;
  }
  .job-posting-box
    .cnt
    .space-area-3
    .space-area-3-1
    li.list:not(:last-child)
    .img-box::after {
    width: 20px;
    height: 20px;
    right: -20px;
  }
  .job-posting-box
    .cnt
    .space-area-3
    .space-area-3-1
    li.list:nth-child(2)
    .img-box::after {
    display: none;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-1 li.list h3 {
    font-size: 18px;
    margin-top: 24px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-1 li.list p {
    font-size: 16px;
    margin-top: 6px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-2 {
    margin-top: 52px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-2 li {
    flex-wrap: wrap;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-2 li h3 {
    width: 100%;
    font-size: 18px;
    box-sizing: border-box;
    padding: 16px 0;
    border-radius: 6px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box {
    width: 100%;
    padding: 16px 0;
    margin-top: 8px;
    border-radius: 6px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box > li {
    font-size: 16px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box > li,
  .job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box > li.dot-none > div {
    padding-left: 12px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box > li.dot-none > div::after,
  .job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box > li::after {
    width: 3px;
    height: 3px;
    top: 9.2px;
    left: 3px;
  }
  .job-posting-box .cnt .space-area-3 .notice-text {
    margin-top: 30px;
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 140%;
    text-align: left;
  }
  .job-posting-box .cnt .space-area-4 > ul {
    margin-top: 16px;
  }
  .job-posting-box .cnt .space-area-4 > ul > li {
    font-size: 16px;
    padding-left: 24px;
  }
  .job-posting-box .cnt .space-area-4 > ul > li::after {
    width: 4px;
    height: 4px;
    top: 10.8px;
    left: 10px;
  }
  .space-area-5 {
    padding: 100px 0;
  }
  .space-area-5 .recruitment-text-box {
    margin-top: 20px;
    row-gap: 32px;
  }
  .space-area-5 .recruitment-text-box > li {
    flex-direction: column;
  }
  .space-area-5 .recruitment-text-box > li h3 {
    font-size: 16px;
    width: 100%;
    line-height: 100%;
  }
  .space-area-5 .recruitment-text-box > li p {
    font-size: 16px;
    line-height: 160%;
    width: 100%;
    margin-top: 0;
  }
  .space-area-5 .tab-menu-box-1 {
    margin-top: 44px;
    gap: 8px;
  }
  .space-area-5 .tab-menu-box-1 li a {
    font-size: 18px;
    padding: 12px 20px;
    border-radius: 8px;
  }
  .space-area-5 .tab-cnt-box-1 {
    margin-top: 40px;
    padding: 0;
  }
  .space-area-5 .tab-cnt-box-1 > li .list-box > li h3 {
    font-size: 18px;
  }
  .job-posting-box
    .cnt
    .space-area-5
    .tab-cnt-box-1
    > li
    .list-box
    > li:not(:last-child) {
    margin-bottom: 48px;
  }
  .job-posting-box
    .cnt
    .space-area-5
    .tab-cnt-box-1
    > li
    .list-box
    > li
    .jobs-box
    > li
    .title-area
    .title-box {
    padding: 20px 24px;
  }
  .job-posting-box
    .cnt
    .space-area-5
    .tab-cnt-box-1
    > li
    .list-box
    > li
    .jobs-box
    > li
    .title-area
    .title-box
    h4 {
    font-size: 20px;
  }
  .job-posting-box
    .cnt
    .space-area-5
    .tab-cnt-box-1
    > li
    .list-box
    > li
    .jobs-box
    > li
    .title-area
    .title-box
    .h4-box {
    flex-direction: column;
  }
  .job-posting-box
    .cnt
    .space-area-5
    .tab-cnt-box-1
    > li
    .list-box
    > li
    .jobs-box
    > li
    .title-area
    .title-box
    .h4-box
    h4:not(:last-child) {
    margin-right: 0;
  }
  .job-posting-box
    .cnt
    .space-area-5
    .tab-cnt-box-1
    > li
    .list-box
    > li
    .jobs-box
    > li
    .title-area
    .title-box
    h5 {
    font-size: 16px;
    margin-top: 8px;
  }
  .job-posting-box
    .cnt
    .space-area-5
    .tab-cnt-box-1
    > li
    .list-box
    > li
    .jobs-box
    > li
    .jobs-cnt-area
    .jobs-cnt-box:first-child {
    padding: 32px 24px 16px 24px;
  }
  .job-posting-box
    .cnt
    .space-area-5
    .tab-cnt-box-1
    > li
    .list-box
    > li
    .jobs-box
    > li
    .jobs-cnt-area
    .jobs-cnt-box:last-child {
    padding: 16px 24px 32px 24px;
  }
  .job-posting-box
    .cnt
    .space-area-5
    .tab-cnt-box-1
    > li
    .list-box
    > li
    .jobs-box
    > li
    .jobs-cnt-area
    .jobs-cnt-box
    h6 {
    font-size: 15px;
  }
  .job-posting-box
    .cnt
    .space-area-5
    .tab-cnt-box-1
    > li
    .list-box
    > li
    .jobs-box
    > li
    .jobs-cnt-area
    .jobs-cnt-box
    p {
    font-size: 18px;
    margin-top: 16px;
  }
  .space-area-5 .notice-text {
    margin-top: 16px;
    font-size: 14px;
    padding: 0;
    line-height: 140%;
    text-align: left;
  }
  .space-area-5 .recruitment-text-box > li h2 {
            font-size: 20px;
        padding: 10px 32px;
        min-width: auto;
  }
  .space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box li {
    flex-direction: column;
  }
  .space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .title-area {
    width: 100%;
  }
  .space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .jobs-cnt-area {
    width: 100%;
  }
  .space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .title-area .title-box {
    padding: 16px;
    border-bottom: none;
  }
  .space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .title-area .title-box h4 {
    font-size: 16px;
  }
  .space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .title-area .title-box h5 {
    font-size: 18px;
    margin-top: 10px;
  }
  .space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .jobs-cnt-area .jobs-cnt-box {
    padding: 16px 16px 0 16px;
  }
    .space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .jobs-cnt-area .jobs-cnt-box:last-child {
    padding-bottom: 16px;
  }
  .space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .jobs-cnt-area .jobs-cnt-box-wrap {
    display: block;
  }
  .space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .jobs-cnt-area .jobs-cnt-box.w50per{
    width: 100%;
  }
  .space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .jobs-cnt-area .jobs-cnt-box-2 {
    width: 100%;
  }
  .space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .jobs-cnt-area .jobs-cnt-box h6 {
    font-size: 14px;
  }
  .space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .jobs-cnt-area .jobs-cnt-box p {
    font-size: 16px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-2 li h3,
  .job-posting-box .cnt .space-area-3 .space-area-3-2 li.line-2 h3 {
    padding: 0;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-2 .list {
    padding: 24px;
  }
}


/* ------------------------------------------------------------------------------- */


/* 동원은 뭐하니? */
.what-area {
  padding: 180px 0;
}
.what-area.cnt-box h1 {
  color: #fff;
}
.what-area .con {
  max-width: 1480px;
}
.what-area .cnt {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 50px;
}
.what-area .cnt button {
  font-size: 38px;
  width: calc(25% - 40px);
  padding: 34px;
  border: 1.5px solid #FFFFFF;
  border-radius: 12px;
}
.what-area .cnt button:hover {
  border-color: #00ADEE;
  background-color: #00ADEE;
}
@media (max-width: 1280px) {
  .what-area .cnt button {
  font-size: 28px;
  }
}
@media (max-width: 1023px) {
  .ctn-area .what-area .cnt {
    border: none;
  }
  .what-area .cnt {
    gap: 24px;
  }
  .what-area .cnt button {
    font-size: 24px;
    width: calc(50% - 24px);
    padding: 28px
  }
}

 @media (max-width: 767px) {
  .what-area {
    padding: 100px 0;
  }
    .what-area .cnt {
      gap: 14px;
  }
  .what-area .cnt button {
    width: calc(50% - 8px);
    font-size: 20px;
    padding: 24px 0;
    border-radius: 8px
  }
}


/* ------------------------------------------------------------------------------- */


/* 채용 과정 안내 박스 */
.recruitment-process-guide-box {
  box-sizing: border-box;
  padding: 180px 0;
}
.recruitment-process-guide-box .cnt .video-box {
  gap: 24px 12px;
}
.recruitment-process-guide-box .cnt .video-box a {
  width: calc(50% - 12px);
  position: relative;
  height: auto;
  /* padding-bottom: 56.25%; */
  /* padding-bottom: 26.25%;  */
}
.recruitment-process-guide-box .cnt .video-text {
  font-size: 2.6rem;
  margin-bottom: 24px;
}
.recruitment-process-guide-box .cnt .video-box iframe {
  z-index: 1;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  margin-top:40px;
}
.recruitment-process-guide-box .cnt .other-box {
  /* margin-top: 52px; */
  margin-top: 100px;
}
.recruitment-process-guide-box .cnt .other-box h2 {
  font-size: 36px;
  line-height: 48px;
}
.recruitment-process-guide-box .cnt .other-box .shortcut-btn {
  border-radius: inherit;
  padding: 28px 40px;
  background: #263B96;
  border: 2px solid #0033A3;
}
.recruitment-process-guide-box .cnt .other-box .shortcut-btn .play-ico {
  width: 52px;
  margin-right: 20px;
}
.recruitment-process-guide-box .cnt .other-box .shortcut-btn .text {
  font-size: 28px;
  margin-right: 20px;
}
.recruitment-process-guide-box .cnt .other-box .shortcut-btn .arrow-ico {
  width: 28px;
}

@media (max-width: 1360px) {
  .recruitment-process-guide-box .cnt .other-box h2 {
    font-size: 30px;
    line-height: 48px;
  }
}

@media (max-width: 1023px) {
  .recruitment-process-guide-box {
    padding-top: 140px;
  }
  .recruitment-process-guide-box .cnt {
    padding: 0;
  }
  .recruitment-process-guide-box .cnt .other-box {
    margin-top: 32px;
    flex-direction: column;
    text-align: center;
  }
  .recruitment-process-guide-box .cnt .other-box .shortcut-btn {
    padding: 28px 40px;
    margin: 0 auto;
    margin-top: 64px;
  }
  .recruitment-process-guide-box .cnt .video-text {
    font-size: 2.2rem;
  }
  .recruitment-process-guide-box .cnt .other-box {
    margin-top:80px;
  }
}

@media (max-width: 767px) {
  .recruitment-process-guide-box {
    padding : 100px 0;
  }
  .recruitment-process-guide-box .cnt .other-box {
    margin-top: 16px;
  }
  .recruitment-process-guide-box .cnt .other-box h2 {
    font-size: 18px;
    line-height: 140%;
  }
  .recruitment-process-guide-box .cnt .other-box .shortcut-btn {
    padding: 18px 24px;
    margin-top: 28px;
  }
  .recruitment-process-guide-box .cnt .other-box .shortcut-btn .play-ico {
    width: 40px;
    margin-right: 16px;
  }
  .recruitment-process-guide-box .cnt .other-box .shortcut-btn .text {
    font-size: 18px;
    margin-right: 16px;
  }
  .recruitment-process-guide-box .cnt .other-box .shortcut-btn .arrow-ico {
    width: 20px;
  }
  .recruitment-process-guide-box .video-box-area{
    display: flex;
    flex-direction: column
  }
  .recruitment-process-guide-box .cnt .video-box {
    margin-right: 0;
  }
  /* .recruitment-process-guide-box .cnt .video-box {
    width: 100%;
    padding-bottom: 56.25%;
    margin-bottom: 80px;
  } */
   .recruitment-process-guide-box .cnt .video-box a {
    width: calc(50% - 6px);
   }
  .recruitment-process-guide-box .cnt .video-text {
    font-size: 2.0rem;
  }
  .recruitment-process-guide-box .cnt .video-box.set-mb {
    /* margin-bottom: 100px; */
  }
}

@media (max-width: 540px) {
  .recruitment-process-guide-box .cnt .video-box{
    margin-bottom: 40px;
  }
  .recruitment-process-guide-box .cnt .video-text {
    font-size: 1.8rem;
  }
  .recruitment-process-guide-box .cnt .video-box iframe {
    margin-top:28px
  }
}
/* ------------------------------------------------------------------------------- */

/* 인턴쉽 박스 */
.internship-box {
  box-sizing: border-box;
  padding-top: 180px;
}
.internship-box .cnt {
  padding: 128px 100px;
}
.internship-box .cnt .list-box {
  gap: 40px;
}
.internship-box .cnt .list-box > li {
  width: calc(50% - 20px);
  border-radius: 24px;
  box-sizing: border-box;
  padding: 40px;
}
.internship-box .cnt .list-box > li:nth-child(3) {
  width: 100%;
}
.internship-box .cnt .list-box > li > .img-box {
  width: 160px;
  margin-right: 24px;
}
.internship-box .cnt .list-box > li .text-box {
  width: calc(100% - 184px);
}
.internship-box .cnt .list-box > li .text-box > h3 {
  box-sizing: border-box;
  padding: 20px;
  border-radius: 999px;
  border: 1px solid #0033A3;
  font-size: 28px;
}
.internship-box .cnt .list-box > li .text-box > ul {
  margin-top: 28px;
}
.internship-box .cnt .list-box > li:nth-child(3) .text-box > ul {
  column-gap: 12px;
}
.internship-box .cnt .list-box > li .text-box > ul > li {
  line-height: 140%;
  font-size: 28px;
  box-sizing: border-box;
  padding-left: 38px;
  position: relative;
}
.internship-box .cnt .list-box > li .text-box > ul > li::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  top: 16.6px;
  left: 16px;
}

@media (max-width: 1340px) {
  .internship-box .cnt .list-box > li {
    width: 100%;
  }
  .internship-box .cnt .list-box > li:nth-child(3) .text-box > ul {
    column-gap: 0;
    display: block;
  }
}

@media (max-width: 1023px) {
  .internship-box {
    padding-top: 160px;
  }
  .internship-box .cnt {
    padding: 100px 68px;
  }
  .internship-box .cnt .list-box {
    gap: 24px;
  }
  .internship-box .cnt .list-box > li > .img-box {
    width: 120px;
  }
  .internship-box .cnt .list-box > li .text-box {
    width: calc(100% - 144px);
  }
  .internship-box .cnt .list-box > li .text-box > h3 {
    font-size: 24px;
  }
  .internship-box .cnt .list-box > li .text-box > ul > li {
    font-size: 24px;
    padding-left: 36px;
  }
  .internship-box .cnt .list-box > li .text-box > ul > li::after {
    top: 13.8px;
    left: 15px;
  }
}

@media (max-width: 767px) {
  .internship-box {
    padding-top: 100px;
  }
  .internship-box .cnt {
    padding: 48px 24px;
  }
  .internship-box .cnt .list-box {
    gap: 16px;
  }
  .internship-box .cnt .list-box > li {
    border-radius: 12px;
    padding: 20px 16px;
  }
  .internship-box .cnt .list-box > li > .img-box {
    width: 60px;
    margin-right: 12px;
  }
  .internship-box .cnt .list-box > li .text-box {
    width: calc(100% - 72px);
  }
  .internship-box .cnt .list-box > li .text-box > h3 {
    padding: 10px 16px;
    font-size: 16px;
  }
  .internship-box .cnt .list-box > li .text-box > ul {
    margin-top: 12px;
  }
  .internship-box .cnt .list-box > li .text-box > ul > li {
    font-size: 15px;
    padding-left: 23px;
  }
  .internship-box .cnt .list-box > li .text-box > ul > li::after {
    width: 4px;
    height: 4px;
    top: 8.5px;
    left: 9.5px;
  }
}

/* ------------------------------------------------------------------------------- */

/* 입사 박스 */
.join-box {
  box-sizing: border-box;
  padding: 180px 0;
}
.ctn-area .join-box.cnt-box h1 {
  color: #fff;
}
.join-box .cnt {
  padding-top: 60px;
}
.join-box .cnt .list-area {
  row-gap: 126px;
}
.join-box .cnt .list-area > li {
  box-sizing: border-box;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 100px 0 28px 0;
  display: flex;
  justify-content: center;
}
.join-box .cnt .list-area > li.list-1 {
  width: 100%;
  border: 3px solid #10C2FF;
}
.join-box .cnt .list-area > li.list-1 .img-box {
  width: 1120px;
}
.join-box .cnt .list-area > li.list-2 {
  /* width: calc(50% - 20px); */
  width: 100%;
  border: 3px solid #263B96;
}
.join-box .cnt .list-area > li.list-2 .img-box {
  width: 1100px;
}
.join-box .cnt .list-area > li.list-3 {
  /* width: calc(50% - 20px); */
  width: 100%;
  border: 3px solid #0033A3;
}
.join-box .cnt .list-area > li.list-3 .img-box {
  width: 1000px;
}
.join-box .cnt .list-area > li > h2 {
  font-size: 28px;
  box-sizing: border-box;
  padding: 22px 65px;
  border-radius: 999px;
  white-space: nowrap;
  top: -40px;
  background-color: #00ADEE;
  color: #010215;
  width: 100%;
  max-width: 600px;
}

@media (max-width: 1400px) {
  .join-box .cnt {
    padding: 114px 40px 100px 40px;
  }
  .join-box .cnt .list-area {
    column-gap: 0;
    row-gap: 68px;
  }
  .join-box .cnt .list-area > li {
    border-radius: inherit;
    padding: 0;
    display: block;
  }
  .join-box .cnt .list-area > li.list-1 {
    border: none;
  }
  .join-box .cnt .list-area > li.list-2 {
    width: 100%;
    border: none;
  }
  .join-box .cnt .list-area > li.list-3 {
    width: 100%;
    border: none;
  }
  .join-box .cnt .list-area > li > h2 {
    width: 100%;
    font-size: 28px;
    padding: 18px 0;
    top: auto;
    position: inherit;
  }
  .join-box .cnt .list-area > li .img-box {
    max-width: 602px;
    margin: 56px auto 0 auto;
  }
  .join-box .cnt .list-area > li.list-1 .img-box > img {
    content: url(../img/join-img-1-tb.svg);
  }
  .join-box .cnt .list-area > li.list-2 .img-box > img {
    content: url(../img/join-img-2-tb.svg);
  }
  .join-box .cnt .list-area > li.list-3 .img-box > img {
    content: url(../img/join-img-3-tb.svg);
  }
}

@media (max-width: 1023px) {
  .join-box {
    padding-top: 160px;
  }
}

@media (max-width: 767px) {
  .join-box {
    padding: 100px 0;
  }
  .join-box .cnt {
    padding: 0;
  }
  .join-box .cnt .list-area {
    row-gap: 68px;
  }
  .join-box .cnt .list-area > li > h2 {
    font-size: 18px;
    padding: 16px 0;
  }
  .join-box .cnt .list-area > li > .img-box {
    margin: 20px auto 0 auto;
    width: 100% !important;
    max-width: 400px;
  }
  /* .join-box .cnt .list-area > li.list-1 > .img-box > img {
    content: url(../img/join-img-1-mb.svg);
  }
  .join-box .cnt .list-area > li.list-2 > .img-box > img {
    content: url(../img/join-img-2-mb.svg);
  }
  .join-box .cnt .list-area > li.list-3 > .img-box > img {
    content: url(../img/join-img-3-mb.svg);
  } */
}

/* ------------------------------------------------------------------------------- */

/* 채용 브로슈어*/
.notice-box {
  box-sizing: border-box;
  padding: 64px 0;
}
.notice-box:hover {
  background: #0033A3;
}
.notice-box .ico-box {
  width: 32px;
  margin-right: 24px;
}
.notice-box h2 {
  font-size: 24px;
}

.notice-box h2 br.mb-ver {
  display: none;
}

@media (max-width: 1023px) {
.notice-box {
    padding: 44px 0;
  }
.notice-box .ico-box {
    width: 32px;
    margin-right: 12px;
  }
.notice-box h2 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
.notice-box {
    padding: 20px 0;
  }
.notice-box .ico-box {
    margin-right: 16px;
  }
.notice-box h2 {
    font-size: 18px;
    line-height: 20px;
  }
.notice-box h2 br.mb-ver {
    display: block;
  }
.notice-box h2 > span {
    font-size: 16px;
    line-height: 20px;
    font-family: "Pretendard-Regular";
  }
}


/* ------------------------------------------------------------------------------- */

/* FAQ 영역 */
.faq-area {
  padding: 180px 0;
}
/* faq 탭 컨테이너 */
.tab-nav {
  overflow: hidden;
  white-space: nowrap;
  font-size: 0;
  /* gap: 20px; */
}

.tab-nav li {
  width: 25%;
  display: inline-block; 
  list-style: none;
  text-align: center;
}

.tab-nav a {
  font-size: 3.0rem;
  display: block;
  text-decoration: none;
  padding: 20px;
  color: #0033A3;
  box-sizing: border-box;
  font-family: "Pretendard-Bold";
}

.tab-nav a.active {
  background: #EEF7FF;
  border-bottom: 2px solid #0033A3;
}

.tab-content {
  border-top: none;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}
@media (max-width: 1400px) {
  .tab-nav a {
    font-size: 2.2rem;
  }
  .faq-area {
    padding: 140px 0;
  }
}


/* 모바일 스타일 (768px 이하) */
@media (max-width: 767px) {
  .faq-area {
    padding: 100px 0;
  }
  .tab-menu {
      width: 100%;
  }
  .tab-nav {
      padding-bottom: 0.5rem; 
      gap: 6px
  }

  .tab-nav a {
      font-size: 1.8rem; 
      padding: 1.2rem; 
      min-width: auto
  }
}
@media (max-width: 540px) {
  .tab-nav {
    flex-wrap: wrap;
  }
  .tab-nav li {
    width: 48.5%;
  }
}
/* faq list */
.faq-box ul {
  display: flex;
  flex-direction: column;
  margin-top: 4rem;
  gap: 2rem;
}
.faq-box ul li a {
  position: relative;
  font-size: 2.4rem;
  color: #263B96;
  background: #EEF7FF;
  padding: 28px;
  border-radius: 1.5rem;
  word-break: keep-all;
  line-height: 1.4;
  font-family: "Pretendard-Bold";
}
.faq-box ul li.active a{
  color: #fff;
  background: #263B96;
  border-radius: 1.5rem 1.5rem 0 0!important
}
.faq-box ul li a::after {
  content: '';
  position: absolute;
  right: 2.4rem;
  top: 50%;
  transform: rotate(0) translateY(-50%);
  background: url(../img/ico_chevron.svg)no-repeat center/cover;
  width: 4rem;
  height: 4rem;
  transition: .3s;
}
.faq-box ul li.active a::after {
  background: url(../img/arrow-fff.svg)no-repeat center/cover;
  transform: rotate(180deg) translateY(50%);
}
.faq-box ul li div {
  background: #fff;
  font-size: 2.2rem;
  line-height: 1.5;
  padding: 2.8rem;
  display: none;
  word-break: keep-all;
  border-radius: 0 0 1.5rem 1.5rem;
  color: #000;
  border: 1px solid #263B96;
}
.faq-box ul li div span {
  color: #000;
}

@media(max-width: 1200px) {
  .faq-box ul {
      gap: 1.6rem;
  }
  .faq-box ul li a {
      font-size: 2rem;
  }
}

@media (max-width: 767px) {

  .faq-box ul {
      margin-top: 1.6rem;
      gap: 1.2rem;
  }
  .faq-box ul li a {
      padding: 1.6rem 4.6rem 1.6rem 2rem;
      font-size: 1.6rem;
  }
  .faq-box ul li a::before {
      padding-right: 0.6rem;
  }
  .faq-box ul li a::after {
      width: 2.4rem;
      height: 2.4rem;
      right: 1.2rem;
  }
  .faq-box ul li div {
      /* padding: 44px 28px 24px 28rem; */
      font-size: 1.4rem;
  }
}

/* ------------------------------------------------------------------------------- */

/* 아래 박스 */
.bottom-box {
  box-sizing: border-box;
  padding: 100px 0 148px 0;
  background-color: #010D2F;
}
.bottom-box .list-box li {
  width: 120px;
}
.bottom-box .list-box li:not(:last-child) {
  margin-right: 40px;
}
.bottom-box .logo-box {
  width: 280px;
  margin-top: 80px;
}

@media (max-width: 1023px) {
  .bottom-box {
    box-sizing: border-box;
    padding: 68px 0 160px 0;
  }
  .bottom-box .list-box li {
    width: 120px;
  }
  .bottom-box .list-box li:not(:last-child) {
    margin-right: 40px;
  }
  .bottom-box .logo-box {
    width: 190px;
    margin-top: 60px;
  }
}

@media (max-width: 767px) {
  .bottom-box {
    padding: 36px 0 150px 0;
  }
  .bottom-box .list-box {
    /* flex-wrap: wrap; */
    width: 300px;
    margin: 0 auto;
  }
  .bottom-box .list-box li {
    width: 88px;
    margin-right: 16px;
  }
  .bottom-box .list-box li:not(:last-child) {
    margin-right: 16px;
  }
  .bottom-box .list-box li:nth-child(3n) {
    margin-right: 0;
  }
   /*
  .bottom-box .list-box li:nth-child(n + 3) {
    margin-top: 16px;
  } */
  .bottom-box .logo-box {
    width: 190px;
    margin-top: 28px;
  }

}
/* ------------------------------------------------------------------------------- */

/* 유튜브 1개 */
.video-area-1 .youtube-box-1 {
  border-radius: 20px;
  /* margin-top: 40px; */
  width: 100%!important;
  height: auto;
  box-sizing: border-box;
  position: relative;
  /* 21:9 */
  /* padding-bottom: 42.8571%; */
  /* 16:9 */
  padding-bottom: 57.25%!important;
  /* 4:3 */
  /* padding-bottom: 75%; */
}
.video-area-1 .youtube-box-1 iframe {
  z-index: 1;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
.video-area-mt {
  margin-top: 24px;
}



/* job posting add */ 
.space-inner-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.space-inner-box p {
  display: flex;
}
.space-inner-box p > span {
  padding: 8px 12px;
  text-align: center;
}
.space-inner-box p > span:first-child{
  border-radius: 4px 0 0 4px;
  background: #0033A3;
  color: #fff;
  width: 45%;
  box-sizing: border-box;
}
.space-inner-box p > span:last-child{
  border-radius: 0 4px 4px 0;
  background: #fff;
  color: #000;
  width: 30%;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .space-inner-box p {
    flex-direction: column;
  }
  .space-inner-box p > span:first-child,
  .space-inner-box p > span:last-child{
    width: auto;
  }

}

/* ------------------------------------------------------------------------------- */

/* 모달 영역 */
.modal-area,
.modal-area-2 {
  background: rgb(0, 0, 0, 0.9);
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 999;
}
.modal-area.active,
.modal-area-2.active {
  display: block;
}
.modal-area .modal,
.modal-area-2 .modal {
  display: none;
}
.modal-area .modal.active,
.modal-area-2 .modal.active {
  display: block;
}
.modal-area .x-btn {
  width: 36px;
  top: 32px;
  right: 32px;
  background-color: transparent;
}
.modal-area-2 .x-btn {
  width: 24px;
  height: 24px;
}

/* 영상 모달 */
.video-modal {
  width: 1000px;
}
.video-modal .youtube-area > h1 {
  font-size: 20px;
  margin-top: 20px;
  line-height: 140%;
}
.youtube-box {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    position: relative;
    padding-bottom: 56.25%;
}
.youtube-box iframe {
    z-index: 1;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}
@media (max-width: 1023px) {
  .video-modal {
    width: 760px;
  }
}
@media (max-width: 767px) {
  .modal-area .x-btn,
  .modal-area-2 .x-btn {
    width: 24px;
    top: 20px;
    right: 20px;
  }

  .video-modal {
    width: 320px;
  }
  .video-modal .youtube-area > h1 {
    font-size: 14px;
    margin-top: 16px;
  }
}


/* 계열사 모달 */
.modal-area-2 {
  padding: 0 4rem;
  z-index: 100;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  align-items: center;
  justify-content: center;
  display: none;
  box-sizing: border-box;
}
.modal-area-2.active {
  display: flex;
}
.modal-area-2 .close-btn {
  top: 3rem;
  right: 3rem;
  width: 3rem;
  height: 3rem;
  z-index: 5;
  cursor: pointer;
}
.modal-area-2 .modal {
  background-color: #fff;
  width: 100%;
  max-width: 80rem;
  border-radius: 1.2rem;
  overflow-x: hidden;
  overflow-y: auto;
  height: 90vh;
  display: none;
}
.modal-area-2 .modal.active {
  display: block;
}
.modal::-webkit-scrollbar {
  width: 1rem;
  background-color: transparent;
}
.modal::-webkit-scrollbar-thumb {
  width: 100%;
  background-color: #ccc;
  border-radius: 0.4rem;
}
.modal-head {
  background: #010D2F;
  font-size: 28px;
  color: #fff;
  padding: 28px 28px 28px 32px;
  box-sizing: border-box;

  position: fixed;
  width: 800px;
}
.modal-top {
  font-size: 32px;
}
.modal-top span.text-1 {
  font-size: 18px;
}
.modal-cont span.desc {
  padding-top: 20px;
  font-size: 22px;
}
.modal-cont {
  padding: 140px 32px 32px 32px;
  word-break: keep-all;
}
.md-cont-0 {
  margin: 50px 0;
  border-top:1px solid #263B96;
}

.md-cont-1 {
  margin: 50px 0;
  border-top:1px solid #263B96;
  border-bottom:1px solid #263B96;
  padding: 50px 0;
}
.md-cont-1 .text-1,
.md-cont-2 .text-1 {
  font-size: 30px;
  color: #263B96
}
.md-cont-1 .text-2,
.md-cont-2 .text-2 {
  font-size: 18px;
  color: #373737
}
.md-cont-1 .cont-1-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px
}
.md-cont-1 .cont-1-box .md-img p{
  font-size: 26px;
  color: #0033A3;
  line-height: 1.6;
  font-family: "Pretendard-SemiBold";
}
.md-cont-1 .cont-1-box .md-img span{
  font-size: 20px;
  color: #373737;
  line-height: 1.6;
 }
 .md-cont-2 .cont-2-box {
  border-bottom: 1px solid #E0E0E0;
  padding: 50px 0;
 }
 .md-cont-2 .cont-2-box.del-text {
  padding:  0 0 50px 0;
 }
 .md-cont-2 .cont-2-box:last-child {
  border-bottom: 0;
 }
 .md-cont-2 .cont-2-box p{
  gap: 8px;
 }
 .md-cont-2 .cont-2-box .text-3 {
  min-width: 152px;
  width: auto;
  padding: 12px 20px;
  border-radius: 80px;
  background: #263B96;
  color: #fff;
  font-size: 22px;
  text-align: center;
  font-family: "Pretendard-Bold";
 }

 .md-cont-2 .cont-2-box .text-4{
  font-size: 22px;
  line-height: 1.4;
 }

 .md-cont-2 .cont-2-box .cont-2-in {
  margin-top: 24px;
  padding: 20px;
  background: #EEF7FF;
  gap: 1.6rem
 }
 .md-cont-2 .cont-2-box .cont-2-in .text-box {
  font-size: 2.0rem;
 }
 .md-cont-2 .cont-2-box .cont-2-in .text-box span{
  line-height:1.6
 }
 .md-cont-2 .cont-2-box .cont-2-in .text-box .tit {
  min-width: 120px;
  font-family: "Pretendard-SemiBold";
 }
 .md-cont-2 .cont-2-box .cont-2-in .text-box.line {
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
 }
 .md-cont-2 .cont-2-box .cont-2-in .text-box .fnb {
  min-width: 100px;
 }
 .md-cont-2 .cont-2-box .cont-2-in .text-box .fnb img{
  width: 80px;
 }
 .md-cont-2 .cont-2-box .cont-2-in .text-box .fnb2 {
  width: 100%;
  height: 100px;
 }
.md-cont-2 .cont-2-box .fnb3 {
  position: absolute;
  right: 0;
  width: 40%;
  padding: 40px;
}
.md-cont-2 .cont-2-box .cont-2-in .text-box.loex  {
  font-size: 1.8rem;
}
.md-cont-2 .cont-2-box .cont-2-in .text-box.loex .tit{
  color: #0033A3;
  width: 100%;
 }
 .md-cont-2 .cont-2-box .cont-2-in .text-box .sub span{
   font-size: 1.5rem;
 }
 .md-cont-2 .cont-2-box .cont-2-in .text-box.pams  {
  gap: 20px
 }
 .md-cont-2 .cont-2-box .cont-2-in .text-box.pams img{
  width: 80px;
 }

 /* 반응형 */
  
 @media (max-width: 800px) {
  .modal-head {
    width: 100vw;
  }
 }
@media (max-width: 768px) {
  .modal-area-2 {
    width: 100vw;
      height: 100vh;
      top: 0;
      left: 0;
      transform: translate(0, 0);
      padding: 0 2rem;
  }
  .modal-area-2 .close-btn {
      top: 1.8rem;
      right: 2.0rem
  }
  .modal-area-2 .modal .modal-cont {
      padding: 10.0rem 2.4rem 0 2.4rem;
  }
  .modal-head {
    font-size: 22px;
    padding: 20px 20px 20px 28px;
  }
  .md-cont-1 .text-1,
  .md-cont-2 .text-1 {
    font-size: 24px;
  }
  .md-cont-1 .text-2,
  .md-cont-2 .text-2 {
    font-size: 15px;
  }
  .md-cont-1 .cont-1-box .md-img p {
    margin-top: 8px;
    font-size: 22px;
  }
  .md-cont-1 .cont-1-box .md-img span {
    font-size: 17px;
  }
  .modal-top {
    font-size: 26px;
  }
  .modal-top span.text-1 {
    display: block;
    margin-top: 10px;
    font-size: 16px;
  }
  .md-cont-2 .cont-2-box p {
    flex-direction: column;
    align-items: start;
  }
  .md-cont-2 .cont-2-box .text-3 {
    font-size: 19px;
  }
  .md-cont-2 .cont-2-box .text-4{
    font-size: 18px;
   }
   .modal-area-2 .modal-cont span.desc {
    font-size: 17px;
   }
   .md-cont-2 .cont-2-box .cont-2-in .text-box {
    font-size: 1.7rem;
  }
  .md-cont-2 .cont-2-box .cont-2-in .text-box .tit {
    min-width: 100px;
  }
  .md-cont-2 .cont-2-box .fnb3 {
    position: relative;
    top: 0px;
    right: 50%;
    width: 60%;
    padding: 20px;
    left: 17%;
  }
  .md-cont-2 .cont-2-box .cont-2-in .text-box.loex  {
    font-size: 1.6rem;
  }
  .md-cont-2 .cont-2-box .cont-2-in .text-box.loex .tit{
  color: #0033A3;
  width: 100%;
  }
  .md-cont-2 .cont-2-box .cont-2-in .text-box.pams {
    flex-direction: row;
    align-items: start;
  }
  /* .md-cont-2 .cont-2-box .cont-2-in .text-box.pams img  {
    display: none;
   } */

   .md-cont-2 .cont-2-box .cont-2-in .text-box .fnb2 img.fnb2-1{
    content: url(../img/md-img2-logo7-m.svg);
   }
   .md-cont-2 .cont-2-box .cont-2-in .text-box .fnb2 img.fnb2-2{
    content: url(../img/md-img2-logo8-m.svg);
   }
   .md-cont-2 .cont-2-box .cont-2-in .loex.mt20  {
    margin-top: 0;
  }

  .md-cont-2 .cont-2-box .cont-2-in .text-box .fnb2 {
    height: auto;
   }


}
@media (max-width: 540px) {
  .modal-area-2 .modal {
    height: 100vh;
  }
  .md-cont-2 .cont-2-box .cont-2-in .text-box {
    flex-direction: column;
  }
}