/* 애니메이션 */
@-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);
  }
}

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

/* 버튼 타입 */
.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 #0050FF;
  transition: all 0.3s;
}
.btn-type-1:hover {
  background: #0050FF;
}

.btn-type-2 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #0050FF;
  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: #0050FF;
  background: #fff;
  border-radius: 999px;
  box-sizing: border-box;
  border: 2px solid #0050FF;
  transition: all 0.3s;
  overflow: hidden;
}
.btn-type-4 .bg {
  width: 0;
  height: 100%;
  background: #0050FF;
  top: 0;
  left: 0;
  transition: all 0.3s;
}
.btn-type-4:hover .bg {
  width: 100%;
}
.btn-type-4 .text {
  color: #0050FF;
  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.active {
  background: rgba(238, 247, 255, 0.9);
}
.hearder-area .logo-box {
  width: 140px;
}
.hearder-area .menu-box {
  margin-right: 40px;
}
.hearder-area .menu-box li:not(:last-child) {
  margin-right: 60px;
}
.hearder-area .menu-box li a {
  color: #000000;
  font-size: 22px;
  transition: all 0.3s;
}
.hearder-area .menu-box li a.active {
  color: #0050FF;
}
.hearder-area .support-btn {
  width: 160px;
  height: 48px;
  font-size: 20px;
}
.hearder-area .ham-btn {
  width: 32px;
  display: none;
}

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

@media (max-width: 1023px) {
  .hearder-area {
    height: 88px;
  }
  .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: 80px;
  }
  .hearder-area .con {
    padding: 0 20px;
  }
  .hearder-area .logo-box {
    width: 84px;
  }
  .hearder-area .ham-btn {
    width: 24px;
  }
}

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

/* 사이드 메뉴 영역 */
.side-menu-area {
  top: -100%;
  right: 0;
  transition: all 0.3s;
}
.side-menu-area.active {
  top: 0;
}
.side-menu-area .top-box {
  height: 88px;
  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: 84px 20px 72px 20px;
}
.side-menu-area .middle-box .menu-box li {
  text-align: center;
}
.side-menu-area .middle-box .menu-box li:not(:last-child) {
  margin-bottom: 48px;
}
.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: #0050FF;
  font-family: "Pretendard-Bold";
}
.side-menu-area .middle-box .support-btn {
  width: 240px;
  height: 60px;
  display: flex;
  margin-top: 64px;
  font-size: 20px;
}

@media (max-width: 767px) {
  .side-menu-area .top-box {
    height: 80px;
    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: 64px 20px 56px 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;
  }
}

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

