@charset 'utf-8';

/* ���� */
:root{
    --baseFont: 'Pretendard', 'Noto Sans KR', 'Malgun Gothic', 'verdana', sans-serif;
	--engFont: 'Roboto Condensed', 'Pretendard', 'Noto Sans KR', 'Malgun Gothic', 'verdana', sans-serif;

	--mainColor: #0F4B80;
	--mainRGB: 15, 75, 128;

	--vh: 100%;
	--resizeVH: 100vh;

	--headerH: 100px;

	--aosP: 100px;
	--aosM: -100px;
	--aosT: 700ms;
}

*,
*::before,
*::after{ box-sizing: border-box; }
*{ word-break: keep-all; line-height: 1.3; letter-spacing: -0.02em; }
body.lock{ overflow: hidden; }
body{ font-size: 16px; }
body *{ font-size: inherit; }
.eng{ font-family: var(--engFont) !important; }

.w1920{ max-width: 1920px; width: 100%; margin: 0 auto; }
.w1820{ max-width: 1860px; width: 100%; margin: 0 auto; padding: 0 20px; }
.w1750{ max-width: 1790px; width: 100%; margin: 0 auto; padding: 0 20px; }
.w1720{ max-width: 1760px; width: 100%; margin: 0 auto; padding: 0 20px; }
.w1520{ max-width: 1560px; width: 100%; margin: 0 auto; padding: 0 20px; }

/* slick */
.slick-slider{ overflow: hidden; }
.slick-track{ margin: 0; }
.slick-slide{ outline: none; }

/* aos */
[data-aos]{ transition-duration: var(--aosT); }

@media (hover: hover) and (pointer: fine) {
	:root{
		--resizeVH: var(--vh);
	}
}

@media screen and (max-width: 1700px){
	:root{
		--headerH: 90px;
	}
	html{ font-size: 50%; }
}

@media screen and (max-width: 1280px){
	:root{
		--headerH: 80px;

		--aosPlus: 50px;
		--aosMinus: -50px;
	}

	html{ font-size: 40%; }
}

@media screen and (max-width: 1200px){
	:root{
		--headerH: 70px;
	}
}

@media screen and (max-width: 900px){
	html{ font-size: 30%; }
}


/* header */
#header{ width: 100%; position: fixed; top: 0; left: 0; z-index: 900; transform: translateY(0); transition: transform 0.4s; }
#header::before{ content: ""; width: 100%; height: 100%; background: #FFF; border-bottom: 1px solid #EEE; position: absolute; top: 0; left: 0; opacity: 0; transition: opacity 0.4s; }
#header .navH{ width: 100%; height: 0; background: #F8F8F8; border-bottom: 1px solid #EEE; position: absolute; top: 0; left: 0; z-index: -1; transition: height 0.4s 0.2s; }
#header .flex-box{ height: var(--headerH); display: flex; justify-content: space-between; align-items: center; }
#header .left{ flex: 1 0 auto; display: flex; align-items: center; }
#header h1 a{ display: block; position: relative; }
#header h1 a::after{ content: ""; width: 100%; height: 100%; background: url("/img/common/logo_white.svg") no-repeat center center / contain; position: absolute; top: 0; left: 0; opacity: 1; transition: opacity 0.4s; }
#header h1 img{ opacity: 0; transition: opacity 0.4s; }

#header nav{ flex: 1 0 auto; padding: 0 70px; }
#header .depth01{ display: flex; position: relative; }
#header .depth01 > li > a{ height: var(--headerH); display: flex; justify-content: center; align-items: center; font-size: 20px; font-weight: 500; color: #FFF; text-stroke: 0.015em transparent; -webkit-text-stroke: 0.015em transparent; padding: 0 50px; transition: color 0.4s, text-stroke-color 0.4s; }
#header .depth01 > li div{ width: 100%; position: absolute; top: 100%; left: 0; opacity: 0; pointer-events: none; transition: opacity 0.4s; }

#header .depth02{ display: flex; padding-left: 20px; }
#header .depth02 > li > a{ display: block; font-size: 18px; font-weight: 400; color: #BBB; line-height: 1.3; text-stroke: 0.015em transparent; -webkit-text-stroke: 0.015em transparent; padding: 30px; transition: color 0.4s, text-stroke-color 0.4s; }
#header .depth02 > li div{ display: none; }

