@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700&display=swap');

@font-face {
	font-family: 'GmarketSansBold';
	src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Noto Sans KR', sans-serif;
	color: #333;
	line-height: 1.4;
	background-color: #fff;
}

.sub-container {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
}

.blind {
	position: absolute;
	width: 1px;
	height: 1px;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
}

a {
	text-decoration: none;
}

/* ================================================================
	탑배너 (ch_topBanner)
================================================================ */
.ch_topBanner {
	background: #1a2a3a;
	color: #fff;
	font-size: 13px;
	overflow: hidden;
	height: 40px;
	transition: height 0.3s ease;
}

.ch_topBanner.is-closed {
	height: 0;
}

.ch_topBanner .areaFix {
	max-width: 1100px;
	display: flex;
	align-items: center;
	height: 40px;
	padding: 0 20px;
}

.ch_topBanner .openbtn {
	display: none;
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
	padding: 0 6px 0 0;
	align-items: center;
}

.ch_topBanner.is-closed .openbtn {
	display: flex;
}

.ch_topBanner .leftArea {
	flex: 1;
	overflow: hidden;
}

.leftTxt {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.8);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ch_topBanner .rightArea {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-shrink: 0;
	margin-left: 16px;
}

.bannerSlider {
	height: 40px;
	overflow: hidden;
	min-width: 280px;
}

.bannerTrack {
	display: flex;
	flex-direction: column;
	transition: transform 0.4s ease;
}

.textSlide {
	height: 40px;
	line-height: 40px;
	white-space: nowrap;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.85);
}

.textSlide .line {
	margin: 0 4px;
	color: rgba(255, 255, 255, 0.4);
}

