@charset "utf-8";

/* header — 태블릿 */
.siteHeader-inner {
	height: 60px;
	padding: 0 40px;
}

.siteLogo a {
	width: 150px;
}

.siteGnb ul {
	gap: 40px;
}

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

.btnAllmenu {
	width: 44px;
	height: 24px;
	gap: 6px;
}

.btnAllmenu span {
	width: 24px;
}

/* footer — 태블릿 */
.siteFooter {
	padding: 40px;
}

.siteFooter-logo {
	width: 150px;
}

.btnTop {
	width: 56px;
	height: 56px;
}

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

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

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

.siteFooter-info .infoWrap .info dl dt {
	width: 110px;
	font-size: 16px;
}

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

.siteFooter-info .infoWrap .info dl dd {
	font-size: 16px;
	margin-left: 16px;
}

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

.siteFooter-copy p {
	font-size: 15px;
}






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

.allMenu-close {
	position: fixed;
	top: 24px;
	right: 24px;
}

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

.allMenu-col {
	display: block;
	height: auto;
	padding: 26px 40px;
	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;
}