@charset 'utf-8';

/* ���� */
:root{
    --baseFont: 'Lexend', 'Pretendard', 'Noto Sans KR', 'Malgun Gothic', 'verdana', sans-serif;
	--subFont: 'SUIT-Regular', 'Lexend', 'Pretendard', 'Noto Sans KR', 'Malgun Gothic', 'verdana', sans-serif;

	--headerH: 80px;
	--vh: 100%;

	--mainColor: #00A0DF;
	--navy: #1A428A;
	--skyblue: #87DDFF;

	--contentG: 15px;
	--contentR: 5px;

	--aosPlus: 100px;
	--aosMinus: -100px;
}

*{ box-sizing: border-box; word-break: keep-all; line-height: 1.3; }
body.lock{ overflow: hidden; }
body{ font-size: 16px; }
body *{ font-size: inherit; }

.w1920{ max-width: 1920px; width: 100%; margin: 0 auto; }
.w1860{ max-width: 1900px; width: 100%; margin: 0 auto; padding: 0 20px; }
.w1830{ max-width: 1870px; width: 100%; margin: 0 auto; padding: 0 20px; }
.w1760{ max-width: 1800px; width: 100%; margin: 0 auto; padding: 0 20px; }
.w1720{ max-width: 1760px; width: 100%; margin: 0 auto; padding: 0 20px; }
.w1650{ max-width: 1690px; width: 100%; margin: 0 auto; padding: 0 20px; }

/* slick */
.slick-track{ margin: 0; }
.slick-slide{ outline: none; }

@media screen and (max-width: 1700px){
	:root{
		--headerH: 70px;
	}

	html{ font-size: 50%; }
}

@media screen and (max-width: 1280px){
	:root{
		--aosPlus: 50px;
		--aosMinus: -50px;
	}

	html{ font-size: 40%; }
}

@media screen and (max-width: 1000px){
	:root{
		--headerH: 65px;
	}
}

@media screen and (max-width: 900px){
	html{ font-size: 30%; }
}

/* privacy */
.privacy * { font-size: 1.6rem; line-height: 1.625; }
.privacy h3 { font-weight: 700; }
.privacy h4{ font-weight: 700; }
.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: 2.2rem; margin-bottom: 5px; }

.privacy .pBox { gap: 30px 0; margin: 40px 0; }

.privacy .dlBox { gap: 50px 0; }
.privacy .dlBox > dl > dt { font-size: 1.8rem; font-weight: 500; }
.privacy .dlBox > dl > dd > p { margin: 5px 0; }
.privacy .dlBox > dl > dd > ul { padding: 0 0 0 20px; }
.privacy .dlBox > dl > dd ul:only-child{ margin-top: 5px; }

.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%; padding: 0 0 0 13px; }

.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: 1250px){
	.privacy .textBox h3{ font-size: 2rem; }
	.privacy .textBox { gap: 80px 0; }

	.privacy .pBox{ gap: 15px 0; }
	
	.privacy .dlBox { gap: 30px 0; }
}

@media screen and (max-width: 900px){
	.privacy .dlBox > dl > dt { font-size: 1.7rem; }
	.privacy * { font-size: 1.5rem; }
	.privacy .dlBox > dl > dd > ul { padding: 0 0 0 10px; }
}


/* header */
#header{ width: 100%; padding: var(--contentG); padding-bottom: 0 !important; position: fixed; top: 0; left: 0; z-index: 999; transition: padding 0.3s; }
#header .header-box{ background: #F8F8F8; border-radius: 5px; position: relative; transition: border-radius 0.5s; }
#header .navBg{ width: 100%; height: 0; background: #F8F8F8; border-radius: 5px; position: absolute; top: 0; left: 0; transition: height 0.6s 0.2s; }
#header .flex-box{ height: var(--headerH); display: flex; justify-content: space-between; align-items: center; }
#header .logo,
#header .right{ position: relative; z-index: 10; }
#header .logo ul{ display: flex; align-items: center; margin: 0 -20px; }
#header .logo ul li{ display: flex; padding: 0 20px; position: relative; }
#header .logo ul li::after{ content: ""; width: 1px; height: 30px; background: #DDD; position: absolute; top: 50%; right: 0; transform: translateY(-50%); }
#header .logo ul li:last-of-type::after{ display: none; }
#header .logo svg{ width: auto; height: 40px; }

#header nav{ width: 100%; position: absolute; top: 0; left: 50%; transform: translateX(-50%); }
#header nav a{ font-size: 18px; font-weight: 400; }
#header .depth01{ display: flex; justify-content: center; }
#header .depth01 > li > a{ height: var(--headerH); display: flex; justify-content: center; align-items: center; color: #151515; letter-spacing: -0.02em; padding: 0 40px; position: relative; z-index: 10; }
#header .depth01 > li > a::after{ content: ""; width: calc(100% - 80px); height: 2px; background: var(--navy); position: absolute; bottom: -1px; left: 50%; transform: translateX(-50%) scale(0); transition: transform 0.3s; }

