@charset 'utf-8';

/* ���� */
:root{
    --baseFont: 'Pretendard', 'Noto Sans KR', 'Malgun Gothic', 'verdana', sans-serif;
	--engFont: 'Prosto One', 'Pretendard', 'Noto Sans KR', 'Malgun Gothic', 'verdana', sans-serif;
	--mainColor: #2E3092;
	--headerH: 90px;
	--aosPlus: 100px;
	--aosMinus: -100px;
	--vh: 100%;
}

*{  box-sizing: border-box; word-break: keep-all; line-height: 1.3; }
body.lock{ overflow: hidden; }
body{ font-size: 16px; -ms-overflow-style: none; overflow-x: clip; }
body::-webkit-scrollbar{ display: none; }
body *{ font-size: inherit; }

.w1720{ max-width: 1760px; width: 100%; margin: 0 auto; padding: 0 20px; }
.w1500{ max-width: 1540px; width: 100%; margin: 0 auto; padding: 0 20px; }

@media screen and (max-width: 1700px){
	html{ font-size: 50%; }
}

@media screen and (max-width: 1280px){
	:root{
		--headerH: 60px;
		--aosPlus: 50px;
		--aosMinus: -50px;
	}

	html{ font-size: 40%; }
}

@media screen and (max-width: 900px){
	html{ font-size: 30%; }
}

/* privacy */
.privacy * { font-size: 18px; font-weight: 300; line-height: 1.625; }
.privacy h3 { font-weight: 600; }
.privacy h4{ font-weight: 600; }
.privacy .textBox,
.privacy .pBox,
.privacy .dlBox,
.privacy .subTextBox { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }

.privacy .textBox { gap: 100px 0; }
.privacy .textBox h3{ font-size: 24px; margin-bottom: 5px; }

.privacy .pBox { gap: 30px 0; }

.privacy .dlBox { gap: 50px 0; }
.privacy .dlBox > dl > dt { font-size: 22px; font-weight: 500; }
.privacy .dlBox > dl > dd > p { margin: 5px 0; }
.privacy .dlBox > dl > dd ul:only-child{ margin-top: 5px; }
.privacy .dlBox > dl > dd ul li:not(:last-of-type){ margin-bottom: 5px; }
.privacy .dlBox > dl > dd ul li ul{ margin: 5px 0; }
.privacy .dlBox > dl > dd ul li ul li{ font-size: 17px; }
.privacy .dlBox > dl > dd ul li ul li:not(:last-of-type){ margin-bottom: 0; }

.privacy .square { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; gap: 0 5px; position: relative; padding-left: 12px; }
.privacy .square::before { content: "-"; position: absolute; top: 0; left: 0; }
.privacy .square > p { width: 100%; }

.privacy .subTextBox { gap: 24px 0; }
.privacy .subTextBox h6 { font-weight: 500; margin: 0 0 4px; }
.privacy .subText { margin: 4px 0; }
.privacy .subText dd { padding: 0 0 0 11px; }

.privacy .contact { margin: 60px 0 0; }
.privacy .contact ol { margin: 30px 0 0; }

@media screen and (max-width: 1700px){
	.privacy * { font-size: 17px; }

	.privacy .textBox { gap: 70px 0; }
	.privacy .textBox h3{ font-size: 22px; }

	.privacy .dlBox > dl > dt { font-size: 20px }
	.privacy .dlBox > dl > dd ul li ul li{ font-size: 16px; }
}

@media screen and (max-width: 1280px){
	.privacy * { font-size: 16px; }

	.privacy .textBox { gap: 40px 0; }
	.privacy .textBox h3{ font-size: 20px; }

	.privacy .pBox{ gap: 20px 0; }
	
	.privacy .dlBox { gap: 35px 0; }
	.privacy .dlBox > dl > dt { font-size: 18px; }
	.privacy .dlBox > dl > dd ul li ul li{ font-size: 15px; }
}


