.header {
	position: fixed;
   width: 100%;
	background: #F9F4E8 !important;
	z-index: 999;
}
.header-left_container {
	float: left;
	width: 35%;
}
.header-link {
	text-decoration: none !important;
}
.header-title {
	margin: 20px 0;
   font-size: 30px;
   color: #555555;
}
.header-title span {
	display: block;
	font-size: 16px;
	color: #6E4B2C;
}
.header-img {
	float: left;
	margin: 25px 3px 0 0;
}
.header-right_container {
	float: right;
}
.header-business_contact {
	float: left;
	margin-top: 30px;
   padding: 4px 7px;
	color: #fff;
	background: #333333;
}
.header-business_contact-img {
	float: left;
	margin-left: 15px;
}
.header-nav {
	width: 100%;
	margin: 0;
	background: #940E21;
}
.header-nav-list {
	width: 1000px;
	margin: 0 auto 0;
	text-align: center;
}
.header-nav-list-item {
	float: left;
   width: 180px;
   margin: 10px 0;
   list-style: none;
   border-right: 2px solid #fff;
}
.header-nav-list-item:last-child {
	border-right: none;
}
.header-nav-list-item a {
	color: #fff;
}




@media screen and (max-width: 768px) {
	.menu-btn {
		position: fixed;
		top: 10px;
		right: 10px;
		display: flex;
		height: 60px;
		width: 60px;
		justify-content: center;
		align-items: center;
		z-index: 90;
		background-color: #940E21;
	}
	.menu-btn span,
	.menu-btn span:before,
	.menu-btn span:after {
		content: '';
		display: block;
		height: 3px;
		width: 25px;
		border-radius: 3px;
		background-color: #ffffff;
		position: absolute;
	}
	.menu-btn span {
		margin: 29px 0 0 17px;
	}
	.menu-btn span:before {
		bottom: 8px;
	}
	.menu-btn span:after {
		top: 8px;
	}
	#menu-btn-check:checked ~ .menu-btn span {
		background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
	}
	#menu-btn-check:checked ~ .menu-btn span::before {
		bottom: 0;
		transform: rotate(45deg);
	}
	#menu-btn-check:checked ~ .menu-btn span::after {
		top: 0;
		transform: rotate(-45deg);
	}
	#menu-btn-check {
		display: none;
	}
	.menu-content {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 80;
		background-color: #940E21;
	}
	.menu-content ul {
		padding: 70px 10px 0;
	}
	.menu-content ul li {
		border-bottom: solid 1px #ffffff;
		list-style: none;
	}
	.menu-content ul li a {
		display: block;
		width: 100%;
		font-size: 15px;
		box-sizing: border-box;
		color:#ffffff;
		text-decoration: none;
		padding: 9px 15px 10px 0;
		position: relative;
	}
	.menu-content ul li a::before {
		content: "";
		width: 7px;
		height: 7px;
		border-top: solid 2px #ffffff;
		border-right: solid 2px #ffffff;
		transform: rotate(45deg);
		position: absolute;
		right: 11px;
		top: 16px;
	}
		.menu-content {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 100%;/*leftの値を変更してメニューを画面外へ*/
		z-index: 80;
		background-color: #940E21;
		transition: all 0.5s;/*アニメーション設定*/
	}
	#menu-btn-check:checked ~ .menu-content {
		left: 0;/*メニューを画面内へ*/
	}
	
	.sp-fixd-menu {
		position: fixed;
		bottom: 0px;
		z-index: 999;
		width: 100%;
		background: orange;
		text-align: center;
		padding: 15px;
		font-weight: bold;
	}
	.sp-fixd-menu p {
		font-size: 20px;
		margin-bottom: 0;
	}
	.sp-fixd-menu p a {
		color: #fff;
	}
	
	
}








