/** @format */

@charset "utf-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400..800&display=swap");

/*Common*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html,
body {
	width: 100%;
	height: 100%;
}
html {
	overflow-y: scroll;
}
body {
	background-color: #fff;
	word-break: keep-all;
	overflow-wrap: anywhere;
	-webkit-text-size-adjust: 100% !important;
	-moz-text-size-adjust: 100% !important;
	-ms-text-size-adjust: 100% !important;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
th,
td,
li,
dt,
dd,
a,
p,
input,
textarea,
select,
option,
button {
	color: #000;
	font-family: "Wix Madefor Display", sans-serif;
	word-break: keep-all;
	font-size: 14px;
	font-weight: normal;
}
img,
fieldset,
iframe {
	border: 0 none;
}
ul,
ol,
li {
	list-style: none;
}
em,
address {
	font-style: normal;
}
img,
input,
select,
textarea {
	vertical-align: middle;
}
a {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}
a:hover {
	text-decoration: none;
}
button,
label {
	cursor: pointer;
	_cursor/**/: hand;
}
button * {
	position: relative;
}
textarea {
	overflow: auto;
}
option {
	padding-right: 6px;
}
.input_text,
textarea {
	*margin: -1px 0;
	padding-right: 1px;
}
.input_check,
.input_radio {
	width: 13px;
	height: 13px;
}
.blind,
legend,
caption {
	text-indent: -9999px;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
}
hr {
	display: none;
}
legend {
	*width: 0;
}
:root legend {
	margin-top: -1px;
	font-size: 0;
	line-height: 0;
}
caption {
	*line-height: 0;
}
img {
	max-width: 100%;
}

/*로딩 이미지*/
#loading_img {
	text-align: center;
	display: none;
	width: 100%;
	margin: 10px 0px 10px 0px;
}

/* popup */
.pop_today_close {
	padding: 1px 7px 3px 7px;
	color: #ffffff;
	background: #303030;
	vertical-align: middle;
	border: 0px;
}
.pop_close {
	padding: 1px 7px 3px 7px;
	color: #ffffff;
	background: #303030;
	vertical-align: middle;
	border: 0px;
}

@media (max-width: 767px) {
	/* 메인 레이어 팝업 */
	.main_layer_popup {
		width: 96% !important;
		left: 50% !important;
		top: 50px !important;
		transform: translateX(-50%);
	}
	.main_layer_popup .popupContent {
		height: 100% !important;
	}
	.main_layer_popup img {
		width: 100%;
	}
}

/* 로딩 애니메이션 */
#loadingIndicator {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 20px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	display: none;
}

.spinner {
	width: 40px;
	height: 40px;
	border: 4px solid rgba(0, 0, 0, 0.2);
	border-top: 4px solid #333;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

#wrap {
	overflow: hidden;
	position: relative;
}

#header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 1000;
}

.head {
	position: relative;
	width: 92%;
	max-width: 1640px;
	height: 100px;
	margin: 0 auto;
}
.head h1 {
	position: absolute;
	left: 0%;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1002;
}
.head h1 a {
	display: block;
	width: 71px;
	height: 58px;
	background: url(/images/common/logo1.png) no-repeat center / contain;
	background-size: contain;
	text-indent: -9999px;
	transition: all 0.3s;
}
.head .pcNav {
	height: 100px;
}
.head .pcNav > ul {
	display: flex;
	justify-content: center;
}
.head .pcNav > ul > li {
	margin: 0 35px;
	position: relative;
}
.head .pcNav > ul > li > a {
	white-space: nowrap;
	position: relative;
	display: inline-block;
	height: 100px;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	line-height: 100px;
	transition: all 0.3s;
}
.head .pcNav > ul > li > a:after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -5px;
	transform: translateX(-50%);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #0d5d8f;
	z-index: 200;
	opacity: 0;
	transition: all 0.3s;
}
.head .pcNav > ul > li > a:hover:after {
	opacity: 1;
}
.head .utils {
	position: absolute;
	right: 0;
	top: 36px;
	z-index: 1002;
	display: flex;
	align-items: center;
	gap: 30px;
}