#header .menu{ height: var(--headerH); display: flex; flex-direction: column; justify-content: center; background: none; border: none; padding: 0 20px; margin-right: -20px; position: relative; z-index: 10; }
#header .menu span{ display: inline-block; width: 25px; height: 2px; background: #FFF; vertical-align: middle; transition: background 0.4s; }
#header .menu span:not(:last-of-type){ margin-bottom: 6px; }


#header.up{ transform: translateY(-100%); }

/* header - scroll */
#header.scroll::before{ opacity: 1; }
#header.scroll h1 a::after{ opacity: 0; }
#header.scroll h1 img{ opacity: 1; }
#header.scroll .depth01 > li > a{ color: #111; text-stroke-color: #111; -webkit-text-stroke-color: #111; }
#header.scroll .menu span{ background: #111; }

/* header - hover */
#header.hover::before{ opacity: 1; }
#header.hover .navH{ height: calc(var(--headerH) + var(--navH)); transition-delay: unset; }
#header.hover h1 a::after{ opacity: 0; }
#header.hover h1 img{ opacity: 1; }
#header.hover .depth01 > li > a{ color: #111; text-stroke-color: #111; -webkit-text-stroke-color: #111; }
#header.hover .menu span{ background: #111; }

@media screen and (hover: hover) and (pointer: fine){
	#header .depth01 > li:hover > a{ color: var(--mainColor) !important; text-stroke-color: var(--mainColor) !important; -webkit-text-stroke-color: var(--mainColor) !important; }
	#header .depth01 > li:hover div{ opacity: 1; pointer-events: auto; transition-delay: 0.3s; }
	#header .depth02 > li:hover > a{ color: #333; text-stroke-color: #333; -webkit-text-stroke-color: #333; }
}

@media screen and (max-width: 1700px){
	#header h1 img{ height: 35px; }
	
	#header nav{ padding: 0 60px; }
	#header .depth01 > li > a{ font-size: 19px; padding: 0 40px; }
	#header .depth02{ padding-left: 15px; }
	#header .depth02 > li > a{ padding: 25px; }
}

@media screen and (max-width: 1400px){
	#header nav{ padding: 0 50px; }
	#header .depth01 > li > a{ padding: 0 30px; }
	#header .depth02{ padding-left: 10px; }
	#header .depth02 > li > a{ padding: 20px; }
}

@media screen and (max-width: 1280px){
	#header h1 img{ height: 30px; }

	#header nav{ padding: 0 40px; }
	#header .depth01 > li > a{ font-size: 18px; }
	#header .depth02 > li > a{ font-size: 17px; }
}

@media screen and (max-width: 1200px){
	#header nav{ display: none; }
}


/* menu */
#menu{ width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); position: fixed; top: 0; left: 0; z-index: 1000; display: none; }
#menu .blank{ width: 100%; height: 100%; }
#menu .top{ width: 100%; position: absolute; top: 0; left: 0; z-index: 100; }
#menu .top > div{ height: var(--headerH); display: flex; justify-content: flex-end; align-items: center; }

#menu .close{ height: var(--headerH); display: flex; flex-direction: column; justify-content: center; background: none; padding: 0 20px; margin-right: -20px; border: none; opacity: 0; transition: opacity 0.5s; }
#menu .close span{ width: 28px; height: 2px; display: inline-block; background: #000; border-radius: 99px; position: relative; }
#menu .close span:first-of-type{ top: 1px; transform: rotate(45deg); }
#menu .close span:last-of-type{ top: -1px; transform: rotate(-45deg); }

#menu .inner{ max-width: 640px; width: 100%; height: 100%; background: #FFF; padding-top: var(--headerH); position: absolute; top: 0; right: 0; transform: translateX(100%); transition: transform 0.5s 0.3s; }
#menu .pc{ display: none; }

#menu nav{ height: 100%; border-top: 1px solid #DDD; -ms-overflow-style: none; overflow-x: clip; overflow-y: auto; }
#menu nav::-webkit-scrollbar{ display: none; }
#menu nav a{ display: block; }
#menu .depth01 > li{ border-bottom: 1px solid #DDD; }
#menu .depth01 > li > a{ background: transparent; font-size: 36px; font-weight: 600; color: #111; padding: 30px; transition: background 0.3s, color 0.3s; }
#menu .depth01 div{ display: none; }
#menu .depth01 ul{ display: grid; grid-template-columns: repeat(3, calc(100% / 3)); }

