/* include 공통 CSS */

/************************* 공통 시작*************************/
.inner {width: 100%; max-width:var(--max-w); margin: 0 auto; --max-w :1440px}
.inner--fill {max-width:100%; padding-right: calc((100% - var(--max-w)) / 2); padding-left: calc((100% - var(--max-w)) / 2);}
.inner--left {max-width:100%; padding-left: calc((100% - var(--max-w)) / 2);}
.inner--right {max-width:100%; padding-right: calc((100% - var(--max-w)) / 2);}
@media(max-width:1480px){
	.inner {padding: 0 4%;}
	.inner--left {padding-right: 0; padding-left: 4%;}
	.inner--right {padding-right: 4%; padding-left: 0;}
}

.btn-prm {display: inline-flex; justify-content: center; align-items: center; padding:0.7648em 1.34em; text-align: center; font-size: var(--text-md); font-weight: 500; border:1px solid var(--dark-soft); border-radius:1.7648em; letter-spacing: -0.03em; transition: .3s ease-in-out background-color, .3s ease-in-out color, .3s ease-in-out border-color;}
.btn-prm,
.btn-prm:link,
.btn-prm:visited {color: var(--dark-soft);}
.btn-prm--arr{gap:0.3em}
.btn-prm--arr:after {content:''; width: 0.7648em; aspect-ratio:1/0.6154; background: url('./img/arrow_icon2.svg') no-repeat center / cover; transition:.3s ease-in-out filter;}
@media(hover:hover){
	.btn-prm:hover {background-color: var(--prm); color: #fff; border-color:var(--prm)}
	.btn-prm--arr:hover:after {filter:brightness(0) invert(1)}
}

.btn-scd {display: inline-flex; justify-content: center; align-items: center; text-align: center; padding:0.8236em 1.3529em; font-size: var(--text-md); font-weight: 500; letter-spacing: -0.03em; background-color: var(--bg-dark); border-radius:0 1.7648em 1.7648em 1.85em; transition:.3s ease-in-out background-color;}
.btn-scd,
.btn-scd:link,
.btn-scd:visited {color: #fff;}
.btn-scd--arr{gap:0.5232em}
.btn-scd--arr:after {content:''; width: 0.4118em; aspect-ratio:1/1.7143; background: url('./img/arrow_icon.svg') no-repeat center / cover;}

@media(hover:hover){
	.btn-scd:hover {background-color: var(--prm);}
}

.sub-container {padding: 7.8125em 0 10em; min-height:5rem;}
@media(max-width:768px){
	.sub-container {padding-top: 5em;}
}
/************************* 공통 끝 *************************/

/************************* header_inc 시작*************************/
.header {font-size: var(--fz);}
.header__fix {position: fixed; left:0; top:0; z-index: 100; width:100%;  height: var(--hd-gap); background-color: #fff; --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__logo {width: 9.375em; transition: 0.15s ease-in-out all;}

.header-navi {position: relative; height: inherit; transition: .15s ease-in-out all;}
.header-navi__m-list {display: flex; height: inherit;}
.header-navi__m-item {height: inherit;}
.header-navi__m-item:last-child {margin-right: 0;}
.header-navi__m-btn {display: flex; align-items: center; height: inherit;}
.header-navi__m-item {position: relative;}
.header-navi__s-wrap {position: absolute; top: 100%; 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:768px){
	.header-navi {display: none;}
}

.header-call {display: inline-flex; align-items: center; gap:0.5em;}
.header-call__num {font-size: var(--text-4xl); color: var(--dark-mix); font-weight: 700; letter-spacing: -0.03em;}
.header-call__icon {width: var(--text-4xl);}
@media(max-width:768px){
	.header-call {margin-left: auto;}
	.header-call__icon {width: var(--text-2xl);}
	.header-call__num {font-size: var(--text-2xl);}
}
@media(hover:hover){
	.header-call {pointer-events: none;}
}

.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: var(--dark); 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:768px){	
	.header-drawer {display:block;}
}

.header__fix.enter {background-color: #fff;}
.header__fix.enter .header-navi__m-btn {color: var(--dark);}
.header__fix.enter .header-navi__m-btn--crt {color: var(--prm);}
.header__fix.enter .header-navi__s-list {background-color: #fff;}
.header__fix.enter .header-navi__s-btn {color: var(--dark);}
.header__fix.enter .header-navi__s-btn--crt {}
.header__fix.enter .header-navi__c-btn {color: var(--gray);}
.header__fix.enter .header-navi__c-btn--crt {color: var(--prm);}
.header__fix.enter .header-lang__btn {color: var(--dark);}
.header__fix.enter .header-lang__btn.on {color: var(--prm);}
.header__fix.enter .header-lang__list {background-color: #fff;}
.header__fix.enter .header-lang__link {color: var(--dark);}
.header__fix.enter .header-login__link {color: var(--dark);}
.header__fix.enter .header-drawer__line {background-color: var(--dark);}
@media(hover:hover){
	.header__fix.enter .header-lang__link:hover {color: var(--prm);}
}

/************************* header_inc 끝*************************/

.sub-int {text-align: center; overflow: hidden;}
.sub-int__tit {font-size: var(--tit-sm); font-weight: 600;}
@media(max-width:768px){
	.sub-int__tit {font-size: var(--text-5xl);}
}

.int-msg {font-size: var(--text-xl); font-weight: 500; line-height: 1.6; letter-spacing: -0.03em;}

.pnt-tit {font-size: var(--text-6xl); font-weight: 600; color: var(--prm); letter-spacing: -0.03em;}
@media(max-width:768px){
	.pnt-tit {font-size: var(--text-4xl);}
}
.pnt-label {display: flex; justify-content: center; align-items: center; width: 13.4445em; height: 2.1112em; font-size: var(--text-md); font-weight: 600; color: #fff; background-color: var(--scd); text-align: center; border-radius:3px;}

.ly-split__panel {display: flex; align-items: flex-start; gap:1.5em; margin-bottom: 10em;}
.ly-split__panel:last-child {margin-bottom: 0;}
.ly-split__tit {flex:1; position:sticky; top: calc(var(--hd-gap) + 2em);}
.ly-split__container {width: 66.1806%; overflow: hidden;}
.ly-split__greet {margin-bottom: 3.4375em;}
.ly-split__case {margin:1.875em 0 3.125em; padding:2.5em 0 2.8125em; background-color: var(--bg);}
.ly-split__case:last-child {margin-top: 3.5em; margin-bottom: 0;}
.ly-split__st {font-size: var(--text-2xl); font-weight: 500; text-align: center;}
.ly-split__grid {display: grid; grid-template-columns: repeat(3, 1fr); gap:0.9375em; padding: 0 2.3125em; margin-top: 2em;}
.ly-split__grid--center {display: flex; justify-content: center;}
.ly-split__photo {margin-bottom: 1.25em;}
.ly-split__exp {font-weight: 500; line-height: 1.75; color: #444; letter-spacing: -0.03em;}
.ly-split__grid--center .ly-split__cell {flex:1; max-width:50%;}

@media(max-width:768px){
	.ly-split__tit {position:static;}
	.ly-split__panel {flex-direction:column; margin-bottom: 5em;}
	.ly-split__container {width: 100%;}
}

.num-list {margin-top: 2.2em;}
.num-list__item {margin-bottom: 2em;}
.num-list__item:last-child {margin-bottom: 0;}
.num-list__tit {font-size: var(--text-xl); font-weight: 700; line-height: 1.6; letter-spacing: -0.03em;}
.num-list__cnt {display: inline-block; width: 1.5em; text-align: center;;}
.num-list__desc {margin-top: 0.5em; font-size: var(--text-lg); font-weight: 500; letter-spacing: -0.03em; color: #444;}

.install__frame {margin-bottom: 2em;}

.install-int {padding: 5.4em 0 18em; text-align: center;}
.install-int__ment {font-size: var(--text-xl); font-weight: 500; line-height: 1.6; letter-spacing: -0.03em;}
.install-int__ment--soft {margin-top: 1.6em; color: #444;}
.install-int__ment b {display: block;}
.install-int__frame {margin-top:3.75em; overflow: hidden;}
@media(max-width:768px){
	.install-int {padding:3em 0 10em;}
	.install-int__ment {font-size: var(--text-lg);}
}

.install-grid {margin-top: 1.125em; display: grid; grid-template-columns: repeat(2, 1fr); gap:2.25em 1.25em}
.install-grid__cate {margin:1em 0 0.5em; font-size: var(--text-2xl); font-weight: 500; letter-spacing: -0.03em;}
.install-grid__desc {font-size: var(--text-lg); color: #444; letter-spacing: -0.03em;}

.install-ytb {display: flex; justify-content: center; align-items: center; margin-bottom: 2.5em; aspect-ratio: 1/0.5624;}
.install-ytb__iframe {display: block; width: 100%; aspect-ratio:16/9;}

.download-btn {display: inline-flex; justify-content: center; align-items: center; gap:0.5em; width: 16em; height: 3.1667em; font-size: var(--text-lg); font-weight: 600; letter-spacing: -0.03em; border:1px solid var(--prm); border-radius:2em; transition:.3s ease-in-out all;}
.download-btn:after {content:''; display: inline-block; width: 1.667em; height: 1.667em; background: url('./img/download_icon.svg') no-repeat center / cover; transition:.3s ease-in-out all;}
.download-btn,
.download-btn:link,
.download-btn:visited {color: var(--prm);}
@media(hover:hover){
	.download-btn:hover {background-color: var(--prm); color: #fff;}
	.download-btn:hover:after {filter:brightness(0) invert(1)}
}

.ly-spec {margin-top: 18em; text-align: center;}
.ly-spec__panel {margin-bottom: 12em;}
.ly-spec__panel:last-child {margin-bottom: 0;}
.ly-spec__tit {margin-bottom: 1.85em;}
.ly-spec__info {margin-bottom: 4em;}
.ly-spec__content {margin-bottom: 5.25em;}
.ly-spec__content:last-child {margin-bottom: 0;}
.ly-spec__desc {font-size: var(--text-lg); font-weight: 500; line-height: 1.6; letter-spacing: -0.03em;}
.ly-spec__cate {margin-bottom: 1em; font-size: var(--text-2xl); font-weight: 500;}
.ly-spec__scroll {margin-bottom: 1.875em; overflow: auto;}
.ly-spec__scroll:last-child {margin-bottom: 0;}
.ly-spec__tbl {width: 100%; min-width:87.5em; table-layout: fixed; border:1px solid #d5d5d5; border-bottom:none;}
.ly-spec__tr {border-bottom:1px solid #d5d5d5}
.ly-spec__cell {border-right:1px solid #d5d5d5; letter-spacing: -0.03em;}
.ly-spec__cell--td {padding:0.8125em 0;}
.ly-spec__cell--th {padding:1.0295em 0; font-size: var(--text-md);}
.ly-spec__cell:last-child {border-bottom:none;}
@media(max-width:1080px){
	.ly-spec {margin-top: 10em;}
}

.ly-dot__panel {margin-bottom: 5.25em;}
.ly-dot__panel:last-child {margin-bottom: 0;}
.ly-dot__frame {margin-bottom: 2.1875em;}
.ly-dot__item {padding-left: 1em; position: relative;}
.ly-dot__item:before {content:''; display: inline-block; position: absolute; top: 1.125em; left: 0; width: 0.25em; height: 0.25em; border-radius:50%; background-color: var(--dark);}
.ly-dot__item span {font-size: var(--text-2xl); font-weight: 500; letter-spacing: -0.03em; line-height: 1.6;}
@media(max-width:768px){
	.ly-dot__item span {font-size: var(--text-md);}
	.ly-dot__item:before {top: 0.75em;}
}

.ly-dot__msg {margin-top: 1em; padding-left: 1em;}
.ly-dot__msg span {font-size: var(--text-lg); font-weight: 500; color: #444;}

/************************* sub-dropdown 시작 *************************/
.drop-menu {border-bottom:1px solid var(--gray);}
.drop-menu__inner {display: flex; border-right:1px solid var(--gray); border-left:1px solid var(--gray);}
.drop-menu__home {display: inline-flex; min-width: 3em; min-height: 3em; height: inherit; justify-content: center; align-items: center;}
.drop-menu__icon {width: 1.75em;}
.drop-menu__wrap {position: relative; z-index: 0; border-left:1px solid var(--gray);}
.drop-menu__wrap:last-child {border-right:1px solid var(--gray); }
.drop-menu__btn {display: flex; justify-content: space-between; align-items: center; min-width:15em; height: 100%; padding:0 0.15rem; font-weight: 500; transition:.15s ease-in-out all;}
.drop-menu__tit {display: block; font-size: 1.125em;}
.drop-menu__arr {margin-left: 1.5em; width: 0.75em; transition:.15s ease-in-out all;}
.drop-menu__navi {position: absolute; top: 100%; left: -1px; z-index: 10; width:calc(100% + 2px);  height: 0; overflow: hidden;}
.drop-menu__list {background-color: #fff; border:1px solid var(--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(--prm); color: #fff;}
}

.drop-menu__btn.on {background-color: var(--prm); 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(--line)}
.tab-menu__list {display: flex; justify-content: center; gap:3.75em}
.tab-menu__btn {display: flex; justify-content: center; align-items: center; text-align: center; font-size: var(--text-2xl); font-weight: 600; min-height: 3.6667em; text-align: center; letter-spacing: -0.03em; border-bottom:2px solid transparent; transition: .15s ease-in-out all;}
.tab-menu__btn--crt {border-color: var(--prm)}
@media(hover:hover){
	.tab-menu__btn:hover {border-color: var(--prm)}
}
@media(max-width:768px){
	.tab-menu__btn {font-size: var(--text-lg);}
}

/************************* 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(--gray); transition:.15s ease all;}
.depth3__btn--crt {border-color:var(--prm);}
@media(hover:hover){
	.depth3__btn:hover {border-color:var(--prm);}
}
/************************* depth3 끝 *************************/


/************************* footer_inc 시작 *************************/
.footer {padding:3.3125em 0 3.4385em; font-size: var(--fz); background-color: var(--bg-navy); color: #fff;}
.footer__container {display: flex; justify-content: space-between;}
.footer__home {display: inline-block;}
.footer__logo {width: 9.4013em;}
.footer__info {width: 48.9%;}
.footer__list {display: flex; flex-wrap:wrap; row-gap:0.8em;}
.footer__item {display: flex; margin-right: 0.8em; gap:0.3em; letter-spacing: -0.03em;}
.footer__desc,
.footer__desc:link,
.footer__desc:visited {color: var(--gray);}
.footer__finish {display: flex; flex-wrap:wrap; gap:0.3em; margin-top: 3.15em; color: rgba(159, 161, 163, 0.25);}
.footer__faint {color:inherit; font-weight: 600; letter-spacing: -0.03em;}
.footer__faint--full {width: 100%;}
.footer__link {margin-right: 0.3em;}
.footer__link:last-of-type {margin-right: 0;}
.footer__link,
.footer__link:link,
.footer__link:visited {color: inherit;}
@media(max-width:768px){
	.footer__logo {width: 7.5em;}
	.footer__info {padding-left: 4em; flex:1;}	
}
@media(max-width:500px){
	.footer__info {padding-left: 2em;}
}

/************************* 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;}