@charset "utf-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+KR:300,400,500,700&display=swap&subset=korean");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard-dynamic-subset.css");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/*Common*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html,
body {
	width: 100%;
	height: 100%;
}
html {
	overflow-y: scroll;
	/* 가로 스크롤 차단 — clip은 scroll container를 만들지 않아 sticky 유지 */
	overflow-x: clip;
}
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: #171717;
	font-family: "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: #171717;
	text-decoration: none;
	cursor: pointer;
}
a:hover {
	color: #171717;
	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 · header · footer — 공통 레이아웃 */
#wrap {
	position: relative;
	width: 100%;
	min-height: 100%;
}

#header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	width: 100%;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px);
	transition:
		background 0.3s,
		box-shadow 0.3s,
		backdrop-filter 0.3s;
}

.page-main #header {
	background: transparent;
	backdrop-filter: none;
	box-shadow: none;
}

.page-main #header.is-scroll {
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(20px);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

#footer {
	position: relative;
	z-index: 10;
}

/* header — GNB·로고·햄버거 (메인 visual 오버레이·서브 공통) */
.siteHeader {
	width: 100%;
}

.siteHeader-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1920px;
	height: 70px;
	margin: 0 auto;
	padding: 0 clamp(20px, 5.208vw, 100px);
}

.siteLogo a {
	display: block;
	width: 180px;
	aspect-ratio: 180/38;
	background: url(/images/common/logo_color.svg) no-repeat center / contain;
	text-indent: -99999px;
}

.page-main .siteHeader-main:not(.is-scroll) .siteLogo a {
	background-image: url(/images/common/logo_white.svg);
}

.siteLogo img {
	display: block;
	width: 100%;
	height: auto;
}

.siteLogo .logo-dark {
	display: none;
}

.siteGnb > ul {
	display: flex;
	align-items: center;
	gap: clamp(30px, 5.729vw, 110px);
}

.siteGnb-item {
	position: relative;
	display: flex;
	align-items: center;
	height: 70px;
}

.siteGnb-dep1 {
	color: #fff;
	font-family: "Manrope", "Poppins", sans-serif;
	font-size: 17px;
	font-weight: 600;
	line-height: 20px;
	text-transform: uppercase;
	letter-spacing: 0;
	transition: opacity 0.3s;
}

.siteGnb-dep1:hover {
	color: #fff;
	opacity: 0.7;
}

/* GNB 드롭메뉴 — 올메뉴 dep2 토대 */
.siteGnb-drop {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 20;
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding: 40px 80px;
	background: #f3f3f3;
	box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate(-50%, 12px);
	transition:
		opacity 0.35s ease,
		visibility 0.35s ease,
		transform 0.4s ease;
}

.siteGnb-item:hover .siteGnb-drop,
.siteGnb-item.is-open .siteGnb-drop {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.siteGnb-slogan {
	margin: 0;
	color: #37a7ca;
	font-family: "Manrope", sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
	white-space: nowrap;
}

.siteGnb-slogan .em {
	color: #1a3556;
}

.siteGnb-slogan.allMenu-slogan--solid {
	color: #1a3556;
}

.siteGnb-slogan.allMenu-slogan--invert {
	color: #1a3556;
}

.siteGnb-slogan.allMenu-slogan--invert .rest {
	color: #37a7ca;
}

.siteGnb-dep2 {
	width: 100%;
}

.siteGnb-dep2 > li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	box-sizing: border-box;
	transition: border-color 0.3s ease;
}

.siteGnb-dep2 > li:first-child > a {
	border-top: 1px solid #1a3556;
	border-bottom-color: #1a3556;
}

.siteGnb-dep2 > li > a:hover {
	border-bottom-color: #1a3556;
}

.siteGnb-dep2 > li:first-child > a:hover {
	border-top-color: #1a3556;
	border-bottom-color: #1a3556;
}

.siteGnb-dep2 .txt {
	color: #888;
	font-family: "Manrope", sans-serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 20px;
	transition: color 0.3s ease;
}

.siteGnb-dep2 .txt .em {
	color: #1a3556;
}

.siteGnb-dep2 > li > a:hover .txt {
	color: #1a3556;
}

.siteGnb-arrow {
	display: block;
	flex-shrink: 0;
	width: 10px;
	height: 10px;
}

.btnAllmenu {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	gap: 8px;
	width: 50px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
}

.btnAllmenu span {
	display: block;
	width: 28px;
	height: 2px;
	background: #fff;
	transition: background 0.3s;
}

/* 서브 페이지 header — bl(검정 텍스트·햄버거) */
#header.bl .siteGnb-dep1 {
	color: #111;
}

#header.bl .siteGnb-dep1:hover {
	color: #111;
	opacity: 0.7;
}

#header.bl .btnAllmenu span {
	background: #000;
}

/* 서브 페이지 header — 밝은 배경용 */
.page-sub .siteHeader-inner,
.siteHeader:not(.siteHeader-main) .siteHeader-inner {
	background: #fff;
}

.page-sub .siteGnb-dep1,
.siteHeader:not(.siteHeader-main) .siteGnb-dep1 {
	color: #111;
}

.page-sub .siteGnb-dep1:hover,
.siteHeader:not(.siteHeader-main) .siteGnb-dep1:hover {
	color: #111;
	opacity: 0.7;
}

