@charset 'utf-8';
@import url('./common.css');


:root {
    --main-title-size: 2.5rem;
    --main-title-size-1440: 2.1rem;
    --main-title-size-768: 1.7rem;
    --main-title-size-550: 1.3rem;
    --sub-title-size: 1.4rem;
    --sub-title-size-1440: 1.1rem;
    --sub-title-size-768: 0.9rem;
    --sub-title-size-550: 0.75rem;
    --main-gradation: linear-gradient(90deg, #36EAFF, #256EF4)
}

html, body {  position: relative;  height: 100%; }
.mainBody::-webkit-scrollbar {  display: none;  }
.mainSwiper {  width: 100%;  height: 100%; position: relative; }
.mainSwiper section.swiper-slide:not(.footerWrap) { height: 100vh; }
.mainSwiper .footerWrap {height: fit-content;   display: block; }

.mainSwiper .swiper-pagination {right: unset; left: 1vw; display: flex; flex-flow: column wrap; align-items: center; justify-content: center; gap: 1rem;}
.mainSwiper .swiper-pagination .swiper-pagination-bullet {width: 10px; height: 10px; margin: 0 auto; background:transparent; border: 1px solid #256EF4; box-sizing: border-box; opacity: 1;}
.mainSwiper .swiper-pagination .swiper-pagination-bullet:last-child {display: none;}
.mainSwiper .swiper-pagination .swiper-pagination-bullet-active {background: #256EF4; position: relative;}
.mainSwiper .swiper-pagination .swiper-pagination-bullet-active::before {width: 22px; height: 22px; border: 1px solid #256EF4; content: ''; display: inline-block; position: absolute;    border-radius: 50%;  top: 50%;  left: 50%;  bottom: unset;   right: unset;  transform: translate(-50%, -50%) scale(0.5);  animation: centerScale 1.8s ease-in-out infinite;}
@keyframes centerScale {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.5);
  }
}


/* section1 - main visual */
.mainVisualWrap {width: 100%; height: 100%; position: relative; overflow: hidden;}
.mainVisualWrap .mainVisualSwiper {width: 100%; height: 100%;}
.mainVisualWrap .swiper-wrapper {width: 100%; height: 100%;}
.mainVisualWrap .swiper-slide {width: 100%; height: 100%; display: flex; flex-flow: column wrap; align-items: flex-start; justify-content: flex-end; gap: 3rem; }
.mainVisualWrap .swiper-slide::before {content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.4); z-index: 1;}
.mainVisualWrap .swiper-slide.ver1 {background: none; position: relative;}
.mainVisualWrap .swiper-slide .bg-video {  position: absolute;  top: 0;  left: 0;  width: 100%;   height: 100%;  object-fit: cover;  z-index: 0;}
.mainVisualWrap .swiper-slide .sloganWrap { position: relative;  z-index: 2;}
/* .mainVisualWrap .swiper-slide.ver1 {background: url('../img/mainVisual01.jpg') center center / cover no-repeat;} */
.mainVisualWrap .swiper-slide.ver2 {background: url('../img/mainVisual02.jpg') center center / cover no-repeat;}
.mainVisualWrap .swiper-slide.ver3 {background: url('../img/mainVisual03.jpg') center center / cover no-repeat;}
.mainVisualWrap .swiper-slide .sloganWrap {width: 100%; max-width: 1440px; margin: 0 auto; position: relative; z-index: 2; font-family: 'Paperlogy'; padding-bottom: 20vh; color: #fff;}
.mainVisualWrap .swiper-slide .sloganWrap .sloganSubTitle {font-weight: 500; margin-bottom: 1rem;}
.mainVisualWrap .swiper-slide .sloganWrap .sloganTitle {font-size: 3rem; font-weight: 700; line-height: 1.2; margin-bottom: 1rem;}
/* main text up */
.mainVisualWrap .swiper-slide .sloganWrap .sloganSubTitle,
.mainVisualWrap .swiper-slide .sloganWrap .sloganTitle { opacity: 0; transform: translateY(20px); }
.mainVisualWrap .swiper-slide.is-anim .sloganWrap .sloganSubTitle { animation: riseFade 1.2s ease forwards; animation-delay:0.1s; }
.mainVisualWrap .swiper-slide.is-anim .sloganWrap .sloganTitle { animation: riseFade 2.4s ease forwards; animation-delay:0.6s; }
@keyframes riseFade { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .mainVisualWrap .swiper-slide .sloganWrap .sloganSubTitle,
  .mainVisualWrap .swiper-slide .sloganWrap .sloganTitle { opacity: 1; transform: none; animation: none !important; }
}
.mainVisualWrap .pageWrap {position: fixed; left: calc( ( 100% - 1440px ) / 2 ); z-index: 10; bottom:10vh; display: flex; flex-flow: row nowrap; align-items: center; justify-content: flex-start; gap: 2rem; width: fit-content;}
.mainVisualWrap .pageWrap .timer {  position: relative;   width: 60px;  height: 60px;  display: flex; align-items: center;  justify-content: center;   cursor: pointer; }
.mainVisualWrap .pageWrap .timer .btn { position: absolute;  z-index: 2; cursor: pointer;  color: #fff;  height: 14px;    font-size: 14px;   line-height: 1;  display: flex;  align-items: center; justify-content: center;  outline: none;  top: 50%;  bottom: unset;  left: 50%; right: unset; transform: translate(-3%, -50%); }
.mainVisualWrap .pageWrap .progress-svg {  position: absolute;top: 0;  left: 0;   transform: rotate(-90deg);}
.mainVisualWrap .pageWrap .progress-bg {  fill: none;  stroke: rgba(255, 255, 255, 0.3);   stroke-width: 1.5; }
.mainVisualWrap .pageWrap .progress-bar { fill: none;  stroke: #256EF4;   stroke-width: 1.5;  stroke-dasharray: 175.9;  stroke-dashoffset: 175.9;  transition: stroke-dashoffset 0.1s linear;}
.mainVisualWrap .pageWrap .visualPager {   display: flex;   gap: 1.5rem;}
.mainVisualWrap .pageWrap .visualPager .swiper-pagination-bullet {  background: none ;  width: auto;   height: auto ;   opacity: 1;   margin: 0; }
.mainVisualWrap .pageWrap .visualPager .swiper-pagination-bullet i { font-style: normal;  font-size: 1.1rem;  font-weight: 500;  color: rgba(255, 255, 255, 0.5);   transition: color 0.3s;  cursor: pointer;}
.mainVisualWrap .pageWrap .visualPager .swiper-pagination-bullet-active i {  color: #fff; }

/* section2 */
.section2 {width: 100%; margin: 0 auto; display: flex; flex-flow: column nowrap; justify-content: center; gap: 3rem;}
.section2 .secTitle {font-family: 'Paperlogy'; font-size: var(--main-title-size); color: var(--main-blue); position: relative; z-index: 1; font-weight: 700; line-height: 1.2;}
.section2 .topArea {width: 100%; max-width: 1440px; margin: 0 auto; text-align: center; display: flex;  flex-flow: column wrap;  justify-content: center; padding-top: 80px; flex: 1;}
.section2 .topArea .textWrap {margin-bottom: 2rem;}
.section2 .topArea .textWrap .riseTitle {}
.section2 .topArea .textWrap .riseSubTitle {color: #5B5B5B; font-weight: 500; margin-bottom: 1rem;}
.section2 .topArea .textWrap .riseSubTitle .accent {color: #11316E; font-weight: 700;}
.section2 .topArea .textWrap .riseExplain {color: #5B5B5B; line-height: 1.3; font-size: 1rem;font-weight: 500;}
.section2 .topArea .boxWrap {width: 100%; display: flex; flex-flow: row wrap; align-items: stretch; justify-content: space-between; gap: 1.5rem; }
.section2 .topArea .boxWrap .box {width: calc( ( 100% - 4.5rem ) / 4 ); border-radius: 1rem; overflow: hidden; display: flex; flex-flow: column nowrap; align-items: flex-start; justify-content: space-between; background: url('../img/section2-bg01.jpg') left 0% center / cover no-repeat; padding: 2rem; position: relative;    aspect-ratio: 1;}
.section2 .topArea .boxWrap .box::before {content: ''; background-color: rgba(0,0,0,0.5); display: flex; width: 100%; height: 100%; position: absolute; top: 0; left: 0;}
.section2 .topArea .boxWrap .box.no2 {background-position: left 25% center;}
.section2 .topArea .boxWrap .box.no3 {background-position: left 50% center;}
.section2 .topArea .boxWrap .box.no4 {background-position: left 75% center;}
.section2 .topArea .boxWrap .box .textArea {width: 100%; text-align: right; color: #fff; margin-bottom: 2rem; position: relative; z-index: 1;}
.section2 .topArea .boxWrap .box .textArea .big {font-weight: 600; font-size: 1.8rem;}
.section2 .topArea .boxWrap .box .textArea .big .accent {font-size: 1.5em; font-weight: 800; font-family: 'Paperlogy'; display: inline-block; margin: 0 0.3rem;}
.section2 .topArea .boxWrap .box .textArea .small {font-size: 1.3rem;}
.section2 .topArea .boxWrap .box .imgArea {position: relative; z-index: 1;}
.section2 .topArea .boxWrap .box .imgArea img {max-height: 44px;}

.section2 .botArea {position: relative; height: 25vh;}
.section2 .botArea::before {content: ''; width: 100vw; left: 0; background: url('../img/section2-bg02.jpg') left bottom / cover no-repeat; display: block;position: absolute;  height: 100%; z-index: 0;}
.section2 .botArea .maxWidth {width: 100%; max-width: 1440px; margin: 0 auto; display: flex; flex-flow: row wrap; align-items: center; justify-content: space-between; gap: 10rem;     height: 100%;}
.section2 .botArea .title {width: auto;}
.section2 .botArea .directWrap {flex: 1; position: relative; z-index: 1; grid-template-columns: repeat(2, 1fr); display: grid
  ; gap: 1.5rem;}
.section2 .botArea .directWrap .goBox {width: 100%; display: flex; flex-flow: row nowrap; align-items: center; justify-content: space-between; border-bottom: 1px solid #ddd; padding-bottom: 0.5rem;}
.section2 .botArea .directWrap .goBox:hover {color: var(--main-blue);}
.section2 .botArea .directWrap .goBox .leftArea {display: flex; flex-flow: row nowrap; align-items: center; justify-content: flex-start; gap: 0.5rem; font-size: 1.3rem;}
.section2 .botArea .directWrap .goBox .leftArea .icon {display: inline-flex; align-items: center;}
.section2 .botArea .directWrap .goBox .leftArea .goTitle { font-weight: 700; font-size: 1em;}
.section2 .botArea .directWrap .goBox .leftArea .goSub {font-size: 0.8em;}
.section2 .botArea .directWrap .goBox .rightArea {font-size: 1.4em;}
.section2 .botArea .directWrap .goBox:hover .rightArea {animation: arrowMove 0.8s ease-in-out infinite;}
@keyframes arrowMove {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}

/* section3 */
.section3 {width: 100%; margin: 0 auto; max-width: 1440px; display: flex; flex-flow: column nowrap; align-items: center; justify-content: center; padding-top: 60px;}
.section3 .secTitle {font-family: 'Paperlogy'; font-size: var(--main-title-size); color: var(--main-blue); position: relative; z-index: 1; font-weight: 800; line-height: 1.2;background: linear-gradient(to right, #0084FF, #25F0FF); position: relative;  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; width: fit-content;}
.section3 .secTitleArea {font-family: 'Paperlogy'; width: 100%; display: flex; flex-flow: row wrap; align-items: flex-end; justify-content: space-between; padding-bottom: 1rem; border-bottom: 1px solid #ddd; margin-bottom: 2rem;}
.section3 .secTitleArea .subText {font-weight: 500; color: #5B5B5B; font-size: 1.2rem;}
.section3 .secTitleArea .moreBtn {font-family: 'Pretendard'; color: #8a8a8a;}
.section3 .secTitleArea .moreBtn:hover {color: var(--main-blue);}
.section3 .secTitleArea .moreBtn .icon {transition: all 0.3s ease-in-out; display: inline-block;}
.section3 .secTitleArea .moreBtn:hover .icon {transform: rotate(180deg);}
.section3 .contWrap {width: 100%;display: flex; flex-flow: row nowrap; align-items: center; justify-content: flex-start; gap: 4rem;}
.section3 .contWrap .leftArea {width: auto; position: relative; z-index: 1; width: 375px; height: 556.53px; background: url('../img/mainMap.svg') center center / cover no-repeat;}
.section3 .contWrap .leftArea .mapTextWrap {position: relative; width: 100%; height: 100%;}
.section3 .contWrap .leftArea .mapTextWrap .tab-btn {position: absolute; font-size: 0.9rem; font-weight: 500; color: #002e6b; cursor: pointer;width: 50px; aspect-ratio: 1; border-radius: 50%; font-size: 0.9rem;}
.section3 .contWrap .leftArea .mapTextWrap .tab-btn.active { background-color: var(--main-blue); color: #fff;  font-weight: bold;   z-index: 2; font-size: 1rem;}
.section3 .contWrap .tab-btn.active::before {content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: -1; width: 80px; aspect-ratio: 1; border-radius: 50%;    display: inline-block;  background-color: rgb(145 183 255 / 30%);  animation: centerScale2 1.8s ease-in-out infinite;}
@keyframes centerScale2 {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.6);
  }
}
.section3 .contWrap .tab-content {  display: none; width: 100%; flex-flow: column wrap; align-items: stretch; justify-content: space-between; gap: 1.5rem;}
.section3 .contWrap .tab-content.active {  display: flex;  animation: fadeIn 1s ease-in-out;  }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}
.section3 .contWrap .rightArea {flex: 1; height: 100%; }
/* 서울 */
.section3 .contWrap .tab-btn[data-city="SE"] { top: 94px; left: 66px; }
/* 부산 */
.section3 .contWrap .tab-btn[data-city="BS"] { bottom: 164px; right: 70px; }
/* 대구 */
.section3 .contWrap .tab-btn[data-city="DG"] { bottom: 228px; right: 121px; }
/* 인천 */
.section3 .contWrap .tab-btn[data-city="IC"] { top: 106px; left: 28px; }
/* 광주 */
.section3 .contWrap .tab-btn[data-city="GJ"] { bottom: 152px; left: 51px; }
/* 대전 */
.section3 .contWrap .tab-btn[data-city="DJ"] { top: 222px; left: 103px; }
/* 울산 */
.section3 .contWrap .tab-btn[data-city="US"] { bottom: 199px; right: 58px; }
/* 세종 */
.section3 .contWrap .tab-btn[data-city="SJ"] { top: 194px; left: 85px; }
/* 경기 */
.section3 .contWrap .tab-btn[data-city="GG"] { top: 120px; left: 105px; }
/* 강원 */
.section3 .contWrap .tab-btn[data-city="GW"] { top: 68px; right: 149px; }
/* 충북 */
.section3 .contWrap .tab-btn[data-city="CB"] { top: 167px; left: 129px; }
/* 충남 */
.section3 .contWrap .tab-btn[data-city="CN"] { top: 214px; left: 48px; }
/* 전북 */
.section3 .contWrap .tab-btn[data-city="JB"] { bottom: 214px; left: 77px; }
/* 전남 */
.section3 .contWrap .tab-btn[data-city="JN"] { bottom: 123px; left: 83px; }
/* 경북 */
.section3 .contWrap .tab-btn[data-city="GB"] { bottom: 298px; right: 108px; }
/* 경남 */
.section3 .contWrap .tab-btn[data-city="GN"] { bottom: 177px; right: 138px; }
/* 제주 */
.section3 .contWrap .tab-btn[data-city="JJ"] { bottom: -5px; left: 6px; }

.section3 .contWrap .tab-content .nameWrap {width: 100%; border-radius: 1rem; color: #fff; background: linear-gradient(45deg, #256EF4, #00DEDE); position: relative; font-size: 1.3rem; text-align: right; padding: 1.5rem;}
.section3 .contWrap .tab-content .nameWrap .title {font-size: 1.5em; display: inline-flex; align-items: center; justify-content: flex-end; font-weight: 700;}
.section3 .contWrap .tab-content .nameWrap .title .icon {color: #DEDEDE; font-size: 0.5em; display: inline-block; margin-left: 5px;}
.section3 .contWrap .tab-content .nameWrap .subText {font-size: 0.9em; font-weight: 500;}
.section3 .contWrap .tab-content .nameWrap .img {position: absolute; bottom: 0; left: 3%;}
.section3 .contWrap .tab-content .goalWrap {width: 100%; display: flex; flex-flow: row wrap; align-items: stretch; justify-content: space-between; gap: 1.5rem;}
.section3 .contWrap .tab-content .goalWrap .goalBox {flex: 1; border-radius: 1rem; border: 1px solid 
  var(--main-blue); background-color: #fff; padding: 1rem; text-align: center; display: flex; flex-flow: column wrap; align-items: center; justify-content: center; ;}
.section3 .contWrap .tab-content .goalWrap .goalBox .icon { }
.section3 .contWrap .tab-content .goalWrap .goalBox .goalTitle {font-weight: 700; color: var(--main-blue); font-size: 1.1rem; word-break: keep-all;}
.section3 .contWrap .tab-content .botWrap {width: 100%; display: flex; flex-flow: row wrap; align-items: stretch; justify-content: space-between; gap: 1.5rem;}
.section3 .contWrap .tab-content .botWrap .figureWrap {flex: 1; border-radius: 1rem;font-size: 1rem; color: #595757; padding: 1rem; display: grid; grid-template-columns: repeat(2, 1fr);    gap: 2rem; border: 1px solid var(--main-blue); background-color: #fff;}
.section3 .contWrap .tab-content .botWrap .figureWrap .title {display: inline-flex; align-items: center; justify-content: flex-start; gap: 0.5rem;}
.section3 .contWrap .tab-content .botWrap .figureWrap .title .icon {}
.section3 .contWrap .tab-content .botWrap .figureWrap .text {text-align: right; width: 100%;}
.section3 .contWrap .tab-content .botWrap .figureWrap .text .accent {font-size: 2em; font-weight: 700; color: var(--main-blue);     line-height: 0.9;}
.section3 .contWrap .tab-content .botWrap .figureWrap .figureBox { position: relative; font-weight: 500;    display: flex;  flex-flow: column wrap;   align-items: stretch;  justify-content: space-between;}
.section3 .contWrap .tab-content .botWrap .figureWrap .figureBox:nth-child(odd)::after {content: ''; width: 1px; height: 70%; position: absolute; top: 50%; right: -1.1rem; transform: translate(-50%,-50%); display: inline-block; background-color: #d1d1d1;}
.section3 .contWrap .tab-content .botWrap .figureWrap .figureBox:last-child::after, .section3 .contWrap .tab-content .botWrap .figureWrap .figureBox:nth-child(3)::before {content: ''; width: 90%; height:1px; position: absolute; top: -1.1rem; right: 50%; transform: translate(50%,50%); display: inline-block; background-color: #d1d1d1;}
.section3 .contWrap .tab-content .botWrap .directBox {width: 30%;border-radius: 1rem; background: url('../img/section3-figureBg01.png') bottom right / cover no-repeat; padding: 1rem 1rem 4rem;border: 1px solid 
  var(--main-blue); background-color: #fff;}
.section3 .contWrap .tab-content .botWrap .directBox:hover {background-color: #eef5ff;}
.section3 .contWrap .tab-content .botWrap .directBox .title {background: linear-gradient(to right, #0084FF, #25F0FF); position: relative;  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; line-height: 1.5; font-size: 1.4rem;}
.section3 .contWrap .tab-content .botWrap .directBox .text {font-size: 0.9rem; color: #595757; margin-bottom: 1rem;}
.section3 .contWrap .tab-content .botWrap .directBox .btn {color: var(--main-blue); display: inline-flex; align-items: center; font-weight: 500;}
.section3 .contWrap .tab-content .botWrap .directBox .btn .icon {font-size: 0.6rem; display: inline-block; margin-left: 5px;}


/* section4 */
.section4 {width: 100%; margin: 0 auto; display: flex; flex-flow: column wrap; align-items: center; justify-content: center; padding-top: 60px; background: url('../img/section4-bg01.jpg') center center / cover no-repeat;}
.section4 .maxWidth {width: 100%; margin: 0 auto; max-width: 1440px;}
.section4 .secTitle {font-family: 'Paperlogy'; font-size: var(--main-title-size); color: var(--main-blue); position: relative; z-index: 1; font-weight: 800; line-height: 1.2; }
.section4 .secTitleArea {font-family: 'Paperlogy'; width: 100%; display: flex; flex-flow: row wrap; align-items: flex-end; justify-content: space-between; padding-bottom: 1rem; border-bottom: 1px solid #ddd; margin-bottom: 2rem;}
.section4 .secTitleArea .subText {font-weight: 500; color: #5B5B5B; font-size: 1.2rem;}
.section4 .secTitleArea .moreBtn {font-family: 'Pretendard'; color: #8a8a8a;}
.section4 .secTitleArea .moreBtn:hover {color: var(--main-blue);}
.section4 .secTitleArea .moreBtn .icon {transition: all 0.3s ease-in-out; display: inline-block;}
.section4 .secTitleArea .moreBtn:hover .icon {transform: rotate(180deg);}
.section4 .contWrap {width: 100%; display: flex; flex-flow: row wrap; align-items: stretch; justify-content: space-between; gap: 2rem; height: 70vh;}
.section4 .badge {display: inline-flex; align-items: center; justify-content: center; line-height: 0.9; padding: 6px 12px; border-radius: 8px; color: #fff; font-weight: 600; font-size: 0.8rem;}
.section4 .badge.color01 {background-color: #7fdbad;}
.section4 .badge.color02 {background-color: #1a63ff;}
.section4 .badge.color03 {background-color: #ff9696;}
.section4 .badge.color04 {background-color: #ffb157;}
.section4 .badge.color05 {background-color: #6aaaff;}
.section4 .badge.color06 {background-color: #b8a8ff;}
.section4 .badge.color07 {background-color: #8de6e6;}


.section4 .contWrap .leftArea {width: 50%; display: flex; flex-flow: column wrap; align-items: stretch; justify-content: space-between; gap: 1rem;     height: inherit;}
.section4 .contWrap .leftArea .imgArea {width: 100%; aspect-ratio: 16/9; border-radius: 1rem; overflow: hidden; position: relative;    flex: 1;}
.section4 .contWrap .leftArea .imgArea .badge {position: absolute; top: 14px; left: 14px;}
.section4 .contWrap .leftArea .imgArea img {object-fit: cover; object-position: center; display: flex; width: 100%; height: 100%; transition: all 0.3s ease-in-out;}
.section4 .contWrap .leftArea:hover .imgArea img {transform: scale(1.1);}
.section4 .contWrap .leftArea .title {font-size: 1.5rem; color: #333; line-height: 1.4; font-weight: 700;display: -webkit-box;  -webkit-line-clamp: 2;  -webkit-box-orient: vertical;  overflow: hidden;  text-overflow: ellipsis;}
.section4 .contWrap .leftArea .textArea {font-size: 1rem; color: #686868;display: -webkit-box;  -webkit-line-clamp: 2;  -webkit-box-orient: vertical;  overflow: hidden;  text-overflow: ellipsis;}
.section4 .contWrap .leftArea .date {font-size: 0.8rem; color: #686868;}
.section4 .contWrap .rightArea {flex: 1; height: 100%; overflow-y: scroll;}
.section4 .contWrap .rightArea::-webkit-scrollbar {width: 8px; height: 100%; border-radius: 4px; }
.section4 .contWrap .rightArea::-webkit-scrollbar-thumb {width: 8px; height: 8px; border-radius: 4px;background-color: #2583ff; cursor: pointer;}
.section4 .contWrap .rightArea::-webkit-scrollbar-track {background-color: #fff; border-radius: 8px;}
.section4 .newsBox {width: 100%; display: flex; flex-flow: row nowrap; align-items: stretch; justify-content: space-between; gap: 1rem; padding-right: 1rem; margin-bottom: 2rem;}
.section4 .newsBox:last-child {margin-bottom: 0;}
.section4 .newsBox .textWrap {flex: 1; display: flex; flex-flow:column wrap; align-items: flex-start; justify-content: flex-start; gap: 0.5rem;}
.section4 .newsBox .textWrap .badge {}
.section4 .newsBox .textWrap .title {font-size: 1.2rem; color: #333; line-height: 1.4; font-weight: 700;display: -webkit-box;  -webkit-line-clamp: 2;  -webkit-box-orient: vertical;  overflow: hidden;  text-overflow: ellipsis;}
.section4 .newsBox .textWrap .textArea {font-size: 0.85rem; line-height: 1.4; color: #686868;display: -webkit-box;  word-break: break-all; -webkit-line-clamp: 3;  -webkit-box-orient: vertical;  overflow: hidden;  text-overflow: ellipsis;}
.section4 .newsBox .textWrap .date {font-size: 0.85rem; color: #686868;}
.section4 .newsBox .imgArea {width: 30%; aspect-ratio: 1; border-radius: 1rem; overflow: hidden;}
.section4 .newsBox .imgArea img {object-fit: cover; object-position: center; display: flex; width: 100%; height: 100%;transition: all 0.3s ease-in-out;}
.section4 .newsBox:hover .imgArea img {transform: scale(1.1);}

/* section5 */
.section5 {width: 100%; margin: 0 auto; display: flex; flex-flow: column wrap; align-items: center; justify-content: center; padding-top: 60px; background:linear-gradient(180deg, #fff, #F5F9FF);}
.section5 .maxWidth {width: 100%; margin: 0 auto; max-width: 1440px;}
.section5 .secTitle {font-family: 'Paperlogy'; font-size: var(--main-title-size); color: var(--main-blue); position: relative; z-index: 1; font-weight: 800; line-height: 1.2;background: linear-gradient(to right, #0084FF, #25F0FF); position: relative;  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; width: fit-content;}
.section5 .secTitleArea {font-family: 'Paperlogy'; width: 100%; display: flex; flex-flow: row wrap; align-items: flex-end; justify-content: space-between; padding-bottom: 1rem; border-bottom: 1px solid #ddd; margin-bottom: 2rem;}
.section5 .secTitleArea .subText {font-weight: 500; color: #5B5B5B; font-size: 1.2rem;}
.section5 .secTitleArea .moreBtn {font-family: 'Pretendard'; color: #8a8a8a;}
.section5 .secTitleArea .moreBtn:hover {color: var(--main-blue);}
.section5 .secTitleArea .moreBtn .icon {transition: all 0.3s ease-in-out; display: inline-block;}
.section5 .secTitleArea .moreBtn:hover .icon {transform: rotate(180deg);}
.section5 .contWrap {width: 100%;   display: grid; grid-template-columns: 1fr 1fr;  gap:1rem; height: 70vh; }
.section5 .contWrap .contArea {  display: flex; flex-flow: column wrap;  gap: 1rem; height: inherit;}
.section5 .contWrap .contArea .subject {font-size: 0.9rem; font-weight: 700; position: relative;margin-bottom: 1rem; color: var(--main-blue); display: inline-block;}
.section5 .contWrap .contArea .subject::after {content: ''; display: inline-block; width: 20px; height: 1px; background-color: #C0C0C0; position: absolute; bottom: -1rem; left: 0; margin: 0.5rem 0;}
.section5 .contWrap .contArea .wideBox {  width: 100%; background-color: #f8faff;     border-radius: 1rem;  overflow: hidden; padding: 1rem;    flex: 1;}
.section5 .contWrap .contArea .blueBox {  background-color: var(--main-blue);  color: #fff;   display: flex;  flex-flow: column nowrap;  align-items: stretch;  justify-content: space-between; }
.section5 .contWrap .contArea .blueBox .subject {color: #fff;}
.section5 .contWrap .contArea .blueBox .title {  font-weight: 600;   font-size: 1.3rem;  margin-bottom: 0.5rem;  height: auto;  display: -webkit-box;  -webkit-line-clamp: 2;  -webkit-box-orient: vertical;  overflow: hidden;  text-overflow: ellipsis;}
.section5 .contWrap .contArea .blueBox .imgArea { width: 100%;   flex: 1;   overflow: hidden; border-radius: 0.5rem; position: relative;}
.section5 .contWrap .contArea .blueBox .imgArea img {object-fit: cover; object-position: center; display: flex; width: 100%; height: 100%; transition: all 0.3s ease-in-out;}
.section5 .contWrap .contArea .blueBox .imgArea .centerBadge {font-size: 0.75rem; color: #fff; background:linear-gradient(45deg, #36EAFF, #B065E9); text-align: center; width: fit-content; border-radius: 8px; padding: 4px 8px; position: absolute; bottom: 10px; left: 10px;}
.section5 .contWrap .contArea .blueBox:hover .imgArea img {transform: scale(1.1); }
.section5 .contWrap .contArea .narrowArea { display: grid;  grid-template-columns: 1fr 1fr;  gap: 1rem; height: 40%;}
.section5 .contWrap .contArea.ver2 .narrowArea {height: 50%;}
.section5 .contWrap .contArea .narrowArea .narrowBox {background-color: #fff;  border: 1px solid var(--main-blue);  border-radius: 1rem; padding: 1rem; position: relative; overflow: hidden; display: flex;  flex-flow: column nowrap;   align-items: flex-start;  justify-content: space-between;  min-height: 0;}
/* 우수사례2 */
.section5 .contWrap .contArea .narrowArea .narrowBox.bestBox .textArea {flex:1; display: flex;  flex-flow: column wrap;   align-items: flex-start;  justify-content: space-between;}
.section5 .contWrap .contArea .narrowArea .narrowBox.bestBox:hover {background-color: #cedfff;}
.section5 .contWrap .contArea .narrowArea .narrowBox.bestBox .textArea .title {font-size: 1rem; color: #4d4d4d; font-weight: 600; display: -webkit-box;  -webkit-line-clamp: 3;  -webkit-box-orient: vertical;  overflow: hidden;  text-overflow: ellipsis; width: 100%;}
.section5 .contWrap .contArea .narrowArea .narrowBox.bestBox .textArea .centerBadge {font-size: 0.75rem; color: #fff; background-color: var(--main-blue); text-align: center; width: fit-content; border-radius: 8px; padding: 4px 8px;}
.section5 .contWrap .contArea .narrowArea .narrowBox.bestBox .decoImg { position: absolute; bottom: -5px; right: 0;}
/* 웹진 */
.section5 .contWrap .contArea .webWrap {width: 100%; display: flex; flex-flow: row nowrap; align-items: stretch; justify-content: space-between; gap: 1rem; flex: 1; min-height: 0;}
.section5 .contWrap .contArea .webWrap .webBox {flex: 1; display: flex; flex-flow: column nowrap; align-items: stretch; justify-content: space-between; min-height: 0; gap: 0.5rem;}
.section5 .contWrap .contArea .webWrap .webBox .imgArea {width: 100%; border-radius: 0.5rem; overflow: hidden; flex:1;      min-height: 0; max-height: none; }
.section5 .contWrap .contArea .webWrap .webBox .imgArea img {height: 100%; display: block; object-fit: cover; width: 100%;}
.section5 .contWrap .contArea .webWrap .webBox .btnWrap {width: 100%; padding: 4px 0.5rem; display: flex; flex-flow: row nowrap; align-items: center; justify-content: space-between; font-size: 0.8rem; border: 1px solid #4A4A4A; color: #4A4A4A; border-radius: 0.5rem;}
.section5 .contWrap .contArea .webWrap .webBox:hover .btnWrap {background-color: #cedfff; border: 1px solid #cedfff; color: #003572;}
.section5 .contWrap .contArea .webWrap .webBox .btnWrap .month {font-weight: 600;}
.section5 .contWrap .contArea .webWrap .webBox .btnWrap .icon {font-size: 0.8em;}
/* 글로컬대학 */
.section5 .contWrap .contArea .narrowBox.gloBox {display: flex; flex-flow: column nowrap; align-items: flex-start; justify-content: flex-start;}
.section5 .contWrap .contArea .gloWrap {width: 100%; display: flex; flex-flow: row wrap; align-items: stretch; justify-content: space-between; gap: 1rem;flex: 1;}
.section5 .contWrap .contArea .gloWrap .imgArea {border-radius: 0.5rem; overflow: hidden; flex: 1;}
.section5 .contWrap .contArea .gloWrap .imgArea img {height: 100%; display: block; object-fit: cover; max-width: 100%;}
.section5 .contWrap .contArea .gloWrap .textWrap {width: 40%;}
.section5 .contWrap .contArea .gloWrap .textWrap .text { font-size: 0.9rem; margin-bottom: 1rem;  display: -webkit-box;  -webkit-line-clamp: 5;  -webkit-box-orient: vertical;  overflow: hidden;  text-overflow: ellipsis; line-height: 1.4; }
.section5 .contWrap .contArea .gloWrap .textWrap .btn {width: 100%; padding: 4px 0.5rem; display: flex; flex-flow: row nowrap; align-items: center; justify-content: space-between; font-size: 0.8rem; border: 1px solid #4A4A4A; color: #4A4A4A; border-radius: 0.5rem; font-weight: 600; cursor: pointer;    line-height: 1.3;}
.section5 .contWrap .contArea .gloWrap .textWrap .btn:hover {background-color: #cedfff; border: 1px solid #cedfff; color: #003572;}
.section5 .contWrap .contArea .gloWrap .textWrap .btn .icon {font-size: 0.8em;}
/* 공지사항 */
.section5 .contWrap .contArea .skyBox {  background-color:#E3EEFF;  color: #ffffff;   display: flex;  flex-flow: column nowrap;  align-items: stretch;  justify-content: flex-start; }
.section5 .contWrap .contArea .skyBox .subject {color: #002258;}
.section5 .contWrap .contArea .notiWrap {width: 100%; flex: 1; display: flex; flex-flow: column wrap; align-items: stretch; justify-content: space-between; gap: 0.5rem;}
.section5 .contWrap .contArea .notiWrap .notiBox {display: flex; flex-flow: row wrap; align-items: center; justify-content: space-between; gap: 2rem; background-color: #fff; padding: 0 0.5rem; border-radius: 0.5rem; flex: 1;}
.section5 .contWrap .contArea .notiWrap .notiBox:hover {background-color: #a8caff;}
.section5 .contWrap .contArea .notiWrap .notiBox .title {color: #333; font-size: 1rem; flex: 1;  display: -webkit-box;  -webkit-line-clamp: 1;  -webkit-box-orient: vertical;  overflow: hidden;  text-overflow: ellipsis; font-weight: 500;}
.section5 .contWrap .contArea .notiWrap .notiBox .title .notiBadge {font-size: 0.8em; padding: 4px 8px; border-radius: 4px; display: inline-block; margin-right: 5px;}
.section5 .contWrap .contArea .notiWrap .notiBox .title .notiBadge.color01 {background-color: #E2FFE3; color: #00A838;}
.section5 .contWrap .contArea .notiWrap .notiBox .title .notiBadge.color02 {background-color: #CFE5FF; color: #003CFF;}
.section5 .contWrap .contArea .notiWrap .notiBox .title .notiBadge.color03 {background-color: #FFCFDD; color: #C7003F;}
.section5 .contWrap .contArea .notiWrap .notiBox .title .notiBadge.color04 {background-color: #fff2e2; color: #ff7b00;}
.section5 .contWrap .contArea .notiWrap .notiBox .title .notiBadge.color05 {background-color: #d4f9ff; color: #207292;}
.section5 .contWrap .contArea .notiWrap .notiBox .title .notiBadge.color06 {background-color: #f2dcff; color: #77248b;}
.section5 .contWrap .contArea .notiWrap .notiBox .title .notiBadge.color07 {background-color: #c2ffe1; color: #008765;}
.section5 .contWrap .contArea .notiWrap .notiBox .date {width: fit-content; font-size: 0.8em; color: #929292;}


/* popup swiper */
.popupWrap {position: relative; display: none; flex-flow: column wrap; align-items: center; justify-content: center;}
.popupWrap.active {display: flex; }
.popupWrap::before {content: ''; width: 100vw; height: 100vh; position: fixed; top: 0; left: 0; z-index: 10;background-color: rgba(0,0,0,0.5); }
.popupWrap .popSwiper {width: 500px; max-height: 65vh; height: 100%; margin: 0 auto; position: fixed; z-index: 100; top: 15%; background-color: #fff; border-radius: 1rem;}
.popupWrap .popSwiper .swiper-wrapper {}
.popupWrap .popSwiper .swiper-wrapper .swiper-slide {width: 100%;height: 100%;box-sizing: border-box; font-size: 1.25rem; padding: 1.5rem 2rem 4rem; }
.popupWrap .popSwiper .swiper-wrapper .swiper-slide .textArea {min-height: 0; width: 100%; height: 100%; }
.popupWrap .popSwiper .swiper-wrapper .swiper-slide .textArea .title {font-weight: 700; font-size: 1em; display: -webkit-box;  -webkit-line-clamp: 1;  -webkit-box-orient: vertical;  overflow: hidden;  text-overflow: ellipsis;  margin-bottom: 0.7rem; border-bottom: 2px solid var(--main-blue); line-height: 2; width: 100%;}
.popupWrap .popSwiper .swiper-wrapper .swiper-slide .textArea .text {font-size: 0.75em; font-weight: 500; word-break: break-all; line-height: 1.5; text-align: justify; overflow-y: auto; padding-right: 0.3rem; height: calc( 100% - 47px );     width: 100%;}
.popupWrap .popSwiper .swiper-wrapper .swiper-slide .textArea .text::-webkit-scrollbar {width: 6px;  border-radius: 4px;height: 100%; }
.popupWrap .popSwiper .swiper-wrapper .swiper-slide .textArea .text::-webkit-scrollbar-thumb {background-color: #cacaca; border-radius: 4px; }
.popupWrap .popSwiper .swiper-wrapper .swiper-slide .textArea .text::-webkit-scrollbar-track {background-color: transparent; border-radius: 4px; }
.popupWrap .popSwiper .swiper-wrapper .swiper-slide img {width: 100%; height: auto; object-fit: contain; object-position: center;}
.popupWrap .popSwiper .swiper-wrapper .swiper-slide .dataArea {font-size: 0.9em; color: #525252; display: -webkit-box;  -webkit-line-clamp: 1;  -webkit-box-orient: vertical;  overflow: hidden;  text-overflow: ellipsis; height: auto; margin:1rem 0 0.5rem; font-weight: 500; width: 100%;}
.popupWrap .popSwiper .swiper-wrapper .swiper-slide .dataArea::before {content: '\e185'; font-family: 'fontAwesome'; display: inline-block; margin-right: 5px; color: var(--main-blue); font-size: 0.9em;}
/* .popupWrap .popSwiper .swiper-wrapper .swiper-slide .dataArea .icon {font-size: 0.8em; display: inline-block; margin-right: 5px; color: var(--main-blue);} */
.popupWrap .popSwiper .btnWrap {position: absolute; bottom: 0; background-color: #525252; width: 100%; padding:0.7rem 1.5rem; display: flex; flex-flow: row nowrap; align-items: center; justify-content: space-between; z-index:101; color: #fff;}
.popupWrap .popSwiper .btnWrap .btn {cursor: pointer; font-size: 0.9em; }
.popupWrap .popSwiper .btnWrap .btn.close {background-color: var(--main-blue); color: #fff; padding: 6px 1rem; border-radius: 30px; }
.popupWrap .popSwiper .dayClose {display: flex; align-items: center; cursor: pointer; user-select: none; gap: 10px;}
.popupWrap .popSwiper .dayClose input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0;}
.checkmark { width: 20px; height: 20px; border-radius: 50%;  background-color: #eee; position: relative; transition: background-color 0.3s;}
.popupWrap .popSwiper .dayClose:hover input ~ .checkmark {background-color: #ffff;}
.popupWrap .popSwiper .dayClose input:checked ~ .checkmark { background-color: var(--main-blue)}
.checkmark::after {  content: "";  position: absolute;  display: none;  left: 7px;  top: 3px;   width: 5px;  height: 10px;  border: solid white;  border-width: 0 2px 2px 0;  transform: rotate(45deg);}
.popupWrap .popSwiper .dayClose input:checked ~ .checkmark::after {display: block;}

.popupWrap .swiperBtnWrap {width: 100%; display: none; flex-flow: row wrap; align-items: center; justify-content: space-between; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 110;}
.popupWrap .swiperBtnWrap.active {display: flex;}
.popupWrap .swiper-button-next,
.popupWrap .swiper-button-prev {position: unset; color: #919191;}
.popupWrap .swiper-button-next::after,
.popupWrap .swiper-button-prev::after { display: none;}
.popupWrap .swiperBtn {font-size: 1.3rem; opacity: 0.4;}
.popupWrap .swiperBtn:hover {opacity: 1;}



.show425 {display: none;}





/* responsive */
@media only screen and (min-width: 1441px) and (min-height: 650px) and (max-height: 800px) {
  .section2 {gap: 2rem;}
  .section2 .topArea {flex: unset;}
  .section2 .topArea .boxWrap .box {max-height: 30vh; padding: 1rem;}
  .section2 .topArea .boxWrap .box .textArea {margin-bottom: 0;}
  .section2 .topArea .textWrap {margin-bottom: 1rem;}

  .section3 .secTitleArea {margin-bottom: 1rem;}
  .section3 .contWrap .tab-content {gap: 1rem;}
  .section3 .contWrap .tab-content .nameWrap {padding: 1rem;}
  .section3 .contWrap .tab-content .nameWrap .img {max-height: 100px;}
  .section3 .contWrap .tab-content .goalWrap .goalBox {padding: 0.7rem;}
  .section3 .contWrap .tab-content .goalWrap .goalBox .icon img {max-height: 30px;}
  .section3 .contWrap .tab-content .botWrap .figureWrap {padding:0.7rem;}
  .section3 .contWrap .tab-content .botWrap .figureWrap .title .icon img {max-height: 30px;}
  .section3 .contWrap .tab-content .botWrap .directBox {padding: 0.7rem 0.7rem 3rem;}
  
  .section4 .secTitleArea {margin-bottom: 1rem;}

  .section5 .secTitleArea {margin-bottom: 1rem;}
  .section5 .contWrap .contArea .webWrap .webBox .imgArea {max-height: 20vh;}
}

@media only screen and (max-width: 1440px){
    .mainVisualWrap .swiper-slide .sloganWrap {max-width: 95vw;}
    .mainVisualWrap .pageWrap {left: 2.5vw;}

    .section2 .secTitle {font-size: var(--main-title-size-1440);}
    .section2 .topArea {max-width: 95vw; justify-content: flex-end;}
    .section2 .topArea .boxWrap .box {aspect-ratio: unset; padding: 1.5rem;}
    .section2 .topArea .boxWrap .box .textArea .big {font-size:1.4rem}
    .section2 .topArea .boxWrap .box .textArea .small {font-size: 1rem;}
    .section2 .topArea .boxWrap .box .imgArea img {max-height: 36px;}
    .section2 .botArea .maxWidth {align-items: flex-start; padding-top: 2rem;}
    .section2 .botArea .maxWidth {max-width: 95vw;}
    .section2 .botArea .directWrap .goBox .leftArea {font-size: 1.15rem;}
    .section2 .botArea .directWrap .goBox .leftArea .icon img {max-height: 30px;}

    .section3 {max-width: 95vw;}
    .section3 .secTitle {  font-size: var(--main-title-size-1440);}
    .section3 .secTitleArea .subText {font-size: 1.1rem;}
    .section3 .contWrap {gap: 2rem;}
    .section3 .contWrap .tab-content {gap: 1rem;}
    .section3 .contWrap .tab-content .nameWrap {font-size: 1.1rem;}
    .section3 .contWrap .tab-content .goalWrap {gap: 1rem;}
    .section3 .contWrap .tab-content .goalWrap .goalBox .goalTitle {font-size: 1rem; word-break: keep-all;}
    .section3 .contWrap .tab-content .goalWrap .goalBox .icon img {max-height: 34px;}
    .section3 .contWrap .tab-content .botWrap {gap: 1rem;}
    .section3 .contWrap .tab-content .botWrap .figureWrap {font-size: 0.9rem;}
    .section3 .contWrap .tab-content .botWrap .figureWrap .title .icon img {max-height: 26px;}
    .section3 .contWrap .tab-content .botWrap .directBox {width: 32%; padding: 1rem 1rem 2.5rem}
    .section3 .contWrap .tab-content .botWrap .directBox .title {font-size: 1.2rem; margin-bottom: 5px;}
    .section3 .contWrap .tab-content .botWrap .directBox .text {font-size: 0.85rem;}
    
    .section4 .maxWidth {max-width: 95vw;}
    .section4 .secTitle {  font-size: var(--main-title-size-1440);}
    .section4 .secTitleArea {margin-bottom: 1rem;}

    .section5 .maxWidth {max-width: 95vw;}
    .section5 .secTitle {  font-size: var(--main-title-size-1440);}
    .section5 .secTitleArea {margin-bottom: 1rem;}
    .section5 .contWrap .contArea .webWrap .webBox {gap: 0.5rem;justify-content: flex-start; }
}

@media only screen and (max-width: 1024px){
  .mainSwiper{ height: auto; }
  .mainSwiper .swiper-pagination{ display:none; }
  .mainSwiper section.swiper-slide.section1 { height: auto; aspect-ratio: 16 / 9;}
  .mainSwiper section.swiper-slide.section2 {padding-top: 3rem;}
  .mainSwiper section.swiper-slide:not(.footerWrap, .section1) {overflow: auto; height: fit-content; min-height: auto; padding-bottom: 3rem;}

  .mainVisualWrap .swiper-slide .sloganWrap {padding-bottom: 10vh;  max-width: 90vw;}
  .mainVisualWrap .swiper-slide .sloganWrap .sloganSubTitle {font-size: 1.2rem;}
  .mainVisualWrap .swiper-slide .sloganWrap .sloganTitle {font-size:2.2rem;}
  .mainVisualWrap .pageWrap {bottom: 3vh; left: 4.5vw;}
  .mainVisualWrap .pageWrap .timer {transform: scale(0.85);}
  .mainVisualWrap .pageWrap .visualPager {gap: 1rem;}
  .mainVisualWrap .pageWrap .visualPager .swiper-pagination-bullet i {font-size: 0.85rem;}

  .section2 {gap: 3rem;}
  .section2 .topArea {padding-top: 0;}
  .section2 .topArea .boxWrap {gap: 1rem;}
  .section2 .topArea .boxWrap .box {padding: 1rem;  }
  .section2 .topArea .boxWrap .box .textArea .big {font-size: 1.2rem;}
  .section2 .topArea .boxWrap .box .textArea .small {font-size: 0.9rem;}
  .section2 .topArea .boxWrap .box .imgArea img {max-height: 30px;}
  .section2 .botArea {height: auto; }
  .section2 .botArea .maxWidth {gap: 2rem; padding-top: 2rem; padding-bottom: 2rem;}
  .section2 .botArea .title {width: 100%; text-align: center;}
  .section2 .botArea .title br {display: none;}
  .section2 .botArea .directWrap {gap: 1rem 1.5rem; width: 100%;}
  .section2 .botArea .directWrap .goBox .leftArea .icon img {max-height: 33px;  }

  .section3 {padding-top: 0;}
  .section3 .contWrap {gap: 1rem; align-items: flex-start; position: relative}
  .section3 .contWrap .tab-content .nameWrap {padding: 1rem; text-align: left;}
  .section3 .contWrap .tab-content .nameWrap .img {display: none;}
  .section3 .contWrap .tab-content .goalWrap {justify-content: center;}
  .section3 .contWrap .tab-content .goalWrap.even .goalBox {flex: unset; width: calc( ( 100% - 1rem ) / 2 );}
  .section3 .contWrap .tab-content .goalWrap.odd .goalBox {flex: unset; width: calc( ( 100% - 2rem ) / 3 );}
  .section3 .contWrap .tab-content .botWrap .directBox .text br {display: none;}
  
  .section4 .secTitleArea .subText {font-size: 1.1rem;}
  .section4 .contWrap .leftArea .title {font-size: 1.3rem;}
  .section4 .contWrap .leftArea .textArea {font-size: 0.9rem; line-height: 1.4;}
  .section4 .newsBox .textWrap .title {font-size: 1.1rem;}
  .section4 .newsBox .textWrap .textArea {font-size: 0.8rem;}
  .section4 .newsBox .textWrap .date {font-size: 0.8rem;}

  .section5 .contWrap .contArea .blueBox .title {font-size: 1.1rem;}
  .section5 .contWrap .contArea .narrowArea .narrowBox.bestBox .textArea .title {font-size: 0.9rem;}
  .section5 .contWrap .contArea .narrowArea .narrowBox.bestBox .decoImg img {max-height: 70px;}
  .section5 .contWrap .contArea .notiWrap .notiBox .title {font-size: 0.85rem;}
  .section5 .contWrap .contArea .notiWrap .notiBox .date {font-size: 0.7rem;}
  .section5 .contWrap .contArea .webWrap {flex-flow: column wrap;}
  .section5 .contWrap .contArea .webWrap .webBox {justify-content: space-between; flex-flow: row nowrap; width: 100%;}
  .section5 .contWrap .contArea .webWrap .webBox .imgArea {max-height: unset; flex: unset; width: 70%; aspect-ratio: 16 / 9;}
  .section5 .contWrap .contArea .webWrap .webBox .btnWrap {font-size: 0.7rem; word-break: keep-all; flex: 1; width: auto;}
  .section5 .contWrap .contArea .gloWrap {flex-flow: column wrap; align-items: stretch;}
  .section5 .contWrap .contArea .gloWrap .textWrap {width: 100%; order: 2;}
  .section5 .contWrap .contArea .gloWrap .textWrap .text {-webkit-line-clamp: 2; margin-bottom: 0.5rem;}
  .section5 .contWrap .contArea .gloWrap .imgArea {order: 1;}
  .section5 .contWrap .contArea .gloWrap .textWrap .btn {font-size: 0.7rem;}

}


@media only screen and (max-width: 768px){
  .mainVisualWrap .swiper-slide .sloganWrap .sloganTitle {font-size: 1.8rem;}
  .mainSwiper section.swiper-slide:not(.footerWrap, .section1) {padding-bottom: 2rem;}
  .mainSwiper section.swiper-slide.section2 {padding-top: 2rem}
  .section4 {padding-top: 2rem;}
  .section5 {padding-top: 2rem;}

  .section2 {gap: 2rem;}
  .section2 .secTitle { font-size: var(--main-title-size-768); }
  .section2 .topArea .textWrap .riseSubTitle {font-size: 1rem;}
  .section2 .topArea .boxWrap .box .textArea {margin-bottom: 1rem;}
  .section2 .topArea .boxWrap .box {width: calc((100% - 1rem) / 2); border-radius: 0.5rem; padding: 0.7rem;}
  .section2 .botArea .maxWidth {flex-flow: column wrap; gap: 1rem; align-items: center;}
  .section2 .botArea .directWrap .goBox:hover .rightArea {animation: none;}
  .section2 .botArea .directWrap .goBox .leftArea {font-size: 1.05rem;}
  .section2 .botArea .directWrap .goBox .leftArea .icon img {max-height: unset;  max-width: 24px;}

  /* 지역 버튼 - 전체 박스 나열 형식 */
  /* .section3 .secTitleArea {margin-bottom: 1rem;}
  .section3 .contWrap {flex-flow: column wrap; align-items: center;}
  .section3 .contWrap .leftArea {width: 100%; height: auto; background: url('../img/section2-bg02.jpg') left bottom / cover no-repeat;}
  .section3 .contWrap .leftArea .mapTextWrap {display: flex; flex-flow: row wrap; align-items: stretch; justify-content: flex-start; }
  .section3 .contWrap .leftArea .mapTextWrap > * {display: inline-block; position: relative !important; top: unset !important; right: 0 !important; left: unset !important; bottom: unset !important;}
  .section3 .contWrap .leftArea .mapTextWrap .tab-btn {width: calc( 100% / 6 ); aspect-ratio: unset; border-radius: 0; padding: 0.5rem; }
  .section3 .contWrap .leftArea .mapTextWrap .tab-btn::after {content: ''; width: 1px; height: 14px; display: inline-block; position: absolute; right: 0; background-color: #b1b1b1;}
  .section3 .contWrap .leftArea .mapTextWrap .tab-btn.active {font-size: 0.9rem; }
  .section3 .contWrap .leftArea .mapTextWrap .tab-btn.active::after {display: none;}
  .section3 .contWrap .tab-btn.active::before {display: none;} */

  /* 지역 버튼 - 개별 형식 */
  .section3 .secTitleArea {margin-bottom: 1rem;}
  .section3 .contWrap {flex-flow: column wrap; align-items: center;}
  .section3 .contWrap .leftArea {width: 100%; height: auto; background: none; padding-bottom: 1rem; border-bottom: 1px dotted #ddd;}
  .section3 .contWrap .leftArea .mapTextWrap {display: flex; flex-flow: row wrap; align-items: stretch; justify-content: flex-start; gap: 0.5rem;}
  .section3 .contWrap .leftArea .mapTextWrap > * {display: inline-block; position: unset !important;}
  .section3 .contWrap .leftArea .mapTextWrap .tab-btn {width: calc( ( 100% - 2.5rem ) / 6 ); aspect-ratio: unset; border-radius: 0; padding: 0.5rem; border-radius: 0.5rem; border: 1px solid var(--main-blue); color: var(--main-blue);}
  .section3 .contWrap .leftArea .mapTextWrap .tab-btn.active {font-size: 0.9rem;}
  .section3 .contWrap .tab-btn.active::before {display: none;}

  .section3 .secTitle {font-size: var(--main-title-size-768);}
  .section3 .secTitleArea .subText {font-size: 0.9rem;}
  .section3 .contWrap .tab-content .nameWrap {border-radius: 0.5rem;}
  .section3 .contWrap .tab-content .goalWrap .goalBox {border-radius: 0.5rem;}
  .section3 .contWrap .tab-content .botWrap .figureWrap {border-radius: 0.5rem;}
  .section3 .contWrap .tab-content .botWrap .directBox {border-radius: 0.5rem;}
  .section3 .contWrap .tab-content .botWrap .directBox .btn {font-size: 0.85rem;}

  .section4 .secTitle {font-size: var(--main-title-size-768); }
  .section4 .secTitleArea .subText {font-size:0.9rem}
  .section4 .contWrap {height: auto; flex-flow: column wrap;}
  .section4 .contWrap .leftArea {width: 100%; justify-content: flex-start;}
  .section4 .contWrap .leftArea .title {font-size: 1.2rem;}
  .section4 .contWrap .leftArea .imgArea {border-radius: 0.5rem;aspect-ratio: unset;  height: 40vh;  overflow: hidden;  flex: unset;}
  .section4 .contWrap .rightArea {flex: unset; width: 100%; display: flex; flex-flow: row wrap; align-items: stretch; justify-content: flex-start; gap: 2rem 1rem; max-height: 25vh;}
  .section4 .newsBox {width: calc( ( 100% - 1rem ) / 2 ); margin-bottom: 0;}
  .section4 .newsBox:nth-child(odd) {padding-right: 0;}
  .section4 .newsBox .imgArea {border-radius: 0.5rem;}
  .section4 .newsBox .textWrap .title {font-size: 1.05rem;}
  .section4 .badge {border-radius: 4px; padding: 6px 8px; min-width: 66px;}

  .section5 .secTitle {font-size: var(--main-title-size-768); }
  .section5 .secTitleArea .subText {font-size:0.9rem}
  .section5 .contWrap {height: auto;display: flex; flex-flow: column wrap;}
  .section5 .contWrap .contArea .subject {font-size: 0.8rem;}
  .section5 .contWrap .contArea .wideBox {border-radius: 0.5rem;}
  .section5 .contWrap .contArea .narrowArea .narrowBox {border-radius: 0.5rem;}
  .section5 .contWrap .contArea:first-child {flex-flow: row nowrap;}
  .section5 .contWrap .contArea .blueBox {width: 70%; flex: unset;}
  .section5 .contWrap .contArea .blueBox .imgArea {max-height: 35vh;}
  .section5 .contWrap .contArea .blueBox .imgArea .centerBadge {border-radius: 4px;}
  .section5 .contWrap .contArea:first-child .narrowArea {display: flex; flex-flow: column nowrap; align-items: stretch; justify-content: space-between;height: auto; flex: 1;}
  .section5 .contWrap .contArea:first-child .narrowArea .narrowBox {height: auto; height: -webkit-fill-available;}
  .section5 .contWrap .contArea .narrowArea .narrowBox.bestBox .textArea .title {font-size: 0.8rem;}
  .section5 .contWrap .contArea .narrowArea .narrowBox.bestBox .textArea .centerBadge {font-size: 0.65rem; border-radius: 4px;}
  .section5 .contWrap .contArea .narrowArea .narrowBox.bestBox .decoImg img {  max-height: 50px;}
  .section5 .contWrap .contArea .webWrap {flex-flow: row nowrap;}
  .section5 .contWrap .contArea .webWrap .webBox {width: auto; flex: 1; flex-flow: column wrap;}
  .section5 .contWrap .contArea .webWrap .webBox .imgArea {flex: 1; width: 100%; aspect-ratio: unset; border-radius: 4px;}
  .section5 .contWrap .contArea .webWrap .webBox .btnWrap {border-radius: 4px; flex: unset;}
  .section5 .contWrap .contArea .notiWrap .notiBox {padding: 0.5rem;}
  .section5 .contWrap .contArea .gloWrap .imgArea {border-radius: 4px;}
  .section5 .contWrap .contArea .gloWrap .textWrap .btn {border-radius: 4px;}
  .section5 .contWrap .contArea .notiWrap .notiBox {border-radius: 4px;}

  .popupWrap .popSwiper {width: 400px; border-radius: 0.5rem; }
  .popupWrap .popSwiper .swiper-wrapper .swiper-slide {font-size: 1.05rem; padding: 1rem 1.7rem 3rem;}
  .popupWrap .popSwiper .btnWrap {padding: 0.5rem 1.5rem;}
  .popupWrap .popSwiper .btnWrap .btn {font-size: 0.8em;}
}

@media only screen and (max-width: 550px){
  .mainSwiper section.swiper-slide.section1 { height: 80vh; aspect-ratio: unset;}
  .mainVisualWrap .swiper-slide.is-anim .sloganWrap .sloganSubTitle {word-break: keep-all;}

  .section2 .secTitle { font-size: var(--main-title-size-550); }
  .section2 .topArea .textWrap .riseExplain {font-size: 0.85rem;}
	.section2 .botArea .directWrap {grid-template-columns: repeat(1, 1fr);}
  .section2 .botArea .directWrap .goBox .leftArea {font-size: 1rem;}
  .section2 .botArea .directWrap .goBox .rightArea {font-size: 1.1em;}

  .section3 .contWrap .tab-content .nameWrap {font-size: 0.95rem;}
  .section3 .contWrap .tab-content .botWrap {flex-flow: column wrap; }
  .section3 .contWrap .tab-content .goalWrap .goalBox {padding: 0.5rem; justify-content: flex-start;}
  .section3 .contWrap .tab-content .goalWrap.odd .goalBox { width: calc((100% - 1rem) / 2);}
  .section3 .contWrap .tab-content .botWrap .directBox {width: 100%; padding: 1rem;background-size: auto;}
  .section3 .contWrap .tab-content .botWrap .directBox .text {width: 70%;}
  .section3 .contWrap .tab-content .goalWrap .goalBox .goalTitle {font-size: 0.9rem;}
  .section3 .secTitle {font-size: var(--main-title-size-550); margin-bottom: 5px;}
  .section3 .secTitleArea .moreBtn {font-size: 0.9rem; }
  .section3 .contWrap .tab-content .botWrap .figureWrap {font-size: 0.8rem;}
  .section3 .contWrap .tab-content .botWrap .figureWrap .title .icon img {max-height: unset; max-width: 26px;}

  .section4 .secTitle {font-size: var(--main-title-size-550); }
  .section4 .contWrap .leftArea {gap: 0.5rem;}
  .section4 .newsBox .imgArea {display: none;}
  .section4 .secTitleArea .moreBtn {font-size: 0.9rem;}

  .section5 .secTitle {font-size: var(--main-title-size-550); }
  .section5 .contWrap .contArea .blueBox .title {font-size: 1rem;}
  .section5 .secTitleArea .moreBtn {font-size: 0.9rem;}
  .section5 .contWrap .contArea .blueBox {width: 65%;}
  .section5 .contWrap .contArea .narrowArea .narrowBox.bestBox .textArea .title {-webkit-line-clamp: 3;}
  .section5 .contWrap .contArea .narrowArea .narrowBox.bestBox .decoImg {display: none;}
  .section5 .contWrap .contArea .narrowArea .narrowBox.bestBox .textArea .centerBadge {display: none;}
  .section5 .contWrap .contArea.ver2 .narrowArea {display: flex; flex-flow: row nowrap; align-items: stretch; justify-content: space-between;}
  .section5 .contWrap .contArea.ver2 .narrowArea .narrowBox {flex: 1; width: auto;}
  .section5 .contWrap .contArea .webWrap {gap: 0.5rem;}
  .section5 .contWrap .contArea .webWrap .webBox {overflow: hidden;}
  .section5 .contWrap .contArea .webWrap .webBox .btnWrap {flex: unset; width: 100%; text-align: center; padding: 4px;}
  .section5 .contWrap .contArea .webWrap .webBox .btnWrap .icon {display: none;}
  .section5 .contWrap .contArea .gloWrap {gap: 0.5rem;}
  .section5 .contWrap .contArea .gloWrap .textWrap .text {font-size: 0.8rem;}
  .section5 .contWrap .contArea .notiWrap .notiBox {flex-flow: column wrap; gap: 0.5rem; align-items: flex-start;}
  .section5 .contWrap .contArea .notiWrap .notiBox .date {width: 100%; text-align: right;}

  .popupWrap .popSwiper {border-radius: 0.5rem; width: 90vw; }
}

@media only screen and (max-width: 425px){
  .show425 {display: block;}
}

@media only screen and (max-width: 375px){
  .section3 .contWrap .leftArea .mapTextWrap .tab-btn { width: calc((100% - 2rem) / 5);}

  .section5 .contWrap .contArea .wideBox {padding: 0.7rem;}
  .section5 .contWrap .contArea .narrowArea .narrowBox {padding: 0.7rem;}
}

