@charset "utf-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard-dynamic-subset.css");
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&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;
	-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: #555;
	font-family:"Instrument Sans","pretendard", "돋움", dotum, sans-serif;
	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: #7d7d7d;
	text-decoration: none;
	cursor: pointer;
}
a:hover {
	color: #333;
	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%;
}
.viewCon a {
	font-family: inherit;
	color: inherit;
	font-size: inherit;
}

/*test*/
.test1 {
	border: 1px solid red;
}
.test2 {
	background: #4f7beb;
}

.font1 {
	font-family: "Noto Sans KR";
}
.font2 {
	font-family: "Montserrat";
}

/* 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);
	}
}

@keyframes rotateBg {
	0% {
		transform: translate(-50%, -50%) scale(4) rotate(0);
	}
	100% {
		transform: translate(-50%, -50%) scale(4) rotate(360deg);
	}
}
/*=============== 로딩스피너 끝 ================*/

/*=============================== 사이트 CSS 시작 ===============================*/

#wrap {
	overflow: hidden;
}

#header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
height: 120px;
	z-index: 1000;
	transition: all 0.3s;
}
#header:after {
	display: none;
	content: "";
	width: 100%;
	height: 80px;
	background: #000;
	position: absolute;
	left: 0;
	top: 100%;
	transform-origin: top;
	transform: scaleY(0);
	transition: all 0.4s;
	z-index: -1;
}
#header.on:after {
	transform: scaleY(1);
}

.head {
	position: relative;
	z-index: 2;
}

.head h1 {
	position: absolute;
	left: 30px;
	top: 42.5px;
	z-index: 999;
}
.head h1 a {
	display: block;
	width: 90px;
	height: 35px;
	background: url(/images/common/logo1.png) no-repeat center / contain;
	transition: all 0.3s;
}
.head .pcNav {
	transform: translateY(-100%);
	transition: transform 0.3s;
}
.head .pcNav.is-visible {
	transform: translateY(0);
}
.head .pcNav > ul {
	display: flex;
	justify-content: center;
}
.head .pcNav > ul > li {
	margin: 0 min(2.59vw, 110px);
}
.head .pcNav > ul > li > a {
	position: relative;
	font-family: "Instrument Sans";
	font-size: 16px;
	color: #fff;
	line-height: 120px;
	transition: color 0.3s;
}
.head .pcNav > ul > li > .sub {
	display: none;
	position: absolute;
	left: 50%;
	top: 100%;
	width: 100%;
	height: 80px;
	transform: translateX(-50%);
}
.head .pcNav > ul > li > .sub > ul {
	display: flex;
	justify-content: center;
	height: 80px;
}
.head .pcNav > ul > li > .sub > ul > li {
	position: relative;
	padding: 0 80px;
	display: flex;
	align-items: center;
}
.head .pcNav > ul > li > .sub > ul > li + li:after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 10px;
	background: rgba(255, 255, 255, 0.5);
}
.head .pcNav > ul > li > .sub > ul > li > a {
	display: block;
	font-family: "Manrope";
	font-weight: 600;
	font-size: 18px;
	color: #fff;
	transition: all 0.3s;
}
.head .btnMenu {
	position: absolute;
	right: 30px;
	top: 55px;
	z-index:3000;
	display: flex;
	align-items: center;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}
.head .btnMenu .icon {
	position: relative;
	display: block;
	width: 90px;
	height: 10px;
	transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1), height 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.head .btnMenu .icon > span {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, #989aa3, #45454b, #989aa3);
	background-size: 200% 100%;
	background-position: 0% 0%;
	transform-origin: center center;
	transition:
		transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
		width 0.55s cubic-bezier(0.22, 1, 0.36, 1),
		height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		background 0.35s ease;
}
.head .btnMenu .icon > span:nth-child(1) {
	transform: translate3d(0, 0, 0);
}
.head .btnMenu .icon > span:nth-child(2) {
	transform: translate3d(0, 9px, 0);
}
.head .btnMenu:hover:not(.open) .icon > span {
	animation: btnMenuGradientMove 0.4s linear;
}
.head .btnMenu:hover:not(.open) .icon > span:nth-child(2) {
	animation-delay: 0.2s;
}
.head .btnMenu.open .icon {
	width: 29px;
	height: 22px;
}
.head .btnMenu.open .icon > span {
	height: 2px;
	background: #fff;
	animation: none;
}
.head .btnMenu.open .icon > span:nth-child(1) {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}
.head .btnMenu.open .icon > span:nth-child(2) {
	transform: translate3d(0, 10px, 0) rotate(-45deg);
}
.head .btnMenu.open:hover .icon > span {
	animation: none;
}
@keyframes btnMenuGradientMove {
	0% { background-position: 0% 0%; }
	100% { background-position: -200% 0%; }
}




