@charset "utf-8";
/* layout.css는 전체적인 레이아웃 스타일을 정의합니다. */

#skipToContent a {z-index:100000;position:absolute;overflow:hidden;top:0;left:0;width:1px;height:1px;font-size:0;line-height:0;}
#skipToContent a:focus,
#skipToContent a:active {width:200px;height:50px;background:#21272e;color:#fff;font-size:14px;font-weight:bold;text-align:center;text-decoration:none;line-height:50px}

.only-desktop-tablet {display:block;}
.only-desktop {display:block;}
.only-tablet {display:none;}
.only-mobile {display:none;}

.contain {max-width:1260px; padding-left:var(--container-space); padding-right:var(--container-space); margin:0 auto;}

/* header */
#header {position:sticky; top: 0; width:100%; background:#fff; border-bottom:1px solid #ddd; z-index:100;}
#header .contain {position:relative; display:flex; align-items:center; max-width: 1780px; z-index:10;}
.header-top .contain {height: var(--header-top-height); justify-content:space-between;}
.gnb-wrapper .contain {height: var(--gnb-height); justify-content:center;}

#gnb {text-align:center;}
#gnb>ul {display:flex; justify-content:center;}
#gnb>ul>li {position:relative; padding:0 45px;}
#gnb>ul>li>a {position:relative; display:flex; align-items:center; flex-direction: column; justify-content:center; height:var(--gnb-height); color:#242424; font-size:18px; font-weight:500; letter-spacing:-.02em; line-height:1.3em;}
#gnb>ul>li>a:after {content:""; position:absolute; bottom:0; left:50%; width:0; height:10px; margin-left: -5px; margin-bottom: -5px; background:var(--secondary-color); transform: rotate(45deg); transition:.2s; z-index: 1;}
#gnb>ul>li.active>a:after {width:10px;}
#gnb .submenu {display: none; position:absolute; left:50%; width:max-content; min-width: 160px; transform:translateX(-50%); text-align:center; background: var(--primary-color);}
#gnb .submenu>ul {padding:25px clamp(20px, calc( 30 / var(--inner) * 100vw ), 30px);}
#gnb .submenu>ul>li>a {display:block; padding:9px 0; color:#fff; font-size:16px; line-height:1.5em; letter-spacing: -.02em;}
#gnb .submenu>ul>li>a:hover {text-decoration:underline;}

