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;
	position: relative;
}
header img {
	width: 100%;
}
header .logo_wrap .logo {
	padding: 1.2rem;
	display: block;
	width: 14rem;
	height: inherit;
	display: flex;
	align-items: center;
}
header .logo_wrap .menu {
	padding: 1.2rem;
	display: block;
	width: 5rem;
	height: inherit;
	position: absolute;
	top: 0;
	left: .5rem;
}

header .sub_wrap {
	position: fixed;
	left: -100%;
	top: 0;
	width: 70%;
	height: 100vh;
	background: #fff;
	z-index: 999;
	transition: all 0.5s;
}
header .sub_wrap.on {
	left: 0;
}
header .sub_wrap .head_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 6rem;
	background: #fff;
}
header .sub_wrap .head_wrap .title {
	display: flex;
	align-items: center;
	width: 14rem;
	height: 100%;
	padding: 0 2rem;
}
header .sub_wrap .head_wrap .title img {
	width: 100%;

	/* filter: grayscale(1); opacity: 0.5; */
}
header .sub_wrap .head_wrap .close {
	width: 6rem;
	height: 100%;
	background: url("../img/allmenu_close.png") no-repeat center / 2rem;
}
header .sub_wrap .menu_list_wrap {
	padding: 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: 2rem;
	font-weight: 800;
	padding: 1rem;
	border-bottom: 2px solid #666;
}
header .sub_wrap .menu_list_wrap .item ul li a {
	font-size: 1.7rem;
	display: block;
	padding: 1.2rem 3.5rem 1.2rem 1rem;
	border-bottom: 1px solid #ddd;
	letter-spacing: -.1rem;
	line-height: 1.4;
	
}
header .sub_wrap .menu_list_wrap .item:nth-child(1) ul li:nth-child(1) a {
	background: url("../img/menu_icon1.png") no-repeat 96% 50% / 2.5rem;
}
header .sub_wrap .menu_list_wrap .item:nth-child(1) ul li:nth-child(2) a {
	background: url("../img/menu_icon2.png") no-repeat 96% 50% / 2.5rem;
}
header .sub_wrap .menu_list_wrap .item:nth-child(1) ul li:nth-child(3) a {
	background: url("../img/menu_icon3.png") no-repeat 96% 50% / 2.5rem;
}
header .sub_wrap .menu_list_wrap .item:nth-child(1) ul li:nth-child(4) a {
	background: url("../img/menu_icon4.png") no-repeat 96% 50% / 2.5rem;
}
header .sub_wrap .menu_list_wrap .item:nth-child(2) ul li:nth-child(1) a {
	background: url("../img/menu_icon5.png") no-repeat 96% 50% / 2.5rem;
}
header .sub_wrap .menu_list_wrap .item:nth-child(2) ul li:nth-child(2) a {
	background: url("../img/menu_icon6.png") no-repeat 96% 50% / 2.5rem;
}
header .sub_wrap .menu_list_wrap .item:nth-child(2) ul li:nth-child(3) a {
	background: url("../img/menu_icon7.png") no-repeat 96% 50% / 2.5rem;
}
header .sub_wrap .menu_list_wrap .item:nth-child(2) ul li:nth-child(4) a {
	background: url("../img/menu_icon8.png") no-repeat 96% 50% / 2.5rem;
}

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;
	margin-bottom: 7.5rem;
	min-height: calc(100vh - 13.5rem);
	background: url("../img/background.png") no-repeat 0 0;
}

footer .img_wrap img {
	width: 100%;
}


/* page_title_wrap */
.page_title_wrap h1 {
	width: 28rem;
	margin: 0 auto;
	padding: 3rem 1.5rem;
}
.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: 33.3%;
	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;
	font-weight: 800;
}
footer ul li.on a::before {
	content: "";
	width: 100%;
	height: .5rem;
	background: #21ae88;
	position: absolute;
	top: 0;
	left: 0;
}