/* 메인 비주얼 영역 */
.main-visual-area {
  height: 1300px;
  background: url(../img/main-visual.jpg) no-repeat right center/cover;
  overflow: hidden;
}
.main-visual-area .con {
  padding: 0 60px;
  max-width: 1520px;
}
.main-visual-area .text-box {
  box-sizing: border-box;
  padding-top: 140px;
}
.main-visual-area .text-box h3 {
  font-size: 36px;
  box-sizing: border-box;
  padding-left: 11px;
}
.main-visual-area .text-box h1 {
  margin-top: 24px;
  font-size: 100px;
  letter-spacing: -0.04em;
  line-height: 110px;
}
.main-visual-area .text-box h1 > span {
  margin-bottom: 6px;
}
.main-visual-area .text-box h2 {
  margin-top: 32px;
  font-size: 36px;
  box-sizing: border-box;
  padding-left: 10px;
  letter-spacing: -1px;
}
.main-visual-area .text-box .date-box {
  margin-top: 56px;
}
.main-visual-area .text-box .date-box .date-text-box-1 {
  margin-right: 10px;
}
.main-visual-area .text-box .date-box .date-text-box .text-1 {
  font-size: 48px;
  letter-spacing: -0.05em;
}
.main-visual-area .text-box .date-box .date-text-box .text-2 {
  font-size: 38px;
  margin-left: 4px;
}
.main-visual-area .text-box h4 {
  margin-top: 106px;
  font-size: 32px;
  letter-spacing: -0.05em;
}
.main-visual-area .text-box .countdown-timer-wrapper {
  margin-top: 16px;
  font-size: 72px;
  color: #0033A3;
}
.main-visual-area .text-box .countdown-timer-wrapper .time {
  font-family: "Pretendard-Bold";
}
.main-visual-area .text-box .countdown-timer-wrapper .divide {
  font-family: "Pretendard-Bold";
}
.main-visual-area .text-box .support-btn {
  width: 240px;
  height: 64px;
  font-size: 24px;
  margin-top: 32px;
}
.main-visual-area .communication-img {
  width: 348px;
  top: 260px;
  right: 430px;
}
.main-visual-area .drone-img {
  width: 64px;
  top: 570px;
  right: 324px;
}
.main-visual-area .aquarium-img {
  width: 240px;
  top: 685px;
  right: 184px;
}
.main-visual-area .laptop-img {
  width: 176px;
  top: 806px;
  right: 819px;
}
.main-visual-area .cart-img {
  width: 130px;
  top: 905px;
  right: 973px;
}
.main-visual-area .truck-img {
  width: 210px;
  top: 913px;
  right: 445px;
}
.main-visual-area .crane-img {
  width: 171px;
  top: 924px;
  right: 27px;
}
.main-visual-area .drone-img img {
  transform: translate(0, 0);
  animation-name: bounce2;
  animation-duration: 4s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  -webkit-animation-name: bounce2;
  -webkit-animation-duration: 4s;
  -webkit-animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
}
.main-visual-area .cart-img img {
  transform: translate(0, 0);
  animation-name: bounce1;
  animation-duration: 4s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  -webkit-animation-name: bounce1;
  -webkit-animation-duration: 4s;
  -webkit-animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
}
.main-visual-area .truck-img img {
  transform: translate(0, 0);
  animation-name: bounce1;
  animation-duration: 4s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  -webkit-animation-name: bounce1;
  -webkit-animation-duration: 4s;
  -webkit-animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
}

@media (max-width: 1360px) {
  .main-visual-area {
    background: url(../img/main-visual.jpg) no-repeat right -300px center/cover;
  }
  .main-visual-area .communication-img {
    right: 130px;
  }
  .main-visual-area .drone-img {
    right: 24px;
  }
  .main-visual-area .aquarium-img {
    right: -116px;
  }
  .main-visual-area .laptop-img {
    right: 519px;
  }
  .main-visual-area .cart-img {
    right: 673px;
  }
  .main-visual-area .truck-img {
    right: 145px;
  }
  .main-visual-area .crane-img {
    right: -273px;
  }
}

@media (max-width: 1023px) {
  .main-visual-area {
    height: 812px;
    background: url(../img/main-visual.jpg) no-repeat right -175px center/cover;
  }
  .main-visual-area .con {
    padding: 0 72px;
  }
  .main-visual-area .text-box {
    padding-top: 136px;
  }
  .main-visual-area .text-box h3 {
    font-size: 20px;
    padding-left: 6px;
  }
  .main-visual-area .text-box h1 {
    margin-top: 12px;
    font-size: 56px;
    line-height: 64px;
  }
  .main-visual-area .text-box h1 > span {
    margin-bottom: 0;
    line-height: 64px;
  }
  .main-visual-area .text-box h2 {
    margin-top: 20px;
    font-size: 20px;
    padding-left: 5px;
    letter-spacing: -0.2px;
  }
  .main-visual-area .text-box .date-box {
    margin-top: 36px;
  }
  .main-visual-area .text-box .date-box .date-text-box-1 {
    margin-right: 6px;
  }
  .main-visual-area .text-box .date-box .date-text-box .text-1 {
    font-size: 30px;
  }
  .main-visual-area .text-box .date-box .date-text-box .text-2 {
    font-size: 24px;
    margin-left: 2px;
  }
  .main-visual-area .text-box h4 {
    margin-top: 44px;
    font-size: 20px;
  }
  .main-visual-area .text-box .countdown-timer-wrapper {
    margin-top: 8px;
    font-size: 44px;
  }
  .main-visual-area .text-box .support-btn {
    display: none;
  }
  .main-visual-area .communication-img {
    width: 217px;
    top: 162px;
    right: 90px;
  }
  .main-visual-area .drone-img {
    width: 40px;
    top: 356px;
    right: 24px;
  }
  .main-visual-area .aquarium-img {
    width: 150px;
    top: 428px;
    right: -63px;
  }
  .main-visual-area .laptop-img {
    width: 110px;
    top: 504px;
    right: 334px;
  }
  .main-visual-area .cart-img {
    width: 81px;
    top: 565px;
    right: 430px;
  }
  .main-visual-area .truck-img {
    width: 131px;
    top: 570px;
    right: 100px;
  }
  .main-visual-area .crane-img {
    display: none;
  }
}

