/* HEADER */
header .main_header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 888;
	background: #fff;
}
header .main_header .logo_wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid #ddd;
	position: relative;
}
header .main_header .logo_wrap .img_wrap a {
	display: block;
	width: 16rem;
	padding: 1.5rem 0;
}
header .main_header .logo_wrap .img_wrap a img {
	width: 100%;
}
header .main_header .logo_wrap button.menu {
	text-indent: -9999px;
	width: 6rem;
	height: 100%;
	background: url("../img/menu.png") no-repeat 50% 50% / 2.5rem;
	position: absolute;
	top: 0;
	left: 0;
}
header .main_header .logo_wrap button.prev {
	border: 1px sold coral;
	text-indent: -9999px;
	width: 6rem;
	height: 100%;
	background: url("../img/prev_1.png") no-repeat 50% 50% / .9rem;
	position: absolute;
	top: 0;
	right: 0;
}
header .main_header .menu_wrap ul {
	display: flex;
	border-bottom: 1px solid #ddd;
}
header .main_header .menu_wrap ul li {
	width: 33.3%;
}
header .main_header .menu_wrap ul li a {
	display: block;
	font-size: 1.8rem;
	text-align: center;
	padding: 1.5rem 0;
	letter-spacing: -.1rem;
	position: relative;
}
header .main_header .menu_wrap ul li.active a {
	font-weight: 600;
}
header .main_header .menu_wrap ul li:not(:last-child) a::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	height: 50%;
	width: 1px;
	background: #ddd;
}

header .sub_header {
	width: 70%;
	height: 100vh;
	background: #fff;
	position: fixed;
	top: 0;
	left: -100%;
	z-index: 990;
	transition: all 0.5s;
}
header .sub_header .logo_wrap {
	background: #9e2059;
	padding: 7rem 1.5rem 1.5rem;
	position: relative;

}
header .sub_header .logo_wrap img {
	width: 14rem;
	position: absolute; 
	top: 50%; 
	transform: translateY(-50%);
}
header .sub_header .logo_wrap .close {
	text-indent: -9999px;
	width: 2.5rem;
	height: 2.5rem;
	background: url("../img/close.png") no-repeat 0 0 / cover;
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
}
header .sub_header .list_wrap {
	padding: 1.5rem;
}
header .sub_header .list_wrap ul {
	width: 100%;
}
header .sub_header .list_wrap ul li a {
	display: block;
	font-size: 2.2rem;
	line-height: 3;
	font-weight: 600;
	border-bottom: 1px dashed #ddd;
	padding: 0 1rem;
}
header .bg {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 980;
}
header .search_wrap {}
header .search_wrap a.search {
	text-indent: -9999px;
	width: 5rem; height: 5rem;
	background: url("../img/search1.png") no-repeat 50% 50% /100%;
	position: fixed; 
	bottom: 2rem; right: 2rem;
	z-index: 100;
}

/* MAIN */
.main {
	margin-top: 10.7rem;
	min-height: calc(100vh - 11rem);
}