/* header */
#header{
	--navH: 408px;
}
#header{ width: 100%; background: transparent; border-bottom: 1px solid transparent; position: fixed; top: 0; left: 0; z-index: 999; transition: background 0.3s, border 0.3s; }
#header .navBg{ width: 100%; height: var(--navH); background: #FFF; position: absolute; top: 0; left: 0; z-index: -1; transform: scaleY(0); transform-origin: top; box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); transition: transform 0.5s; }
#header .flex-box{ height: var(--headerH); display: flex; justify-content: space-between; align-items: center; }
#header .flex-box > div{ display: flex; align-items: center; }

#header .logo svg{ width: auto; height: auto; }

#header .right{ margin-right: -20px; }
#header .right button{ background: none; border: none; font-family: var(--engFont); font-size: 16px; font-weight: 500; color: #FFF; letter-spacing: -0.03em; padding: 20px; transition: color 0.5s; }
#header .right button img{ filter: invert(0); -webkit-filter: invert(0); transition: filter 0.5s; }

#header .lang{ position: relative; }
#header .lang button::after{ content: ""; display: inline-block; width: 10px; height: 11px; background: url("/img/common/lang_arrow.svg") no-repeat center center / contain; margin-left: 10px; vertical-align: middle; transform: translateY(-2px) scaleY(1); filter: unset; -webkit-filter: unset; transition: filter 0.5s, transform 0.5s; }
#header .lang ul{ background: #FFF; padding: 5px 0; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); display: none; }
#header .lang ul li a{ display: block; font-family: var(--engFont); font-size: 14px; font-weight: 300; color: #AAA; padding: 5px 20px; }
#header .lang ul li.on a{ color: var(--mainColor); }

#header .lang.on button::after{ transform: translateY(-1px) scaleY(-1); }

#header nav{ flex: 1 0 auto; }
#header a{ line-height: 1.3; }
#header .depth01{ display: flex; justify-content: center; }
#header .depth01 > li{ width: var(--width); position: relative; transition: width 0.5s; }
#header .depth01 > li > a{ min-width: max-content; height: var(--headerH); display: flex; justify-content: center; align-items: center; font-size: 18px; font-weight: 500; color: #FFF; letter-spacing: -0.03em; white-space: nowrap; padding: 0 35px; transition: color 0.3s; }

#header .depth02{ width: 100%; padding-bottom: 130px; position: absolute; top: 100%; left: 0; display: none; }
#header .depth02 > li{ overflow: hidden; }
#header .depth02 > li > a{ display: block; font-size: 17px; font-weight: 400; color: #666; letter-spacing: -0.03em; text-align: center; padding: 5px; opacity: 0; transform: translateY(100%); transition: color 0.5s, transform 0.5s; }

/* header - scroll */
#header.scroll{ background: #FFF; border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
#header.scroll nav .depth01 > li > a{ color: #333; }
#header.scroll .right button{ color: #333; }
#header.scroll .right button img{ filter: invert(1); -webkit-filter: invert(1); }
#header.scroll .lang button::after{ filter: invert(1); -webkit-filter: invert(1); }

/* header - hover */
#header.hover{ border-bottom: 1px solid transparent; }
#header.hover .navBg{ transform: scaleY(1); }
#header.hover .depth01 > li{ width: calc(100% / 7); }
#header.hover .depth01 > li > a{ color: #333; }
#header.hover .depth02 > li > a{ opacity: 1; transform: translateY(0); }

#header.hover .right button{ color: #333; }
#header.hover .right button img{ filter: invert(1); -webkit-filter: invert(1); }
#header.hover .lang button::after{ filter: invert(1); -webkit-filter: invert(1); }


@media screen and (hover: hover){
	#header nav .depth01 > li:hover > a{ color: var(--mainColor); }
	#header nav .depth02 > li:hover > a{ text-decoration: underline; text-underline-position: under; }
}

@media screen and (max-width: 1700px){
	#header nav .depth01 > li > a{ padding: 0 25px; }
}