.siteHeader__lang {
	position: relative;
}
.siteHeader__langBtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 10px 10px 10px 14px;
	border: 1px solid #fff;
	border-radius: 100px;
	background: transparent;
	font-family: "Manrope", sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	line-height: 1;
	cursor: pointer;
	transition:
		background 0.25s ease,
		border-color 0.25s ease;
}
.siteHeader__langBtn:hover {
	background: rgba(255, 255, 255, 0.08);
}
.siteHeader__langTxt {
	font-family: "Wix Madefor Display";
}
.siteHeader__langChev {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: transform 0.25s ease;
}
.siteHeader__lang.is-open .siteHeader__langChev {
	transform: rotate(180deg);
}
.siteHeader__langList {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 100%;
	margin: 0;
	padding: 6px;
	list-style: none;
	border: 1px solid rgba(255, 255, 255, 0.38);
	border-radius: 12px;
	background: rgba(17, 17, 17, 0.92);
	box-sizing: border-box;
	z-index: 200;
}
.siteHeader__lang.is-open .siteHeader__langList {
	display: block;
}
.siteHeader__langList li {
	margin: 0;
	padding: 0;
}
.siteHeader__langOpt {
	display: block;
	padding: 8px 12px;
	border-radius: 8px;
	font-family: "Wix Madefor Display", sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	text-decoration: none !important;
	text-align: center;
	line-height: 1;
	transition: background 0.2s ease;
}
.siteHeader__langOpt.is-active {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.head .btnMenu {
	width: 36px;
	height: 16px;
	z-index: 1002;
	cursor: pointer;
}
.head .btnMenu > div {
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	transition: all 0.3s;
}
.head .btnMenu > div + div {
	margin-top: 5px;
}
.head .btnMenu > div:nth-child(2) {
	width: 24px;
	margin-left: 4px;
}
.head .btnMenu.open > div:nth-child(1) {
	transform: rotate(45deg);
	background: #000 !important;
	margin-top: 6px;
}
.head .btnMenu.open > div:nth-child(2) {
	opacity: 0;
}
.head .btnMenu.open > div:nth-child(3) {
	transform: rotate(-45deg);
	margin-top: -8px;
	background: #000 !important;
}

#header.on {
	background: #fff;
}
#header.on .head .pcNav > ul > li > a {
	color: #000;
}
#header.on .head .btnMenu > div {
	background: #000;
}
#header.on .siteHeader__langBtn {
	border: 1px solid rgba(17, 17, 17, 0.38);
	background: transparent;
	color: #000;
}
#header.on .siteHeader__langChev svg path {
	stroke: #000;
}
#header.on .siteHeader__langList {
	border-color: rgba(17, 17, 17, 0.12);
	background: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
#header.on .siteHeader__langOpt {
	color: #111;
}
#header.on .siteHeader__langOpt.is-active {
	background: rgba(17, 17, 17, 0.06);
}

#header.scroll {
	background: #fff;
}
#header.scroll .pcNav > ul > li > a {
	color: #000;
}
#header.scroll .btnMenu > div {
	background: #000;
}
#header.scroll .siteHeader__langBtn {
	border: 1px solid rgba(17, 17, 17, 0.38);
	background: transparent;
	color: #000;
}
#header.scroll .siteHeader__langChev svg path {
	stroke: #000;
}
#header.scroll .siteHeader__langList {
	border-color: rgba(17, 17, 17, 0.12);
	background: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
#header.scroll .siteHeader__langOpt {
	color: #111;
}
#header.scroll .siteHeader__langOpt.is-active {
	background: rgba(17, 17, 17, 0.06);
}

#header.open .siteHeader__langBtn {
	border: 1px solid rgba(17, 17, 17, 0.38);
	background: transparent;
	color: #000;
}
#header.open .siteHeader__langChev svg path {
	stroke: #000;
}
#header.open .siteHeader__langList {
	border-color: rgba(17, 17, 17, 0.12);
	background: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
#header.open .siteHeader__langOpt {
	color: #111;
}
#header.open .siteHeader__langOpt.is-active {
	background: rgba(17, 17, 17, 0.06);
}

@media (max-width: 1399px) {
	.head {
		height: 70px;
	}
	.head .pcNav {
		display: none;
	}
	.head h1 a {
		width: 48px;
		height: 42px;
	}
	.head .utils {
		top: 20px;
	}
}

