header {
	border-bottom: 1px solid #ddd;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 99;
}
header .logo_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 6rem;
}
header img {
	width: 100%;
}
header .logo_wrap .logo {
	padding: 1.2rem;
	display: block;
	width: 18rem;
}
header .logo_wrap .menu {
	padding: 1.2rem;
	display: block;
	width: 5rem;
}

header .sub_wrap {
	position: fixed;
	right: -100%;
	top: 0;
	width: 70%;
	height: 100vh;
	background: #fff;
	z-index: 999;
	transition: all 0.5s;
}
header .sub_wrap.on {
	right: 0;
}
header .sub_wrap .head_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 6rem;
}
header .sub_wrap .head_wrap .title {
	width: 16rem;
	font-size: 2rem;
	padding: 1.5rem 1.3rem;
	font-weight: 800;
	letter-spacing: -.1rem;
	color: #07b1d8;
}
header .sub_wrap .head_wrap .title img {
	width: 100%;
}
header .sub_wrap .head_wrap .close {
	width: 6rem;
	height: 100%;
	background: url("../img/allmenu_close.png") no-repeat center / 2.5rem;
}
header .sub_wrap .list_wrap {
	padding: 2rem 3rem;
	margin-top: 2rem;
}
header .sub_wrap .list_wrap h1 {
	font-size: 2.3rem;
	font-weight: 800;
	padding: 1rem 0;
	border-bottom: 2px solid #666;
	text-align: center;
	color: #5b6098;
}
header .sub_wrap .list_wrap ul li a {
	font-size: 2rem;
	font-weight: 700;
	display: block;
	text-align: center;
	padding: 1.5rem 0;
	border-bottom: 1px dashed #ddd;
	letter-spacing: -.1rem;
	line-height: 1.5;
}


header .background {
	display: none;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background: #000;
	opacity: 0.5;
	z-index: 998;
}
header .background.on {
	display: block;
}

.main {
	background: url("../Img/index_background.png") no-repeat 0 0 / cover;
}


footer {
	border-left: 1px solid #07b1d8;
	padding-left: 1.5rem;
	margin: 0 2rem 3rem;
}
footer h2 {
	font-size: 1.6rem;
	line-height: 1.4;
	color: #545454;
	font-weight: 800;
	margin-bottom: .2rem;
}
footer pre {
	font-size: 1.2rem;
	line-height: 1.4;
	color: #5e5e5e;
}
footer .img_wrap img {
	width: 100%;
}


/* page_title_wrap */
.page_title_wrap h1 {
	font-size: 2.2rem;
	font-weight: 800;
	text-align: center;
	padding: 3rem 0 0;
	line-height: 1.5;
	letter-spacing: -.1rem;
	background: transparent;
	z-index: 9;
}
.page_title_wrap h1 img {
	width: 100%;
}