@media screen and (max-width: 1280px){
	#header .logo svg{ height: calc(var(--headerH) - 20px); }

	#header nav{ display: none; }

	#header .right{ margin-right: -10px; }
	#header .right button{ font-size: 15px; padding: 10px; }
	#header .lang button::after{ transform: translateY(-1px) scaleY(1); }
	#header .lang ul li a{ padding: 5px 15px; }

	#header .lang.on button::after{ transform: translateY(0) scaleY(-1); }
}


/* 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 .inner{ max-width: 600px; width: 100%; height: 100%; background: var(--mainColor); position: absolute; top: 0; right: 0; transform: translateX(100%); transition: transform 0.5s; }
#menu .close{ height: var(--headerH); display: flex; justify-content: flex-end; align-items: center; padding-right: 20px; position: absolute; top: 0; right: 0; }
#menu .close button{ background: none; border: none; padding: 20px; }
#menu nav{ height: 100%; padding: 80px; padding-top: var(--headerH) !important; }
#menu nav a{ line-height: 1.3; }

#menu .depth01 > li{ opacity: 0; transform: translateY(20px); transition: opacity 0.5s, transform 0.5s; }
#menu .depth01 > li > a{ display: block; font-size: 5rem; font-weight: 600; color: rgba(255, 255, 255, 0.2); letter-spacing: -0.03em; padding: 10px 0; transition: color 0.3s; }
#menu .depth01 > li.on > a{ color: #FFF; }

#menu .depth-box{ display: none; }
#menu .depth02{ display: flex; flex-wrap: wrap; margin-left: -15px; padding-bottom: 15px; }
#menu .depth02 > li > a{ display: inline-block; font-size: 20px; font-weight: 400; color: #FFF; letter-spacing: -0.03em; padding: 5px 15px; }  
 

/* body - open */
body.open{ overflow: hidden; }
body.open #menu .inner{ transform: translateX(0); transition-delay: 0.5s; }
body.open #menu .close{ opacity: 1; }
body.open #menu .depth01 > li{ opacity: 1; transform: translateY(0); }

@media screen and (hover: hover){
	#menu .depth01 > li:hover > a{ color: #FFF; }
	#menu .depth02 > li:hover a{ text-decoration: underline; text-underline-position: under; }
}

@media screen and (max-width: 1700px){
	#menu nav{ padding: 50px; }

	#menu .depth02 > li > a{ font-size: 18px; }
}

@media screen and (max-width: 1280px){
	#menu nav{ padding: 30px; }
	#menu .depth01 > li > a{ font-size: 5.5rem; }
	#menu .depth02 > li > a{ font-size: 17px; }

	#menu .close{ padding-right: 10px; }
	#menu .close button{ padding: 10px; }
}

@media screen and (max-width: 900px){
	#menu .depth01 > li > a{ font-size: 6rem; }
}

@media screen and (max-width: 600px){
	#menu .depth02{ display: block; background: rgba(255, 255, 255, 0.1); padding: 7px 0; margin-left: 0; }
	#menu .depth02 > li > a{ width: 100%; font-size: 18px; padding: 7px 20px; }
}


/* footer */
#footer{ background: #171717; }
#footer br.m{ display: none; }
#footer *{ color: #FFF; }
#footer .inner{ max-width: 1920px; width: 100%; margin: 0 auto; border-right: 1px solid rgba(255, 255, 255, 0.05); position: relative; padding-right: 100px; }
#footer .inner2{ max-width: 1740px; width: 100%; margin-left: auto; padding-left: 20px; }
#footer .flex-box{ display: flex; }
#footer .flex-box > div{ border: 1px solid #171717; border-right: 1px solid rgba(255, 255, 255, 0.05); }
#footer .left{ width: calc(100% - 520px); display: flex; flex-direction: column; padding: 60px 0; }
#footer .right{ width: 520px; padding: 60px 100px; }