#header .depthBox{ width: 100%; padding-top: var(--headerH); position: absolute; top: 0; left: 50%; transform: translateX(-50%); opacity: 0; pointer-events: none; transition: opacity 0.5s; }
#header .depth02{ display: flex; justify-content: center; border-top: 1px solid #EEE; }
#header .depth02 li > a{ display: inline-block; color: #BBB; letter-spacing: -0.02em; padding: 35px 40px; transition: color 0.3s; }

#header .right{ display: flex; align-items: center; margin-right: -15px; }
#header .lang a,
#header .menu{ padding: 15px; }
#header .lang a{ display: flex; align-items: center; font-size: 18px; font-weight: 400; color: #151515; letter-spacing: -0.02em; }
#header .lang a::before{ content: ""; display: inline-block; width: 24px; height: 24px; background: url("/img/common/lang_icon.svg") no-repeat center center / contain; margin-right: 5px; }
#header .menu{ display: flex; background: none; border: none; outline: none; }

/* header - scoll */
#header.scroll{ padding: 0; }
#header.scroll .header-box{ border-radius: 0 0 5px 5px; }

/* header - hover */
#header.hover .navBg{ transition-delay: unset; }

@media screen and (hover: hover){
	#header .depth01 > li:hover a::after{ transform: translateX(-50%) scale(1); }
	#header .depth01 > li:hover .depthBox{ opacity: 1; pointer-events: auto; transition-delay: 0.2s; }
	#header .depth02 li:hover a{ color: #353535; }
}

@media screen and (max-width: 1700px){
	#header .depth01 > li > a{ padding: 0 30px; }
	#header .depth01 > li > a::after{ width: calc(100% - 60px); }
	#header .depth02 li > a{ padding: 30px; }
}

@media screen and (max-width: 1400px){
	#header .depth01{ margin-left: 100px; }
}

@media screen and (max-width: 1280px){
	#header .logo svg{ height: 35px; }
	#header .logo ul{ margin: 0 -10px; }
	#header .logo ul li{ padding: 0 10px; }
	#header .logo ul li::after{ height: 25px; }

	#header nav a{ font-size: 17px; }
	#header .depth01 > li > a{ padding: 0 20px; }
	#header .depth01 > li > a::after{ width: calc(100% - 40px); }
	#header .depth02 li > a{ padding: 25px 20px; }
	
	#header .lang a::before{ width: 20px; height: 20px; }
	#header .lang a{ font-size: 17px; }
	#header .menu svg{ width: 27px; height: 27px; }
}

@media screen and (max-width: 1110px){
	#header .depth01{ margin-left: 150px; }
}

@media screen and (max-width: 1000px){
	#header .logo svg{ height: 30px; }
	
	#header nav{ display: none; }
	
	#header .right{ margin-right: -10px; }
	#header .lang a, 
	#header .menu{ padding: 10px; }
}


/* menu */
#menu{ width: 100%; height: 100%; background: #FFF; position: fixed; top: 0; left: 0; z-index: 1000; display: none; }
#menu .close{ background: none; border: none; padding: 0; position: absolute; top: calc((var(--headerH) / 2) + 15px); right: 35px; z-index: 100; transform: translateY(-50%); }
#menu .close::before{ content: ""; display: inline-block; width: 40px; height: 40px; background: url("/img/common/close_icon.svg") no-repeat center center / contain; }
#menu .flex-box{ height: 100%; display: flex; }
#menu .flex-box > div{ transition: clip-path 0.7s 0.5s; }
#menu .img{ width: calc(50% + 100px); clip-path: inset(0 0 100% 0); -webkit-clip-path: inset(0 0 100% 0); }
#menu .img figure{ display: block; height: 100%; }
#menu .img figure img{ width: 100%; height: 100%; object-fit: cover; }

#menu .nav{ width: calc(50% - 100px); height: 100%; display: flex; align-items: center; padding: var(--headerH) 200px; }
#menu .nav > *{ width: 100%; }
#menu .nav .pc{ display: none; }
#menu .nav .depth01 > li{ transform: translateY(100%); opacity: 0; transition: transform 0.7s 0.5s, opacity 0.7s 0.5s; }
#menu .nav .depth01 > li > a{ display: block; font-size: 6.4rem; font-weight: 400; color: #151515; letter-spacing: -0.02em; padding: 20px; }
#menu .nav .depthBox{ display: none; }
#menu .nav .depth02{ display: flex; flex-wrap: wrap; padding-bottom: 10px; }
#menu .nav .depth02 > li > a{ display: inline-block; font-size: 20px; font-weight: 400; color: #BBB; letter-spacing: -0.02em; padding: 10px 20px; transition: color 0.3s; }