/* subMenu */
.subMenu {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 100;
	width: 100%;
	height: 300px;
	box-sizing: border-box;
	/* overflow:hidden; */
	transform-origin: top;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(40px);
}
.subMenu .menuwrap {
	display: none;
	box-sizing: unset;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 92%;
	max-width: 1640px;
	height: 200px;
	padding: 50px 0;
}
.subMenu .menuwrap > div {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}
.subMenu .menuwrap > div .depthInfo {
	overflow: hidden;
	width: 308px;
	height: 200px;
}
.subMenu .menuwrap:nth-child(1) > div .depthInfo {
	background: url(/images/common/submenu_bg1.png) no-repeat;
	background-size: cover;
}
.subMenu .menuwrap:nth-child(2) > div .depthInfo {
	background: url(/images/common/submenu_bg1.png) no-repeat;
	background-size: cover;
}
.subMenu .menuwrap:nth-child(3) > div .depthInfo {
	background: url(/images/common/submenu_bg1.png) no-repeat;
	background-size: cover;
}
.subMenu .menuwrap:nth-child(4) > div .depthInfo {
	background: url(/images/common/submenu_bg1.png) no-repeat;
	background-size: cover;
}
.subMenu .menuwrap > div .depthInfo > a {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	box-sizing: border-box;
	text-align: center;
}
.subMenu .menuwrap > div .depthInfo > a .dep1 {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
}
.subMenu .menuwrap > div ul {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	column-gap: 2%;
	width: calc(100% - 308px);
	padding-left: 70px;
}
.subMenu .menuwrap > div ul li {
	width: 23%;
}
.subMenu .menuwrap > div ul li a {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 20px 12px;
	box-sizing: border-box;
	border-bottom: 1px solid #ccc;
	font-size: 18px;
	color: #666;
	font-weight: 500;
}
.subMenu .menuwrap > div ul li a span {
	display: inline-block;
	position: relative;
}
.subMenu .menuwrap > div ul li:hover a {
	color: #092d5c;
}
.subMenu .menuwrap > div ul li:hover a {
	border-bottom: 1px solid #092d5c;
}
.subMenu .menuwrap > div ul li a .arr {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background: url(/images/common/submenu_arr.png) no-repeat center / contain;
}

.allmenu {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1001;
	width: 100%;
	height: 100vh;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(40px);
	display: none;
	overflow: hidden;
}
.allmenu > div {
	display: flex;
	align-items: center;
	height: 100%;
}
.allmenu .inner {
	width: 92%;
	max-width: 1640px;
	margin: 0 auto;
	display: flex;
	align-items: flex-end;
}
.allmenu .inner .img1 {
	width: 20%;
	aspect-ratio: 323 / 226;
	border-radius: 10px;
	overflow: hidden;
}
.allmenu .inner .img1 > div {
	width: 100%;
	height: 100%;
	background: url(/images/common/allmenu_img1.jpg) no-repeat center / cover;
}
.allmenu .inner .img2 {
	width: 52%;
	aspect-ratio: 715 / 634;
}
.allmenu .inner .img2 > div {
	width: 120%;
	height: 100%;
	background: url(/images/common/allmenu_img2.jpg) no-repeat center / cover;
}

.allmenu .inner .allmenuwrap {
	width: 740px;
	padding: 0 90px;
	box-sizing: border-box;
	position: relative;
	position: relative;
	z-index: 1;
}
.allmenu .allmenuwrap > ul {
	position: relative;
	width: 330px;
	display: flex;
	flex-wrap: wrap;
}
.allmenu .allmenuwrap > ul > li {
	box-sizing: border-box;
	width: 100%;
}
.allmenu .allmenuwrap > ul > li + li {
	margin-top: 40px;
}
.allmenu .allmenuwrap > ul > li > a {
	font-size: 42px;
	font-weight: 700;
	color: #b2b2b2;
}
.allmenu .allmenuwrap > ul > li.on > a {
	color: #000;
}
.allmenu .allmenuwrap > ul > li > ul {
	position: absolute;
	left: 100%;
	top: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
}
.allmenu .allmenuwrap > ul > li.on > ul {
	opacity: 1;
	visibility: visible;
}
.allmenu .allmenuwrap > ul > li > ul > li {
}
.allmenu .allmenuwrap > ul > li > ul > li + li {
	margin-top: 20px;
}
.allmenu .allmenuwrap > ul > li > ul > li > a {
	font-family: "Wix Madefor Display";
	font-size: 20px;
	color: #5b5c5e;
	white-space: nowrap;
}
.allmenu .inner .allmenuwrap .info {
	margin-top: 110px;
}
.allmenu .inner .allmenuwrap .info dl {
}
.allmenu .inner .allmenuwrap .info dl + dl {
	margin-top: 25px;
}
.allmenu .inner .allmenuwrap .info dl dd {
	margin-top: 10px;
	font-family: "Wix Madefor Display";
	font-size: 17px;
	line-height: 1.5em;
	color: #5b5c5e;
}

