@charset "utf-8";

/* header — 모바일 */
#header {
	backdrop-filter: blur(12px);
}

.siteHeader-inner {
	height: 56px;
	padding: 0 20px;
}

.siteLogo a {
	width: 120px;
}

.siteGnb {
	display: none;
}

.siteGnb ul {
	gap: 24px;
}

.siteGnb a {
	font-size: 14px;
}

.btnAllmenu {
	width: 40px;
	height: 22px;
	gap: 5px;
}

.btnAllmenu span {
	width: 22px;
}

/* footer — 모바일 */
.siteFooter {
	padding: 32px 20px 40px;
}

.siteFooter-top {
	align-items: flex-start;
	gap: 20px;
}

.siteFooter-logo {
	width: 120px;
}

.btnTop {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
}

.btnTop img {
	width: 12px;
	height: 13px;
}

.siteFooter-line {
	margin: 20px 0;
}

.siteFooter-info {
	flex-direction: column;
	align-items: flex-start;
	gap: 28px;
}

.siteFooter-info .infoWrap {
	flex-direction: column;
	gap: 18px;
	width: 100%;
}

.siteFooter-info .infoWrap .info dl {
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
}

.siteFooter-info .infoWrap .info dl dt {
	width: auto;
	font-size: 14px;
}

.siteFooter-info .infoWrap .info:last-child dl dt {
	width: auto;
}

.siteFooter-info .infoWrap .info dl dt::after {
	display: none;
}

.siteFooter-info .infoWrap .info dl dd {
	margin-left: 0;
	font-size: 14px;
	line-height: 1.55;
	word-break: keep-all;
}

.siteFooter-copy {
	width: 100%;
	text-align: left;
}

.siteFooter-copy p {
	font-size: 13px;
	line-height: 1.5;
}





/* ========== 올메뉴 — 모바일 아코디언 ========== */
.allMenu {
	background: #f1f1f1;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.allMenu-close {
	position: fixed;
	top: 18px;
	right: 15px;
	width: 22px;
	height: 22px;
}

.allMenu-close span {
	width: 22px;
}

.allMenu-inner {
	display: block;
	width: 100%;
	height: auto;
	min-height: 100%;
	padding: 80px 0 40px;
	box-sizing: border-box;
}

.allMenu-col {
	display: block;
	height: auto;
	padding: 26px 15px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	background: transparent;
	transition: none;
}

.allMenu-col:first-child {
	border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.allMenu-col:hover {
	background: transparent;
}

.allMenu-dep1 {
	pointer-events: auto;
	cursor: pointer;
}

.allMenu-dep1-txt {
	font-size: 34px;
	line-height: 1.1;
}

.allMenu-chevron {
	display: block;
	position: relative;
	flex-shrink: 0;
	width: 14px;
	height: 14px;
}

.allMenu-chevron::before {
	content: "";
	position: absolute;
	top: 3px;
	left: 2px;
	width: 8px;
	height: 8px;
	border-right: 1.5px solid #bbb;
	border-bottom: 1.5px solid #bbb;
	transform: rotate(45deg);
	transition: transform 0.35s ease, border-color 0.35s ease;
}

.allMenu-col.is-open .allMenu-chevron::before {
	top: 7px;
	border-color: #1a3556;
	transform: rotate(-135deg);
}

.allMenu-slogan {
	display: none;
	order: 0;
	margin: 20px 0 0;
	font-size: 14px;
	line-height: 1;
	white-space: normal;
}

.allMenu-slogan br {
	display: none;
}

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

.allMenu-dep2 {
	display: none;
	order: 0;
	margin: 20px 0 0;
}

.allMenu-col.is-open .allMenu-slogan,
.allMenu-col.is-open .allMenu-dep2 {
	display: block;
}

.allMenu-dep2 > li + li {
	margin-top: 10px;
}

.allMenu-dep2 > li > a {
	padding: 0;
	border: 0 !important;
}

.allMenu-dep2 > li:first-child > a {
	border: 0 !important;
}

.allMenu-col:hover .allMenu-dep2 > li:first-child > a {
	border-color: transparent;
}

.allMenu-dep2 .txt {
	font-size: 20px;
	line-height: 20px;
}