/* include 공통 CSS */

/************************* 공통 시작*************************/
.inner-1720 {width: 100%; max-width:1720px; margin: 0 auto;}
.inner {width: 100%; max-width:1520px; margin: 0 auto; }
@media(max-width:1760px){
	.inner-1720 {padding: 0 4%;}
}
@media(max-width:1640px){
	.inner {padding: 0 4%;}
}

.scroll-lock {overflow: hidden;}

.heading {font-size: var(--heading)} /* 20px*/
.heading-lg {font-size: var(--heading-lg)} /* 24px*/
.heading-xl {font-size: var(--heading-xl)} /* 32px*/
.heading-2xl {font-size: var(--heading-2xl)} /* 40px*/
.heading-3xl {font-size: var(--heading-3xl)} /* 48px*/
.heading-4xl {font-size: var(--heading-4xl)} /* 60px*/
.heading-5xl {font-size: var(--heading-5xl)} /* 80px*/
.heading-9xl {font-size: var(--heading-9xl)} /* 140px*/
.heading-10xl {font-size: var(--heading-10xl)} /* 240px*/


.text-3xs {font-size: var(--text-3xs)} /* 12px*/
.text-2xs {font-size: var(--text-2xs)} /* 13px*/
.text-xs {font-size: var(--text-xs)} /* 14px*/
.text-sm {font-size: var(--text-sm)} /* 15px*/
.text-rg {font-size: var(--text-rg)} /* 16px*/
.text-lg {font-size: var(--text-lg)} /* 17px*/
.text-xl {font-size: var(--text-xl)} /* 18px*/

.fw-100 {font-weight: 100;}
.fw-200 {font-weight: 200;}
.fw-300 {font-weight: 300;}
.fw-400 {font-weight: 400;}
.fw-500 {font-weight: 500;}
.fw-600 {font-weight: 600;}
.fw-700 {font-weight: 700;}
.fw-800 {font-weight: 800;}
.fw-900 {font-weight: 900;}