#footer nav{ flex: 1 0 auto; }
#footer .depth01{ display: flex; margin-top: -13px; margin-left: -10px; }
#footer .depth01 a{ display: block; line-height: 1.3; }
#footer .depth01 > li{ width: -webkit-fill-available; }
#footer .depth01 > li > a{ font-size: 20px; font-weight: 500; letter-spacing: -0.03em; padding: 13px 10px; }

#footer .depth02 > li > a{ font-size: 17px; font-weight: 200; letter-spacing: -0.03em; opacity: 0.6; padding: 7px 10px; }

#footer .bottom{ display: flex; justify-content: space-between; align-items: baseline; padding-top: 30px; padding-right: 100px; }
#footer .copyright{ font-size: 17px; font-weight: 300; opacity: 0.3; }
#footer .bottom ul{ display: flex; margin: -15px; }
#footer .bottom ul li a{ display: inline-block; font-size: 18px; font-weight: 500; opacity: 0.3; padding: 15px; }

#footer h4{ font-size: 4.6rem; font-weight: 600; color: #FFF; letter-spacing: -0.03em; margin-bottom: 30px; }
#footer address p{ font-size: 17px; font-weight: 200; letter-spacing: -0.03em; opacity: 0.6; }
#footer address p:not(:last-of-type){ margin-bottom: 15px; }


/* top */
#top{ width: 100px; height: 100px; background: #171717; border: none; border-bottom: 1px solid rgba(255, 255, 255, 0.05); font-family: var(--engFont); font-size: 16px; font-weight: 400; color: #FFF; position: absolute; top: 0; right: 0; z-index: 100; }

@media screen and(max-width: 1920px){
	/* footer */
	#footer .inner{ border-right: none; }
}

@media screen and (max-width: 1750px){
	/* footer */
	#footer .right{ padding: 80px; }
}

@media screen and (max-width: 1700px){
	/* footer */
	#footer .inner{ padding-right: 80px; }

	#footer .left{ width: calc(100% - 450px); padding: 40px 0; }
	#footer .right{ width: 450px; padding: 40px 60px; }
	#footer .depth01 > li > a{ font-size: 18px; }
	#footer .bottom ul li a{ font-size: 17px; }

	/* top */
	#top{ width: 80px; height: 80px; }
}

@media screen and (max-width: 1500px){
	/* footer */
	#footer br{ display: none; }
	#footer br.m{ display: block; }
	#footer .flex-box{ flex-direction: column-reverse; }
	#footer .left, #footer .right{ width: 100%; }

	#footer .left{ padding: 30px 0; padding-right: 20px; position: relative; }
	#footer .left::before{ content: ""; width: calc(100% + 20px); height: 1px; background: rgba(255, 255, 255, 0.05); position: absolute; top: 0; left: -20px; }

	#footer .right{ padding: 30px 0; }
	#footer nav{ display: none; }
	#footer .bottom{ padding: 0; padding-right: 20px; }
}

@media screen and (max-width: 1280px){
	/* footer */
	#footer .inner{ padding-right: 70px; }
	#footer .bottom ul{ display: flex; margin: -10px; }
	#footer .bottom ul li a{ font-size: 16px; padding: 10px; }

	#footer h4{ margin-bottom: 20px; }
	#footer address p{ font-size: 16px; }
	#footer address p:not(:last-of-type){ margin-bottom: 10px; }
	#footer .copyright{ font-size: 16px; }

	/* top */
	#top{ width: 70px; height: 70px; }
}

@media screen and (max-width: 900px){
	/* footer */
	#footer .inner{ padding-right: 0; }
	#footer .flex-box > div{ border: none; }

	#footer h4{ font-size: 5rem; }

	#footer .left{ padding: 15px 0 20px; padding-right: 0; }
	#footer .right{ padding-right: 70px; position: relative; }
	#footer .right::after{ content: ""; width: 1px; height: 100%; background: rgba(255, 255, 255, 0.05); position: absolute; top: 0; right: 70px; }
	#footer .bottom{ flex-direction: column-reverse; }
	#footer .bottom ul{ margin: 0 0 5px; position: relative; left: -10px; }
}