@media (max-width: 767px) {
  .main-visual-area .con {
    padding: 0 24px;
  }
  .main-visual-area .text-box {
    padding-top: 88px;
  }
  .main-visual-area .text-box h3 {
    font-size: 16px;
    padding-left: 5px;
  }
  .main-visual-area .text-box h1 {
    margin-top: 4px;
    font-size: 40px;
    line-height: 44px;
  }
  .main-visual-area .text-box h1 > span {
    line-height: 48px;
  }
  .main-visual-area .text-box h2 {
    margin-top: 12px;
    font-size: 16px;
    padding-left: 4px;
    letter-spacing: -1.5px;
  }
  .main-visual-area .text-box .date-box {
    margin-top: 20px;
  }
  .main-visual-area .text-box .date-box .date-text-box .text-1 {
    font-size: 20px;
  }
  .main-visual-area .text-box .date-box .date-text-box .text-2 {
    font-size: 18px;
    margin-left: 4px;
  }
  .main-visual-area .text-box h4 {
    margin-top: 32px;
    font-size: 18px;
  }
  .main-visual-area .text-box .countdown-timer-wrapper {
    margin-top: 12px;
    font-size: 32px;
  }
}

@media (max-width: 680px) {
  .main-visual-area {
    height: 640px;
    background: url(../img/main-visual.jpg) no-repeat right -267px center/cover;
  }
  .main-visual-area .communication-img {
    width: 171px;
    top: 127px;
    right: -53px;
  }
  .main-visual-area .drone-img {
    display: none;
  }
  .main-visual-area .aquarium-img {
    display: none;
  }
  .main-visual-area .laptop-img {
    width: 87px;
    top: 397px;
    right: 139px;
  }
  .main-visual-area .cart-img {
    width: 81px;
    top: 435px;
    right: 197px;
  }
  .main-visual-area .truck-img {
    width: 103px;
    top: 449px;
    right: -45px;
  }
}

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

/* 컨텐츠 영역 */
.ctn-area .cnt-box h1 {
  font-size: 48px;
  letter-spacing: -0.05em;
}
.ctn-area .cnt-box .cnt {
  margin-top: 40px;
  box-sizing: border-box;
  border-top: 6px solid #0033A3;
}
.ctn-area .cnt-box .cnt .space-area h2 {
  border-radius: 999px;
  font-size: 36px;
  padding: 18px 40px;
}

@media (max-width: 1023px) {
  .ctn-area .cnt-box h1 {
    font-size: 36px;
  }
  .ctn-area .cnt-box .cnt {
    margin-top: 28px;
    border-top: 8px solid #0033A3;
  }
  .ctn-area .cnt-box .cnt .space-area h2 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .ctn-area .cnt-box h1 {
    font-size: 24px;
  }
  .ctn-area .cnt-box .cnt {
    margin-top: 20px;
    border-top: 6px solid #0033A3;
  }
  .ctn-area .cnt-box .cnt .space-area h2 {
    font-size: 20px;
    padding: 10px 32px;
  }
}

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