.white {color: #fff;}
.primary {color: var(--main-color)}
.secondary {color: var(--secondary)}
.third {color: var(--third)}
.alert {color: var(--alert);}

.text-upper {text-transform: uppercase;}
.text-capital {text-transform: capitalize;}

.gray-50 {color: var(--gray-50)}
.gray-100 {color: var(--gray-100)}
.gray-200 {color: var(--gray-200)}
.gray-300 {color: var(--gray-300)}
.gray-400 {color: var(--gray-400)}
.gray-500 {color: var(--gray-500)}
.gray-600 {color: var(--gray-600)}
.gray-700 {color: var(--gray-700)}
.gray-800 {color: var(--gray-800)}
.gray-900 {color: var(--gray-900)}

.text-left {text-align:left;}
.text-right {text-align:right;}
.text-center {text-align:center;}

.ls-tightest {letter-spacing: -0.05em; }
.ls-tighter {letter-spacing: -0.03em; }
.ls-tight {letter-spacing: -0.01em; }
.ls-wide {letter-spacing: 0.01em; }
.ls-wider {letter-spacing: 0.03em; }
.ls-widest {letter-spacing: 0.05em; }

.lh-100 {line-height: 1}
.lh-110 {line-height: 1.1}
.lh-120 {line-height: 1.2}
.lh-130 {line-height: 1.3}
.lh-140 {line-height: 1.4}
.lh-150 {line-height: 1.5}
.lh-160 {line-height: 1.6}
.lh-170 {line-height: 1.7}
.lh-180 {line-height: 1.8}
.lh-190 {line-height: 1.9}
.lh-200 {line-height: 2}

.shadow-1 {box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);}
.shadow-2 {box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);}
.shadow-3 {
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
              0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
.shadow-4 {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
              0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.shadow-5 {box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);}

.sub-container {min-height:5rem;}
/************************* 공통 끝 *************************/

/************************* header_inc 시작*************************/
.header__fix {position: fixed; left:0; top:0; z-index: 100;width:100%;  height: 6.25em; font-size: var(--fz); --menu-height : 0; transition: 0.15s ease-in-out all;}
.header__fix:after {position: absolute; content:''; top: 100%; left: 0; z-index: -1; width: 100%; height: var(--menu-height); background-color: #fff; transition: 0.15s ease-in-out all;}
.header__inner {display: flex; justify-content: space-between; align-items: center; height: inherit}
.header__ctrl {display: flex; align-items: center; height: inherit;}

.header-home {position: relative;}
.header-home__logo {width: 11.25em; transition: 0.15s ease-in-out all;}
.header-home__logo--nor {opacity: 1;}
.header-home__logo--ho {opacity: 0; position: absolute; left:0; top:0;}

.header-navi {position: relative; height: inherit; transition: .15s ease-in-out all;}
.header-navi__m-list {display: flex; height: inherit; padding-right: 3.8889em;}
.header-navi__m-item {height: inherit; margin-left: 4.4445em;}
.header-navi__m-item:first-child {margin-left: 0;}
.header-navi__m-item:last-child {display: none;}
.header-navi__m-btn {display: flex; align-items: center; height: inherit;}
.header-navi__m-item {position: relative;}
.header-navi__s-wrap {position: absolute; top: calc(100% - 0.625em); left: 50%; min-width: 150%; transform:translateX(-50%);}
.header-navi__s-list {transition: .15s ease-in-out all;}
.header-navi__s-btn {display: block;}
@media(max-width:1080px){
	.header-navi {display: none;}
}

.header-inqury {padding:0.8889em 1.3334em; background: var(--main-color); border-radius:4px;}


.header-drawer {display: none; position: relative; margin-left: 1.5em;}
.header-drawer__btn {position: relative; width: 20px; height: 14px; z-index: 0; transition:.15s ease-in-out all;}
.header-drawer__line {position: absolute; left: 0; width: 100%; height: 2px; background-color: #fff; transition:.15s ease-in-out all;}
.header-drawer__line--top {top: 0;}
.header-drawer__line--middle {top: 50%; transform:translateY(-50%)}
.header-drawer__line--bottom {bottom: 0;}
@media(hover:hover){
	.header-drawer__btn:hover .header-drawer__line--top{left: -0.25em;}
	.header-drawer__btn:hover .header-drawer__line--middle{left: 0.25em;}
	.header-drawer__btn:hover .header-drawer__line--bottom{left: -0.125em;}
}
@media(max-width:1080px){	
	.header-drawer {display:block;}
}

.header__fix.enter {background-color: #fff; box-shadow:0 5px 10px rgba(0,0,0,0.03)}
.header__fix.enter .header-home__logo--nor {opacity: 0;}
.header__fix.enter .header-home__logo--ho {opacity: 1;}
.header__fix.enter .header-navi__m-btn {color: var(--main-black);}
.header__fix.enter .header-navi__m-btn--crt {color: var(--main-color);}
.header__fix.enter .header-navi__s-list {background-color: var(--main-color);}
.header__fix.enter .header-navi__s-btn {color: #fff;}
.header__fix.enter .header-navi__s-btn--crt {color: var(--main-black);}
.header__fix.enter .header-navi__c-btn {color: var(--main-gray);}
.header__fix.enter .header-navi__c-btn--crt {color: var(--main-color);}
.header__fix.enter .header-lang__btn {color: var(--main-black);}
.header__fix.enter .header-lang__btn.on {color: var(--main-color);}
.header__fix.enter .header-lang__list {background-color: #fff;}
.header__fix.enter .header-lang__link {color: var(--main-black);}
.header__fix.enter .header-login__link {color: var(--main-black);}
.header__fix.enter .header-drawer__line {background-color: var(--main-black);}
@media(hover:hover){
	.header__fix.enter .header-lang__link:hover {color: var(--main-color);}
}

/************************* header_inc 끝*************************/

/************************* sub-dropdown 시작 *************************/
.drop-menu {border-top:1px solid rgba(255,255,255,0.2); position: absolute; bottom:0; left:0; width:100%; z-index: 3;}
.drop-menu__inner {display: flex;}
.drop-menu__home {display: inline-flex; min-width: 4.5em; min-height: 4.5em; height: inherit; justify-content: center; align-items: center; border-left:1px solid rgba(255,255,255,0.2);}
.drop-menu__icon {width: 1.125em;}
.drop-menu__wrap {position: relative; z-index: 0; border-left:1px solid rgba(255,255,255,0.2)}
.drop-menu__wrap:last-child {border-right:1px solid rgba(255,255,255,0.2) }
.drop-menu__btn {display: flex; justify-content: space-between; align-items: center; min-width:19em; height: 100%; padding:0 1.75em; font-weight: 500; transition:.15s ease-in-out all; color:#fff;}
.drop-menu__tit {display: block; font-size: var(--text-xl); font-weight: 600; line-height: 1.4; letter-spacing: -0.03em;}
.drop-menu__arr {margin-left: 1.5em; width: 1em; transition:.15s ease-in-out all;}
.drop-menu__navi {position: absolute; top: 100%; left: -1px; z-index: 100; width:calc(100% + 2px);  height: 0; overflow: hidden;}
.drop-menu__list {background-color: #fff; border:1px solid var(--main-gray);}
.drop-menu__link {display: block; padding:0.5em 0.15rem; transition:.15s ease-in-out all;}
@media(hover:hover){
	.drop-menu__link:hover {background-color: var(--main-color); color: #fff;}
}

@media (max-width:500px){
	.drop-menu__home {min-width:3.5em; min-height:3.5em;}
	.drop-menu__btn {min-width:12em;}
}

.drop-menu__btn.on {background-color: var(--main-color); color: #fff;}
.drop-menu__btn.on .drop-menu__arr {filter:brightness(0) invert(1); transform:rotate(180deg);}

/************************* dropdown 끝 *************************/
/************************* tabmenu 시작 *************************/
.tab-menu {border-bottom:1px solid var(--main-gray)}
.tab-menu__list {display: flex;}
.tab-menu__item {flex:1;}
.tab-menu__btn {padding:1.5em 0.75em; display: flex; justify-content: center; align-items: center; text-align: center; height: 100%; transition: .15s ease-in-out all;}
.tab-menu__btn--crt {background-color: var(--main-color);}
.tab-menu__btn--crt,
.tab-menu__btn--crt:link,
.tab-menu__btn--crt:visited {color: #fff;}
@media(hover:hover){
	.tab-menu__btn:hover {background-color: var(--main-color); color: #fff;}
}
/************************* sub-tabmenu 끝 *************************/

/************************* depth3 시작 *************************/
.depth3__list {display: flex; flex-flow: row wrap;}
.depth3__item {flex:1;}
.depth3__item:last-child {border:0;}
.depth3__btn {padding:1.5em 0.75em; width: 100%; height: 100%; display: flex; align-items: center;justify-content: center; border-bottom:2px solid var(--main-gray); transition:.15s ease all;}
.depth3__btn--crt {border-color:var(--main-color);}
@media(hover:hover){
	.depth3__btn:hover {border-color:var(--main-color);}
}
/************************* depth3 끝 *************************/


/************************* footer_inc 시작 *************************/
.footer {padding:5em 0; font-size: var(--fz); background-color: #15241C; color: #fff;} 
.footer__sec {display: flex; justify-content: space-between; align-items: flex-end;}

@media (max-width:768px){
	.footer__sec {flex-direction: column; align-items: flex-start}
}

.footer-home {display: inline-block; margin-bottom: 2.6875em;}
.footer-home__logo {width: 11.25em;}

.footer-info {}
.footer-info__item {margin-bottom: 1em; display: flex; flex-wrap:wrap; line-height: 1.5; gap:1em;}
.footer-info__item:last-child {margin-bottom: 0;}
.footer-info__info {display: inline-flex; align-items: center;}
.footer-info__cate {display: block; margin-right: 0.6667em;}
.footer-info__desc {opacity: 0.7;}
.footer-info__desc--link {transition:.15s ease all;}

@media(hover:hover){
	.footer-info__desc--link:hover {color: var(--main-color);}
}
@media (max-width:768px){
	.footer-info {padding-bottom: 1.25em;}
}

.footer-adm {display: flex;}
.footer-adm__cprt {opacity: 0.3;margin-left: 1em;}
.footer-adm__nav {display: flex;}
.footer-adm__link {opacity: 0.3;margin-right: 1em; display: inline-block; transition:.15s ease all;}
.footer-adm__link:last-of-type {margin-right: 0;}
@media(max-width:768px){
	.footer-adm__nav {display: none;}
}
@media(hover:hover){
	.footer-adm__link:hover {color: var(--main-color);}
	.footer-adm__cprt {margin-left: 0;}
}

/************************* footer_inc 끝 *************************/


/************************* split-text *************************/
.split-text__word {font-size: inherit;}
.split-text__letter {display: inline-block; font-size: inherit;}
.split-text--no-delay .split-text__letter {transition-delay:0s !important; animation-delay:0s !important;}

.product {padding:7.5em 0;}
.product-tit {padding-bottom: 6.25em;}
.product-tit__title {font-size: var(--heading-3xl); font-weight: 700; line-height: 1.4; letter-spacing: -0.03em; padding-bottom: 0.5834em; text-align: center;}
.product-nav {display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap:0.5em;}
.product-nav__link {font-size: var(--text-xl); font-weight: 600; line-height: 1.4; letter-spacing: -0.03em; color:var(--gray-800); display: flex; align-items: center; justify-content: center; padding:0.8889em 1.7778em; background: var(--gray-200); min-width:10.4445em; border-radius:50px;}
.product-nav__link.on {color: #fff; background: var(--main-color);}
@media (hover: hover){
	.product-nav__link:hover {color: #fff; background: var(--main-color);}
}

@media (max-width:768px){
	.product {padding:3.75em 0;}
	.product-nav__link {padding: 0.8889em 1.2778em; min-width: 9.4445em;}
}

.product-wrap {display: flex; justify-content: space-between; padding-bottom: 6.25em; margin-bottom: 6.25em; border-bottom:1px solid var(--gray-300)}
.product-swiper {width:49.3422%; aspect-ratio: 1/0.8; display: flex; gap:1.25em; align-items: flex-start; overflow: hidden;}
.product-swiper__thumb {width:17.3334%; height:100%;}
.product-swiper__thumb .swiper-slide {width:100%; aspect-ratio: 1; padding:9.2308%; background: var(--gray-100); border-radius:12px; display: flex; align-items: center; justify-content: center; border:2px solid transparent; transition:all 0.4s;}
.product-swiper__thumb .swiper-slide-thumb-active {border-color:var(--main-color);}
.product-swiper__thumb .swiper-slide img { max-width: 100%; max-height: 100%; object-fit: contain;}
.product-swiper__main {width:80%; aspect-ratio: 1; background: var(--gray-100); border-radius:12px;}
.product-swiper__main .swiper-slide {padding:6.6667%; display: flex; align-items: center; justify-content: center;}
.product-swiper__main .swiper-slide img { max-width: 100%; max-height: 100%; object-fit: contain;}
.product-info {width:46.7106%;}
.product-info__head {padding-bottom: 2.5em; margin-bottom: 2.5em; border-bottom:1px solid var(--gray-300);}
.product-info__cate {font-size: var(--text-xl); font-weight: 600; line-height: 1.4; letter-spacing: -0.03em; color:var(--main-color); padding-bottom: 0.4445em;}
.product-info__title {font-size: var(--heading-xl); font-weight: 700; line-height: 1.4; letter-spacing: -0.03em;}
.product-info__box {padding-bottom: 2.5em; margin-bottom: 2.5em; border-bottom:1px solid var(--gray-300);}
.product-info__box:last-child {padding-bottom: 0; margin-bottom: 0; border-bottom:none;}
.product-info__subject {font-size: var(--heading); font-weight: 700; line-height: 1.4; letter-spacing: -0.03em; padding-bottom: 0.6em; display: flex; align-items: center;}
.product-info__subject:before {content:''; display: block; width:8px; height:8px; border-radius:50%; background: var(--main-color); margin-right: 8px;}
.product-info__desc {font-size: var(--text-xl); font-weight: 500; line-height: 1.7; letter-spacing: -0.03em; color:var(--gray-800);}
.product-info__dot {font-size: var(--text-xl); font-weight: 500; line-height: 1.7; letter-spacing: -0.03em; color:var(--gray-800); padding-left: 1.3889em; position: relative;}
.product-info__dot::before {content:''; display: block; border-radius:50%; width:4px; height:4px; background: var(--gray-800); position: absolute; left:0.5em; top:0.7223em;}

@media (max-width:768px){
	.product {padding:3.75em 0;}
	.product-wrap {flex-direction: column; margin-bottom: 4em; padding-bottom: 4em;}
	.product-swiper {width:100%; margin-bottom: 2.5em;}
	.product-info {width:100%;}
}

.product-character:not(:last-child) {padding-bottom: 2.5em;}
.product-character__title {font-size: var(--heading-xl); font-weight: 700; line-height: 1; letter-spacing: -0.03em; padding-bottom: 1.625em;}
.product-character__cate {font-size: var(--heading); font-weight: 700; line-height: 1.4; letter-spacing: -0.03em; padding-bottom: 1em; display: flex; align-items: center;}
.product-character__cate::before {content:''; display: block; width:8px; height:8px; border-radius:50%; background: var(--main-color); margin-right: 8px;}
.product-make {display: flex; flex-wrap: wrap; padding:2.6316%; background: var(--gray-100); border-radius:12px; gap:1.5em 1.6667%;}
.product-make__item {width:15.2778%;}
.product-make__box {position: relative; overflow: hidden; border-radius:12px}
.product-make__step {display: flex; align-items: center; justify-content: center; font-size: var(--text-xl); font-weight: 600; line-height: 1.4; letter-spacing: -0.03em; width:6.6667em; height:2.7223em; border-radius:0 0 8px 8px; background: var(--main-color); color:#fff; position: absolute; left:50%; top:0; transform:translate(-50%, 0);}
.product-make__desc {font-size: var(--heading); font-weight: 700; line-height: 1; letter-spacing: -0.03em; padding-top: 1em; text-align: center;}

@media (max-width:768px){
	.product-make__item {width:32.1778%}
}
@media (max-width:500px){
	.product-make__item {width:49.0778%}
}

.product-list {display: flex; flex-wrap: wrap; justify-content: center; gap:1.25em 1.3158%;}
.product-list__item {width:18.9474%; border-radius:12px; border:1px solid var(--gray-300); padding:2.6316%;}
.product-list--6ps .product-list__item {width:15.5474%;}
.product-list__figure {text-align: center; padding-bottom: 2em;}
.product-list__title {font-size: var(--text-xl); font-weight: 700; line-height: 1.4; letter-spacing: -0.03em; padding-bottom: 0.6667em; text-align: center;}
.product-list__desc {font-size: var(--text-xl); font-weight: 500; line-height: 1.7; letter-spacing: -0.03em; color: var(--gray-800); text-align: center;}

@media (max-width:768px){
	.product-list__item {width:32.4474%;}
}
@media (max-width:500px){
	.product-list__item {width:49.2474%;}
}

.product-feature {padding-left: 1.75em;}
.product-feature__item { padding-bottom: 1.25em;}
.product-feature__title {font-weight: 500; font-size: 1.125em;}
.product-feature__list {font-size: 1.125em; padding-left: 1.5556em; font-weight: 400; color:#666; padding-top: 0.8334em;}
.product-feature__detail {display: flex; padding-bottom: 0.5556em;}
.product-feature__detail:last-child {padding-bottom: 0;}
.product-feature__detail::before {content:'-'; display: block; margin-right: 0.2778em;}