@media (max-width: 1399px) {
	.allmenu .allmenuwrap > ul {
		width: 230px;
	}
	.allmenu .allmenuwrap > ul > li > a {
		font-size: 28px;
	}
}

@media (max-width: 812px) {
	.allmenu .inner .img1 {
		display: none;
	}
	.allmenu .inner .img2 {
		display: none;
	}
	.allmenu .inner .allmenuwrap {
		width: 100%;
		padding: 0;
	}
	.allmenu .allmenuwrap > ul {
		width: 140px;
	}
	.allmenu .allmenuwrap > ul > li + li {
		margin-top: 20px;
	}
	.allmenu .allmenuwrap > ul > li > a {
		font-size: 20px;
	}
	.allmenu .allmenuwrap > ul > li > ul > li + li {
		margin-top: 10px;
	}
	.allmenu .allmenuwrap > ul > li > ul > li > a {
		font-size: 16px;
	}
	.allmenu .inner .allmenuwrap .info {
		margin-top: 80px;
	}
	.allmenu .inner .allmenuwrap .info dl dd {
		font-size: 14px;
	}
}

#footer {
	background: #000;
}
.foot {
	padding: 80px 0;
	width: 92%;
	max-width: 1680px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.foot .left {
	display: flex;
}
.foot .left .link {
	position: relative;
	width: 205px;
	flex-shrink: 0;
}
.foot .left .link:after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background: rgba(255, 255, 255, 0.3);
}
.foot .left .link li {
}
.foot .left .link li + li {
	margin-top: 7px;
}
.foot .left .link li a {
	font-size: clamp(13px, 1.18vw, 17px);
	color: #fff;
}
.foot .left .info {
	/* margin-left: 40px; */
}
.foot .left .info li {
	font-size: clamp(13px, 1.18vw, 17px);
	color: #fff;
}
.foot .left .info li + li {
	margin-top: 7px;
}
.foot .left .info li span {
	padding-left: 13px;
	margin-left: 13px;
	position: relative;
}
.foot .left .info li span::before {
	content: "";
	width: 1px;
	height: 70%;
	background: rgba(255, 255, 255, 0.2);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.foot .right {
	display: flex;
}
.foot .right ul {
	display: flex;
}
.foot .right ul.icon {
	gap: 15px;
	margin-right: 15px;
}
.foot .right ul.imglink {
	gap: 10px;
}

@media (max-width: 1399px) {
	.foot {
		padding: 50px 0;
		flex-direction: column;
	}
	.foot .left {
		flex-direction: column;
		gap: 50px;
	}
	.foot .left .link {
		width: unset;
		border-left: 1px solid rgba(255, 255, 255, 0.3);
		padding-left: 20px;
	}
	.foot .left .link:after {
		display: none;
	}
	.foot .left .info {
		margin-left: 0;
	}
	.foot .right {
		margin-top: 30px;
		flex-direction: column;
		gap: 20px;
	}
}

/* layerPop */
#bgBlack {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 3000;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
}
.layerPop {
	display: none;
	position: fixed;
	left: 50%;
	top: 50%;
	z-index: 5000;
	width: 94%;
	max-width: 1400px;
	transform: translate(-50%, -50%);
	background: #fafafa;
	padding: 90px 0 40px;
	border-radius: 15px;
}
.layerPop .btnClose {
	position: absolute;
	right: 20px;
	top: 20px;
}
.layerPop .btnClose img {
	width: 40px;
}