/* 채용공고 박스 */
.job-posting-box {
  box-sizing: border-box;
  padding-top: 160px;
}
.job-posting-box .cnt {
  padding: 126px 68px 180px 68px;
}
.job-posting-box .cnt .space-area:not(:last-child) {
  margin-bottom: 160px;
}
.job-posting-box .cnt .space-area-1 > ul {
  margin-top: 28px;
  box-sizing: border-box;
  padding-left: 20px;
}
.job-posting-box .cnt .space-area-1 > ul > li {
  font-size: 32px;
}
.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 {
  margin-top: 28px;
  box-sizing: border-box;
  padding-left: 4px;
}
.job-posting-box .cnt .space-area-2 > ul > li {
  line-height: 48px;
  font-size: 32px;
  box-sizing: border-box;
  padding-left: 48px;
  position: relative;
}
.job-posting-box .cnt .space-area-2 > ul > li::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  top: 21px;
  left: 21px;
}
.job-posting-box .cnt .space-area-2 > ul > li span {
  line-height: 48px;
}
.job-posting-box .cnt .space-area-3 .space-area-3-1 {
  margin-top: 80px;
}
.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;
  padding: 0 16%;
  position: relative;
}
.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: -32px;
  transform: translateY(-50%);
}
.job-posting-box .cnt .space-area-3 .space-area-3-1 li.list h3 {
  font-size: 32px;
  margin-top: 56px;
}
.job-posting-box .cnt .space-area-3 .space-area-3-1 li.list p {
  font-size: 28px;
  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: 20px;
}
.job-posting-box .cnt .space-area-3 .space-area-3-2 li h3 {
  width: 260px;
  border-radius: 12px;
  font-size: 32px;
}
.job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box {
  width: calc(100% - 276px);
  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: 30px;
  line-height: 48px;
  box-sizing: border-box;
  padding-left: 45px;
  position: relative;
}
.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: 7px;
  height: 7px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  top: 20.5px;
  left: 19px;
}
.job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box > li.dot-none{
  margin-top: 8px;
}
.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 > span {
  line-height: 48px;
}
.job-posting-box .cnt .space-area-3 .notice-text {
  margin-top: 20px;
  font-size: 20px;
}
.job-posting-box .cnt .space-area-4 > ul {
  margin-top: 28px;
}
.job-posting-box .cnt .space-area-4 > ul > li {
  line-height: 48px;
  font-size: 32px;
  box-sizing: border-box;
  padding-left: 49px;
  position: relative;
}
.job-posting-box .cnt .space-area-4 > ul > li::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  top: 21px;
  left: 21.5px;
}
.job-posting-box .cnt .space-area-5 .recruitment-text-box {
  margin-top: 38px;
  row-gap: 28px;
}
.job-posting-box .cnt .space-area-5 .recruitment-text-box > li h3 {
  font-size: 32px;
  line-height: 140%;
  width: 130px;
}
.job-posting-box .cnt .space-area-5 .recruitment-text-box > li .line {
  width: 1px;
  height: 30px;
  background: #0033A3;
  margin: 7.4px 20px 0 0;
}
.job-posting-box .cnt .space-area-5 .recruitment-text-box > li p {
  font-size: 32px;
  line-height: 140%;
  width: calc(100% - 131px);
  letter-spacing: -0.02em;
}
.job-posting-box .cnt .space-area-5 .tab-menu-box-1 {
  gap: 20px;
  margin-top: 64px;
}
.job-posting-box .cnt .space-area-5 .tab-menu-box-1 li a {
  font-size: 32px;
  box-sizing: border-box;
  padding: 32px 48px;
  border-radius: 12px;
  border: 2px solid #0033A3;
  color: #0033A3;
}
.job-posting-box .cnt .space-area-5 .tab-menu-box-1 li a.active {
  background: #EEFFFF;
  color: #0050FF;
  border: 2px solid #0050FF;
}
.job-posting-box .cnt .space-area-5 .tab-cnt-box-1 {
  margin-top: 64px;
  box-sizing: border-box;
  padding: 0 20px;
}
.job-posting-box .cnt .space-area-5 .tab-cnt-box-1 > li .list-box > li h3 {
  font-size: 28px;
}
.job-posting-box .cnt .space-area-5 .tab-cnt-box-1 > li .list-box > li:not(:last-child) {
  margin-bottom: 52px;
}
.job-posting-box .cnt .space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box {
  margin-top: 20px;
}
.job-posting-box .cnt .space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li .title-area {
  width: 30%;
}
.job-posting-box .cnt .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;
}
.job-posting-box .cnt .space-area-5 .tab-cnt-box-1 > li .list-box > li.type-1 .jobs-box > li .title-area .title-box {
  height: auto;
}
.job-posting-box .cnt .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;
}
.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: 28px;
  line-height: 140%;
}
.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: 24px;
  margin-top: 16px;
  line-height: 140%;
}
.job-posting-box .cnt .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;
}
.job-posting-box .cnt .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;
}
.job-posting-box .cnt .space-area-5 .tab-cnt-box-1 > li .list-box > li .jobs-box > li:nth-child(n + 2) .jobs-cnt-area {
  border-top: none;
}
.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: 50%;
  box-sizing: border-box;
  padding: 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: 20px;
  line-height: 140%;
}
.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: 16px;
  line-height: 140%;
  letter-spacing: -0.04em;
  word-break: keep-all;
}
.job-posting-box .cnt .space-area-5 .notice-text {
  margin-top: 20px;
  font-size: 20px;
  box-sizing: border-box;
  padding: 0 32px;
}

