html, body {
	font-family: "Pretendard", sans-serif;
	background: #e5e5e5;
	color: #111;
}

input, textarea, select {
	font-family: "Pretendard", sans-serif;
	color: #111;
}

.fs-7 { font-size: 14px; }
.fs-8 { font-size: 12px; }
.fs-9 { font-size: 11px; }
.fs-10 { font-size: 10px; }
.fs-11 { font-size: 9px; }
.fs-12 { font-size: 8px; }
.fs-13 { font-size: 7px; }
.fs-14 { font-size: 6px; }

.wrap {
	position: relative;
	margin: 0 auto;
	max-width: 460px;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	background: #fff;
	z-index: 1;
}

.tnb {
	display: none;
}

@keyframes slideToLeft {
	from {
		transform: translateX(250px);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideToRight {
	from {
		transform: translateX(-250px);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

.lsb,
.rsb {
	position: fixed;
	top: 0;
	width: 250px;
	height: 100%;
	background: #fff;
	opacity: 0;
}

/* 좌측 사이드바: 중앙에서 왼쪽으로 슬라이드 */
.lsb {
	left: calc(50% - 460px / 2 - 250px);
	animation: slideToLeft 1s ease-out forwards;
}

/* 우측 사이드바: 중앙에서 오른쪽으로 슬라이드 */
.rsb {
	left: calc(50% + 460px / 2);
	animation: slideToRight 1s ease-out forwards;
}

/* 세로 구분선 */
.separation {
	position: relative;
	padding-left: 10px;
	margin-left: 10px;
}
.separation::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 10px;
	background-color: #e5e5ec;
}

/* 메뉴 아이콘 */
.toggle-content {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(-5px);
	transition: all 0.3s ease;
}
.toggle-content.open {
	max-height: 300px;
	opacity: 1;
	transform: translateY(0);
}
.toggle-icon {
	transition: transform 0.3s ease;
}
.toggle-icon.rotated {
	transform: rotate(180deg);
}

/* swup 페이지 전환 */
.transition-main {
	transition-property: opacity, transform;
	transition-duration: 250ms;
	transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	transform: translateX(0);
	opacity: 1;
}
html.is-animating .transition-main {
	opacity: 0;
	transform: translateX(1em);
}
html.is-leaving .transition-main {
	transform: translateX(-1em);
}
html.is-animating.to-left .transition-main {
	opacity: 0;
	transform: translateX(-1em);
}
html.is-leaving.to-left .transition-main {
	transform: translateX(1em);
}

.scroll-menu::-webkit-scrollbar {
	display: none;
}
.scroll-menu {
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.hidden-scroll-menu {
	transform: translateY(100%);
	opacity: 0;
	pointer-events: none;
}

#nav-icon3 {
	width: 22px;
	height: 22px;
	position: relative;
	margin: 0 auto;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}
#nav-icon3 span {
	display: block;
	position: absolute;
	height: 4px;
	width: 100%;
	background: #3f69b3;
	border-radius: 6px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}
#nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
	top: 8px;
}
#nav-icon3 span:nth-child(4) {
	top: 16px;
}
#nav-icon3.open span:nth-child(1) {
	top: 0px;
	width: 0%;
	left: 50%;
}
#nav-icon3.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
#nav-icon3.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#nav-icon3.open span:nth-child(4) {
	top: 0px;
	width: 0%;
	left: 50%;
}

.slick-dots { margin-left: 8px; margin-bottom: -8px;}
.slick-dots li {
	margin: 0 -2px;
	padding: 0;
}
.slick-dots li button:before {
	content: '';
	font-size: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	display: block;
	background-color: #bbb;
}
.slick-dots li.slick-active button:before {
	background-color: #3f69b3;
}

.marquee-wrap {
	position: relative;
	overflow: hidden;
	white-space: nowrap;
}
.marquee-text {
	display: inline-block;
	white-space: nowrap;
	transform: translateX(0);
	transition: transform 0.3s ease;
}

.pagination .active { background:#3f69b3; color:#fff; }

@media (max-width: 850px) {
	.wrap {
		max-width: 460px;
	}
	.lsb, .rsb {
		display: none;
	}
	.tnb {
		position: relative;
		display: block;
	}
}

@media (max-width: 700px) {
	.wrap {
		max-width: 460px;
	}
	.lsb, .rsb {
		display: none;
	}
	.tnb {
		position: relative;
		display: block;
	}
}

@media (max-width: 460px) {
	.wrap {
		max-width: 100%;
	}
	.lsb, .rsb {
		display: none;
	}
	.tnb {
		position: relative;
		display: block;
	}
}


@media (max-height: 700px) {
	.lsb-banner {
		display: none;
	}
}