/* body - open */
body.open #menu .img{ clip-path: inset(0 0 0 0) !important; -webkit-clip-path: inset(0 0 0 0) !important; }
body.open #menu .nav .depth01 > li{ transform: translateY(0); opacity: 1; }

@media (hover: hover) and (pointer: fine) {
	#menu .nav .pc{ display: block; }
	#menu .nav .mobile{ display: none; }
}

@media screen and (hover: hover){
	#menu .nav .depth02 > li:hover > a{ color: #353535; }
}

@media screen and (max-width: 1700px){
	#menu .img{ width: 50%; }

	#menu .nav{ width: 50%; padding: var(--headerH) 10%; }
	#menu .nav .depth01 > li > a{ padding: 20px 15px; }
	#menu .nav .depth02 > li > a{ padding: 10px 15px; }
}

@media screen and (max-width: 1350px){
	#menu .nav{ padding: var(--headerH) 5%; }
}

@media screen and (max-width: 1280px){
	#menu .close{ padding: 5px; }
	#menu .close::before{ width: 35px; height: 35px; }
}

@media screen and (max-width: 1000px){
	#menu .close{ right: 15px; }
	#menu .img{ display: none; }
	#menu .nav{ width: 100%; align-items: flex-start; padding: calc(var(--headerH) + 15px) 15px 15px; }

	#menu .nav .depth01 > li{ background: #EEE; border-radius: var(--contentR); padding: 0 20px; }
	#menu .nav .depth01 > li:not(:last-of-type){ margin-bottom: 10px; }
	#menu .nav .depth01 > li > a{ padding: 20px 0; }

	#menu .nav .depthBox{ padding-bottom: 20px; }
	#menu .nav .depth02{ display: block; background: #FFF; border-radius: var(--contentR); padding: 10px 0; }
	#menu .nav .depth02 > li > a{ display: block; padding: 10px 20px; }
}


/* footer */
#footer{ background: #EFEFEF; padding: 80px 0 40px; }
#footer .line02{ margin-top: 160px; }
#footer .line02 .flex-box{ align-items: center; }
#footer .flex-box{ display: flex; justify-content: space-between; }
#footer .flex-box > div{ display: flex; align-items: flex-start; }
#footer .logo{ margin-right: 225px; }
#footer .logo svg{ width: auto; height: 60px; } 

#footer address p{ font-size: 17px; font-weight: 400; color: #353535; letter-spacing: -0.02em; }
#footer address p:not(:last-of-type){ margin-bottom: 5px; }

#footer .depth01{ display: flex; margin: -9px 0; }
#footer .depth01 > li > a{ width: 200px; display: block; font-size: 19px; font-weight: 400; color: #151515; letter-spacing: -0.02em; padding: 9px 6px; }

#footer .depth02 > li > a{ display: block; font-size: 18px; font-weight: 400; color: #999; letter-spacing: -0.02em; padding: 6px; }

#footer .copyright{ font-size: 16px; font-weight: 300; color: #AAA; letter-spacing: -0.02em; text-align: center; }

#footer .sns ul{ display: flex; margin: -10px; }
#footer .sns ul li a{ display: inline-block; padding: 10px; }


/* top */
#top{ background: none; border: none; padding: 10px; margin: -10px; }

@media screen and (max-width: 1700px){
	#footer{ padding: 60px 0 30px; }
	#footer .logo{ margin-right: 175px; }
	#footer .logo svg{ height: 55px; }

	#footer .depth01 > li > a{ width: 180px; }

	#footer .line02{ margin-top: 120px; }
}

@media screen and (max-width: 1500px){
	#footer .logo{ margin-right: 100px; }
}

@media screen and (max-width: 1400px){
	#footer .logo svg{ height: 50px; }
	#footer{ padding: 40px 0 30px; }
	#footer .flex-box > div{ display: block; }

	#footer .logo{ margin-right: 0; }
	#footer address{ margin-top: 15px; }
	#footer nav{ display: none; }

	#footer .line02{ margin-top: 30px; }
}

@media screen and (max-width: 1280px){
	#footer address p{ font-size: 16px; }
	#footer .copyright{ font-size: 15px; }
}

@media screen and (max-width: 800px){
	#footer .line02 .flex-box{ flex-direction: column-reverse; align-items: flex-start; }
	#footer .sns ul{ margin-bottom: 10px; }
}