/* for mobile */
.btn-m-menu {display:block; position:relative; width:30px; height:22px;}
.btn-m-menu span {position:absolute; left:0; right:0; top:50%; height:2px; margin-top:-1px; background:#242424;}
.btn-m-menu:before,
.btn-m-menu:after {content:" "; position:absolute; left:0; right:0; height:2px; background:#242424;}
.btn-m-menu:before {top:0;}
.btn-m-menu:after {bottom:0;}

.mobile-navigation {display:block; position:fixed; top:0; right:0; width:900px; height:auto; max-height: 100%; padding: 0 clamp(15px, calc( 50 / var(--inner) * 100vw ), 50px); overflow:auto; transition:.2s linear; -ms-transform:translateX(100%); transform:translateX(100%); background:linear-gradient(to bottom, #1f1919, #362e2e); z-index:102; letter-spacing: -.01em;}
.mobile-navigation .home {display:flex; align-items:center; height:var(--header-top-height); margin-bottom: var(--gnb-height); color:#fff; font-size:19px; font-weight:700; line-height:1.5em;}
.mobile-navigation .nav-menu>ul>li {display: flex; padding: clamp(10px, calc( 24 / var(--inner) * 100vw ), 24px) 0;}
.mobile-navigation .nav-menu>ul>li:not(:last-child) {border-bottom: 1px solid rgba(221,221,221,.3);}
.mobile-navigation .nav-menu>ul>li>a {position:relative; display:block; width: 200px; height: fit-content; color:#fff; font-size: clamp(18px, calc( 30 / var(--inner) * 100vw ), 30px); font-weight: 700; line-height: 1.2em;}
.mobile-navigation .nav-menu>ul>li>a span {position: relative; z-index: 1;}
.mobile-navigation .nav-menu>ul>li>a span:before {position: absolute; z-index: -1; content: ''; left: 0; bottom: 2px; width: 0; height: 7px; background: #fff; opacity: 0; transition: all .2s linear;}
.mobile-navigation .nav-menu>ul>li.active>a span:before {width: 100%; opacity: .2;}
.mobile-navigation .nav-menu .submenu {flex: 1;color:#ededed; font-size:clamp(15px, calc( 17 / var(--inner) * 100vw ), 17px); font-weight:400; line-height:1.4117em;}
.mobile-navigation .nav-menu .submenu ul {display: flex; flex-wrap: wrap;}
.mobile-navigation .nav-menu .submenu ul li {width: 50%; padding: clamp(5px, calc( 8 / var(--inner) * 100vw ), 8px) 15px; padding-left: 0;}
.mobile-navigation .nav-menu .submenu ul li a {position: relative; display:block; width: fit-content; padding-left: 10px;}
.mobile-navigation .nav-menu .submenu ul li a:after {position: absolute; content: '·'; left: 0;}
.mobile-navigation .nav-menu .submenu ul li a:before {position: absolute; content: '';left: 0; bottom: 0; width: 0; height: 1px; background: #ededed; opacity: 0; transition: all .2s linear;}
.mobile-navigation .nav-menu .submenu ul li a:hover:before {opacity: 1; width: 100%;}
.mobile-navigation .close {position:absolute;content: '';top:0; right:clamp(15px, calc( 50 / var(--inner) * 100vw ), 50px); width:26px; height:var(--header-top-height); text-indent:-9999em; overflow:hidden;}
.mobile-navigation .close:before,
.mobile-navigation .close:after {content:" "; position:absolute; top:50%; left:0; width:100%; height:3px; background:#fff; border-radius:3px;}
.mobile-navigation .close:before {transform:rotate(45deg);}
.mobile-navigation .close:after {transform:rotate(-45deg);}
.mobile-overlay {display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:#000; opacity:0.6; z-index:101;}

html.menu-opened {overflow:hidden;}
html.menu-opened .mobile-navigation {-ms-transform:translateX(0); transform:translateX(0);}
html.menu-opened .mobile-overlay {display:block;}

/* main */
.main-visual {position:relative; background:#000; overflow:hidden;}
.main-visual .slick-track {display: flex;}
.main-visual .slick-slide {display: flex; height: auto;}
.main-visual .slick-slide>div {width: 100%;}
.mv-boxes {display: flex !important; position:relative; overflow:hidden; height: 100%;}
.mv-box {display: flex; align-items: center; justify-content: center; flex-direction: column; flex: 1; padding: clamp(20px, calc( 60 / var(--inner) * 100vw ), 60px)  clamp(20px, calc( 30 / var(--inner) * 100vw ), 30px); background-position: center center; background-repeat: no-repeat; background-size: cover;}
.mv-box .desc {margin-bottom: clamp(12px, calc( 30 / var(--inner) * 100vw ), 30px); font-weight: 500;}
.mv-box .desc:first-child {font-weight: 700;}
.mv-box p {text-shadow: 3px 3px 7px rgba(0,0,0,.3); color: #fff; text-align: center;}
.mv-box .btn-more {margin-top: clamp(20px, calc( 40 / var(--inner) * 100vw ), 40px);}
.main-visual .controls {position:absolute; bottom: var(--container-space); left:50%; transform: translateX(-50%); width: 100%; max-width: 1820px; padding:0 clamp(20px, calc( 50 / var(--inner) * 100vw ), 50px); transform: translate(-50%, -50%); display:flex; align-items:center; gap: 20px; padding:0 50px; color:#fff; z-index:40; line-height: 1em;}
.main-visual .pager {display: flex; gap: 5px; color: #ccc;}
.main-visual .pager .current {display:inline-block; width:1.2em; color: #fff; font-weight: 600; text-align: right;}
.mv-dots ul {display: flex; gap: 10px; line-height: 0;}
.mv-dots button {display: block; width: 12px; height: 12px; border-radius: 100%; border: 1px solid #fff; background: unset; overflow: hidden; text-indent: -99999em; opacity: .8; transition: .2s;}
.mv-dots .slick-active button {width: 35px; border-radius: 6px; background: #fff; opacity: .7;}
.mv-arrow {position: absolute; top: 50%; right: var(--container-space); border-right: 1px solid rgba(255,255,255,.3); transform: translateY(-50%); z-index: 1; color: #fff; writing-mode: vertical-rl; letter-spacing: -.005em; cursor: pointer; opacity: .7; transition: .2s;}
.mv-arrow.slick-prev {right: auto; left: var(--container-space); border-right: 0; border-left: 1px solid rgba(255,255,255,.3);}
.mv-arrow:hover {opacity: 1; border-color: #fff;}
.btn-more {display: flex; justify-content: center; align-items: center; gap: clamp(20px, calc( 32 / var(--inner) * 100vw ), 32px); width: fit-content; height: 50px; padding: 10px 25px; border-radius: 10px;border: 1px solid #fff; color: #fff; font-weight: 500; font-size: 18px;}
.btn-more:hover {background: #fff; color: var(--dark-color);}
.btn-more .icon img {filter: brightness(10);}
.btn-more:hover .icon img {filter: none;}

.main-section .contain {max-width: 1460px;}

.main-fabric-video {width: 51.42857%;}
.main-fabric-video .wrap {position: relative; width: 100%; padding-bottom: 56.25%; overflow: hidden;}
.main-fabric-video video {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; max-width: 100%; max-height: auto; object-fit: contain;}
.main-fabric .btn-more, .main-service .btn-more {color: #454545; border: 1px solid #ddd;}
.main-fabric .btn-more .icon img,  .main-service .btn-more .icon img {filter: none;}
.main-section .btn-more:hover {background: var(--secondary-color); border-color:var(--secondary-color); color: #fff;}
.main-section .btn-more:hover .icon img {filter: brightness(10);}
.main-fabric-txt {padding-left: clamp(30px, calc( 125 / var(--inner) * 100vw ), 125px);}
.main-function-wrap {gap: clamp(20px, calc( 40 / var(--inner) * 100vw ), 40px);}
.main-function-large {width: 51.42857%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px var(--container-space); color: #fff;}
.main-function-boxes {flex: 1;}
.main-function-boxes ul {display: flex; flex-wrap: wrap; margin: calc(clamp(5px, calc( 10 / var(--inner) * 100vw ), 10px) * -1);}
.main-function-boxes li {width: 50%; padding: clamp(5px, calc( 10 / var(--inner) * 100vw ), 10px);}
.main-function-box:before {border-radius: var(--bdrs20);}

.dot-list li {position: relative; padding-left: 10px;}
.dot-list li:before {position: absolute; content: '•'; left: 0;}
.main-service {position: relative;}
.main-service .tag {opacity: .7;}
.main-service-txt {flex:1;}
.main-service-txt .dot-list {display: flex; flex-wrap: wrap;}
.main-service-txt li {}
.service-wrapper {display: flex; gap: clamp(30px, calc( 80 / var(--inner) * 100vw ), 80px);}
.main-service-img {width: 41.1429%;}

/* sub */
.sub-visual {position:relative; overflow:hidden; height:360px; background:#333; color:#fff; text-align:center;}
.sub-visual .bg {position:absolute; top:0; left:0; overflow:hidden; width:100%; height:100%; background-repeat:no-repeat; background-position:50% 0; background-size:cover; transition:2s; opacity:0; transform:scale(1.1);}
.sub-visual .inner {position:absolute; top:50%; left:0; width:100%; transform:translateY(-50%);}
.sub-visual h2 {font-size:60px; font-weight:700; line-height:1.3em; letter-spacing:-.03em; text-shadow: 3px 3px 8px rgba(0,0,0,.3)}
.sub-visual .bg1 {background-image:url("/images/common/sv1.jpg");}
.sub-visual .bg2 {background-image:url("/images/common/sv2.jpg");}
.sub-visual .bg3 {background-image:url("/images/common/sv3.jpg");}
.sub-visual .bg5 {background-image:url("/images/common/sv5.jpg");}
.sub-visual.none-lnb .inner {padding:0;}
.loaded .sub-visual .bg {transform:scale(1); opacity:1;}

.path-wrap {position:relative; background: var(--dark-color); z-index:50;}
.path-wrap .wrap {max-width:1200px; margin:0 auto;}
.path-wrap .inner {display:flex;}
.path-wrap .home a {display:block; width:var(--path-height); height:var(--path-height); background:url("/images/common/home.png") 50% 50% no-repeat; background-size:16px; text-indent:-999em; overflow:hidden;}
.path-wrap .part {position:relative; min-width:240px; z-index:50;}
.path-wrap .part:before {position: absolute; content: ''; top: 50%; margin-top: -6px; left: auto; width: 1px; height: 12px; background: rgba(255,255,255,.3);}
.path-wrap .part > a {display:flex; align-items:center; position:relative; height:var(--path-height); color:#fff; font-size:18px; font-weight:600; line-height:1.3em; padding:0 60px 0 22px;}
.path-wrap .part > a:after {content:""; position:absolute; top:50%; right:23px; margin-top:-7px; width:17px; height:14px; background:url("/images/common/path-down.png") 50% 50% no-repeat;}
.path-wrap .part ul {display:none; position:absolute; left:-1px; right:-1px; background:#fff; border:1px solid #ddd; z-index:50;}
.path-wrap .part ul li {color:#505050; line-height:1.3em; border-bottom:1px solid #ddd;}
.path-wrap .part ul li:last-child {border-bottom:0;}
.path-wrap .part ul li a {display:block; padding:17px 24px;}
.path-wrap .part ul li a:hover,
.path-wrap .part ul li.active a {color:#242424; background:#f8f8f8;}

@media (max-width: 640px) {
	.path-wrap .home a {border-left:0;}
	.path-wrap .home a {height:44px; width:44px; background-size:14px auto;}
	.path-wrap .part {min-width:calc(50% - 22px); width:calc(50% - 22px);}
	.path-wrap .part > a {height:44px; padding:0 32px 0 14px; font-size:15px;}
	.path-wrap .part > a:after {right:10px; width:12px; background-size:contain;}
	.path-wrap .part:last-child {border-right:0;}
	.path-wrap .part ul li a {font-size:14px; padding:12px 14px;}
}

.sub-title {padding-top:80px; max-width:1260px; margin:0 auto;}
#contArea.wide .sub-title {padding-left:var(--container-space); padding-right:var(--container-space);}
.sub-title h1 {font-size:40px; line-height:1.3em; color:var(--dark-color); text-align: center; height: 0; overflow: hidden;}
.sub-title .doc-tit {margin-bottom:22px;}

#contArea {max-width:1260px; padding-left:var(--container-space); padding-right:var(--container-space); margin:0 auto;}
#contArea.wide {max-width:100%; padding:0;}

.real-cont {padding-bottom:clamp(40px, calc( 140 / var(--inner) * 100vw ), 140px);}
.icon img {vertical-align: middle; margin-top: -.02em;}
.txt-center {text-align: center;}

.desc p:not(:last-child) {margin-bottom: 1em;}
.pb140-40 {padding-bottom: clamp(40px, calc( 140 / var(--inner) * 100vw ), 140px);}
.pt140-40 {padding-top: clamp(40px, calc( 140 / var(--inner) * 100vw ), 140px);}
.border-box {position: relative;}
.border-box:before {position: absolute; content: ''; top: 0; right: 0; bottom: 0; left: 0; border: 1px solid #ddd;}
.bdrs30 {border-radius: var(--bdrs30);}
.bdrs20 {border-radius: var(--bdrs20);}

.font-p {font-family: "Poppins", sans-serif;}
.font-play {font-family: "Play", sans-serif;}
.font-m {font-family: "miller-text", serif;}
.flex-wrap {display: flex;}
.flex-center {display: flex; justify-content: center;}
.flex-between {display: flex; justify-content: space-between;}
.flex-mid {display: flex; align-items: center;}
.flex-column {display: flex; flex-direction: column;}
.flex1 {flex: 1;}

.fw400 {font-weight: 400;}
.fw500 {font-weight: 500;}
.fw600 {font-weight: 600;}
.fw700 {font-weight: 700;}

.fz16-14 {font-size: clamp(14px, calc( 16 / var(--inner) * 100vw ), 16px); line-height: 1.5em;}
.fz17-15 {font-size: clamp(15px, calc( 18 / var(--inner) * 100vw ), 18px);}
.fz18-15 {font-size: clamp(16px, calc( 20 / var(--inner) * 100vw ), 20px); line-height: 1.66667em;}
.fz20-16 {font-size: clamp(17px, calc( 22 / var(--inner) * 100vw ), 22px); line-height: 1.66667em;}
.fz22-17 {font-size: clamp(18px, calc( 24 / var(--inner) * 100vw ), 24px); line-height: 1.33334em;}
.fz24-18 {font-size: clamp(19px, calc( 26 / var(--inner) * 100vw ), 26px); line-height: 1.33334em;}
.fz28-20 {font-size: clamp(20px, calc( 28 / var(--inner) * 100vw ), 28px); line-height: 1.33334em;}
.fz30-20 {font-size: clamp(20px, calc( 30 / var(--inner) * 100vw ), 30px); line-height: 1.33334em;}
.fz40-22 {font-size: clamp(22px, calc( 40 / var(--inner) * 100vw ), 40px); line-height: 1.2037em;}
.fz54-22 {font-size: clamp(22px, calc( 48 / var(--inner) * 100vw ), 48px); line-height: 1.2037em;}

.mb10-5 {margin-bottom: clamp(5px, calc( 10 / var(--inner) * 100vw ), 10px);}
.mb15-7 {margin-bottom: clamp(7px, calc( 15 / var(--inner) * 100vw ), 15px);}
.mb20-10 {margin-bottom: clamp(10px, calc( 20 / var(--inner) * 100vw ), 20px);}
.mb30-15 {margin-bottom: clamp(15px, calc( 30 / var(--inner) * 100vw ), 30px) !important;}
.mb35-20 {margin-bottom: clamp(20px, calc( 35 / var(--inner) * 100vw ), 35px);}
.mb50-25 {margin-bottom: clamp(25px, calc( 50 / var(--inner) * 100vw ), 50px);}

.primary-color {color: var(--primary-color);}
.secondary-color {color: var(--secondary-color);}
.dark-color {color: var(--dark-color);}
.white-color {color: #fff;}

/* footer */
#footer {padding: clamp(20px, calc( 60 / var(--inner) * 100vw ), 60px) 0;background:var(--secondary-color); font-size: clamp(14px, calc( 17 / var(--inner) * 100vw ), 17px); color: #fff; letter-spacing: 0;}
#footer .contain {max-width: 1460px;}
.f-cnt {gap: clamp(20px, calc( 70 / var(--inner) * 100vw ), 70px);}
.f-sns {justify-content: flex-end; gap: 10px;}
.f-sns a {display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 2px solid rgba(255,255,255,.3);}
.f-link .icon {margin-right: 7px;}
.f-link {gap: 30px; color: rgba(255,255,255,.6); letter-spacing: -.02em;}
.address-wrap {margin: 10px 0;}
.address-wrap address {display: flex; gap:0 32px; flex-wrap: wrap; font-style: normal; color: rgba(255,255,255,.8);}
#footer .copyright {font-size: 13px; color: #9a9a9a;}
.scroll-top {display:flex; justify-content:center; align-items:center; z-index:80; position:fixed; bottom:var(--container-space); right:var(--container-space); width:70px; height:70px; border-radius: 100%; box-shadow: 3px 3px 5px rgba(0,0,0,.2); background-color:#fff; color:var(--secondary-color); font-size:14px; font-weight: 500; line-height:1em; text-align:center;}
.scroll-top span:before {display:block; content:""; margin:0 auto 10px; width:0; height:0; border-left:7px solid transparent; border-right:6px solid transparent; border-bottom:7px solid var(--secondary-color);}