@charset 'utf-8';

/* ���� */
:root{
    --baseFont: 'Pretendard', 'Noto Sans KR', 'Malgun Gothic', 'verdana', sans-serif;
	--engFont: 'IBM Plex Sans', 'Pretendard', 'Noto Sans KR', 'Malgun Gothic', 'verdana', sans-serif;

	--mainColor: #E4022D;
	--mainRGB: 228, 2, 45;
	--borderColor: #E5E5E5;
	--grayBg: #F8F8F8;

	--headerH: 90px;

	--vh: 100%;
	--resizeVH: 100vh;

	--aosP: 100px;
	--aosM: -100px;
	--aosT: 700ms;
}

*{ box-sizing: border-box; word-break: keep-all; line-height: 1.3; }
body.lock{ overflow: hidden; }
body{ font-size: 16px; letter-spacing: -0.02em; }
body *{ font-size: inherit; }
.eng{ font-family: var(--engFont) !important; }

/* inner */
.w1920{ max-width: 1920px; width: 100%; margin: 0 auto; }
.w1720{ max-width: 1760px; 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: 80px;
	}
	html{ font-size: 50%; }
}

@media screen and (max-width: 1280px){
	:root{
		--headerH: 70px;

		--aosP: 50px;
		--aosM: -50px;
	}

	html{ font-size: 40%; }
}

@media screen and (max-width: 900px){
	html{ font-size: 35%; }
}


/* header */
header{
	--before: 150px;
	--after: 180px;
}
header{ width: 100%; position: fixed; top: 0; left: 0; z-index: 1000; transform: translateY(0); transition: transform 0.5s; }
header::after{ content: ""; width: 100%; height: 1px; background: rgba(255, 255, 255, 0.1); position: absolute; top: var(--headerH); left: 0; opacity: 0; transition: opacity 0.4s; pointer-events: none; }
header .navBg{ width: 100%; height: 0; background: rgba(0, 0, 0, 0.8); position: absolute; top: 0; left: 0; z-index: -1; opacity: 0; transition: height 0.4s 0.2s, opacity 0.4s 0.2s; }
header .flex-box{ height: var(--headerH); display: flex; justify-content: space-between; align-items: center; }
header .right{ display: flex; align-items: center; position: relative; z-index: 10; }
header h1 a{ display: block; position: relative; }
header h1 a::after,
header h1 img{ width: auto; height: auto; transition: opacity 0.4s; }
header h1 a::after{ content: ""; background: url("/img/common/logo_color.svg") no-repeat center center / contain; position: absolute; top: 0; right: 0; bottom: 0; left: 0; opacity: 0; }
header h1 img{ opacity: 1; }

