/* include 공통 CSS */
a:focus-visible {outline: 2px dashed var(--alert); outline-offset: -2px;}
button:focus-visible {outline: 2px dashed var(--alert); outline-offset: -2px;}
input:focus-visible {outline: 2px solid var(--main-gray); outline-offset: -2px;}
select:focus-visible {outline: 2px solid var(--main-gray); outline-offset: -2px;}

.heading {font-size: var(--heading); font-weight: 600;}
.heading-lg {font-size: var(--heading-lg); font-weight: 600;}
.heading-xl {font-size: var(--heading-xl); font-weight: 700;} 
.heading-2xl {font-size: var(--heading-2xl); font-weight: 700;}
.heading-3xl {font-size: var(--heading-3xl); font-weight: 700;}
.heading-4xl {font-size: var(--heading-4xl); font-weight: 700;}

.text-3xs {font-size: var(--text-3xs);}
.text-2xs {font-size: var(--text-2xs);}
.text-xs {font-size: var(--text-xs);}
.text-sm {font-size: var(--text-sm);}
.text-lg {font-size: var(--text-lg); font-weight: 500;}

.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;}

.text-left {text-align:left;}
.text-right {text-align:right;}
.text-center {text-align:center;}

.white {color: #fff;}
.primary {color: var(--main-color)}
.secondary {color: var(--second-color)}
.third {color: var(--third-color)}
.third--bg {background-color: var(--third-color);}
.alert {color: var(--alert);}

.alert {color: var(--alert);}
.notice__alert {padding-top: 0.445em; font-size: var(--text-lg); font-weight: 500; color: var(--alert);}

.more-link {display: inline-block;}
.dot-title {position: relative;}
.dot-title::after {content: ''; display: block; position: absolute; right: -12px; bottom: 8px; width: 8px; height: 8px; border-radius: 50%; background-color: var(--main-color);}
.dot-text {position: relative; padding-left: 1.5em; overflow: hidden; font-weight: 500; transition: .3s ease-in-out all;}
.dot-text::before {content: ''; display: block; position: absolute; left: 0.625em; top: 0.5em; width: 4px; aspect-ratio: 1/1; border-radius: 50%; background-color: currentColor; transition: .3s ease-in-out all;}
.dot-text--big {padding-left: 1em;}
.dot-text--big::before {left: 0; top: 0.35em; width: 8px;}
.dot-list .dot-text {font-weight: 500; color: var(--main-gray);}
.dot-list:has(.dot-text) .dot-text {line-height: 1.7;}
.dot-list:has(.dot-text) .dot-text::before {top: 0.625em;}

.board-ctrl {margin-top: 1.5em; display: flex; justify-content: flex-end;}
.board-ctrl--center {justify-content: center;}
.board-ctrl__btn {max-width: 12.5em; width: 100%; padding: 0.75em; border-radius: 10em; border: 1px solid var(--main-color); background-color: #fff; font-weight: 600; color: var(--main-color); text-align: center; line-height: 1.4; transition: .3s ease all;}
@media (hover:hover) {
	.board-ctrl__btn:hover {background-color: var(--main-color); color: #fff;}
}

/* 슬라이드 버튼 */
.slide__ctrl {display: flex; align-items: center; gap: 0.25em; margin-left: 1.25em;}
.slide__ctrl .swiper-button-prev, .slide__ctrl .swiper-button-next {position: static; width: 1.5em; height: 1.5em; margin: 0;}
.slide__ctrl .swiper-button-prev::after, .slide__ctrl .swiper-button-next::after {display: none;}
.slide__ctrl .swiper-button-prev {background: url('./img/slide_prev.svg') no-repeat center / cover;}
.slide__ctrl .swiper-button-next {background: url('./img/slide_next.svg') no-repeat center / cover;}
.slide__ctrl .slide__more {display: block; width: 1.5em; height: 1.5em; background: url('./img/slide_more.svg') no-repeat center / cover;}


.sub-banner {position: relative; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; min-height: 12.5em; padding: 3.75em; border-radius: 0.625em; overflow: hidden; z-index: 0;}
.sub-banner::before {content: ''; display: block; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.00) 100%); z-index: -1;}
.sub-banner__tit {color: #fff; line-height: 1.6;}
.sub-banner__desc {color: #fff;}

.sub .sub-title {padding-bottom: 1.222em;}

/* 다운로드 & 바로보기 버튼 */
.file-type {display: flex; gap: 0.5em;}
.file-type--center {justify-content: center;}
.file-type__link {position: relative; display: inline-block; padding: 0.6875em 3.125em 0.6875em 1.5em; border-radius: 6.25em; border: 1px solid var(--main-color); background-color: #fff; font-weight: 600; color: var(--main-color); transition: .3s ease all;}
.file-type__link--wd {min-width: 12.5em ;}
.file-type__link--bg {background-color: var(--main-color); color: #fff;}
.file-type__link--bg::before {filter: brightness(0) invert(1);}
.file-type__link::before {content: ''; display: block; position: absolute; right: 1.5em; top: 50%; transform: translateY(-50%); width: 0.875em; aspect-ratio: 1/1; transition: .3s ease all;}
.file-type__link--download::before {background: url('./img/file_download.svg') no-repeat center / cover;}
.file-type__link--view::before {background: url('./img/file_view.svg') no-repeat center / cover;}
@media (hover:hover) {
	.file-type__link:hover {box-shadow: 4px 4px 16px 0 rgba(0,0,0,0.15); transform: translateY(-5px); background-color: var(--main-color); color: #fff;}
	.file-type__link:hover::before {filter: brightness(0) invert(1);}
}

/* 체크박스 스타일 */
input[type="checkbox"] {appearance: none; position: relative; width: 16px; height: 16px; border-radius: 50%; background-color: #fff; border: 1px solid var(--main-gray); cursor: pointer;}
input[type="checkbox"]:checked {background-color: var(--main-color); border-color: var(--main-color);}
input[type="checkbox"]:checked::after {content: "✓"; position: absolute; color: #fff; font-size: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%);}

/* 폼 스타일 */
.req {color: var(--alert);}
.form-cont {padding-bottom: 2.75em;}
.form-cont:last-child {padding-bottom: 0;}
.form__tit {padding-bottom: 0.8333em;}
.form-group {display: flex; flex-wrap: wrap; border-top: 2px solid var(--main-black);}
.form-field {display: flex; flex-wrap: wrap; width: 100%;}
.form-field--half {width: 50%;}
.form-field--3n {width: 25%;}

.form-field__tit, .form-field__entry {padding: 1.1875em 1.25em; border-bottom: 1px solid var(--line);}
.form-cont:has(.form-cont__input) .form-field__entry {padding: 0.75em 1.25em;}
.form-cont__top {display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1em; padding-bottom: 1.25em;}
.form-cont__top:has(.form__tit) .form__tit {padding-bottom: 0;}
.form-field__tit {display: inline-flex; justify-content: center; align-items: center; width: 13.15%; background-color: var(--bg); font-size: 1em; font-weight: 600; text-align: center;}
.form-field--half .form-field__tit {width: 26.3%;}
.form-field--3n .form-field__tit {width: 47.37%;}
.form-field__tit--bg {width: 100%; background-color: var(--bg-blue);}
.form-field__tit--wd {width: 15.8%;}
.form-field__entry {flex: 1; display: flex; align-items: center; flex-wrap: wrap; gap: 0.5em;}
.form-field__row {display: flex; flex-wrap: wrap; align-items: center; gap: 0.5em;}
.form-field__row--bank {max-width: 32.5em; width: 100%;}
.form-field__labels {display: flex; flex-wrap: wrap; gap: 1em; height: 100%;}
.form-field__label {display: inline-flex; align-items: center;}
.form-cont__input {max-width: 168px; width: calc((100% - 1em) / 3); padding: 0.5em 0.75em; height: 2.375em; border: 1px solid var(--line);}
.form-cont__input--full {width: 100%;}
.form-cont__input--tel {}
.form-cont__input--wd1 {max-width: 100%; width: 21.5em;}
.form-cont__input--wd2 {max-width: 100%; width: 12.5em;}
.form-cont__input--wd3 {max-width: 100%; width: 30em;}
.form-cont__select {padding-right: 1.875em;}
.form-cont__button {display: inline-flex; justify-content: center; align-items: center; height: 2.7143em; padding: 0 1.14286em; background-color: var(--main-color); font-size: 0.875em; color: #fff; cursor: pointer;}
.form-cont .form-cont__radio {min-width: 16px; aspect-ratio: 1/1; margin-right: 0.5em; accent-color: var(--main-color)}
.form-cont__notice {padding: 1.5em; background-color: var(--bg); font-weight: 600; text-align: center; line-height: 1.7;}
.form-cont__notice--border {padding: 1.125em 1.25em; border-top: 2px solid var(--main-black); text-align: left;}

.form-plan {padding: 1.25em; border-top: 2px solid var(--main-black);}
.form-plan__textarea textarea {width: 100%; min-height: 12.5em; padding: 1.125em 1.25em; border: 1px solid var(--line);}
.form-plan__text {padding-top: 1em; font-weight: 600;}

.form-radio__list {display: flex; flex-wrap: wrap; border-top: 2px solid var(--main-black);}
.form-radio__item {flex: 1;  padding: 1.125em 1.25em; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-weight: 600; text-align: center;}
.form-radio__item:last-child {border-right: 0;}

.form-button {display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5em; padding-top: 2.75em;}
.form-button__submit {max-width: 12.5em; width: 100%; padding: 0.75em; border-radius: 10em; border: 1px solid var(--main-color); background-color: #fff; font-weight: 600; color: var(--main-color); text-align: center; line-height: 1.4; transition: .3s ease all;}

.policy-cont {width: 100%; height: 12.5em; overflow: auto; padding: 1.25em; border: 1px solid var(--line); color: var(--main-gray);}
.policy-option {display: flex; justify-content: flex-end; flex-wrap: wrap; column-gap: 1.5em; row-gap: 0.25em; width: 100%; padding-top: 0.5em;}
.policy-option__tit {font-weight: 600; color: var(--alert);}
.form-button__submit--bg {background-color: var(--main-color); color: #fff;}
.form-button__submit--close {border-color: var(--fifth-gray); background-color: var(--fifth-gray); color: var(--main-black);}

input[type="file"]::file-selector-button {display:none}

/* 장학금 신청 퀵메뉴 */
.quick {position: fixed; right: 3.125em; bottom: 3.125em; gap: 0.5em; display: flex; flex-direction: column; align-items: center; z-index: 9999; width: 3.75em; transition: .3s ease all;}
.quick.active {right: 3.125em;}
.quick__list {width: 100%; padding: 0.625em 0; border: 1px solid var(--line); border-radius:30px; background-color: #fff;}
.quick__btn {display: flex; justify-content: center; align-items: center; background-color: #fff; border-radius: 50%; transition: .3s ease all;}
.quick__btn--toggle {position: relative; width: 100%; height: 3.5em;}
.quick__btn--arr {width: 100%; aspect-ratio: 1/1; border: 1px solid var(--line);}
.quick__btn--arr img {width: 1em;}
.quick__icon {display: flex;  align-items: center; height: 100%; font-size: 0.875em; justify-content: center; text-align: right; border-radius:3em;}
.quick__name {width:0; height: 0;  overflow: hidden; color: var(--main-color);}

.quick__btn--toggle .quick__icon {position: absolute; top: 50%; right: 50%; transform:translate(50%, -50%);}
.quick__btn--toggle:hover .quick__icon {width: 260%; background-color: var(--main-black); right: 0; transform:translate(0, -50%); transition: .3s ease-in-out all;}
.quick__btn--toggle:hover .quick__icon img {filter: brightness(0) invert(1);}
.quick__btn--toggle:hover .quick__name {width: auto; height: auto; margin-right: 0.5715em;}
.quick__mo {display: none; position: fixed; right: 2%; bottom: 4%;}
.quick__mo img {transition: .3s ease all;}
.quick__mo.active .quick__btn--mo {background-color: var(--main-color); border-color: var(--main-color);}
.quick__mo.active img {filter: brightness(0) invert(1); transform: rotate(45deg);}
.quick__btn--mo {width: 3.75em; aspect-ratio: 1/1; border: 1px solid var(--line);}

@media (hover:hover) {
	.form-button__submit:hover {background-color: var(--main-color); color: #fff; box-shadow: 4px 4px 16px 0 rgba(0,0,0,0.2);}
}
@media (max-width:1320px) {
	.form-field--half .form-cont__input--wd1 {width: 15em;}
}
@media (max-width:768px) {
	.form-field--half {width: 100%;}
	.form-field--3n {width: 100%;} 
	.form-field__tit {display: block; width: 100%; text-align: left;}
	.form-field--half .form-field__tit {width: 100%;}
	.form-field--3n .form-field__tit {width: 100%;}
	.form-radio__list {grid-template-columns: repeat(2, 1fr);}
	.form-field__row {width: 100%;}
	.form-cont__input--wd1, .form-field--half .form-cont__input--wd1 {width: calc(100% - 110px);}
	.form-cont__input--wd2 {width: 100%;}
	.form-cont__input--wd3 {width: calc(100% - 110px);}
	.form-field__entry .alert {display: block;}
	.form-button__submit {max-width: 10em;}
	.quick {right: -100%; bottom: calc(4.25em + 4%);}
	.quick.active {right: 2%;}
	.quick__mo {display: block;}
	.form-radio__item {flex-basis: 25%;}
	.form-radio__item:nth-child(4n) {border-right: 0;}
}
@media (max-width:500px) {
	.form-radio__item {flex-basis: 50%;}
	.form-radio__item:nth-child(2n) {border-right: 0;}
}

/* 서브페이지 공통 */
.card-list {display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5625em;}
.card-list--2n {grid-template-columns: repeat(2,1fr);}
.card-list--4n {grid-template-columns: repeat(4,1fr);}
.card-list--5n {grid-template-columns: repeat(5,1fr);}
.card-list--blue .card-list__bg {background-color: var(--fourth-color);}
.card-list__bg {display: flex; flex-direction: column; height: 100%; padding: 2.5em; background-color: var(--second-color); border-radius: 0.625em; transition: .3s ease all;}
.card-list .card-list__bg--white {background-color: #fff;} 
.card-list__top {display: flex; justify-content: space-between; gap: 1.25em; padding-bottom: 2.5em;}
.card-list__top:has(.heading) {padding-bottom: 1.25em;}
.card-list__top--center {justify-content: center;}
.card-list__item {position: relative; z-index: 1;}
.card-list__item--bg::before {content: ''; display: block; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 11.5em; height: 9.0625em; background: url('./img/card_bg.png') no-repeat center / 100%;}
.card-list__subtit {padding-top: 0.5em;}
.card-list__desc {color: var(--main-gray); line-height: 1.7;}
.card-list__icon img {width: 4em; transition: .3s ease all;}
.card-list__bttm {height: 100%; padding: 1.25em; background-color: #fff; border-radius: 0.3125em;}

.icon-list {display: grid; gap: 1.5em;}
.icon-list--2n {grid-template-columns: repeat(2, 1fr);}
.icon-list__item {position: relative; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1em; padding: 2em 2.5em; background-color: var(--bg); border-radius: 0.625em;}
.icon-list__info {flex: 1;}
.icon-list__icon img {width: 4em;}
.icon-list__desc {padding-top: 0.5em; color: var(--main-gray); line-height: 1.7;}

.notice-box {margin-top: 2.75em; padding: 2em; background-color: var(--bg); border-radius: 0.625em; line-height: 1.7;}
.bg-box {padding: 3.75em 2.5em; background-color: var(--second-color); border-radius: 0.625em;}
.bg-box--blue {background-color: var(--fourth-color);}
.bg-box__focus {margin: 1.5556em 0; background-color: var(--main-color); padding: 1.1111em; border-radius: 0.625em; color: #fff;}
.bg-box--blue .bg-box__focus {background-color: var(--third-color);}

@media (hover:hover) {
	.card-list__link:hover {background-color: var(--main-color); color: #fff;}
}
@media (max-width:1280px) {
	.card-list--5n {grid-template-columns: repeat(4, 1fr);}
}
@media (max-width:1080px) {
	.card-list {grid-template-columns: repeat(2, 1fr);}
	.card-list--4n {grid-template-columns: repeat(2, 1fr);}
	.card-list--5n {grid-template-columns: repeat(3, 1fr);}
}
@media (max-width:768px) {
	.card-list {grid-template-columns: repeat(1, 1fr);}
	.card-list--2n {grid-template-columns: repeat(1,1fr);}
	.icon-list--2n .icon-list {grid-template-columns: 1fr;}
	.card-list--4n {grid-template-columns: repeat(1, 1fr);}
	.card-list--5n {grid-template-columns: repeat(2, 1fr);}
}
@media (max-width:500px) {
	.card-list--5n {grid-template-columns: repeat(1, 1fr);}
	
}

/************************* 공통 시작*************************/
.inner {width: 100%; max-width:1520px; margin: 0 auto; }
.inner--fill {max-width:none; padding-right: calc((100% - 1520px) / 2); padding-left: calc((100% - 1520px) / 2);}
@media(max-width:1560px){
	.inner {padding: 0 4%;}
}

.sub-container {padding-top: 7.5em; padding-bottom: 7.5em; min-height:5rem;}
/************************* 공통 끝 *************************/

/************************* header_inc 시작*************************/
.header__fix {position: fixed; left:0; top:0; z-index: 99;width:100%;  height: 6.25em; font-size: var(--fz); background-color: transparent; --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: var(--gradient-1); 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: 17.3125em; filter: brightness(0) invert(1); transition: 0.15s ease-in-out all;}
@media (max-width:1320px) {
	.header-home__logo {width: 14em;}
}

.header-navi {position: relative; height: inherit; margin-left: auto; 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; justify-content: center; align-items: center; height: inherit;}
.header-navi__m-item {position: relative;}
.header-navi__s-wrap {position: absolute; top: 100%; left: 50%; min-width: 110%; 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-center {margin-left: 2.5em;}
.header-center__button {padding: 0.6875em 1.625em; border-radius: 6.25em; border: 1px solid #fff; line-height: 1;}
.header-center__button .dot-text {font-weight: 600; color: #fff;}
.header-center__button .dot-text::before {top: 0.55em; background-color: #fff;}
.header-center__button .dot-text img {filter: brightness(0) invert(1); transition: .3s ease all;}

.header-lang {position: relative; display: flex; align-items: center;  text-align:center; height: inherit; transition: .15s ease-in-out all; display: none;}
.header-lang__btn{display: flex; align-items:center; transition: 0.15s ease-in-out all;}
.header-lang__btn,
.header-lang__btn:link,
.header-lang__btn:visited {}
.header-lang__navi{position:absolute; top: 100%; left: 50%; transform:translateX(-50%); min-width:100%; height: 0; overflow: hidden;}
.header-lang__list {margin: 1em; background-color: rgba(0,0,0,0.5); border-radius: 0.5em; box-shadow:var(--shadow-1); transition: .15s ease-in-out all;}
.header-lang__link{padding:0.5em 1.5em; display: block; white-space: nowrap; transition: 0.15s ease-in-out all;}
.header-lang__link,
.header-lang__link:visited,
.header-lang__link:link {}
.header-lang__icon {width: 1.25em; filter:brightness(0) invert(1)}
@media(hover:hover){
	.header-lang__btn:hover {color: var(--main-color);}
	.header-lang__link:hover {color: var(--main-color);}
}
@media(max-width:1320px){
	.header-center {margin-left: 1em;}
}
@media(max-width:1080px){
	.header-center {display: none;}
}

.header-login {margin-left: 0.5em; padding: 0.1875em 0.5em; border-radius: 6.25em; border: 1px solid #fff;}
.header-login__list {display: flex; align-items: center;}
.header-login__link {display: flex; align-items: center; padding: 0.625em; transition:.15s ease-in-out all;}
.header-login__link,
.header-login__link:visited,
.header-login__link:link {color: #fff;}
.header-login__link img {filter: brightness(0) invert(1);}
@media(hover:hover){
	.header-login__link:hover {color: var(--main-color);}
}
@media(max-width:1080px){
	
}

.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.on .header-home__logo {filter: brightness(1) invert(0);}
.header__fix.on .header-login {border-color: var(--main-color);}
.header__fix.on .header-login__link img {filter: brightness(1) invert(0);}
.header__fix.on .header-center__button {border-color: var(--third-color);}
.header__fix.on .header-center__button .dot-text {color: var(--third-color);}
.header__fix.on .header-center__button .dot-text::before {background-color: var(--third-color);}
.header__fix.on .header-center__button .dot-text img {filter: brightness(1) invert(0);}
.header__fix.enter {background-color: #fff; box-shadow: 2px 2px 6px 0 rgba(0,0,0,0.15);}
.header__fix.enter .header-home__logo {filter: brightness(1) invert(0);}
.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 {}
.header__fix.enter .header-navi__s-btn {color: var(--main-gray);}
.header__fix.enter .header-navi__s-btn--crt {color: var(--main-color);}
.header__fix.enter .header-navi__c-btn {}
.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 {border-color: var(--main-color);}
.header__fix.enter .header-login__link {color: var(--main-black);}
.header__fix.enter .header-login__link img {filter: brightness(1) invert(0);}
.header__fix.enter .header-drawer__line {background-color: var(--main-black);}
.header__fix.enter .header-center__button {border-color: var(--third-color);}
.header__fix.enter .header-center__button .dot-text {color: var(--third-color);}
.header__fix.enter .header-center__button .dot-text::before {background-color: var(--third-color);}
.header__fix.enter .header-center__button .dot-text img {filter: brightness(1) invert(0);}
@media(hover:hover){
	.header__fix.enter .header-lang__link:hover {color: var(--main-color);}
}

/************************* header_inc 끝*************************/

/************************* sub-dropdown 시작 *************************/
.drop-menu {position: absolute; left: 0; bottom: 0; width: 100%; padding: 1.5em 0; z-index: 10;}
.drop-menu__inner {display: flex; flex-wrap: wrap; gap: 0.625em 1.375em;}
.drop-menu__home {display: inline-flex; min-width: 1.375em; min-height: 1.375em; height: inherit; justify-content: center; align-items: center; margin-right: 1em;}
.drop-menu__icon {width: 1.375em;}
.drop-menu__wrap {position: relative;}
.drop-menu__wrap::before {content: ''; display: block; position: absolute; left: -1.375em; top: 0.5em; background: url('./img/navi_arrow.svg') no-repeat center / cover; width: 1.375em; height: 1.375em;}
.drop-menu__btn {display: flex; justify-content: space-between; align-items: center; height: 100%; padding: 0.5em 1em; font-weight: 500; transition:.15s ease-in-out all;}
.drop-menu__tit {display: block;}
.drop-menu__figure {display: inline-flex; justify-content: center; align-items: center; width: 1.375em; aspect-ratio: 1/1; margin-left: 0.75em; border-radius: 50%; background-color: #fff;}
.drop-menu__arr {width: 0.625em; transition:.15s ease-in-out all;}
.drop-menu__navi {position: absolute; top: 100%; left: 50%; transform: translateX(-50%); z-index: 10; min-width: 100%; width: max-content;  height: 0; overflow: hidden;}
.drop-menu__list {background-color: #fff; border-radius: 0.625em; border: 1px solid var(--line); overflow: hidden;}
.drop-menu__link {display: block; padding:0.75em 0.15rem; color: var(--main-black); 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__inner {gap: 0.5em 1em;}
	.drop-menu__wrap {width: calc(50% - 0.5em);}
	.drop-menu__wrap--depth0 {width: calc(100% - 4.3846em);}
	.drop-menu__wrap::before {display: none;}
	.drop-menu__home {margin: 0; padding: 0.5em 1em;}
}

.drop-menu__btn.on .drop-menu__arr {transform:rotate(180deg);}

/************************* dropdown 끝 *************************/
/************************* tabmenu 시작 *************************/
.tab-menu {display: none; 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 시작 *************************/
.navi-titlebox:has(+.depth3) {padding-bottom: 0;}
.depth3:not(:has(.depth3__item)) {padding-top: 0;}
.depth3 {padding: 2.75em 0 7.5em;}
.depth3__list {display: flex; justify-content: center; gap: 0.5em; flex-flow: row wrap;}
.depth3__item {min-width: 12.5em;}
.depth3__item:last-child {border:0;}
.depth3__btn {padding: 0.875em 0.75em; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; border-radius: 6.25em; border:1px solid var(--main-color); font-weight: 600; color: var(--main-color); line-height: 1; transition:.15s ease all;}
.depth3__btn--crt {background-color: var(--main-color); color: #fff;}
@media(hover:hover){
	.depth3__btn:hover {background-color: var(--main-color); color: #fff;}
}
@media (max-width:768px) {
	.depth3 {padding-bottom: 5em;}
	.depth3__item {min-width: 10em;}
}
/************************* depth3 끝 *************************/


/************************* footer_inc 시작 *************************/
.footer {padding:3.75em 0; font-size: var(--fz); background-color: var(--second-gray); color: #fff;} 
.footer__sec {display: flex; flex-wrap:wrap; justify-content: space-between; align-items: flex-start; gap: 1.25em;}
.footer__sec--end {align-items: flex-end;}

.footer-home {display: inline-block;}
.footer-home__logo {width: 13.75em; filter: brightness(0) invert(1);}

.footer-info {margin-top: 3.25em;}
.footer-info__item {margin-bottom: 1em; display: flex; flex-wrap:wrap; gap: 1.75em;}
.footer-info__item:last-child {margin-bottom: 0;}
.footer-info__info {display: inline-flex; align-items: center;}
/* .footer-info__info:after {margin:0 1em; content:''; display: inline-block; width: 1px; height: 0.8em; background-color: var(--main-gray); opacity: 0.75;}
.footer-info__info:last-child:after {display: none;} */
.footer-info__cate {display: block;}
.footer-info__desc {}
.footer-info__desc--link {transition:.15s ease all;}
.footer-info__desc--link,
.footer-info__desc--link:visited,
.footer-info__desc--link:link {}
@media(max-width:500px){
	.footer-info__item {margin-bottom: 0;}
	.footer-info__detail {width: 100%; margin-right: 0;}
}
@media(hover:hover){
	.footer-info__desc--link:hover {color: var(--main-color);}
}

.family {position: relative; z-index: 0;}
.family__btn {padding:0.5em 1em; display: inline-flex; justify-content:space-between; align-items:center; font-weight: 500; border:1px solid #fff; transition:.15s ease all;}
.family__btn,
.family__btn:visited,
.family__btn:link {color: inherit;}
.family__arrow {margin-left: 1em; transition:.15s ease all;}
.family__navi {position: absolute; top: 100%; left: 50%; transform:translateX(-50%); min-width: 100%; text-align: left; background-color: var(--main-black); height: 0; overflow: hidden; z-index: 1;}
.family__list {padding:1em 0; border:1px solid #fff; border-top:none;}
.family__link {padding:0.5em 0.25em; display: block; white-space: nowrap; text-align: center; transition:.15s ease all;}
.family__link,
.family__link:visited,
.family__link:link {color: inherit;}
@media(hover:hover){
	.family__btn:hover {background-color: var(--main-color);}
	.family__link:hover {color: var(--main-color);}
}

.family__btn.on {background-color: var(--main-color); color: #fff;}
.family__btn.on .family__arrow {transform:rotate(-180deg);}

.footer-navi {margin-left: auto;}
.footer-navi__link {opacity: 0.4; margin-right: 1.875em; font-weight: 500; transition:.15s ease all;}
.footer-navi__link.privacy {opacity: 1;}
.footer-navi__link,
.footer-navi__link:visited,
.footer-navi__link:link {color: inherit;}
.footer-navi__link:last-of-type {margin-right: 0;}
@media(hover:hover){
	.footer-navi__link:hover {opacity: 1;}
}

.footer-adm {display: flex; justify-content: flex-end; flex-flow: row wrap; margin-left: auto;}
.footer-adm__cprt {margin-right: 1em; text-align: right;}
.footer-adm__nav {display: flex;}
.footer-adm__link {margin-right: 1em; display: inline-block; transition:.15s ease all;}
.footer-adm__link,
.footer-adm__link:visited,
.footer-adm__link:link {color: var(--main-gray);}
.footer-adm__link:last-of-type {margin-right: 0;}

@media(hover:hover){
	.footer-adm__link:hover {color: var(--main-color);}
}

/************************* 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;}