/* 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 a.search {
	text-indent: -9999px;
	width: 6rem;
	height: 100%;
	background: url("../img/search.png") no-repeat 50% 50% / 2.5rem;
	position: absolute;
	top: 0;
	right: 0;
}
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 .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;
}
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_1 {
	padding: 1.5rem;
}
header .sub_header .list_1 ul {
	width: 100%;
}
header .sub_header .list_1 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;
}

/* MAIN */
.main {
	margin-top: 10.7rem;
	min-height: calc(100vh - 11rem);
}