@charset 'utf-8';

/* ���� */
:root{
	--mainColor: #000;
    --baseFont: 'Pretendard', 'Noto Sans KR', 'Malgun Gothic', 'verdana', sans-serif;
	--Mulish: 'Mulish', 'Pretendard', 'Noto Sans KR', 'Malgun Gothic', 'verdana', sans-serif;
}

.w1920{ max-width: 1920px; width: 100%; margin: 0 auto; }
.w1720{ max-width: 1720px; width: 100%; margin: 0 auto; }
.w1600{ max-width: 1600px; width: 100%; margin: 0 auto; }

@media screen and (max-width: 1760px){
	.w1720{ padding: 0 20px; }
}

@media screen and (max-width: 1640px){
	.w1600{ padding: 0 20px; }
}

/* 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; }
}


/* viewmore */
.viewmore{ --circle: 35px; --color: #111; display: flex; justify-content: space-between; align-items: center; width: max-content; height: var(--circle); font-family: var(--Mulish); font-size: 1.4rem; font-weight: 700; color: var(--color) !important; position: relative; margin: 2px 0; }
.viewmore .arrow{ width: var(--circle); height: var(--circle); display: flex; align-items: center; margin-left: 20px; position: relative; }
.viewmore .arrow span{ width: 4px; height: 4px; background: #000; border-radius: 50%; position: relative; overflow: hidden; transition: all 0.4s; }
.viewmore .arrow span::before{ content: ""; width: var(--circle); height: var(--circle); background: url("/img/main/viewmore.svg") no-repeat center center / auto; position: absolute; top: 50%; right: calc((var(--circle) / 2) * -1); transform: translate(100%, -50%); opacity: 0; transition: all 0.4s; box-sizing: border-box; }

.viewmore.white{ --color: #fff; }
.viewmore.white .arrow span{ background: #fff; }
.viewmore.white .arrow span::before{ filter: invert(1); }

.viewmore:hover .arrow span{ width: var(--circle); height: var(--circle); }
.viewmore:hover .arrow span::before{ right: calc(var(--circle) / 2); transform: translate(50%, -50%); opacity: 1; transition-delay: 0.05s; }



/* header */
#header{ width: 100%; margin: 0 auto; position: absolute; top: 0; left: 0; z-index: 500; padding-right: 80px; }
#header .flex-box{ height: 100px; display: flex; justify-content: space-between; align-items: center; }
#header .logo{ display: inline-block; position: relative; }
#header .logo img{ filter: invert(0); transition: filter 0.5s; }
#header .logo a{ position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 10; }
#header .flex-box .right{ display: flex; align-items: center; }

#header nav{ opacity: 1; transition: opacity 0.5s; }
#header .depth01{ display: flex; }
#header .depth01 > li{ background: transparent; position: relative; z-index: 10; }
#header .depth01 > li > a{ display: inline-block; font-family: var(--Mulish); font-size: 1.7rem; font-weight: 600; color: #111; text-transform: uppercase; padding: 15px 25px; transition: color 0.5s; }

#header .depth02{ width: 100%; padding: 50px 0 15px; position: absolute; top: 0; z-index: -1; display: none; }
#header .depth02::before{ content: ""; width: 100%; height: 100%; background: #000; border-radius: 5px; position: absolute; top: 0; left: 0; z-index: -1; transform: scaleY(0); transform-origin: top; transition: transform 0.5s; }
#header .depth02 > li{ overflow: hidden; }
#header .depth02 > li > a{ display: inline-block; width: 100%; font-size: 1.7rem; font-weight: 300; color: #fff; text-align: center; padding: 5px 10px; transform: translateY(100%); transition: all 0.5s; transition-delay: unset; }

#header .depth01 > li.on > a{ color: #fff; }
#header .depth01 > li.on .depth02::before{ transform: scaleY(1); }
#header .depth01 > li.on .depth02 > li > a{ transform: translateY(0); transition-delay: 0.3s; }

#header .lang{ width: 83px; position: relative; }
#header .lang *{ font-family: var(--Mulish); font-size: 1.5rem; font-weight: 600; text-transform: uppercase; }
#header .lang button{ width: 100%; color: #111; line-height: 0; padding: 23px 30px; position: relative; transition: color 0.5s; }
#header .lang button::before, #header .lang button::after{ position: absolute; top: 50%; transform: translateY(-50%); fiter: invert(0); transition: filter 0.5s; }
#header .lang button::before{ content: url("/img/common/lang_icon.svg"); left: 8px; }
#header .lang button::after{ content: url("/img/common/lang_arrow.svg"); right: 8px; }
#header .lang ul{ width: 100%; padding: 35px 0 10px; position: absolute; top: 0; display: none; }
#header .lang ul::before{ content: ""; width: 100%; height: 100%; background: #000; border-radius: 5px; position: absolute; top: 0; left: 0; z-index: -1; transform: scaleY(0); transform-origin: top; transition: transform 0.5s; }
#header .lang ul li{ overflow: hidden; }
#header .lang ul li a{ display: inline-block; width: 100%; color: rgba(255, 255, 255, 0.6); padding: 5px 30px; transform: translateY(100%); transition: all 0.5s; transition-delay: unset; }

#header .lang.on button{ color: #fff; }
#header .lang.on button::before, #header .lang.on button::after{ filter: invert(1); }
#header .lang.on ul::before{ transform: scaleY(1); }
#header .lang.on ul li a{ transform: translateY(0); transition-delay: 0.3s; }


#header .menu{ width: 100px; height: 100px; background: #000; border-radius: 0 0 0 3px; position: absolute; top: 0; right: 0; transition: background 0.5s; position: fixed; top: 0; right: 0; z-index: 999; }
#header .menu span{ display: inline-block; width: 40px; height: 1px; background: #fff; position: relative; top: -10px; transition: all 0.5s; }
#header .menu span::after{ content: ""; width: 100%; height: 100%; background: #fff; position: absolute; bottom: -10px; left: 0; transition: all 0.5s; }

@media screen and (max-width: 1903px){ 
	#header .lang{ margin-right: 40px; }
}

@media screen and (max-width: 1860px){
	#header{ padding-left: 20px; }
}

@media screen and (max-width: 1760px){
	#header{ padding-left: 0; }
	#header .lang{ margin-right: 20px; }
}

@media screen and (max-width: 1400px){
	#header .logo{ width: 200px; }
	#header .flex-box{ height: 80px; }
	#header nav{ display: none; }

	#header .lang{ margin-right: 0; }

	#header .menu{ width: 80px; height: 80px; }
}

@media screen and (max-width: 900px){
	#header .flex-box{ height: 70px; }

	#header .menu{ width: 70px; height: 70px; }
	#header .menu span{ width: 35px; }
}


/* 전체 메뉴 */
#menu{ width: 100%; height: 100%; background: #000; position: fixed; z-index: 400; display: none; }
#menu ul li{ overflow: hidden; }
#menu a{ transform: translateY(100%); transition: color 0.5s, transform 1s 0.5s; }
#menu .flex-box{ width: 100%; height: 100%; display: flex; }
#menu .flex-box > div{ height: 100%; }

#menu .nav-box{ width: calc(100% - 680px); padding: 20px 115px 0; transform-origin: top; display: flex; align-items: center; }
#menu .nav-box .mobile{ display: none; }
#menu .nav-box *{ color: #fff; }

#menu .nav-box .depth01 > li{ display: flex; align-items: baseline; }
#menu .nav-box .depth01 > li > a{ display: inline-block; font-family: var(--Mulish); font-size: 6.5rem; font-weight: 700; text-transform: uppercase; padding: 25px; }

#menu .nav-box .depth02{ display: flex; }
#menu .nav-box .depth02 > li > a{ display: inline-block; font-size: 1.8rem; font-weight: 400; color: rgba(255, 255, 255, 0.5); padding: 15px; }
#menu .nav-box .depth02 > li:hover > a{ color: #fff; }

#menu .img-box{ width: 680px; position: relative; transform-origin: bottom; overflow: hidden; }
#menu .img-box::after{ content: ""; width: 100%; height: 100%; background: #000; position: absolute; top: 0; right: 0; transform: scaleY(1); transform-origin: bottom; transition: transform 1s 0.5s; }  
#menu .img-box img{ width: 100%; height: 100vh; object-fit: cover; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } 


/* 전체 메뉴 오픈 */
body.open{ overflow: hidden; }
body.open #header{ position: fixed; }
body.open #header .logo img{ filter: invert(1) !important; }
body.open #header nav{ opacity: 0; pointer-events: none; transition: unset; }
body.open #header .lang button{ color: #fff; }
body.open #header .lang button::before, body.open #header .lang button::after{ filter: invert(1); }
body.open #header .menu{ background: #fff; }
body.open #header .menu span{ top: -2px; transform: rotate(45deg); background: #000; }
body.open #header .menu span::after{ bottom: 50%; left: 50%; background: #000; transform: translate(-50%, -50%) rotate(-90deg); }

body.open #menu a{ transform: translateY(0); }
body.open #menu .img-box::after{ transform: scaleY(0); }

@media screen and (max-width: 1700px){
	#menu .nav-box{ padding: 20px 80px 0; }
	#menu .nav-box .depth01 > li > a{ font-size: 5.5rem; }
}

@media screen and (max-width: 1500px){
	#menu .nav-box{ width: calc(100% - 580px); padding: 20px 40px 0; }
	#menu .img-box{ width: 580px; }
}

@media screen and (max-width: 1300px){
	#menu .nav-box{ width: calc(100% - 500px); }
	#menu .img-box{ width: 500px; }
}

@media screen and (max-width: 1280px){
	#menu .nav-box .depth01 > li > a{ font-size: 4.5rem; padding: 15px; }
	#menu .nav-box .depth02 > li > a{ font-size: 1.7rem; }
}

@media screen and (max-width: 1200px){
	#menu .nav-box{ justify-content: center; }
	#menu .nav-box .pc{ display: none; }
	#menu .nav-box .mobile{ display: block; }

	#menu .nav-box .depth01 > li{ display: block; text-align: center; position: relative; }
	#menu .nav-box .depth01 > li::after{ content: ""; width: 100%; height: 75px; position: absolute; top: 0; left: 0; z-index: 10; cursor: pointer; }
	#menu .nav-box .depth02{ display: none; background: linear-gradient(to bottom, #0C0C0C, #171717); border-radius: 5px; padding: 10px 0; }
	#menu .nav-box .depth02 > li{ width: 100%; }
	#menu .nav-box .depth02 > li > a{ width: 100%; padding: 10px; }
}

@media screen and (max-width: 1000px){
	#menu .nav-box{ width: 100%; }
	#menu .img-box{ display: none; }
}

@media screen and (max-width: 900px){
	#menu .nav-box .depth01 > li > a{ font-size: 3.5rem; }
}



/* footer */
#footer{ background: #000; padding: 115px 0 100px; }
#footer *{ color: #fff; }
#footer .line .flex-box{ display: flex; justify-content: space-between; }

#footer .line01{ margin-bottom: 90px; }
#footer .line01 h4{ font-size: 5rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 25px; }
#footer .nav .depth01{ text-align: right; margin-top: -7.5px; }
#footer .nav .depth01 li a{ display: inline-block; font-family: var(--Mulish); font-size: 3rem; font-weight: 600; text-transform: uppercase; padding: 7.5px 0; }

#footer .line02{ margin-bottom: 45px; }
#footer .line02 .flex-box{ align-items: flex-end; }
#footer .info{ display: flex; flex-direction: column; gap: 30px; } 
#footer .info dl *{ font-family: var(--Mulish); }
#footer .info dl .baseFont{ font-family: var(--baseFont); letter-spacing: -0.02em; }
#footer .info dl dt{ font-size: 1.5rem; font-weight: 500; opacity: 0.5; margin-bottom: 10px; }
#footer .info dl dd{ font-size: 1.7rem; font-weight: 400; letter-spacing: -0.02em; opacity: 0.9; }
#footer .info .dl{ display: flex; flex-wrap: wrap; gap: 30px 60px; }

#footer .top{ display: flex; gap: 10px; }
#footer .logo{ display: inline-block; position: relative; }
#footer .logo a{ position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 10; }
#footer #top{ display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; }
#footer #top img{ margin-right: 4px; }
#footer #top span{ display: inline-block; font-family: var(--Mulish); font-size: 1.5rem; font-weight: 400; writing-mode: vertical-rl; }

#footer .line03 .flex-box{ align-items: flex-end; }
#footer .copyright p{ font-family: var(--Mulish); font-size: 1.5rem; font-weight: 300; opacity: 0.4; }
#footer .family-site{ width: 270px; position: relative; background: #000; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 5px; transition: border-radius 0.5s; transition-delay: 0.1s; }
#footer .family-site *{ font-family: var(--Mulish); font-size: 1.6rem; font-weight: 400; }
#footer .family-site p, #footer .family-site ul li a{ padding: 20px 30px; }
#footer .family-site p{ position: relative; cursor: pointer; padding-right: 60px; }
#footer .family-site p::after{ content: "\e942"; font-family: "xeicon"; font-size: 1.5rem; font-weight: normal; font-style: normal; color: rgba(255, 255, 255, 0.8); line-height: 1; position: absolute; top: 50%; right: 30px; transform: translateY(-50%) rotate(-180deg); transition: transform 0.5s; }
#footer .family-site ul{ width: calc(100% + 2px); background: #000; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 5px 5px 0 0; display: none; }
#footer .family-site ul li:not(:last-of-type){ border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
#footer .family-site ul li a{ display: inline-block; }

#footer .family-site.on{ border-radius: 0 0 5px 5px; transition: unset; }
#footer .family-site.on p::after{ transform: translateY(-50%) rotate(0); }  

@media screen and (max-width: 1700px){
	#footer .line01 h4{ font-size: 4rem; }
	#footer .nav .depth01 li a{ font-size: 2.6rem; }
}

@media screen and (max-width: 1280px){
	#footer{ padding: 60px 0 40px; }
	#footer .line01{ margin-bottom: 50px; }
	#footer .line01 h4{ font-size: 3.5rem; }

	#footer .nav .depth01 li a{ font-size: 2.4rem; }

	#footer .info{ gap: 20px; }
	#footer .info dl dt{ margin-bottom: 5px; }
	#footer .info .dl{ gap: 20px 40px; }

	#footer .family-site{ width: 200px; }
	#footer .family-site p, #footer .family-site ul li a{ padding: 15px 20px; }
	#footer .family-site p{ padding-right: 50px; }
	#footer .family-site p::after{ right: 20px; }
}

@media screen and (max-width: 900px){
	#footer .line01 h4{ font-size: 3rem; }
	
	#footer .nav{ display: none; }

	#footer .info dl dd{ font-size: 1.6rem; }
}

@media screen and (max-width: 750px){
	#footer{ padding: 40px 0 20px; }
	#footer .line01{ margin-bottom: 30px; }
	#footer .line01 h4{ width: 100%; margin-bottom: 10px; }

	#footer .line02{ margin-bottom: 20px; }
	#footer .line02 .flex-box{ flex-direction: column; position: relative; }
	#footer .top{ position: absolute; bottom: 0; right: 0; }

	#footer .line02 .info{ width: 100%; padding-right: 150px; }
	#footer .info .dl{ flex-direction: column; }

	
	#footer .line03 .flex-box{ flex-direction: column-reverse; }
	#footer .copyright{ margin-top: 15px; }
}