@charset "utf-8";

/* main.css */
/* 헤더 ~ 푸터 */
/* main.css */


/* 상단 레이아웃 */
#header {padding: 0 100px;position:fixed;top:0;left:0;z-index: 110;width:100%;transition:all .3s}

.gnb {display:flex;flex-wrap:wrap;align-items:center;width:100%;position: relative;}
.gnb__logo {flex: 0 1 320px;}
.gnb__logo-link {}
.gnb__logo-link img {/* height: 80px; */}
.gnb__logo-link__item.sub__header{display:none}
.gnb__logo-link__item.active {display:none; transition: all .3s}

.sub_header .gnb__2depth { top: 71px;}

.gnb__menu {flex: calc(100% - 470px);display:flex;align-items:center;justify-content: end;gap: 10px;}
.gnb__1depth {position:relative;flex: 0 1 calc(100% / 7);max-width: 120px;text-align: center;}
.gnb__1depth-link {display: block;padding: 25px 0;font-size: 18px;color: #FFF;}
.gnb__1depth-link:hover {font-weight:700;}
.gnb__2depth {display:none;position:absolute;left: 50%;transform: translateX(-50%);top: 70px;width: 150%;text-align: left;border-bottom-left-radius:10px;border-bottom-right-radius:10px;background: rgb(0 33 56 / 50%);padding: 5px 0;}
.gnb__2depth.gnb__2depth--active {display:block;}
.gnb__2depth-link {display:block;padding: 8px 20px;font-size:16px;color: #FFF;position: relative;transition: all 0.3s linear(0 0%, 0 1.8%, 0.01 3.6%, 0.03 6.35%, 0.07 9.1%, 0.13 11.4%, 0.19 13.4%, 0.27 15%, 0.34 16.1%, 0.54 18.35%, 0.66 20.6%, 0.72 22.4%, 0.77 24.6%, 0.81 27.3%, 0.85 30.4%, 0.88 35.1%, 0.92 40.6%, 0.94 47.2%, 0.96 55%, 0.98 64%, 0.99 74.4%, 1 86.4%, 1 100%);}
.gnb__2depth-link:before {display:block; content:''; width:3px; height:0; background: #FFF; position: absolute; left:0; top: 50%; transform: translateY(-50%);opacity:0; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);}
.gnb__2depth-link:hover {font-weight:700;}
.gnb__2depth-link:hover:before {height:calc(100% - 20px);opacity:1}

.gnb__line {display:block;position:absolute;left: 50%;bottom: 0px;transform:translateX(-50%);width: 100%;height:1px;z-index: -1;background-color:rgba(255,255,255,.3);}
.gnb__line:before {display:block;content:"";position:absolute;top:50%;transform:translateY(-50%);width:.5625em;height:.5625em;background-color:#FFF;border-radius:50%;left: 0;}
.gnb__line:after {display:block;content:"";position:absolute;top:50%;transform:translateY(-50%);width:.5625em;height:.5625em;background-color:#FFF;border-radius:50%;right: 0;}

.fp-viewing-4 #header {background: #FFF;border-bottom: 1px solid #cdcdcd;}
.fp-viewing-4 .gnb__logo-link__item {display: none;}
.fp-viewing-4 .gnb__logo-link__item.active {display: block;}
.fp-viewing-4 .gnb__1depth-link {color: #000;}
.fp-viewing-4 .gnb__line {display: none;}

@media screen and (max-width: 1500px) {
	#header {padding: 0 40px}
	.gnb__line {bottom:0;}
}

@media screen and (max-width: 1400px) {
  .gnb__logo {flex: 0 1 280px;}
  .gnb__menu {padding: 0 0 0 5%;}
  .gnb-1depth-link {padding:30px;font-size:16px}
  .gnb-2depth-link {font-size:15px}
  .gnb-1depth-item:nth-child(3) .gnb-1depth-link {padding:30px 40px}
}

@media screen and (max-width: 1200px) {
  .gnb__menu {display:none;}
  .gnb-1depth-link {padding:30px 20px;font-size:15px}
  .gnb-1depth-item:nth-child(3) .gnb-1depth-link {padding:30px 20px}
}

@media screen and (max-width: 1024px) {
  .gnb__logo {flex: 0 1 230px;}
  .gnb__logo img {flex: 0 1 200px;}
  .gnb-1depth-list {display:none}
}

@media screen and (max-width: 768px) {
  #header {padding: 0px 20px}
  .gnb {padding: 10px 0;}
  .gnb__logo {flex: 0 1 200px;}
}

@media screen and (max-width: 500px) {
  .gnb__logo {flex: 0 1 150px;padding: 15px 0}
}

.sitemap {flex: 0 1 150px;display: flex;align-items: center;justify-content: end;}
.sitemap__mypage {width: 40px;height: 40px;background: url('../img/icon_mypage.png') no-repeat center;padding: 20px;}
.sitemap__btn {width:70px;height:70px;border:0;background:transparent;/* padding:20px; */position:relative;z-index:10;transition: all .3s;display: flex;justify-content: center;align-items: center;}
.sitemap__btn img:nth-child(1) {}
.sitemap__btn img:nth-child(2) {display: none;}
.sitemap__btn--active img:nth-child(1) {display: none;}
.sitemap__btn--active img:nth-child(2) {display: block;}
.sitemap__btn--active .sitemap__btn--top {animation:ease .7s top forwards}
.sitemap__btn--no-active .sitemap__btn--top {animation:ease .7s top-2 forwards}
.sitemap__btn--active .sitemap__btn--mid {animation:ease .7s scaled forwards}
.sitemap__btn--no-active .sitemap__btn--mid {animation:ease .7s scaled-2 forwards}
.sitemap__btn--active .sitemap__btn--bot {animation:ease .7s bottom forwards}
.sitemap__btn--no-active .sitemap__btn--bot {animation:ease .7s bottom-2 forwards}

@keyframes top {
  0% {top:0;transform:rotate(0)}
  50% {top:6px;transform:rotate(0)}
  100% {top:6px;transform:rotate(45deg);background:#000}
}

@keyframes top-2 {
  0% {top:6px;transform:rotate(45deg)}
  50% {top:6px;transform:rotate(0deg)}
  100% {top:0;transform:rotate(0deg)}
}

@keyframes bottom {
  0% {bottom:0;transform:rotate(0)}
  50% {bottom:6px;transform:rotate(0)}
  100% {bottom:12px;transform:rotate(135deg);background:#000}
}

@keyframes bottom-2 {
  0% {bottom:6px;transform:rotate(135deg)}
  50% {bottom:10px;transform:rotate(0)}
  100% {bottom:0;transform:rotate(0)}
}

@keyframes scaled {
  50% {transform:scale(0)}
  100% {transform:scale(0)}
}

@keyframes scaled-2 {
  0% {transform:scale(0)}
  50% {transform:scale(0)}
  100% {transform:scale(1)}
}

.sitemap__menu {display:none;position:fixed;width:100%;height:100vh;top:0;left:0;background:#FFF;padding:100px 150px;overflow-y:scroll;flex-wrap:wrap;gap:50px;text-align: left;}
.sitemap__menu--active {display:flex;}
.sitemap__menu::-webkit-scrollbar {width:5px}
.sitemap__menu::-webkit-scrollbar-thumb {background-color:#2f2f2f;border-radius:10px}
.sitemap__menu::-webkit-scrollbar-track {background-color:#d8d8d8;border-radius:10px}
.sitemap__1depth {flex: 0 1 calc(100% / 3 - 38px);padding:60px 40px;border-radius:20px;border:1px solid #e5e5e5;box-shadow:0 0 15px rgb(0 0 0 / 14%)}
.sitemap__1depth-link {display:block;font-size:22px;line-height:30px;font-weight:700;padding:0 0 10px;margin:0 0 20px;border-bottom:3px solid #2f2f2f;}
.sitemap__2depth {}
.sitemap__2depth-link {display:block;font-size:18px;padding:0 0 10px;}
.sitemap__2depth-link:hover {font-weight:700;color: #005AD4;}
.sitemap__2depth-link:last-child {padding:0;}

@media screen and (max-width: 1400px) {	
	.sitemap {flex: 0 1 180px}
	.sitemap__menu {gap: 20px; padding:100px 80px;}
	.sitemap__1depth {flex: 0 1 calc(100% / 4 - 15px); padding: 50px 30px;}
}

@media screen and (max-width: 1200px) {
	.sitemap {flex: 0 1 calc(100% - 280px)}
	.sitemap__menu {padding: 80px 60px;}
	.sitemap__2depth-link {font-size: 18px;}
}

@media screen and (max-width: 1024px) {
	.sitemap {flex: 0 1 calc(100% - 230px)}
	.sitemap__1depth {flex: 0 1 calc(100% / 3 - 14px);}
	.sitemap__1depth-link {font-size: 20px;line-height: 28px;border-bottom: 1px solid #2f2f2f}
	.sitemap__2depth-link {font-size: 16px;}
}

@media screen and (max-width: 768px) {
	.sitemap {flex: 0 1 calc(100% - 200px)}
	.sitemap__menu {padding: 60px 40px;}
	.sitemap__1depth {flex: 0 1 calc(100% / 2 - 10px); padding: 30px}
	.sitemap__btn {width:45px;height:60px;}
	.sitemap__btn img {width: 45px;height: 45px;}
}

@media screen and (max-width: 500px) {
	.sitemap {flex: 0 1 calc(100% - 150px);}
	.sitemap__menu {padding: 60px 20px;gap: 10px;}
	.sitemap__btn {width: 40px;height: 50px;}
	.sitemap__btn img {width: 40px;height: 40px;}
	.sitemap__btn span {display:block;width:100%;height:3px;background:#FFF;transition:all .3s;position:relative}
	.sitemap__btn span+span {margin-top:6px;}
	
	.sitemap__1depth {flex: 0 1 100%;padding: 30px 20px;}
	.sitemap__1depth-link {font-size: 20px;margin: 0 0 15px}
	.sitemap__2depth-link {}

	.sitemap__mypage {width: 30px;height: 30px;padding: 15px;}
}




/* 풀페이지 수정 */
.fullpage__menu {position:fixed;z-index:100;top:50%;right: 25px;opacity:1;transform: translateY(-50%);}
.fullpage__menu-list {}
.fullpage__menu-list li {transition: all cubic-bezier(0, 0.02, 0.3, -0.04);padding: 5px 0;text-align: center;}
.fullpage__menu-list li.text {writing-mode:vertical-rl;transform: rotate(180deg);padding: 0 0 20px;font-size: 16px;color: #FFF;font-weight: 600;cursor: pointer;transition: all 0.2s;}
.fullpage__menu-list li.text:hover {font-weight: 700;}
.fullpage__menu-list li a {padding: 0px 20px 0px 0px;position: relative;font-size: 14px;color: #FFF;transition: all 0.3s;}
.fullpage__menu-list li a::before {display: block;content: '';width: 10px;height: 10px;border-radius: 100%;border: 1px solid #FFF;position: absolute;right: 4px;top: 50%;transform: translateY(-50%);transition: all 0.3s;}
.fullpage__menu-list li a.active {font-size: 16px;font-weight: 600;}
.fullpage__menu-list li a.active::before {display: block;content: '';width: 10px;height: 10px;background: #FFF;}

.fp-viewing-sec04 .fullpage__menu-list li.text {color: #3578ab}
.fp-viewing-sec04 .fullpage__menu-list li a::before {border: 1px solid #ffffff;}
.fp-viewing-sec04 .fullpage__menu-list li a.active::before {background: #3578ab;border: 1px solid #3578ab;}
.fp-viewing-4 .fullpage__menu-list li.text {color: #000;font-weight: 700;letter-spacing: 3px;}
.fp-viewing-4 .fullpage__menu-list li a::before {border: 1px solid #b2d4ef;}
.fp-viewing-4 .fullpage__menu-list li a.active::before {background: #3578ab;}

@media screen and (max-width: 960px) {
	.fp-tableCell {height: 100% !important;}
}

@media screen and (max-width: 768px) {
	.fullpage__menu {display:none;}
}



/* 퀵메뉴 */
/* .quick__menu {width: 95%;max-width: 1700px;margin: 0 auto;position: fixed;bottom: 0;left: 50%;transform: translateX(-50%) translateY(calc(100% - 64px));opacity:1;transition: all 0.3s;}
.quick__menu.active {transform: translateX(-50%);}
.fp-viewing-sec01 .quick__menu {bottom: -100%;opacity: 0; transition: all 0.5s;}
.fp-viewing-4 .quick__menu {bottom: -100%;opacity: 0; transition: all 0.5s;}

.quick__menu-btn {display: block;width: 100%;background: linear-gradient(90deg, #009655 0%, #0389ba 100%);mix-blend-mode: normal;font-size: clamp(16px, 2vw, 20px);color: #FFF;padding: 20px;text-align: center;border-top-left-radius: 20px;border-top-right-radius: 20px;}
.quick__menu-btn__txt {}
.quick__menu-btn__txt p {padding: 0 15px 0 0 ; display: inline-block;}
.quick__menu-btn__txt span {padding: 0 0 5px;}
.quick__menu-btn__txt span img {transition: all 0.3s linear;}
.quick__menu-btn__txt span.rotate img {transform: rotate(180deg);}
.quick__menu-con {padding: 50px 20px;background: #FFF;}
.quick__menu-list {display: flex;flex-wrap: wrap;gap: 30px;}
.quick__menu-item {flex: 0 1 calc(100% / 3 - 20px);display: flex;flex-wrap: wrap;padding: 0 30px;position: relative;align-items: center;}
.quick__menu-item::after {display: block;content:'';width:10px;height: 100%;background: url('../img/icon_quick_menu_line.png') no-repeat center;background-size: contain;position: absolute;right: -20px;top: 50%;transform: translateY(-50%);}
.quick__menu-item:last-child:after {display:none;}
.quick__menu-ttl {font-size: clamp(18px, 2vw, 36px);color: #000;padding: 0 0 20px;text-align: center;flex: 0 1 100%;}
.quick__menu-txt {font-size: clamp(14px, 2vw, 18px);color: #404040;padding: 0 0 30px;text-align: center;flex: 0 1 100%;}
.quick__menu-inner {text-align: center;max-width: 350px;margin: 0 auto;display: flex;flex-wrap: wrap;gap: 20px;}
.quick__menu-inner__link {display: flex;padding: 30px 50px;flex: 0 1 100%;border-radius: 10px;gap: 10px;}
.quick__menu-inner__link:hover {font-weight: 600;}
.quick__menu-inner__link:nth-child(1) {background: url('../img/bg_quick_menu_inner_link01.png') no-repeat -7% 20px #003358;background-size: contain; transition:all 0.2s;}
.quick__menu-inner__link:nth-child(1):hover {background: url('../img/bg_quick_menu_inner_link01.png') no-repeat -7% 20px #00477a;background-size: contain;}
.quick__menu-inner__link:nth-child(2) {background: url('../img/bg_quick_menu_inner_link02.png') no-repeat -7% 20px #003358;background-size: contain; transition:all 0.2s;}
.quick__menu-inner__link:nth-child(2):hover {background: url('../img/bg_quick_menu_inner_link02.png') no-repeat -7% 20px #00477a;background-size: contain;}
.quick__menu-inner__link-img {flex:0 1 52px}
.quick__menu-inner__link-img img {}
.quick__menu-inner__link-txt {font-size:clamp(14px,2vw,18px);color:#FFF;flex: 0 1 calc(100% - 70px);}
.quick__menu-inner02 {display:flex;flex-wrap:wrap;gap:10px;max-width: 350px;margin: 0 auto;}
.quick__menu-inner02__link {flex: 0 1 100%;text-align: center;background: #003358;padding: 15px 0;color: #FFF;border-radius: 10px; transition:all 0.2s;}
.quick__menu-inner02__link:hover {background: #00477a; font-weight: 700;}
.quick__menu-inner03 {display: flex;flex-wrap: wrap;gap: 20px;}
.quick__menu-inner03__link {border-radius: 20px;flex: 0 1 100%;padding: 50px 30px;}
.quick__menu-inner03__link:nth-child(1) {background: url('../img/bg_quick_menu_inner03_01.jpg') no-repeat center;background-size: 100%;transition:all 0.3s;}
.quick__menu-inner03__link:nth-child(1):hover {background-size: 110%;}
.quick__menu-inner03__link:nth-child(2) {background: url('../img/bg_quick_menu_inner03_02.jpg') no-repeat center;background-size: 100%; transition:all 0.3s;}
.quick__menu-inner03__link:nth-child(2):hover {background-size: 110%;}
.quick__menu-inner03__link-ttl {font-size: clamp(16px, 2vw, 20px); color: #FFF; padding: 0 0 10px;}
.quick__menu-inner03__link-txt {font-size: clamp(14px, 2vw, 16px);line-height: 1.6em;color: #FFF;}

@media screen and (max-width: 1500px) {
	.quick__menu-inner03__link {padding: 40px 20px;}
}

@media screen and (max-width: 1024px) {
	.quick__menu { bottom: -10px;}
	.quick__menu-list {gap: 20px;}
	.quick__menu-item::after {right: -15px;}
	.quick__menu-btn {padding: 15px 0}
	.quick__menu-item {padding:0 10px;}

	.quick__menu-inner03__link:nth-child(1) {background: url('../img/bg_quick_menu_inner03_01.jpg') no-repeat center;background-size: auto;}
	.quick__menu-inner03__link:nth-child(1):hover {background-size: auto;}
	.quick__menu-inner03__link:nth-child(2) {background: url('../img/bg_quick_menu_inner03_02.jpg') no-repeat center;background-size: auto;}
	.quick__menu-inner03__link:nth-child(2):hover {background-size: auto;}
}

@media screen and (max-width: 768px) {
	.quick__menu {bottom: -15px;}
	.quick__menu-con {padding: 20px 20px 30px;}
	
	.quick__menu-item{flex: 100%;justify-content: center;}
	.quick__menu-inner03__link{flex: 0 1 calc(100% / 2 - 10px);padding: 20px;background-size: auto !important;}
	.quick__menu-inner02__link{flex: 0 1 calc(100% / 3 - 10px);font-size: clamp(14px, 3vw, 18px);}
	.quick__menu-inner__link{flex: 1 0 calc(100% / 2 - 10px);padding: 20px;display: table;min-width: 190px;}
	.quick__menu-inner{max-width: unset;}
	.quick__menu-ttl{padding: 0 0 10px;}
	.quick__menu-txt{padding: 0 0 15px;}
	.quick__menu-inner__link-img img{display:none;}
	.quick__menu-inner02{max-width:unset;}
	.quick__menu-item::after{right:50%;transform:translateX(50%);width:100%;height:1px;top:auto;bottom:-12px;background:#00000017}
	.quick__menu-inner__link-txt{display:table-cell;vertical-align: middle;}
	.quick__menu-item:last-child{display:none;}
}

@media screen and (max-width: 500px) {
	.quick__menu-inner__link{min-width: 150px;}
}

@media screen and (max-width: 400px) {
	.quick__menu-inner__link{min-width: 120px;}
} */


/* main common */
#section01 {}

#section01 .video_bg {
    max-height: 43.75rem;
    padding-top: 56.25%;
    pointer-events: none;
    position: relative;
    top: 0px;
    left: 0px;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#section01 .video_bg iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}


#section01{background-size:cover;/* height: 100vh !important; */position:relative;overflow: hidden;}
#section01 .slide-wr {height: 100%;z-index: 1;position: relative;}
#section01 .slide-wr .visual-slide {height: 100%;}
#section01 .slide-wr .visual-slide iframe {height: 100%;}
#section01 .slide-wr .visual-slide .img {width: 100%;height: 100%;}
#section01 .slide-wr .visual-slide .img img {width: 100%;height: 100%;object-fit: cover;}
#section01 .slide-wr .visual-slide .slick-list {height: 100%;width: 100%;}
#section01 .slide-wr .visual-slide .slick-list .slick-slide {width: 100% !important;height: 100% !important;top: auto !important;left: auto !important;position: absolute !important;}
#section01 .slide-wr .visual-slide .slick-list .slick-slide > div{width: 100% !important;height: 100% !important;}

#section01 .text_wr {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);text-align: center;z-index: 1;color: #ffffff;width: 100%;padding: 0 80px;}
#section01 .text_wr .text {font-family: 'Montserrat';color: #ffffff54;font-size: clamp(20px,2vw,30px);font-weight: 700;letter-spacing: 1px;}
#section01 .text_wr .tit {font-family: 'Montserrat';color: #ffffff;padding: clamp(20px,4.2vw,60px) 0 clamp(22px,4.2vw,62px);font-size: clamp(28px,4.8vw,80px);font-weight: 700;}
#section01 .text_wr .txt {color: #ffffff;font-size: clamp(20px, 2vw, 36px);font-weight: 800;}

#section01 .right_con {position: absolute;top: 50%;right: 0;height: 100%;width: 100%;max-width: 80px;transform: translateY(-50%);z-index: 1;}
#section01 .right_con .df {width: 100%;}
#section01 .right_con .df a {writing-mode: vertical-rl;letter-spacing: 8px;align-items: center;justify-content: center;color: #fff;width: 100%;flex-direction: row;gap: 20px;font-size: clamp(18px, 2vw, 20px);font-weight: 800;display: flex;}
#section01 .right_con .top_con {background: linear-gradient(to bottom, #1e3c72, #2e8b8b);}
#section01 .right_con .btm_con {background: #000;}


@media screen and (max-width:1400px) {
}


@media screen and (max-width:1024px) {
  #section01{/* height: 580px !important; */}

	#section01 .text_wr{padding: 0 40px;}

	#section01 .right_con{display: none !important;}
}

@media screen and (max-width:960px) {
}

@media screen and (max-width:768px) {
  #section01{/* height: 550px !important; */}
	#section01 .text_wr{padding: 0 20px;}
}


/* section02 */
#section02{background: url('../img/section02_bg01.jpg')no-repeat center;background-size: cover;height: fit-content;}
#section02 > .df {padding: clamp(40px,8vw,200px) clamp(40px,10vw,400px);overflow: hidden;gap: 20px;position: relative;}
#section02 .df .left_con {width: calc(30% - 10px);}
#section02 .df .left_con .text_wr {padding: 0 0 clamp(40px,8.2vw,150px);}
#section02 .df .left_con .text_wr .text {font-size: clamp(18px,2vw,20px);font-family: 'Montserrat';font-weight: 700;color: #1babbb;letter-spacing: 1px;}
#section02 .df .left_con .text_wr .tit {padding: clamp(40px,4.2vw,60px) 0 clamp(24px,2.8vw,46px);font-family: 'Montserrat';padding: clamp(26px, 4.2vw, 60px) 0 clamp(28px, 4.2vw, 62px);font-size: clamp(40px, 4.8vw, 80px);font-weight: 700;}
#section02 .df .left_con .text_wr .txt {font-size: clamp(18px,2vw,22px);font-weight: 500;line-height: 1.4em;}

#section02 .df .left_con .visual-slide-btm-con {gap: clamp(20px,2vw,40px);align-items: center;}
#section02 .df .left_con .visual-slide-btm-con .arrow-wr {gap: clamp(4px,2vw,8px);}
#section02 .df .left_con .visual-slide-btm-con .slick-dots {display: flex !important;flex-wrap: wrap;gap: clamp(8px,2vw,24px);}
#section02 .df .left_con .visual-slide-btm-con .slick-dots li {font-size: 0;width: 9px;height: 9px;background: #b7b7b7;border-radius: 100%;position: relative;cursor: pointer;}
#section02 .df .left_con .visual-slide-btm-con .slick-dots .slick-active button:before {content: "";display: block;width: 20px;height: 20px;border: 3px solid #30287c;border-radius: 100%;background: #fff;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);}

#section02 .df .right_con {width: calc(70% - 10px);overflow: hidden;position: relative;left: clamp(40px,18vw,270px);z-index: 1;max-height: 480px;}
#section02 .slick-slide .right_con_content {display: flex !important;flex-direction: column;align-items: start;}

#section02 .slick-slide {display: block;float: left;margin: 0 12px;padding: clamp(20px,2vw,34px);border: 1px solid #d5d5d5;border-radius: 22px;backdrop-filter: blur(21.9px);-webkit-backdrop-filter: blur(21.9px);margin-top: 30px;/* max-width: 335px; */transition: all 0.5s;}
#section02 .slick-slide a {font-family: 'Montserrat';font-size: 14px;padding: 0 0 clamp(20px,3.6vw,62px);}
#section02 .slick-slide .text_wr {width: 100%;}
#section02 .slick-slide .text_wr .txt {font-size: clamp(15px,2vw,16px);font-family: 'Montserrat';font-weight: 300;}
#section02 .slick-slide .text_wr .tit {font-size: clamp(24px,2.4vw,42px);font-weight: 800;padding: clamp(16px,2vw,28px) 0 clamp(18px,2vw,32px);}
#section02 .slick-slide .text_wr .text {font-size: clamp(16px,2vw,18px);font-weight: 500;margin: 0 0 clamp(20px,2.6vw,44px);line-height: 1.4em;}

#section02 .slick-slide .img {width: 100%;display: flex;justify-content: flex-end;}
#section02 .slick-slide .img .active {height: 0;overflow: hidden;}
#section02 .slick-slide .img .no_active {height: 100%;}

#section02 .slick-current {background: linear-gradient(to bottom, #0a82b8, #1eb4bb);color: #fff;position: relative;margin: 0 12px;}
#section02 .slick-current a {color: #fff;}
#section02 .slick-current .img .active {height: 100%;}
#section02 .slick-current .img .no_active {height: 0;overflow: hidden;}

@media screen and (max-width:1600px) {
	#section02 > .df{padding: clamp(40px,8vw,200px) 60px;}
}

@media screen and (max-width:1400px) {
	#section02 > .df{padding: clamp(40px,8vw,200px) 40px;}

	#section02 .df .left_con{width: calc(35% - 10px);}
	#section02 .df .right_con{width: calc(65% - 10px);left: 0;}
}

@media screen and (max-width:1024px) {
	#section02 .df .left_con {width: calc(60% - 10px);}
	#section02 .df .right_con{position: absolute;top: 50%;right: -150px;left: auto;transform: translateY(-50%);}
}

@media screen and (max-width:768px) {
	#section02 > .df{padding: clamp(40px,8vw,200px) 20px;}
	#section02 .df .left_con{width: calc(55% - 10px);}
	#section02 .df .right_con{width: calc(70% - 10px);}

	#section02 .slick-slide{margin-top: 0px;}
}

@media screen and (max-width:600px) {
	#section02 .df .left_con{width: 100%;}
	#section02 .df .left_con .text_wr{padding: 0 0 20px;text-align: center;}
	#section02 .df .left_con .visual-slide-btm-con{display: none !important;}

	#section02 .df .right_con{position: relative;width: 100%;top: auto;transform: none;right: auto;}
	
	#section02 .slick-current{background: none;color: #000;}
	#section02 .slick-current a{color: #000;}
	#section02 .slick-slide .img .no_active {height: 100%;max-height: 50px;}
	#section02 .slick-current .img .active {height: 0;}

	#section02 .slick-slide .text_wr .text{display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;overflow: hidden;word-break: break-all;-webkit-text-size-adjust: none;-moz-text-size-adjust: none;-ms-text-size-adjust: none;-o-text-size-adjust: none;}
}

@media screen and (max-width:500px) {
	#section02 .df .right_con{max-height: 568px;height: fit-content;}

	#section02 .slick-slide{max-width: none; margin: 0 0 12px;}
}

/* section03 */
#section03{background: url('../img/section03_bg_img01.jpg')no-repeat center;background-size: cover;height: fit-content;padding: clamp(40px,7.6vw,140px) clamp(40px,10vw,400px);}
#section03 > .text {color: #fff;}
#section03 > .text .txt {font-size: clamp(18px,2vw,20px);font-weight: 500;padding: 0 0 clamp(24px,2.8vw,50px);}
#section03 > .text .tit {font-family: 'Montserrat';font-size: clamp(40px, 4.8vw, 80px);font-weight: 700;padding: 0 0 clamp(40px,6.8vw,120px);}
#section03 .content_wr {justify-content: space-between;gap: 50px;}
#section03 .content_wr .three {border-radius: 40px;overflow: hidden;flex: 0 1 calc(100% / 3 - 34px);}
#section03 .content_wr .three a{position: relative;border-radius: 58px;overflow: hidden;width: 100%;height: 100%;}
#section03 .content_wr .three img {width: 100%;height: 100%;}
#section03 .content_wr .three .text {color: #fff;position: absolute;left: 0;bottom: 0;width: 100%;height: 100%;max-height: clamp(100px,8.2vw,148px);background: #00000060;padding: clamp(20px,2vw,32px) clamp(20px,2vw,40px) clamp(20px,2vw,40px);display: flex;flex-direction: column;justify-content: space-between;}
#section03 .content_wr .three .text .tit {font-size: clamp(20px, 2vw, 36px);font-weight: 800;}
#section03 .content_wr .three .text .txt {font-size: 14px;color: #ffffff45;font-family: 'Montserrat';font-weight: 500;}


@media screen and (max-width:1600px) {
	#section03 {padding: clamp(40px,7.6vw,140px) 60px;}
}

@media screen and (max-width:1400px) {
	#section03 {padding: clamp(40px,7.6vw,140px) 40px;}

	#section03 .content_wr .three a{border-radius: 40px;}
}

@media screen and (max-width:1200px) {
	#section03 > .text .txt{padding: 0 0 clamp(24px,2vw,32px);}
	#section03 > .text .tit{padding: 0 0 clamp(20px,4.2vw,80px);}

	#section03 .content_wr {gap: 20px;}
	#section03 .content_wr .three{flex: 0 1 calc(100% / 3 - 14px);}
}

@media screen and (max-width:1024px) {
}

@media screen and (max-width:768px) {
	#section03 {padding: clamp(40px,7.6vw,140px) 20px;}
}

@media screen and (max-width:600px){
	#section03 .content_wr .three {flex: 100%;max-height: 132px;}
	#section03 .content_wr .three img{object-fit: cover;}
	#section03 .content_wr .three .text{flex-direction: row;max-height: 56px;}
}

/* section04 */
#section04{background: url('../img/section04_bg01.jpg')no-repeat center;background-size: cover;height: fit-content;padding: clamp(40px,8vw,200px) clamp(40px,10vw,400px);gap: clamp(20px,4.8vw,80px);display: flex;flex-direction: column;overflow: hidden;}
#section04 .top_con > .df {/* overflow: hidden; */position: relative;padding: 0 0 20px;}
#section04 .top_con .df .left_con {width: calc(40%);}
#section04 .top_con .df .right_con {width: calc(60% - 10px);overflow: hidden;position: relative;/* left: clamp(40px,18vw,270px); */z-index: 1;max-height: 480px;}
#section04 .top_con .df .left_con .text_wr {padding: 0 0 clamp(40px,8.2vw,150px);}
#section04 .top_con .df .left_con .text_wr .text {font-size: clamp(18px,2vw,20px);font-family: 'Montserrat';font-weight: 700;color: #1babbb;letter-spacing: 1px;}
#section04 .top_con .df .left_con .text_wr .tit {padding: clamp(40px,4.2vw,60px) 0 clamp(24px,2.8vw,46px);font-family: 'Montserrat';padding: clamp(26px, 4.2vw, 60px) 0 clamp(28px, 4.2vw, 62px);font-size: clamp(40px, 4.8vw, 80px);font-weight: 700;}
#section04 .top_con .df .left_con .text_wr .txt {font-size: clamp(18px,2vw,22px);font-weight: 500;}

#section04 .top_con .df .left_con .visual-slide-btm-con {gap: clamp(20px,2vw,40px);align-items: center;}
#section04 .top_con .df .left_con .visual-slide-btm-con .arrow-wr {gap: clamp(4px,2vw,8px);}
#section04 .top_con .df .left_con .visual-slide-btm-con .slick-dots {display: flex !important;flex-wrap: wrap;gap: clamp(8px,2vw,24px);}
#section04 .top_con .df .left_con .visual-slide-btm-con .slick-dots li {font-size: 0;width: 9px;height: 9px;background: #b7b7b7;border-radius: 100%;position: relative;cursor: pointer;}
#section04 .top_con .df .left_con .visual-slide-btm-con .slick-dots .slick-active button:before {content: "";display: block;width: 20px;height: 20px;border: 3px solid #30287c;border-radius: 100%;background: #fff;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);}
#section04 .top_con .slick-slide .right_con_content {display: flex !important;flex-direction: column;align-items: start;}

#section04 .top_con .slick-slide {display: block;float: left;margin: 0 12px;padding: clamp(20px,2vw,46px);border: 1px solid #d5d5d5;border-radius: 22px;backdrop-filter: blur(21.9px);-webkit-backdrop-filter: blur(21.9px);max-width: 335px;transition: all 0.5s;}
#section04 .top_con .slick-slide a {}
#section04 .top_con .slick-slide .text_wr {}
#section04 .top_con .slick-slide .text_wr .txt {font-size: clamp(15px,2vw,16px);font-family: 'Montserrat';font-weight: 300;}
#section04 .top_con .slick-slide .text_wr .tit {font-size: clamp(24px,2.4vw,42px);font-weight: 800;padding: clamp(16px,2vw,28px) 0 clamp(18px,2vw,32px);}
#section04 .top_con .slick-slide .text_wr .text {font-size: clamp(16px,2vw,18px);font-weight: 500;padding: 0 0 clamp(20px,2.6vw,44px);line-height: 1.4em;}

#section04 .top_con .slick-slide .img {width: 100%;display: flex;justify-content: flex-end;}
#section04 .top_con .slick-slide .img .active {height: 0;overflow: hidden;}
#section04 .top_con .slick-slide .img .no_active {height: 100%;}

#section04 .top_con .slick-slide .galley_li {}

#section04 .top_con .slick-slide .galley_li .content_tit {font-size: 16px;font-weight: 600;font-family: 'Montserrat';color: #b2b2b2;padding: 0 0 clamp(18px,2vw,30px);}
#section04 .top_con .slick-slide .galley_li .tit {font-size: clamp(20px,2vw,24px);font-weight: 700;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;overflow: hidden;word-break: break-all;-webkit-text-size-adjust: none;-moz-text-size-adjust: none;-ms-text-size-adjust: none;-o-text-size-adjust: none;margin: 0 0 clamp(20px,2.4vw,44px);line-height: 1.4em;}
#section04 .top_con .slick-slide .galley_li .txt {font-size: clamp(16px,2vw,18px);font-weight: 400;color: #5f5f5f;line-height: 1.4em;display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;overflow: hidden;word-break: break-all;-webkit-text-size-adjust: none;-moz-text-size-adjust: none;-ms-text-size-adjust: none;-o-text-size-adjust: none;margin: 0 0 clamp(20px,4.8vw,80px);}
#section04 .top_con .slick-slide .galley_li .date {gap: 4px;align-items: center;color: #aaaaaa;font-weight: 400;}
#section04 .top_con .slick-slide .galley_li .date img{max-width: 15px;}

#section04 .btm_con {gap: 30px;}
#section04 .btm_con > div {flex: 0 1 calc(100% / 2 - 15px);padding: clamp(20px,2vw,44px) clamp(24px,2vw,50px) clamp(20px,2vw,44px) clamp(24px,3.2vw,64px);border-radius: 22px;align-items: center;color: #fff;justify-content: space-between;gap: 20px;}
#section04 .btm_con .left_con {background: #20b7bc;}
#section04 .btm_con .right_con {background: #0068b7;}
#section04 .btm_con > div .text {width: calc(100% - 94px);}
#section04 .btm_con > div .text .tit {font-size: clamp(28px, 2vw, 36px);padding: 0 0 clamp(12px,2vw,22px);font-weight: 700; color: #fff;}
#section04 .btm_con > div .text .txt {font-size: clamp(16px,2vw,18px);font-weight: 500;color: #ffffff62;}
#section04 .btm_con > div img{width: calc(74px);}



@media screen and (max-width:1600px) {
	#section04 {padding: clamp(40px,8vw,200px) 60px;gap: clamp(40px, 3.8vw, 60px);}
}

@media screen and (max-width:1400px) {
	#section04 {padding: clamp(40px,8vw,200px) 40px;gap: clamp(20px, 2.6vw, 40px);}
}

@media screen and (max-width:1024px) {
	#section04 .btm_con {gap: 20px;}
	#section04 .btm_con > div{flex: 0 1 calc(100% / 2 - 10px);}
}

@media screen and (max-width:768px) {
	#section04 {padding: clamp(40px,8vw,200px) 20px;}
	
	#section04 .top_con .df .left_con{width: calc(60% - 10px);}
	#section04 .top_con .df .right_con{position: absolute;top: 50%;right: -100px;left: auto;transform: translateY(-50%);height: 100%;width: calc(70% - 10px);}

	#section04 .btm_con > div{flex: 100%;}
}

@media screen and (max-width:600px) {
	#section04 .top_con .df .left_con{width: 100%;}
	#section04 .top_con .df .left_con .text_wr{padding: 0 0 20px;text-align: center;}
	#section04 .top_con .df .left_con .visual-slide-btm-con{display: none !important;}
	
	#section04 .top_con .df .right_con{position: relative;width: 100%;top: auto;transform: none;right: auto;}
	#section04 .top_con .slick-slide .galley_li .tit{-webkit-line-clamp:1;}
	#section04 .top_con .slick-slide .galley_li .txt{-webkit-line-clamp:2;}
	
	#section04 .btm_con > div img{width: 44px;}
}

@media screen and (max-width:500px) {
	#section04 .top_con .df .right_con{max-height: 458px;height: fit-content;}

	#section04 .top_con .slick-slide{max-width: none; margin: 0 0 12px;}
}


#footer{background: #161616;}
#footer .top_con{padding: clamp(20px,2.4vw,46px) clamp(40px,10vw,400px);border-bottom: 1px solid #ffffff10;color: #afafaf;font-weight: 700;}
#footer .top_con a{color: #afafaf;font-weight: 400;}
#footer .top_con img {padding: 0 0 clamp(24px,2.4vw,42px);}
#footer .top_con .policy{padding: 0 0 clamp(20px,2vw,30px);}
#footer .top_con .bd_left {padding-right: clamp(8px,2vw,26px);margin-right: clamp(8px,2vw,26px);border-right: 1px solid #ffffff30;}
#footer .top_con .text_wr{font-size: 16px;line-height: 1.6em;}
#footer .top_con .text_wr ul {display: flex;flex-wrap: wrap;}

#footer .btm_con{padding: clamp(20px,2vw,30px) clamp(40px,10vw,400px);color: #afafaf;text-align: center;font-size: 16px;font-weight: 400;}

@media screen and (max-width:1600px) {
	#footer .top_con{padding: clamp(20px,2.4vw,46px) 60px;}
	#footer .btm_con{padding: clamp(20px,2vw,30px) 60px}
}

@media screen and (max-width:1400px) {
	#footer .top_con{padding: clamp(20px,2.4vw,46px) 40px;}
	#footer .btm_con{padding: clamp(20px,2vw,30px) 40px}
}

@media screen and (max-width:768px) {
	#footer .top_con{padding: clamp(20px,2.4vw,46px) 20px;}
	#footer .btm_con{padding: clamp(20px,2vw,30px) 20px}
}

@media screen and (max-width:600px) {
	#footer .top_con .text_wr ul{flex-direction: column;}
	#footer .top_con .text_wr ul .bd_left{margin: 0; padding: 0; border-right: 0;}
}