@media (max-width: 1023px) {
  .job-posting-box {
    padding-top: 116px;
  }
  .job-posting-box .cnt {
    padding: 68px 28px 140px 28px;
  }
  .job-posting-box .cnt .space-area:not(:last-child) {
    margin-bottom: 120px;
  }
  .job-posting-box .cnt .space-area-1 > ul {
    padding-left: 16px;
  }
  .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 {
    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: 24px;
    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: 60px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-1 li.list h3 {
    font-size: 24px;
    margin-top: 34px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-1 li.list p {
    font-size: 20px;
  }
  .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: 180px;
    font-size: 24px;
    border-radius: 8px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box {
    width: calc(100% - 196px);
    padding: 20px 28px;
    border-radius: 8px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box > li {
    font-size: 24px;
    line-height: 140%;
    padding-left: 36px;
  }  
  .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: 6px;
    height: 6px;
    top: 13.8px;
    left: 15px;
  }
  .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: 24px;
    padding-left: 37px;
  }
  .job-posting-box .cnt .space-area-4 > ul > li::after {
    width: 5px;
    height: 5px;
    top: 16.7px;
    left: 16px;
  }
  .job-posting-box .cnt .space-area-5 .recruitment-text-box {
    margin-top: 40px;
    row-gap: 20px;
  }
  .job-posting-box .cnt .space-area-5 .recruitment-text-box > li h3 {
    font-size: 24px;
    width: 103px;
  }
  .job-posting-box .cnt .space-area-5 .recruitment-text-box > li .line {
    display: none;
  }
  .job-posting-box .cnt .space-area-5 .recruitment-text-box > li p {
    font-size: 24px;
    width: calc(100% - 103px);
  }
  .job-posting-box .cnt .space-area-5 .tab-menu-box-1 {
    margin-top: 48px;
    gap: 16px;
  }
  .job-posting-box .cnt .space-area-5 .tab-menu-box-1 li a {
    font-size: 24px;
    padding: 24px 28px;
  }
  .job-posting-box .cnt .space-area-5 .tab-cnt-box-1 {
    margin-top: 60px;
    padding: 0 4px;
  }
  .job-posting-box .cnt .space-area-5 .tab-cnt-box-1 > li .list-box > li h3 {
    font-size: 24px;
  }
  .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;
  }
  .job-posting-box .cnt .space-area-5 .notice-text {
    margin-top: 32px;
    font-size: 18px;
    padding: 0 4px;
  }
}

