#fullpage {
  width: 100%;
  height: 100%;
}
#menu li {
  display: inline-block;
  margin: 10px;
  color: #000;
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
#menu li.active {
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
#menu li a {
  text-decoration: none;
  color: #000;
}
#menu li.active a:hover {
  color: #000;
}
#menu li:hover {
  background: rgba(255, 255, 255, 0.8);
}
#menu li a,
#menu li.active a {
  padding: 9px 18px;
  display: block;
}
#menu li.active a {
  color: #fff;
}
#menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 40px;
  z-index: 70;
  width: 100%;
  padding: 0;
  margin: 0;
}

.section {
  font-size: 3vw;
  text-align: center;
}
/* .section:last-child{margin-bottom: 26.8rem;} */

/* 메인 배너 슬라이더 */
/* 첫 번째 메인 섹션 */
/* =========================
   메인 1섹션 슬라이드 + 퀵메뉴
========================= */

/* fullPage가 자동 생성하는 내부 영역 */
.sec1 .fp-tableCell {
  display: flex;
  flex-direction: column;
  vertical-align: initial;
}

/* 기존 슬라이드 영역 */
.sec1 .swiper-container {
  flex: 1;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

/* 슬라이드 내부 높이 유지 */
.sec1 .swiper-wrapper,
.sec1 .swiper-slide {
  width: 100%;
  height: 100%;
}

.sec1 .swiper-slide {
  position: relative;
  overflow: hidden;
}


/* 배너 이미지 */
.sec1 .swiper-slide > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* 하단 바로가기 영역 */
.sec1 .main_quick_menu {
  flex: 0 0 320px;
  width: 100%;
  background: #fff;
  box-sizing: border-box;
}

/* 바로가기 목록 */
.sec1 .main_quick_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
  list-style: none;
}

.sec1 .main_quick_list li {
  flex: 0 0 140px;
}


.sec1 .quick_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 28px;
  background: #F6F7FB;
  transition: all .3s ease;
}

.sec1 .quick_icon img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  transition:.3s;
}

.sec1 .main_quick_list a:hover .quick_icon{
    /* background:#c2c2c2; */
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    transform:translateY(-3px);
}

.sec1 .main_quick_list a:hover .quick_text{
    color:#1677b9;
    font-weight:700;
}

.sec1 .main_quick_list a:hover .quick_icon img{
    transform:scale(1.08);
}

/* ////////////////// */

.sec1 .main_quick_list a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 22px 0px;
  border-radius: 26px;
  color: #222;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  overflow: hidden;
  transition: all .35s cubic-bezier(.22,1,.36,1);
}

.sec1 .main_quick_list a::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:26px;
    background:rgba(255,255,255,.78);
    backdrop-filter:blur(10px);
    opacity:0;
    transform:scale(.92);
    transition:.35s ease;
    z-index:0;
}

.sec1 .main_quick_list a::after{
    content:'';
    position:absolute;
    left:18px;
    right:18px;
    bottom:8px;
    height:4px;
    border-radius:99px;
    background:#1677b9;
    transform:scaleX(0);
    transform-origin:center;
    transition:.35s ease;
    z-index:2;
}

.sec1 .main_quick_list a > *{
    position:relative;
    z-index:3;
}

.sec1 .main_quick_list a:hover{
    transform:translateY(-8px);
}

.sec1 .main_quick_list a:hover::before{
    opacity:1;
    transform:scale(1);

    box-shadow:
        0 1px 0 rgba(255,255,255,.8) inset,
        0 12px 24px rgba(0,0,0,.08),
        0 28px 60px rgba(0,0,0,.14);
}

.sec1 .main_quick_list a:hover::after{
    transform:scaleX(1);
}

.sec1 .main_quick_list a:hover .quick_icon{
    transform:scale(1.08);
}

.sec1 .main_quick_list a:hover .quick_text{
    color:#136EB6;
}