.ch_topBanner .prevbtn,
.ch_topBanner .nextbtn,
.ch_topBanner .closebtn {
	background: none;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	width: 22px;
	height: 22px;
	border-radius: 3px;
	cursor: pointer;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.ch_topBanner .prevbtn::before {
	content: '‹';
}

.ch_topBanner .nextbtn::before {
	content: '›';
}

.ch_topBanner .closebtn::before {
	content: '✕';
	font-size: 11px;
}


/* ================================================================
	헤더/네비 (ch_topArea / #mainNav)
================================================================ */
.ch_topArea {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid #e0e0e0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.ch_topArea .areaFix {
	max-width: 1100px;
	display: flex;
	align-items: center;
	height: 70px;
	padding: 0 20px;
	gap: 0;
}

.toplogo {
	display: block;
	width: 160px;
	height: 44px;
	background-image: url('../images/common/logo.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left center;
	flex-shrink: 0;
}

.menuArea {
	flex: 1;
	display: flex;
	align-items: center;
	height: 100%;
}

.menuArea>ul {
	display: flex;
	list-style: none;
	height: 100%;
}

.menuArea>ul>li {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
}

.menuArea>ul>li>a {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 16px;
	font-size: 14px;
	font-weight: 600;
	color: #222;
	white-space: nowrap;
	transition: color 0.2s;
}

.menuArea>ul>li>a:hover,
.menuArea>ul>li:hover>a {
	color: #1e996f;
}

/* 드롭다운 서브메뉴 */
.subMenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border: 1px solid #ddd;
	border-top: 2px solid #1e996f;
	min-width: 160px;
	list-style: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	z-index: 200;
}

.menuArea>ul>li:hover .subMenu {
	display: block;
}

.subMenu li a {
	display: block;
	padding: 10px 16px;
	font-size: 13px;
	color: #444;
	white-space: nowrap;
	transition: background 0.15s;
}

.subMenu li a:hover {
	background: #f0faf6;
	color: #1e996f;
}

/* SNS 아이콘 */
.naverblog,
.kakao,
.facebook,
.insta {
	display: block;
	width: 26px;
	height: 26px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
	margin-left: 6px;
	background-color: #f0f0f0;
	border-radius: 4px;
}

/* 로그인 버튼 */
.skin-ch {
	display: block;
	margin-left: 10px;
	padding: 6px 14px;
	background: #1e996f;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	border-radius: 4px;
	flex-shrink: 0;
	white-space: nowrap;
	transition: background 0.2s;
}

.skin-ch:hover {
	background: #187d58;
}

/* 사이트맵 버튼 */
.sitemap {
	background: none;
	border: 1px solid #ddd;
	font-size: 12px;
	cursor: pointer;
	margin-left: 8px;
	padding: 6px 10px;
	border-radius: 4px;
	color: #555;
	flex-shrink: 0;
}

/* 전체메뉴 오버레이 */
.allMenu {
	position: fixed;
	inset: 0;
	background: rgba(10, 20, 30, 0.92);
	z-index: 300;
	padding: 40px 20px 30px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.allMenu[hidden] {
	display: none;
}

.allMenu>div {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
	max-width: 1100px;
	width: 100%;
}

.allMenu>div>div h2 {
	font-size: 15px;
	font-weight: 700;
	color: #47dfa0;
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.allMenu>div>div h2 a {
	color: inherit;
}

.allMenu>div>div>div a {
	display: block;
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	padding: 5px 0;
	transition: color 0.15s;
}

.allMenu>div>div>div a:hover {
	color: #fff;
}

.allMenuClose {
	margin-top: 30px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #fff;
	padding: 10px 24px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 4px;
	transition: background 0.2s;
}

.allMenuClose:hover {
	background: rgba(255, 255, 255, 0.2);
}


/* ================================================================
	퀵배너 (ch_quickArea / #quickMenu)
================================================================ */
.ch_quickArea {
	position: fixed;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 90;
}

.quickTop {
	display: flex;
}

.quickLeft {
	background: #1e996f;
	color: #fff;
	padding: 14px 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	min-width: 36px;
}

.quickLeft .year {
	font-size: 11px;
	font-weight: 700;
	writing-mode: vertical-rl;
	letter-spacing: 1px;
}

.quickLeft .text01 {
	font-size: 11px;
	font-weight: 600;
	writing-mode: vertical-rl;
	line-height: 1.4;
}

.openBtn {
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	padding: 2px 0;
	line-height: 1;
}

.openBtn::before {
	content: '▶';
	font-size: 10px;
}

.closeBtn {
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
	font-size: 14px;
	padding: 2px 0;
	display: none;
}

.closeBtn::before {
	content: '◀';
	font-size: 10px;
}

.ch_quickArea.is-open .openBtn {
	display: none;
}

.ch_quickArea.is-open .closeBtn {
	display: block;
}

.quickRight {
	display: none;
	flex-direction: column;
	background: #fff;
	border: 1px solid #ddd;
	border-left: none;
	padding: 10px;
	gap: 4px;
	min-width: 160px;
	box-shadow: 3px 2px 8px rgba(0, 0, 0, 0.12);
}

.ch_quickArea.is-open .quickRight {
	display: flex;
}

.quickRight .typei {
	display: block;
	font-size: 12px;
	color: #333;
	padding: 5px 8px;
	border-radius: 3px;
	transition: background 0.15s;
}

.quickRight .typei:hover {
	background: #f0faf6;
	color: #1e996f;
}

.quickRight .apply {
	display: block;
	margin-top: 4px;
	background: #1e996f;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 8px;
	border-radius: 4px;
	text-align: center;
}

.quickRight .apply:hover {
	background: #187d58;
}

.quickBottom {
	background: #1a2a3a;
	color: #fff;
	padding: 12px 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tel1 {
	font-size: 12px;
	font-weight: 700;
	color: #47dfa0;
	writing-mode: vertical-rl;
	letter-spacing: 1px;
}

.tel2 {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.65);
	text-align: center;
	line-height: 1.5;
	writing-mode: vertical-rl;
}

.quickBottom .btn1,
.quickBottom .btn2 {
	display: block;
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.85);
	font-size: 10px;
	padding: 4px 2px;
	border-radius: 3px;
	text-align: center;
	width: 100%;
	writing-mode: vertical-rl;
}

.quickBottom .service {
	font-size: 9px;
	color: rgba(255, 255, 255, 0.5);
	writing-mode: vertical-rl;
	margin-top: 2px;
}

.quickBottom .btn3,
.quickBottom .btn4,
.quickBottom .btn5 {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1e996f;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	width: 24px;
	height: 24px;
	border-radius: 50%;
}


/* ================================================================
	미디어 쿼리: 태블릿 (max-width: 1400px)
================================================================ */
@media (max-width: 1400px) {
	.ch_topArea .areaFix {
		padding: 0 16px;
	}

	.menuArea>ul>li>a {
		padding: 0 12px;
		font-size: 13px;
	}
}


/* ================================================================
	미디어 쿼리: 모바일 (max-width: 600px)
================================================================ */
@media (max-width: 600px) {
	.ch_topBanner .leftArea {
		display: none;
	}

	.bannerSlider {
		min-width: 180px;
	}

	.ch_topArea .areaFix {
		padding: 0 12px;
		height: 60px;
	}

	.toplogo {
		width: 120px;
		height: 36px;
	}

	.menuArea>ul {
		display: none;
	}

	.sitemap {
		display: block;
	}

	.naverblog,
	.kakao,
	.facebook,
	.insta {
		display: none;
	}

	.ch_quickArea {
		display: none;
	}
}