@media (max-width: 767px) {
  .job-posting-box {
    padding-top: 100px;
  }
  .job-posting-box .cnt {
    padding: 54px 20px 84px 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;
  }
  .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 {
    margin-top: 32px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-1 li.list {
    width: calc(50% - 21px);
    margin-right: 42px;
  }
  .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:nth-child(n + 3) {
    margin-top: 36px;
  }
  .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 .img-box {
    padding: 0 8%;
  }
  .job-posting-box
    .cnt
    .space-area-3
    .space-area-3-1
    li.list:not(:last-child)
    .img-box::after {
    width: 20px;
    height: 20px;
    right: -32px;
  }
  .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;
    margin-top: 8px;
    border-radius: 6px;
  }
  .job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box > li {
    font-size: 16px;
    padding-left: 24px;
  }  
  .job-posting-box .cnt .space-area-3 .space-area-3-2 li .text-box > li::after {
    width: 4px;
    height: 4px;
    top: 9.2px;
    left: 10px;
  }
  .job-posting-box .cnt .space-area-3 .notice-text {
    margin-top: 42px;
    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;
  }
  .job-posting-box .cnt .space-area-5 .recruitment-text-box {
    margin-top: 20px;
    row-gap: 32px;
  }
  .job-posting-box .cnt .space-area-5 .recruitment-text-box > li {
    flex-direction: column;
  }
  .job-posting-box .cnt .space-area-5 .recruitment-text-box > li h3 {
    font-size: 16px;
    width: 100%;
    line-height: 100%;
  }
  .job-posting-box .cnt .space-area-5 .recruitment-text-box > li p {
    font-size: 16px;
    line-height: 160%;
    width: 100%;
    margin-top: 8px;
  }
  .job-posting-box .cnt .space-area-5 .tab-menu-box-1 {
    margin-top: 44px;
    gap: 8px;
  }
  .job-posting-box .cnt .space-area-5 .tab-menu-box-1 li a {
    font-size: 18px;
    padding: 12px 20px;
    border-radius: 8px;
  }
  .job-posting-box .cnt .space-area-5 .tab-cnt-box-1 {
    margin-top: 40px;
    padding: 0;
  }
  .job-posting-box .cnt .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;
  }
  .job-posting-box .cnt .space-area-5 .notice-text {
    margin-top: 16px;
    font-size: 14px;
    padding: 0;
    line-height: 140%;
    text-align: left;
  }
}

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


/* 채용 과정 안내 박스 */
.recruitment-process-guide-box {
  box-sizing: border-box;
  padding-top: 180px;
}
.recruitment-process-guide-box .cnt {
  padding: 134px 88px 160px 88px;
}
.recruitment-process-guide-box .cnt .video-box {
  width: 50%;
  position: relative;
  height: auto;
  /* padding-bottom: 56.25%; */
  padding-bottom: 27.25%; 
}
.recruitment-process-guide-box .cnt .video-text {
  font-size: 2.6rem;
  margin-top: -40px;
}
.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: #0050FF;
  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: 80px 40px 100px 40px;
  }
  .recruitment-process-guide-box .cnt .other-box {
    margin-top: 32px;
    flex-direction: column;
    align-items: flex-start;
  }
  .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-top: 100px;
  }
  .recruitment-process-guide-box .cnt {
    padding: 54px 16px 60px 16px;
  }
  .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 {
    width: 100%;
    padding-bottom: 56.25%;
    margin-bottom: 80px;
  }
  .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: 60px;
  }
  .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-top: 180px;
}
.join-box .cnt {
  padding: 155px 60px 128px 60px;
}
.join-box .cnt .list-area {
  column-gap: 40px;
  row-gap: 110px;
}
.join-box .cnt .list-area > li {
  box-sizing: border-box;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 100px 0 28px 0;
}
.join-box .cnt .list-area > li.list-1 {
  width: 100%;
  border: 3px solid #10C2FF;
}
.join-box .cnt .list-area > li.list-2 {
  width: calc(50% - 20px);
  border: 3px solid #0050FF;
}
.join-box .cnt .list-area > li.list-3 {
  width: calc(50% - 20px);
  border: 3px solid #0033A3;
}
.join-box .cnt .list-area > li > h2 {
  font-size: 36px;
  box-sizing: border-box;
  padding: 22px 65px;
  border-radius: 999px;
  white-space: nowrap;
  top: -40px;
}