#menu .depth02{ background: #F8F8F8; border-top: 1px solid #DDD; padding-top: 20px; }
#menu .depth02 a{ font-size: 18px; font-weight: 500; color: #555; padding: 10px 30px; }
#menu .depth02 > li{ margin: -10px 0 10px; }
#menu .depth02 > li > div{ width: 200%; padding-top: 10px; margin-bottom: 10px; position: relative; z-index: 100; }
#menu .depth02 > li > a.arrow::after{ content: ""; display: inline-block; width: 14px; height: 9px; background: url("/img/common/depth_arrow.svg") no-repeat center center / contain; filter: grayscale(1) brightness(1.5); -webkit-filter: grayscale(1) brightness(1.5); vertical-align: middle; margin-left: 15px; position: relative; top: -2px; transition: transform 0.3s, filter 0.3s; }

#menu .depth03{ background: #EEE; border-top: 1px solid #DDD; border-bottom: 1px solid #DDD; }

#menu .column2 ul{ grid-template-columns: repeat(2, 50%); }
#menu .column4 ul{ grid-template-columns: repeat(4, 25%); }

#menu .depth01 > li.on > a{ background: var(--mainColor); color: #FFF; }
#menu .depth02 > li.on > a{ color: var(--mainColor); }
#menu .depth02 > li.on > a.arrow::after{ transform: rotate(-180deg); filter: unset; -webkit-filter: unset; }


/* body - open */
body.open{ overflow: hidden; }
body.open #menu .close{ opacity: 1; transition-delay: 0.3s; }
body.open #menu .inner{ transform: translateX(0); }

@media screen and (hover: hover) and (pointer: fine){
	#menu .pc{ display: block; }
	#menu .mobile{ display: none; }
}

@media screen and (max-width: 1700px){
	#menu .depth01 > li > a{ font-size: 32px; padding: 25px; }
	#menu .depth02 a{ padding-inline: 25px; }
}

@media screen and (max-width: 1280px){
	#menu .depth01 > li > a{ font-size: 28px; padding: 20px; }
	#menu .depth02 a{ padding-inline: 20px; }
}

@media screen and (max-width: 900px){
	#menu .depth02 a{ font-size: 19px; }
}

@media screen and (max-width: 650px){
	#menu .depth01 ul{ grid-template-columns: repeat(1, 100%); }
	#menu .depth02 > li > div{ width: 100%; margin-bottom: 10px; }
	#menu .depth03{ padding: 10px 0; }
}

@media screen and (max-width: 499px){
	#menu .depth02 a{ font-size: 20px; padding-block: 12px; }
}



/* footer */
#footer{
	--ptb: 80px;
	--plr: 100px;
	--min: 70px;

	--border: #DDD;
	--url: url("/img/common/footer_symbol.svg");
}
#footer{ background: #F8F8F8; border-top: 1px solid #DDD; overflow: hidden; }
#footer .line01 .clone{ display: none; margin-bottom: 15px; }
#footer .line02{ border-top: 1px solid var(--border); }
#footer .line02 p{ font-size: 15px; font-weight: 300; color: #999; text-align: center; letter-spacing: 0; text-align: center; padding: 25px 0; }

#footer .grid-box{ display: grid; grid-template-columns: repeat(2, 50%); }
#footer .grid-box > div{ display: flex; flex-direction: column; }
#footer .left > *:first-child,
#footer .right > *:first-child{ flex: 1 0 auto; }
#footer .left{ background: var(--url) no-repeat bottom right / contain; padding: var(--ptb) 0; padding-right: var(--plr); position: relative; }
#footer .left::after{ content: ""; width: 1px; height: 100%; background: var(--border); position: absolute; top: 0; right: 0; }

#footer h1{ margin-bottom: var(--min); }
#footer h1 img{ width: auto; height: 60px; }

#footer address{ margin: -5px 0; overflow: hidden; }
#footer address dl{ display: flex; font-size: 18px; color: #333; position: relative; margin: 5px 0; }
#footer address dl dt{ font-weight: 500; padding-right: 5px; }
#footer address dl dd{ font-weight: 300; }
#footer address div{ display: flex; flex-wrap: wrap; margin-left: -20px; }
#footer address div dl{ padding-left: 20px; }
#footer address div dl::before{ content: ""; width: 1px; height: 10px; background: #999; position: absolute; top: 50%; left: 10px; transform: translateY(-50%); }