.sec1 .quick_icon{
    transition:.35s cubic-bezier(.22,1,.36,1);
}

.sec1 .quick_icon img{
    transition:.35s cubic-bezier(.22,1,.36,1);
}

.sec1 .main_quick_list a:hover .quick_icon img{
    transform:scale(1.08);
}
/* ////////////////// */

.swiper-slide .banner_tit {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  color: #fff;
  text-align: left;
}
.swiper-slide .banner_tit .sub_tit {
  margin-bottom: 0.1rem;
}
.swiper-slide .banner_tit .main_tit {
  color: #fff;
  margin: 0;
  font-weight: 800;
}
.swiper-slide .pc_banner {
  display: block;
}
.swiper-slide .mo_banner {
  display: none;
}
/* .swiper-slide:nth-child(2) .banner_tit .main_tit span{color:#1bcfea;}
.swiper-slide:nth-child(3) .banner_tit .main_tit span{color:#fed802;}
.swiper-slide:nth-child(4) .banner_tit .main_tit span{color:#b776f3;} */

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec1 .swiper-container .swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: 7%;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transform: translateX(-50%);
}
.swiper-pagination-bullet {
  width: 4.7rem !important;
  /* height: 0.3rem !important; */
  background-color: #fff !important;
  border-radius: 0 !important;
  opacity: 1 !important;
  margin: 0 0.75rem !important;
}
.swiper-pagination-bullet-active {
  background-color: #eb7e6f !important;
}

.animated {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  animation-delay: 0.65s;
}