@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;
  }
  .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-top: 100px;
  }
  .join-box .cnt {
    padding: 48px 20px;
  }
  .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;
    max-width: 280px;
  }
  .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 .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 박스 */
.faq-box {
  box-sizing: border-box;
  padding-top: 180px;
}
.faq-box .cnt {
  padding: 120px 88px 100px 88px;
}
.faq-box .cnt .list-box li:not(:last-child) {
  margin-bottom: 48px;
}
.faq-box .cnt .list-box li h2 {
  font-size: 32px;
}
.faq-box .cnt .list-box li p {
  margin-top: 24px;
  font-size: 24px;
  line-height: 32px;
  box-sizing: border-box;
  padding: 32px 48px;
  border-radius: 20px;
}
.faq-box .cnt .btn-box {
  margin-top: 60px;
}
.faq-box .cnt .btn-box .share-btn {
  width: 360px;
  height: 80px;
}
.faq-box .cnt .btn-box .share-btn .img-box {
  width: 24px;
  margin-right: 24px;
}
.faq-box .cnt .btn-box .share-btn .text {
  font-size: 24px;
}
.faq-box .bottom-btn {
  box-sizing: border-box;
  padding: 64px 0;
}
.faq-box .bottom-btn .ico-box {
  width: 32px;
  margin-right: 24px;
}
.faq-box .bottom-btn .text {
  font-size: 24px;
}
.faq-box .bottom-btn .text br {
  display: none;
}

@media (max-width: 1023px) {
  /* faq 박스 */
  .faq-box {
    padding-top: 140px;
  }
  .faq-box .cnt {
    padding: 60px 40px 100px 40px;
  }
  .faq-box .cnt .list-box li:not(:last-child) {
    margin-bottom: 40px;
  }
  .faq-box .cnt .list-box li h2 {
    font-size: 24px;
  }
  .faq-box .cnt .list-box li p {
    margin-top: 24px;
    padding: 28px 32px;
    font-size: 20px;
  }
  .faq-box .cnt .btn-box {
    margin-top: 68px;
  }
}

@media (max-width: 767px) {
  /* faq 박스 */
  .faq-box {
    padding-top: 80px;
  }
  .faq-box .cnt {
    padding: 54px 16px 60px 16px;
  }
  .faq-box .cnt .list-box li:not(:last-child) {
    margin-bottom: 28px;
  }
  .faq-box .cnt .list-box li h2 {
    font-size: 20px;
    line-height: 32px;
  }
  .faq-box .cnt .list-box li p {
    margin-top: 16px;
    padding: 20px;
    font-size: 16px;
  }
  .faq-box .cnt .btn-box {
    margin-top: 48px;
  }
  .faq-box .cnt .btn-box .share-btn {
    width: 260px;
    height: 60px;
  }
  .faq-box .cnt .btn-box .share-btn .text {
    font-size: 18px;
  }
  .faq-box .bottom-btn {
    padding: 20px 0;
  }
  .faq-box .bottom-btn .ico-box {
    width: 32px;
    margin-right: 16px;
  }
  .faq-box .bottom-btn .text {
    font-size: 18px;
  }
  .faq-box .bottom-btn .text br {
    display: block;
  }
  .faq-box .bottom-btn .text span {
    font-size: 16px;
    font-family: "Pretendard-Regular";
    margin-top: 6px;
  }
}
/* ------------------------------------------------------------------------------- */

/* 아래 박스 */
.bottom-box {
  box-sizing: border-box;
  padding: 100px 0 148px 0;
}
.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: 256px;
    margin: 0 auto;
  }
  .bottom-box .list-box li {
    width: 120px;
    margin-right: 16px;
  }
  .bottom-box .list-box li:not(:last-child) {
    margin-right: 16px;
  }
  .bottom-box .list-box li:nth-child(2n) {
    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: 100px;
}

@media (max-width: 767px) {
  .video-area-mt {
    margin-top: 60px;
  }
}