#footer .customer{ display: flex; flex-direction: column; justify-content: center; padding: var(--plr); padding-right: 0; }
#footer .customer dl dt{ font-size: 24px; font-weight: 600; color: var(--mainColor); }
#footer .customer dl dd{ overflow: hidden; }
#footer .customer dl dd p{ font-family: var(--engFont); font-size: 7rem; font-weight: 500; color: #111; margin: 15px 0; }
#footer .customer ul{ display: flex; flex-wrap: wrap; margin: -5px 0; margin-left: -20px; }
#footer .customer ul li{ font-size: 18px; font-weight: 300; color: #333; margin: 5px 0; padding-left: 20px; position: relative; }
#footer .customer ul li::before{ content: ""; width: 1px; height: 10px; background: #999; position: absolute; top: 50%; left: 10px; transform: translateY(-50%); }


#footer .link{ width: calc(var(--vw) / 2); position: relative; }
#footer .link::before{ content: ""; width: 100vw; height: 1px; background: var(--border); position: absolute; top: 0; left: 0; }
#footer .link ul{ display: flex; }
#footer .link ul li{ width: calc((100% - var(--min)) / 4); border-left: 1px solid var(--border); }
#footer .link ul li:first-of-type{ border-left: none; }
#footer .link ul li:last-of-type{ width: var(--min); }
#footer .link ul li > *{ height: var(--min); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
#footer .link ul li a{ background: transparent; font-size: 17px; font-weight: 400; color: #555; transition: background 0.3s, color 0.3s; }
#footer .link ul li a.policy{ font-weight: 500; color: #111; }
#footer .link ul li button{ width: 100%; background: var(--mainColor); border: none; }


/* top */
#top{ font-family: var(--engFont); font-size: 15px; font-weight: 400; color: #FFF; line-height: 1.3; padding: 0; }
#top i{ display: block; width: 100%; height: 24px; background: url("/img/common/top_icon.svg") no-repeat center center / contain; }

@media screen and (hover: hover) and (pointer: fine){
	#footer .link ul li:hover a{ background: var(--mainColor); color: #FFF !important; }
}

@media screen and (max-width: 1700px){
	#footer{
		--ptb: 40px;
		--plr: 60px;
		--min: 65px;
	}
	#footer .line02 p{ padding: 20px 0; }
	#footer h1 img{ height: 50px; }

	#footer address dl{ font-size: 17px; }

	#footer .customer dl dt{ font-size: 22px; }
	#footer .customer dl dd p{ margin: 7px 0; }
	#footer .customer ul li{ font-size: 17px; }
}

@media screen and (max-width: 1280px){
	#footer{
		--ptb: 30px;
		--plr: 30px;
		--min: 60px;
	}
	#footer h1 img{ height: 40px; }

	#footer address dl{ font-size: 16px; }

	#footer .customer dl dt{ font-size: 20px; }
	#footer .customer ul li{ font-size: 16px; }

	#footer .link ul li a{ font-size: 16px; }
}

@media screen and (max-width: 1200px){
	#footer .line01 .clone{ display: block; }

	#footer .grid-box{ grid-template-columns: repeat(1, 100%); }
	#footer .left::after{ display: none; }
	#footer .right .customer{ display: none; }

	#footer .customer{ padding: 0; }

	#footer .link{ width: var(--vw); margin-left: -20px; } 
}

@media screen and (max-width: 900px){
	#footer .left{ padding: var(--ptb) 0; }

	#footer h1{ margin-bottom: 40px; }
	#footer h1 img{ height: 35px; }

	#footer address{ margin: -3px 0; }
	#footer address dl{ margin: 3px 0; }

	#footer .customer dl dt{ font-size: 18px; }
}

@media screen and (max-width: 650px){
	#footer{
		--min: 40px;
	}
	#footer .link{ padding-right: calc(var(--min) * 2); position: relative; }
	#footer .link::before{ display: none; }
	#footer .link ul{ flex-wrap: wrap; }
	#footer .link ul li{ width: 50%; border-top: 1px solid var(--border); }
	#footer .link ul li:nth-of-type(2n) + li{ border-left: none; }
	#footer .link ul li:last-of-type{ width: calc(var(--min) * 2); position: absolute; top: 0; right: 0; }
	#footer .link ul li button{ height: calc((var(--min) * 2) + 1px); }
}