/*#header.wh{background:#fff;}*/
.wh .head h1 a {
    background: url(/images/common/logo2.png) no-repeat center / contain;
}
.wh .head .pcNav > ul > li > a{color:#000;}





.allmenu {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1;
	display: none;
	width: 100%;
	height: 100vh;
}
.allmenu.open {
	display: block;
	pointer-events: auto;
}
.allmenu__curtain {
	position: absolute;
	inset: 0;
	background: #151519;
	opacity: 0;
}
.allmenu__panel {
	position: relative;
	z-index: 1;
	height: 100%;
	overflow: hidden;
	background: #151519;
	will-change: clip-path, transform;
	clip-path: inset(0 0 100% 0);
	-webkit-clip-path: inset(0 0 100% 0);
	transform: translateY(-2%);
}
.allmenu .inner {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 0 80px;
	box-sizing: border-box;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.allmenu .inner .allmenuwrap {
	width: 100%;
}
.allmenu .inner .allmenuwrap > ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.allmenu .inner .allmenuwrap > ul > li {
	position: relative;
	border-bottom: 1px solid #515258;
}
.allmenu .inner .allmenuwrap > ul > li:last-child {
	border-bottom: none;
}
.allmenu .inner .allmenuwrap > ul > li > a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 0;
	text-decoration: none;
}
.allmenu__text {
	display: inline-block;
	font-family: "Instrument Sans", "pretendard", sans-serif;
	font-size: 70px;
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -2.8px;
	color: #c1c2ca;
	transition: color 0.35s ease;
	will-change: transform, opacity;
}
.allmenu .inner .allmenuwrap > ul > li > a:hover .allmenu__text,
.allmenu .inner .allmenuwrap > ul > li > a:focus-visible .allmenu__text {
	color: #fff;
}

body.is-allmenu-open {
	overflow: hidden;
}
body.is-allmenu-open #header {
	z-index: 1002;
}
body.is-allmenu-open .head {
	z-index: 3;
}
body.is-allmenu-open .head .btnMenu {
	position: absolute;
	z-index: 2;
}
body.is-allmenu-open .head h1 a.open {
	filter: brightness(1.05);
}
body.is-allmenu-open .head .pcNav {
	visibility: hidden;
	pointer-events: none;
}
body.is-allmenu-open #floating {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

@media (max-width: 1399px) {
	.head .pcNav {
		display: none;
	}
	.head .utils .company {
		display: none;
	}
	#header {
		height: 80px;
	}
	.head h1 {
		left: 24px;
		top: 20px;
	}
	.head h1 a {
		width: 70px;
		height: 40px;
	}
	.head .utils {
		top: 21px;
		gap: 0;
	}
	.head .btnMenu {
		right: 24px;
		top: 25px;
	}
	.head .btnMenu .icon {
		width: 72px;
	}
	.allmenu .inner {
		padding: 0 48px;
	}
	.allmenu .inner .allmenuwrap > ul > li > a {
		padding: 28px 0;
	}
	.allmenu__text {
		font-size: 56px;
		letter-spacing: -2.24px;
	}
	.head .btnMenu.open .icon {
		width: 26px;
		height: 20px;
	}
	.head .btnMenu.open .icon > span:nth-child(1) {
		transform: translate3d(0, 9px, 0) rotate(45deg);
	}
	.head .btnMenu.open .icon > span:nth-child(2) {
		transform: translate3d(0, 9px, 0) rotate(-45deg);
	}
}

@media (max-width: 812px) {
	#header {
		height: 80px;
	}
	.head h1 {
		left: 15px;
		top: 20px;
	}
	.head h1 a {
		width: 70px;
		height: 40px;
	}
	.head .utils {
		right: 15px;
		top: 20px;
	}
	.head .btnMenu {
		right: 15px;
		top: 25px;
	}
	.head .btnMenu .icon {
		width: 60px;
	}
	.head .btnMenu.open .icon {
		width: 22px;
		height: 18px;
	}
	.head .btnMenu.open .icon > span:nth-child(1) {
		transform: translate3d(0, 8px, 0) rotate(45deg);
	}
	.head .btnMenu.open .icon > span:nth-child(2) {
		transform: translate3d(0, 8px, 0) rotate(-45deg);
	}
	.allmenu .inner {
		padding: 0 20px;
	}
	.allmenu .inner .allmenuwrap > ul > li > a {
		padding: 20px 0;
	}
	.allmenu__text {
		font-size: clamp(40px, 11vw, 48px);
		letter-spacing: -0.04em;
	}
}