.page-sub .btnAllmenu span,
.siteHeader:not(.siteHeader-main) .btnAllmenu span {
	background: #1e1e1e;
}

.page-sub .siteLogo .logo-white,
.siteHeader:not(.siteHeader-main) .siteLogo .logo-white {
	display: none;
}

.page-sub .siteLogo .logo-dark,
.siteHeader:not(.siteHeader-main) .siteLogo .logo-dark {
	display: block;
}

/* 메인 scroll 시 header 전환 */
.page-main .siteHeader.is-scroll .siteGnb-dep1 {
	color: #111;
}

.page-main .siteHeader.is-scroll .siteGnb-dep1:hover {
	color: #111;
	opacity: 0.7;
}

.page-main .siteHeader.is-scroll .btnAllmenu span {
	background: #1e1e1e;
}

.page-main .siteHeader.is-scroll .siteLogo .logo-white {
	display: none;
}

.page-main .siteHeader.is-scroll .siteLogo .logo-dark {
	display: block;
}

/* ========== 올메뉴 — PC 5열 ========== */
.allMenu {
	position: fixed;left:0;top:0;z-index: 1100;
	width:100%;height:100vh;
	display: flex;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	background: #fff;
}

.allMenu.is-open {
	pointer-events: auto;
}

body.is-allmenu {
	overflow: hidden;
}

.allMenu-close {
	position: absolute;
	top: 50px;
	right: 50px;
	z-index: 2;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.allMenu-close span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 28px;
	height: 2px;
	background: #000;
}

.allMenu-close span:first-child {
	transform: translate(-50%, -50%) rotate(45deg);
}

.allMenu-close span:last-child {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.allMenu-inner {
	display: flex;
	width: 100%;
	height: 100%;
}

.allMenu-col {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
	height: 100%;
	padding: 100px 50px;
	box-sizing: border-box;
	background: #fff;
	transition: background 0.35s ease;
}

.allMenu-col:hover {
	background: #f3f3f3;
}

.allMenu-dep1 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: default;
	pointer-events: none;
}

.allMenu-dep1-txt {
	color: #1a3556;
	font-family: "Manrope", sans-serif;
	font-size: 50px;
	font-weight: 600;
	line-height: 60px;
	letter-spacing: 0;
}

.allMenu-chevron {
	display: none;
}

.allMenu-slogan {
	order: 3;
	margin: auto 0 0;
	color: #37a7ca;
	font-family: "Manrope", sans-serif;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0;
}

.allMenu-slogan .em {
	color: #1a3556;
}

.allMenu-slogan--solid {
	color: #1a3556;
}

.allMenu-slogan--invert {
	color: #1a3556;
}

.allMenu-slogan--invert .rest {
	color: #37a7ca;
}

.allMenu-dep2 {
	order: 2;
	width: 100%;
	margin: 30px 0 0;
}

.allMenu-dep2 > li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	box-sizing: border-box;
	transition: border-color 0.3s ease;
}

.allMenu-dep2 > li:first-child > a {
	border-top: 1px solid rgba(0, 0, 0, 0.3);
}

.allMenu-col:hover .allMenu-dep2 > li:first-child > a {
	border-top-color: #1a3556;
	border-bottom-color: #1a3556;
}

.allMenu-dep2 .txt {
	color: #888;
	font-family: "Manrope", sans-serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 20px;
}

.allMenu-dep2 .txt .em {
	color: #1a3556;
}

.allMenu-arrow {
	display: block;
	flex-shrink: 0;
	width: 10px;
	height: 10px;
}

.allMenu-dep2 > li > a:hover .txt {
	color: #1a3556;
}

.allMenu-dep2 > li > a:hover .txt .em {
	color: #1a3556;
}

/* footer — 회사 정보·TOP */
.siteFooter {
	padding: 50px clamp(20px, 3.646vw, 70px) 60px;
	background: #000;
}

.siteFooter-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.siteFooter-logo {
	width: 180px;
	aspect-ratio: 180/38;
}

.siteFooter-logo img {
	display: block;
	width: 100%;
	height: 100%;
}

.btnTop {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: transparent;
	transition: border-color 0.3s;
}

.btnTop:hover {
	border-color: rgba(255, 255, 255, 0.6);
}

.btnTop img {
	width: 14px;
	height: 15.5px;
}

.siteFooter-line {
	height: 1px;
	margin: 30px 0;
	background: rgba(255, 255, 255, 0.3);
}

.siteFooter-info {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.siteFooter-info .infoWrap {
	display: flex;
	gap: 80px;
}
.siteFooter-info .infoWrap .info {
}
.siteFooter-info .infoWrap .info dl {
	display: flex;
}
.siteFooter-info .infoWrap .info dl dt {
	position: relative;
	width: 130px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5em;
	color: #fff;
}
.siteFooter-info .infoWrap .info:last-child dl dt {
	width: 90px;
}
.siteFooter-info .infoWrap .info dl dt::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background: rgba(255, 255, 255, 0.3);
}
.siteFooter-info .infoWrap .info dl dd {
	font-size: 18px;
	line-height: 1.5em;
	color: rgba(255, 255, 255, 0.8);
	margin-left: 20px;
}

.siteFooter-copy {
	flex-shrink: 0;
	text-align: right;
}

.siteFooter-copy p {
	font-family: pretendard;
	color: rgba(255, 255, 255, 0.7);
	font-size: 18px;
	font-weight: 300;
	line-height: 1.5;
}
