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: center; */
	align-items: center;
	height: 6rem;
	padding-left: 1rem;
	position: relative;
}
header img {
	width: 100%;

	
}
header .logo_wrap .logo {
	padding: 1.2rem;
	display: block;
	width: 14rem;
	height: inherit;
}
header .logo_wrap .menu {
	padding: 1.2rem;
	display: block;
	width: 5rem;
	height: inherit;
	position: absolute;
	top: 0;
	right: .5rem;
}

header .sub_wrap {
	position: fixed;
	left: 100%;
	/* left: 30%; */
	top: 0;
	width: 70%;
	height: 100vh;
	background: #fff;
	z-index: 999;
	transition: all 0.5s;
}
header .sub_wrap.on {
	left: 30%;
}
header .sub_wrap .head_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 6rem;
	padding-left: 2rem;
	background: #daf4f9;
	border-bottom: 1px solid #7fd7eb;
}
header .sub_wrap .head_wrap .title {
	display: flex;
	align-items: center;
	font-size: 2rem;
	color: #139ad6;
	font-weight: bold;
}
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 / 2rem;
	background-color: #07b1d8;
}
header .sub_wrap .menu_list_wrap {
	padding: 1rem 1.2rem 2rem 1.2rem;
}
header .sub_wrap .menu_list_wrap .item:first-child {
	margin-bottom: 3rem;
}
header .sub_wrap .menu_list_wrap .item p {
	font-size: 2.2rem;
	font-weight: 900;
	padding: 1rem;
	border-bottom: 2px solid #666;
}
header .sub_wrap .menu_list_wrap .item ul li a span {
	font-size: inherit;
	color: #23a1d8;
	font-weight: 900;
}
header .sub_wrap .menu_list_wrap .item ul li a {
	font-size: 1.7rem;
	display: block;
	padding: 1.2rem;
	color: #666;
	border-bottom: 1px solid #ddd;
	letter-spacing: -.1rem;
	line-height: 1.4;
	text-align: center;
}
header .sub_wrap .deco {
	position: absolute; 
	bottom: 1rem; right: 1rem;
	opacity: .3; width: 60%;
}

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 {
	margin-top: 6rem;
	/* padding-bottom: 7.5rem; */
	min-height: calc(100vh - 6rem);
	/* background: url("../img/background_blue.png") no-repeat 0 0; */
	background-color: #f3ffff;
}

footer .img_wrap img {
	width: 100%;
}


/* page_title_wrap */
.page_title_wrap h1 {
	text-align: center;
	margin: 0 auto;
	height: 5rem;
	background-color: #fff;
	border-bottom: 1px solid #ddd;
	display: flex; justify-content: center; align-items: center;
	font-size: 1.8rem; font-weight: 900;
}
.page_title_wrap h1 img {
	width: 100%;
}

/* FOOTER */
footer {
	position: fixed;
	width: 100%;
	bottom: 0;
	background: #fff;
	border-top: 1px solid #ddd;
	z-index: 9;
	box-shadow: 0 5px 8px 5px #ddd;
}
footer ul {
	display: flex;
}
footer ul li {
	width: 25%;
	background: url("../img/slash.png") no-repeat 100% 50% / 1rem;
	padding: 0 2rem;
}
footer ul li:last-child {
	background: none;
}
footer ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 600;
	text-align: center;
	padding: 1.5rem 0;
	height: 100%;
	line-height: 1.3;
	position: relative;
}
footer ul li.on a {
	/* color: #21ae88; */
	color: #846196;
	font-weight: 800;
}
footer ul li.on a::before {
	content: "";
	width: 100%;
	height: .5rem;
	/* background: #21ae88; */
	background: #846196;
	position: absolute;
	top: 0;
	left: 0;
}