header nav{ text-align: center; position: absolute; top: 0; left: 50%; transform: translateX(-50%); opacity: 1; transition: opacity 0.4s; }
header .depth01{ display: flex; }
header .depth01 > li{ width: var(--before); position: relative; transition: width 0.4s; }
header .depth01 > li > a{ height: var(--headerH); display: flex; justify-content: center; align-items: center; font-size: 19px; font-weight: 500; color: #FFF; text-stroke: 0.015em transparent; -webkit-text-stroke: 0.015em transparent; transition: color 0.4s, text-stroke-color 0.4s; position: relative; }
header .depth01 > li > a::after{ content: ""; width: 100%; height: 2px; background: var(--mainColor); position: absolute; bottom: 0; left: 0; transform: scaleX(0); transition: transform 0.4s; }
header .depth01 > li > div{ width: var(--after); height: var(--navH); position: absolute; top: 100%; left: 50%; transform: translateX(-50%); opacity: 0; transition: opacity 0.4s; pointer-events: none; }

header .depth02{ padding: 23px 0 60px; }
header .depth02 > li > a{ display: block; font-size: 18px; font-weight: 400; +color: rgba(255, 255, 255, 0.3); line-height: 1.3; text-stroke: 0.012em transparent; -webkit-text-stroke: 0.012em transparent; padding: 7px; transition: color 0.4s, text-stroke-color 0.4s; }
header .depth02 > li > div{ display: none; }

header .lang ul{ display: flex; padding-left: 18px; position: relative; }
header .lang ul::before{ content: ""; width: 18px; height: 18px; background: url("/img/common/icon_lang.svg") no-repeat center center / contain; position: absolute; top: 50%; left: 0; transform: translateY(-50%); transition: filter 0.4s; }
header .lang ul li{ position: relative; }
header .lang ul li::after{ content: ""; width: 1px; height: 15px; background: rgba(255, 255, 255, 0.3); position: absolute; top: 50%; right: 0; transform: translateY(-50%); transition: background 0.4s; }
header .lang ul li:last-of-type::after{ display: none; }
header .lang ul li a{ display: block; font-family: var(--engFont); font-size: 17px; font-weight: 600; color: rgba(255, 255, 255, 0.3); padding: 10px; transition: color 0.4s; }
header .lang ul li.on a{ color: #FFF; }

header .menu{ display: inline-flex; flex-direction: column; background: none; border: none; padding: 10px; margin-right: -10px; overflow: hidden; }
header .menu span{ width: 20px; height: 2px; display: inline-block; background: #FFF; position: relative; top: 0; left: 0; transition: background 0.4s, top 0.4s, transform 0.4s; }
header .menu span:not(:last-of-type){ margin-bottom: 5px; }


/* header - scroll */
header.scroll .navBg{ height: var(--headerH); opacity: 1; }

/* header - hover */
header.hover::after{ opacity: 1; }
header.hover .navBg{ opacity: 1; }
header.hover h1 a::after{ opacity: 0; }
header.hover h1 img{ opacity: 1; }
header.hover .navBg{ height: calc(var(--headerH) + var(--navH)); transition-delay: unset; }
header.hover .depth01 > li > a{ color: #FFF; text-stroke-color: transparent; -webkit-text-stroke-color: transparent; }
header.hover .depth01 > li > div{ opacity: 1; pointer-events: auto; transition-delay: 0.2s; }
header.hover .lang ul::before{ filter: unset; -webkit-filter: unset; }
header.hover .lang ul li::after{ background: rgba(255, 255, 255, 0.3); }
header.hover .lang ul li a{ color: rgba(255, 255, 255, 0.3); }
header.hover .lang ul li.on a{ color: #FFF; }
header.hover .menu span{ background: #FFF; }


/* header - up */
header.up{ transform: translateY(-100%); }
header.up::after{ opacity: 0; }
header.up .navBg{ opacity: 0; }
header.up .depth01 > li > div{ pointer-events: none; }


@media screen and (hover: hover) and (pointer: fine){
	header .depth01:hover > li{ width: var(--after); }
	header .depth01 > li:hover > a{ color: var(--mainColor); text-stroke-color: var(--mainColor); -webkit-text-stroke-color: var(--mainColor); }
	header .depth01 > li:hover > a::after{ transform: scaleX(1); }
	header .depth02 > li:hover > a{ color: var(--mainColor); text-stroke-color: var(--mainColor); -webkit-text-stroke-color: var(--mainColor); }
}

@media screen and (max-width: 1700px){
	header{
		--before: 140px;
		--after: 160px;
	}
	header h1 img{ height: 55px; }

	header .depth01 > li > a{ font-size: 18px; }
	header .depth02 > li > a{ font-size: 17px; }
}

@media screen and (max-width: 1280px){
	header{
		--before: 130px;
		--after: 150px;
	}
	header h1 img{ height: 45px; }

	header .lang ul li a{ font-size: 16px; }
}

@media screen and (max-width: 1200px){
	header nav{ display: none; }
}


/* menu */
#menu{
	--padding: 60px;
}
#menu{ width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(7px); padding: calc(var(--headerH) + 10px) calc((var(--vw) - 1720px) / 4) 30px; position: fixed; top: 0; left: 0; z-index: 999; clip-path: inset(0 0 100% 0); -webkit-clip-path: inset(0 0 100% 0); transition: clip-path 0.5s; }
#menu .mobile{ display: none; }
#menu .scroll-bar{ height: 100%; overflow-x: clip; overflow-y: auto; position: relative; }
#menu .scroll-bar::after{ content: ""; max-width: calc(100% - 40px); width: 1720px; height: 2px; background: #FFF; position: absolute; top: 0; left: 50%; transform: translateX(-50%); }
#menu nav a{ display: block; font-weight: 500; color: #FFF; line-height: 1.3; }

#menu .depth01{ padding: 0 var(--padding); }
#menu .depth01 > li{ display: grid; grid-template-columns: 340px calc(100% - 340px); align-items: center; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
#menu .depth01 > li > a{ font-size: 32px; padding: var(--padding) 0; }
#menu .depth01 > li > div{ padding: var(--padding) 0; }
#menu .depth02{ display: grid; grid-template-columns: repeat(6, calc(100% / 6)); margin: -10px; }
#menu .depth02 > li > a{ font-size: 21px; padding: 10px; }
#menu .depth03{ padding-top: 23px; margin-bottom: -7px; }
#menu .depth03 > li > a{ font-size: 19px; font-weight: 200; color: rgba(255, 255, 255, 0.5); padding: 7px 10px; }

.os-theme-dark > .os-scrollbar, 
.os-theme-light > .os-scrollbar{ padding: 40px 4px 10px; }
.os-theme-dark > .os-scrollbar.os-scrollbar-unusable, 
.os-theme-light > .os-scrollbar.os-scrollbar-unusable{ display: none; }
.os-theme-dark > .os-scrollbar > .os-scrollbar-track, 
.os-theme-light > .os-scrollbar > .os-scrollbar-track{ background: rgba(255, 255, 255, 0.1); right: -4px; }
.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle{ background: #FFF !important; }

@media screen and (max-width: 1700px){
	#menu{
		--padding: 45px;
	}
	#menu .depth01 > li{ grid-template-columns: 280px calc(100% - 280px); }
	#menu .depth01 > li > a{ font-size: 28px; }
	#menu .depth02 > li > a{ font-size: 20px; }
	#menu .depth03{ padding-top: 8px; }
	#menu .depth03 > li > a{ font-size: 18px; }
}

@media screen and (max-width: 1500px){
	#menu .depth02{ grid-template-columns: repeat(2, 50%); }
	#menu .depth01 > li:nth-of-type(1) .depth02,
	#menu .depth01 > li:nth-of-type(2) .depth02{ grid-template-columns: repeat(3, calc(100% / 3)); }
}

@media screen and (max-width: 1280px){
	#menu{
		--padding: 30px;
	}
	#menu .depth01 > li{ grid-template-columns: 200px calc(100% - 200px); }
	#menu .depth01 > li > a{ font-size: 24px; }
	#menu .depth02 > li > a{ font-size: 19px; }
	#menu .depth03 > li > a{ font-size: 17px; }
}

@media screen and (max-width: 900px){
	#menu .pc{ display: none; }
	#menu .mobile{ display: block; }

	#menu .depth01{ padding: 0; }
	#menu .depth01 > li{ display: block; }
	#menu .depth01 > li > a{ font-size: 28px; padding: 20px 15px; }
	#menu .depth01 > li > div{ display: none; border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 0 15px; }
	#menu .depth02{ display: block; margin: 0; }
	#menu .depth02 > li{ margin: 0; }
	#menu .depth02 > li > a{ font-size: 21px; padding: 15px; }
	#menu .depth02 > li > div{ display: none; }
	#menu .depth03{ background: rgba(255, 255, 255, 0.2); padding: 8px 0; margin: 0; }
	#menu .depth03 > li > a{ font-size: 19px; padding: 8px 15px; }
}


/* body - open */
body.open{ overflow: hidden; }
body.open header{ transform: translateY(0); }
body.open header::after{ opacity: 0; }
body.open header nav{ opacity: 0; pointer-events: none; }
body.open header span:nth-of-type(1){ top: 7px; transform: rotate(45deg); }
body.open header span:nth-of-type(2){ transform: translateX(200%); }
body.open header span:nth-of-type(3){ top: -7px; transform: rotate(-45deg); }
body.open #menu{ clip-path: inset(0 0 0 0); -webkit-clip-path: inset(0 0 0 0); }

@media screen and (max-width: 1760px){
	#menu{ padding-inline: 20px; }
	#menu .scroll-bar::after{ max-width: 100%; }
	#menu .w1720{ padding: 0; }
}


/* footer */
footer{ border-top: 1px solid var(--borderColor); padding: 60px 0 40px; }
footer *{ font-size: 18px; }
footer .line01{ margin-bottom: 10px; }
footer .line02 .flex-box{ align-items: flex-end; }
footer .flex-box{ display: flex; justify-content: space-between; }

footer h1 a{ display: block; }
footer h1 img{ width: auto; height: 70px; }

footer nav a{ display: block; line-height: 1.3; }
footer .depth01{ display: flex; margin-top: -13px; }
footer .depth01 > li{ width: 180px; }
footer .depth01 > li > a{ font-size: 19px; font-weight: 500; color: #111; padding: 13px 0; }
footer .depth02 > li > a{ font-weight: 500; color: #888; padding: 7px 0; }
footer .depth02 > li > div{ display: none; }

footer address{ margin: -5px -15px; }
footer address div{ display: flex; flex-wrap: wrap; }
footer address dl{ display: flex; flex-wrap: wrap; padding: 5px 15px; margin-top: -10px; }
footer address dl > *{ margin-top: 10px; }
footer address dl dt{ font-weight: 500; color: #111; padding-right: 10px; }
footer address dl dd{ font-weight: 300; color: #555; }

footer .link{ margin: 5px 0; }
footer .link ul{ display: flex; flex-wrap: wrap; margin: 0 -10px; }
footer .link ul li a{ display: block; font-weight: 500; color: #555; line-height: 1.3; padding: 5px 10px; }

footer .copyright{ font-family: var(--engFont); font-weight: 500; color: #555; }


/* top */
#top{ width: 80px; height: 80px; background: var(--mainColor); border: none; font-family: var(--engFont); font-size: 19px; font-weight: 500; color: #FFF; padding: 0; }

@media screen and (max-width: 1700px){
	footer h1 img{ height: 65px; }

	footer .depth01 > li > a{ font-size: 18px; padding: 7px 0; }
	footer .depth02 > li > a{ font-size: 17px; padding: 5px 0; }

	/* top */
	#top{ width: 70px; height: 70px; }
}

@media screen and (max-width: 1400px){
	footer .depth01 > li{ width: 150px; }
}

@media screen and (max-width: 1280px){
	footer{ padding: 40px 0 30px; }
	footer *{ font-size: 17px; }
	footer h1 img{ height: 57px; }

	/* top */
	#top{ width: 65px; height: 65px; font-size: 18px; }
}

@media screen and (max-width: 1200px){
	footer{ padding: 30px 0; }
	footer .line01{ margin-bottom: 40px; }
	footer nav{ display: none; }
}

@media screen and (max-width: 900px){
	footer{ position: relative; }
	
	/* top */
	#top{ position: absolute; top: 26px; right: 20px; } 
}

@media screen and (max-width: 700px){
	footer address div:last-of-type{ flex-direction: column; }
}