.bounceInDown.active {
  -webkit-animation-name: bounceInDown;
  -moz-animation-name: bounceInDown;
  -o-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-200px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-200px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-o-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-200px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-200px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
/* @-webkit-keyframes bounceInDown {
    0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    }

    60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    }

    80% {
    -webkit-transform: translateY(-5px);
    }

    100% {
    -webkit-transform: translateY(0);
    }
}*/

.bounceInRight.active {
  -webkit-animation-name: bounceInRight;
  -moz-animation-name: bounceInRight;
  -o-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(300px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-moz-keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(300px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-o-keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(300px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(300px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* InfraSolution 섹션 sec2 */
.sec2 {
  background: #faf9fa;
}

.notice_section {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.notice_inner {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  padding: 60px 80px;
  box-sizing: border-box;
}

.notice_heading {
  text-align: center;
  margin-bottom: 60px;
}

.notice_subtitle {
  display: block;
  margin-bottom: 10px;
  color: #159447;
  font-size: 20px;
  font-weight: 700;
}

.notice_title {
  margin: 0;
  font-size: 58px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
}

.notice_description {
  margin-top: 14px;
  font-size: 18px;
  color: #777;
}

.notice_slider {
  position: relative;
  display: flex;
  align-items: center;
}

.notice_list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.notice_card {
  overflow: hidden;
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: #fff;
}

.notice_card a {
  display: block;
  width: 100%;
  height: auto;
  color: inherit;
  text-decoration: none;
}

.notice_thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fff;
}

.notice_thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
}

.notice_card:hover .notice_thumbnail img {
  transform: scale(1.04);
}

.notice_card_title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;

  width: 100%;
  padding: 20px 24px;
  box-sizing: border-box;

  background: rgba(0, 0, 0, 0.68);
  color: #fff;

  font-size: 22px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.notice_arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #888;
  color: #fff;
  font-size: 32px;
  line-height: 0.3;
  cursor: pointer;
  transform: translateY(-50%);
}

.notice_arrow_prev {
  left: -62px;
  padding: 0 2px 2px 0;
}

.notice_arrow_next {
  right: -62px;
/* padding-right:2px */
padding: 0 0 2px 2px;
}

.notice_more_wrap {
  margin-top: 56px;
  text-align: center;
}

.notice_more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 150px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: #159447;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
/* ========================================
   Notice 반응형
======================================== */

/* 태블릿 */
@media screen and (max-width: 1200px) {
  .sec2 .notice_inner {
    max-width: 100%;
    padding: 70px 50px;
  }

  .sec2 .notice_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .sec2 .notice_arrow_prev {
    left: -48px;
        padding: 0 2px 2px 0;
  }

  .sec2 .notice_arrow_next {
    right: -48px;
    padding: 0 0 2px 2px;
  }
}

/* 모바일 */
@media screen and (max-width: 768px) {
  .sec2 {
    height: auto !important;
    min-height: auto !important;
    background: #f8f8f8 !important;
    background-image: none !important;
  }

  .sec2 .notice_section {
    display: block;
    width: 100%;
    height: auto;
    min-height: auto;
  }

  .sec2 .notice_inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 70px 20px;
  }

  /* 제목 영역 */
  .sec2 .notice_heading {
    margin-bottom: 36px;
  }

  .sec2 .notice_subtitle {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.4;
  }

  .sec2 .notice_title {
    color: #111 !important;
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: -1.5px;
    word-break: keep-all;
  }

  .sec2 .notice_description {
    max-width: 320px;
    margin: 12px auto 0;
    color: #777 !important;
    font-size: 15px;
    line-height: 1.7;
    word-break: keep-all;
  }

  /* 카드 영역 */
  .sec2 .notice_slider {
    display: block;
    width: 100%;
  }

  .sec2 .notice_list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
  }

  .sec2 .notice_card {
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    margin: 0 !important;
    overflow: hidden;
    border-radius: 14px !important;
    background: #fff;
  }

  .sec2 .notice_card a {
    display: block;
    width: 100%;
    height: auto;
  }

  .sec2 .notice_thumbnail {
    width: 100%;
    height: auto !important;
    aspect-ratio: 1 / 0.82;
    overflow: hidden;
    border-radius: 0;
  }

  .sec2 .notice_thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .sec2 .notice_card_title {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 13px 14px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff !important;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* 모바일에서는 화살표 제거 */
  .sec2 .notice_arrow {
    display: none !important;
  }

  /* 더보기 */
  .sec2 .notice_more_wrap {
    margin-top: 36px;
  }

  .sec2 .notice_more {
    min-width: 180px;
    height: 50px;
    padding: 0 26px;
    font-size: 15px;
  }
}

/* 작은 모바일 */
@media screen and (max-width: 480px) {
  .sec2 .notice_inner {
    padding: 60px 16px;
  }

  .sec2 .notice_title {
    font-size: 34px;
  }

  .sec2 .notice_list {
    gap: 10px;
  }

  .sec2 .notice_card_title {
    padding: 11px 10px;
    font-size: 13px;
  }
}



/* Consulting 섹션 sec3 */

/* 참여자 모집 섹션 sec3 */
.section.sec3 {
  background: #fff !important;
}

.section.sec3 .recruit_wrap {
  width: 100%;
  max-width: 1740px;
  height: 100%;
  margin: 0 auto;
  padding: 9rem 8rem 6rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 상단 제목 */
.section.sec3 .recruit_head {
  margin-bottom: 5.5rem;
  text-align: center;
}

.section.sec3 .recruit_eyebrow {
  display: block;
  margin-bottom: 1rem;
  color: #1677b9;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 700;
}

.section.sec3 .recruit_title {
  margin: 0;
  color: #111;
  font-size: 5.8rem;
  line-height: 1.2;
  font-weight: 700;
}

.section.sec3 .recruit_desc {
  margin: 1.6rem 0 0;
  color: #777;
  font-size: 1.7rem;
  line-height: 1.6;
  word-break: keep-all;
}

/* 카드 영역 */
.section.sec3 .recruit_slider_wrap {
  position: relative;
  width: 100%;
}
.section.sec3 .recruit_swiper {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.section.sec3 .recruit_list {
  display: flex;
  width: 100%;
  gap: 0;
}

.section.sec3 .recruit_card {
  flex-shrink: 0;
  width: auto;
  overflow: hidden;
  border-radius: 1.8rem;
  background: #fff;
}
.section.sec3 .recruit_card {
  overflow: hidden;
  border-radius: 1.8rem;
  background: #fff;
}

.section.sec3 .recruit_card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.section.sec3 .recruit_img {
  width: 100%;
  height: 29rem;
  overflow: hidden;
  background: #f3f3f3;
}

.section.sec3 .recruit_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12px;
  transition: transform 0.3s ease;
}

.section.sec3 .recruit_card:hover .recruit_img img {
  transform: scale(1.04);
}

/* 카드 하단 텍스트 */
.section.sec3 .recruit_info {
  min-height: 10rem;
  padding: 2rem 2.2rem;
  box-sizing: border-box;
  /* background: #136db7; */
  color: #fff;
}

.section.sec3 .recruit_info h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section.sec3 .recruit_info p {
  margin: 0.8rem 0 0;
  font-size: 1.4rem;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 좌우 화살표 */
.section.sec3 .recruit_arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #888;
  color: #fff;
  font-size: 32px;
  line-height: 0.3;
  cursor: pointer;
  transform: translateY(-50%);
}

.section.sec3 .recruit_arrow_prev {
  left: -6rem;
      padding: 0 2px 2px 0;
}

.section.sec3 .recruit_arrow_next {
  right: -6rem;
  padding: 0 0 2px 2px;
}

/* 더보기 버튼 */
.section.sec3 .recruit_more_wrap {
  margin-top: 5.5rem;
  text-align: center;
}

.section.sec3 .recruit_more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 14.5rem;
  height: 4.8rem;
  padding: 0 2.4rem;
  box-sizing: border-box;
  border-radius: 999px;
  background: #136db7;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.section.sec3 .recruit_more:hover {
  background: #0f72b3;
}

/* ========================================
   sec3 참여자 모집 반응형
======================================== */

/* 태블릿 */
@media screen and (max-width: 1200px) {
  .section.sec3 {
    height: auto !important;
    min-height: auto !important;
  }

  .section.sec3 .recruit_wrap {
    max-width: 100%;
    height: auto;
    padding: 8rem 6rem;
  }



  .section.sec3 .recruit_img {
    height: 30rem;
  }

  .section.sec3 .recruit_arrow_prev {
    left: -5rem;
    padding: 0 2px 2px 0;
  }

  .section.sec3 .recruit_arrow_next {
    right: -5rem;
    padding: 0 0 2px 2px;
  }
}

/* 모바일 */
@media screen and (max-width: 768px) {
  .section.sec3 {
    width: 100%;
    height: auto !important;
    min-height: auto !important;
    background: #fff;
  }

  .section.sec3 .recruit_wrap {
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    padding: 7rem 2rem;
    justify-content: flex-start;
  }

  /* 제목 */
  .section.sec3 .recruit_head {
    margin-bottom: 3.6rem;
  }

  .section.sec3 .recruit_eyebrow {
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
  }

  .section.sec3 .recruit_title {
    font-size: 3.8rem;
    line-height: 1.25;
    letter-spacing: -0.12rem;
  }

  .section.sec3 .recruit_desc {
    max-width: 32rem;
    margin: 1.2rem auto 0;
    font-size: 1.5rem;
    line-height: 1.7;
  }

  /* 카드 */
  .section.sec3 .recruit_slider_wrap {
    width: 100%;
  }

.section.sec3 .recruit_list {
  display: flex;
  width: 100%;
  gap: 0;
}

.section.sec3 .recruit_card {
  flex-shrink: 0;
  width: auto;
  min-width: 0;
  height: auto;
  border-radius: 1.4rem;
}
  .section.sec3 .recruit_card a {
    width: 100%;
    height: 100%;
  }

  .section.sec3 .recruit_img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.82;
  }

  .section.sec3 .recruit_info {
    min-height: 11rem;
    padding: 1.6rem 1.3rem;
  }

  .section.sec3 .recruit_info h3 {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    font-size: 1.5rem;
    line-height: 1.45;
    white-space: normal;
    word-break: keep-all;
    text-overflow: initial;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .section.sec3 .recruit_info p {
    display: -webkit-box;
    margin-top: 0.8rem;
    overflow: hidden;
    font-size: 1.3rem;
    line-height: 1.45;
    white-space: normal;
    word-break: keep-all;
    text-overflow: initial;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  /* 모바일 화살표 숨김 */
  .section.sec3 .recruit_arrow {
    display: none !important;
  }

  /* 더보기 */
  .section.sec3 .recruit_more_wrap {
    margin-top: 3.6rem;
  }

  .section.sec3 .recruit_more {
    min-width: 18rem;
    height: 5rem;
    padding: 0 2.6rem;
    font-size: 1.5rem;
  }
}

/* 작은 모바일 */
@media screen and (max-width: 480px) {
  .section.sec3 .recruit_wrap {
    padding: 6rem 1.6rem;
  }

  .section.sec3 .recruit_title {
    font-size: 3.4rem;
  }

  .section.sec3 .recruit_desc {
    max-width: 29rem;
    font-size: 1.4rem;
  }

  .section.sec3 .recruit_info {
    min-height: 10.5rem;
    padding: 1.4rem 1rem;
  }

  .section.sec3 .recruit_info h3 {
    font-size: 1.4rem;
  }

  .section.sec3 .recruit_info p {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1350px) {
  .section.sec3 .main_con_02 .main_con_txt {
    padding: 0 5rem;
  }
  .section.sec3 .main_con_02 ul.main_con02_box {
    margin: 0 auto;
    justify-content: center;
  }
  .section.sec3 .main_con_02 ul.main_con02_box li {
    margin: 0 3rem 3rem 0rem;
  }
}

@media screen and (max-width: 1280px) {
  .section.sec2 .main_con_01 .main_con_right {
    padding: 10rem 5rem;
  }
  .section.sec2 .main_con_01 .main_con_right ul.main_con01_box li {
    padding: 0.5rem 1rem 0.5rem 4rem;
  }
  .section.sec2
    .main_con_01
    .main_con_right
    ul.main_con01_box
    li.main_con01_bg {
    background-size: 15% auto;
  }
  .section.sec2 .main_con_01 .main_con_right ul.main_con01_box li a {
    line-height: 2.1rem;
  }

  .section.sec3 .main_con_02 {
    padding: 10rem 0;
  }
  /* .section.sec3 .main_con_02 ul.main_con02_box{width: 72%;} */
  .section.sec3 .main_con_02 ul.main_con02_box li {
    width: 20rem;
    height: 20rem;
  }
  .section.sec3 .main_con_02 ul.main_con02_box li.main_con01_bg {
    background-position: center 30%;
  }
  .section.sec3 .main_con_02 ul.main_con02_box li a {
    padding-top: 11rem;
  }

  .section.sec3 .main_con_02 .main_con_txt p .pc_br {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .section.sec3 .main_con_02 ul.main_con02_box {
    width: 70%;
  }
  /* .section.sec3 .main_con_02 ul.main_con02_box li{width: 20rem; height: 20rem;}
    .section.sec3 .main_con_02 ul.main_con02_box li.main_con01_bg{background-position: center 30%;}
    .section.sec3 .main_con_02 ul.main_con02_box li a{padding-top: 11rem;} */
}
@media screen and (min-width: 769px) and (max-width: 820px) {
  .section.sec2 .main_con_01 .main_con_right ul.main_con01_box li a.f_26px {
    font-size: 1.9rem;
  }
}

@media screen and (max-width: 768px) {
  .swiper-slide img {
    /* height: 60.3rem;  */
    object-fit: cover;
  }
  .swiper-slide .pc_banner {
    display: none;
  }
  .swiper-slide .mo_banner {
    display: block;
  }
  .swiper-slide .banner_tit {
    width: 100%;
    left: 50%;
    text-align: center;
  }

  .section.sec2 {
    background: url(/images/main_sec2_bg_m.jpg) no-repeat center;
    background-size: cover;
  }
  .section.sec2 .main_con_01 .main_con_left {
    display: none;
  }
  .section.sec2 .main_con_01 .main_con_right {
    width: 100%;
    padding: 5rem 0 4rem 0;
    margin: 0 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
  }
  .section.sec2 .main_con_01 .main_con_right .main_con_txt {
    text-align: center;
  }
  .section.sec2 .main_con_01 .main_con_right .main_con_txt p {
    font-size: 1.4rem;
    margin: 2.5rem 0;
  }
  .section.sec2 .main_con_01 .main_con_right ul.main_con01_box li {
    height: 4rem;
    padding: 0.8rem 0.8rem;
    background-color: rgba(255, 255, 255, 0.85);
  }
  .section.sec2 .main_con_01 .main_con_right ul.main_con01_box li a {
    line-height: 1.3rem;
  }
  .section.sec2
    .main_con_01
    .main_con_right
    ul.main_con01_box
    li.main_con01_bg {
    background-size: auto 1.8rem;
  }

  .section.sec3 .main_con_02 {
    padding: 0;
  }
  .section.sec3 .main_con_02 .main_con_txt {
    margin: 0 1rem;
    padding: 0 3rem;
  }
  .section.sec3 .main_con_02 .main_con_txt p {
    font-size: 1.4rem;
    margin: 2.5rem 0;
    word-break: keep-all;
  }
  .section.sec3 .main_con_02 ul.main_con02_box {
    width: 34rem;
    margin: 0 auto;
  }
  .section.sec3 .main_con_02 ul.main_con02_box li {
    width: 10.3rem;
    height: 10.3rem;
    margin: 0 1.2rem 1.2rem 0;
    padding: 0.5rem;
  }
  /* .section.sec3 .main_con_02 ul.main_con02_box li:nth-child(3){margin-right: 0;} */
  .section.sec3 .main_con_02 ul.main_con02_box li.main_con01_bg {
    background-size: auto 2.7rem;
    background-position: center 25%;
  }
  .section.sec3 .main_con_02 ul.main_con02_box li a {
    line-height: 2rem;
    padding-top: 5rem;
  }

  /* .section:last-child{margin-bottom: 26.3rem;} */
}
@media screen and (max-width: 345px) {
  .section.sec3 .main_con_02 ul.main_con02_box {
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 320px) {
  /* .section.sec3 .main_con_02 ul.main_con02_box{width: 32rem; padding: 0 0 0 5rem;} */
  .section.sec3 .main_con_02 ul.main_con02_box li:nth-child(3) {
    margin: 0 1.2rem 1.2rem 0;
  }
}

/* ====================================
   세로 높이가 낮은 PC - section2 대응
==================================== */

@media screen and (max-height: 900px) and (min-width: 769px) {
  .section.sec2 .notice_inner {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  .section.sec2 .notice_heading {
    margin-bottom: 3.5rem;
  }

  .section.sec2 .notice_subtitle {
    font-size: 1.5rem;
  }

  .section.sec2 .notice_title {
    margin-top: 0.5rem;
    font-size: 4.5rem;
    line-height: 1.1;
  }

  .section.sec2 .notice_description {
    margin-top: 1rem;
    font-size: 1.4rem;
  }

  .section.sec2 .notice_card {
    height: 340px;
  }

  .section.sec2 .notice_card_title {
    padding: 1.6rem 2rem;
    font-size: 1.8rem;
  }

  .section.sec2 .notice_more_wrap {
    margin-top: 3rem;
  }
}
@media screen and (max-height: 750px) and (min-width: 769px) {
  .section.sec2 .notice_inner {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .section.sec2 .notice_heading {
    margin-bottom: 2rem;
  }

  .section.sec2 .notice_subtitle {
    font-size: 1.3rem;
  }

  .section.sec2 .notice_title {
    margin-top: 0.3rem;
    font-size: 3.8rem;
  }

  .section.sec2 .notice_description {
    margin-top: 0.7rem;
    font-size: 1.25rem;
  }

  .section.sec2 .notice_card {
    height: 280px;
  }

  .section.sec2 .notice_card_title {
    padding: 1.3rem 1.6rem;
    font-size: 1.6rem;
  }

  .section.sec2 .notice_more_wrap {
    margin-top: 1.8rem;
  }

  .section.sec2 .notice_more {
    min-width: 150px;
    padding: 1.2rem 2rem;
  }
}
/* ====================================
   세로 높이가 낮은 PC - section3 대응
==================================== */

@media screen and (max-height: 900px) and (min-width: 769px) {
  .section.sec3 .recruit_wrap {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }

  .section.sec3 .recruit_head {
    margin-bottom: 2.5rem;
  }

  .section.sec3 .recruit_card {
    height: 360px;
  }

  .section.sec3 .recruit_img {
    height: calc(360px - 10rem);
  }

  .section.sec3 .recruit_info {
    min-height: 10rem;
    padding: 1.8rem 2rem;
  }

  .section.sec3 .recruit_more_wrap {
    margin-top: 2.5rem;
  }
}
@media screen and (max-height: 750px) and (min-width: 769px) {
  .section.sec3 .recruit_wrap {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }

  .section.sec3 .recruit_head {
    margin-bottom: 1.8rem;
  }

  .section.sec3 .recruit_title {
    font-size: 4rem;
    line-height: 1.1;
  }

  .section.sec3 .recruit_desc {
    margin-top: 0.7rem;
  }

  .section.sec3 .recruit_card {
    height: 310px;
  }

  .section.sec3 .recruit_img {
    height: calc(310px - 8.5rem);
  }

  .section.sec3 .recruit_info {
    min-height: 8.5rem;
    padding: 1.3rem 1.7rem;
  }

  .section.sec3 .recruit_info h3 {
    font-size: 1.7rem;
  }

  .section.sec3 .recruit_info p {
    margin-top: 0.6rem;
    font-size: 1.2rem;
  }

  .section.sec3 .recruit_more_wrap {
    margin-top: 1.5rem;
  }
}


/* 모바일 메인배너 강제 전환 */
@media screen and (max-width: 768px) {
  .sec1 .swiper-slide > img.pc_banner {
    display: none !important;
  }

  .sec1 .swiper-slide > img.mo_banner {
    display: block !important;
    padding-top: 36px;
    
    }
     .sec1 .swiper-pagination {
    /* position: absolute !important; */
    /* left: 50% !important; */
    /* right: auto !important; */
    /* bottom: 24px !important; */
    /* width: auto !important; */
    /* transform: translateX(-50%) !important; */

    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    gap: 10px;
     }
      .main_quick_list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
    padding: 0 !important;
    box-sizing: border-box;
    margin:0;
  }

  .main_quick_list li {
    width: 100% !important;
    margin: 0 !important;
    min-width:0;
  }

  .main_quick_list li a {
    width: 100%;
    height: 100%;
  }
}

.notice_swiper,
.recruit_swiper {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}


/* ========================================
   sec3 참여자 모집 모바일 2열 고정 배치
======================================== */
@media screen and (max-width: 768px) {
  .section.sec3 .recruit_swiper {
    width: 100%;
    overflow: visible;
  }

  .section.sec3 .recruit_list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
    width: 100%;
    transform: none !important;
  }

  .section.sec3 .recruit_card {
    width: 100% !important;
    min-width: 0;
    height: auto;
    margin: 0 !important;
    border-radius: 1.4rem;
  }

  .section.sec3 .recruit_card a {
    display: block;
    width: 100%;
    height: 100%;
  }

  .section.sec3 .recruit_img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.15;
  }

  .section.sec3 .recruit_info {
    min-height: 9.5rem;
    padding: 1.5rem 1.2rem;
  }

  .section.sec3 .recruit_info h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.45;
    white-space: normal;
    word-break: keep-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .section.sec3 .recruit_info p {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 0.7rem;
    font-size: 1.3rem;
    line-height: 1.45;
    white-space: normal;
    word-break: keep-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .section.sec3 .recruit_arrow {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  .section.sec3 .recruit_list {
    gap: 1rem;
  }

  .section.sec3 .recruit_info {
    min-height: 8.8rem;
    padding: 1.3rem 1rem;
  }

  .section.sec3 .recruit_info h3 {
    font-size: 1.4rem;
  }

  .section.sec3 .recruit_info p {
    font-size: 1.2rem;
  }
}


@media screen and (max-width: 768px) {
  .section.sec1 {
    padding-top: 0 !important;
  }

  .section.sec1 .swiper-container,
  .section.sec1 .swiper-wrapper,
  .section.sec1 .swiper-slide {
    height: auto !important;
  }

  .section.sec1 .mo_banner {
    display: block !important;
    width: 100%;
    height: auto !important;
    object-fit: initial;
  }
  .section.sec1 .swiper-slide .mo_banner {
  height: auto !important;
  object-fit: initial !important;
}
}
.recruit_info {
  position: relative;
  z-index: 2;
  background: #1d73b9;
}

.recruit_info::before {
  content: "";
  position: absolute;
  left: 0;
  top: -48px;
  width: 100%;
  height: 50px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 60' preserveAspectRatio='none'%3E%3Cpath d='M0 22 C55 52 115 54 175 28 C235 2 305 5 400 30 L400 60 L0 60 Z' fill='%231d73b9'/%3E%3C/svg%3E")
    center bottom / 100% 100% no-repeat;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .sec1 .main_quick_list{
    gap:5px;
    padding:10px !important;
  }
}

/* =========================
   모바일 메인배너 높이 초기화
========================= */
/* @media screen and (max-width: 768px) {

  .sec1,
  .sec1 .fp-tableCell,
  .sec1 .swiper-container,
  .sec1 .swiper-wrapper,
  .sec1 .swiper-slide {
    height: auto !important;
    min-height: 0 !important;
  }

  .sec1 .swiper-slide {
    position: relative;
    background: none !important;
  }

  .sec1 .pc_banner {
    display: none !important;
  }

  .sec1 .mo_banner {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    object-fit: initial !important;
  }

  .sec1 .swiper-pagination {
    position: absolute !important;
    left: 0 !important;
    bottom: 16px !important;
    width: 100% !important;
    z-index: 10;
  }
} */

/* =========================
   PC 퀵메뉴 위치 / 호버 확대
========================= */
@media screen and (min-width: 769px) {

  .sec1 .main_quick_list {
    transform: translateY(26px);
  }

  .sec1 .main_quick_list a:hover {
    transform: translateY(-10px);
  }


}


/* ========================================
   모바일 sec1 슬라이드 비율 유지
======================================== */
@media screen and (max-width: 768px) {

  /* fullpage 내부의 세로 flex 계산 해제 */
  .section.sec1 .fp-tableCell {
    display: block !important;
    height: auto !important;
  }

  /* 슬라이드가 퀵메뉴 때문에 줄어들지 않도록 설정 */
  .section.sec1 .swiper-container {
    flex: none !important;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
  }

  .section.sec1 .swiper-wrapper,
  .section.sec1 .swiper-slide {
    width: 100%;
    height: auto !important;
  }

  /* 모바일 배너 원본 비율 유지 */
  .section.sec1 .swiper-slide > img.mo_banner {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    padding-top: 50px;
    object-fit: contain !important;
  }

  /* 퀵메뉴가 슬라이드 높이를 차지하지 않게 함 */
  .section.sec1 .main_quick_menu {
    flex: none !important;
    width: 100%;
    height: auto !important;
  }
}