@charset "utf-8";
/*------------------------------------------------------------------

	base.css
 
------------------------------------------------------------------*/

body {
	width: 100%;
	min-width: 1000px;
	position: relative;
	line-height: 150%;
	color: #4b361d;
	text-align: center;
}

img {
	max-width: 100%;
}

.alphaOver a:hover img {
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
	-moz-opacity: .7;
	opacity: .7;
	zoom: 1
}
a, a:link {
	color: #4b361d;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}


header {
	position: relative;
}
header .headerInner{
	width: 1000px;
	padding: 40px 0 15px;
	margin: auto;
	position: relative;
}
header .headerInner h1,
header .headerInner .logo {
	width: 100%;
	margin: 0px auto 40px;
}
header .headerInner .reserve{
	position: absolute;
	top: 90px;
	right: 40px;
}
header .headerInner .reserve p{
	font-family: poynter-oldstyle-display, serif;
	font-weight: 400;
	font-style: normal;
	font-size: 24px;
	letter-spacing: 2px;
}
header .headerInner .reserve p::before{
	display: inline-block;
	vertical-align: middle;
	content: "";
	width: 29px;
	height: 29px;
	background: url(../img/ico_tel.png) no-repeat center center / 100% auto;
	margin: -5px 10px 0 0;
}

header .menu_btn{
	display: none;
}
header .menu ul{
	display: flex;
	justify-content: space-between;
}
header .menu ul li{
	text-align: center;
}
header .menu ul li a{
	display: block;
	padding: 5px 15px;
	font-size: 11px;
	line-height: 1.7em;
	color: #7f6343; 
	position: relative;
}
header .menu ul li a span{
	font-family: poynter-oldstyle-display, serif;
	font-weight: 400;
	font-style: normal;
	font-size: 17px;
	letter-spacing: 1.5px;
	color: #4b361d;
}

.wrapper{
	padding-bottom: 175px;
}

/* footer */
footer {
	text-align: left;
	background: url(../img/bg_footer.jpg) no-repeat center center / cover;
}
footer .footerPatern{
	background: url(../img/patern_footer.png) repeat;
	padding: 25px 0;
}
footer .footerInner{
	width: 1000px;
	margin: auto;
}
footer .footerNav{
	font-size: 12px;
	line-height: 2.5em;
	margin-bottom: 15px;
}
footer .footerNav a{
	padding: 0 12px;
}
footer .footerInfo{
	font-size: 12px;
	line-height: 1.9em;
	margin-bottom: 25px;
	padding-left: 12px;
}
footer p.copyright {
	width: 100%;
	padding: 0;
	font-size: 13px;
	margin:0 auto;
	padding-left: 12px;
}

 @media screen and (max-width: 480px) {
	body {
		min-width: 320px;
		width: 100%;
		position: relative;
		min-height: 500px;
	}
	
	
	header {
		position: relative;
	}
	header .headerInner{
		width: 100%;
		padding: 20px 0 35px;
		margin: auto;
		position: relative;
	}
	header .headerInner h1,
	header .headerInner .logo{
		width: 40%;
		margin: 0px auto 10px;
	}

	
	header .menu_btn{
		display: block;
		width: 34px;
		height: 18px;
		position: fixed;
		top: 30px;
		right: 5%;
		z-index: 99;
	}
	.open header .menu_btn{
		display: block;
		line-height: 30px;
		text-align: center;
		z-index: 999;
	}
	header .menu_btn span{
		display: block;
		width: 34px;
		height: 2px;
		background: #5f4605;
		border-radius: 5px;
		transition: all 0.3s;
    	transform: rotate(0deg);
	}
	header .menu_btn span.middle{
		transform: translateY(6px);
	}
	header .menu_btn span.bottom{
		transform: translateY(12px);
	}
	.open header .menu_btn span{
		background: #fff;
	}
	.open header .menu_btn span.middle{
		background: rgba(255, 255, 255, 0);
	}
	.open header .menu_btn span.top{
		transform: rotate(-45deg) translate(-8px,12px);
	}
	.open header .menu_btn span.bottom{
		transform: rotate(45deg) translate(9px,5px);
	}
	header .menu_bg{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.8);
		-webkit-transition: all .5s;
		transition: all .5s;
		visibility: hidden;
		opacity: 0;
		z-index: 100;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	header .menu {
		display: table;
		width: 100%;
		padding: 0;
		border: none;
	}
	header .menu ul{
		display: table-cell;
    	vertical-align: middle;
		width: 100%;
		height: 100%;
		box-sizing: border-box;
		padding: 70px 0 0;

	}
	header .menu ul li{
		width: 50%;
		float: left;
		margin: 0 auto;
		text-align: center;
		box-sizing: border-box;
		border-bottom: 1px solid #fff;
	}
	header .menu ul li:nth-child(1),
	header .menu ul li:nth-child(2){
		border-top: 1px solid #fff;
	}
	header .menu ul li:nth-child(odd){
		box-sizing: border-box;
		border-right: 1px solid #fff;
	}
	header .menu ul li a{
		display: block;
		width: 100%;
		margin: 0 auto;
		padding: 20px 0;
		font-size: 12px;
		line-height: 1.6em;
		color: #fff; 
		position: relative;
	}
	header .menu ul li a span{
		font-family: poynter-oldstyle-display, serif;
		font-weight: 400;
		font-style: normal;
		font-size: 16px;
		letter-spacing: 1.5px;
		color: #fff;
	}
	/* 開閉用ボタンがクリックされた時のスタイル */
	.open header .menu_bg {
		-webkit-transition: all .5s;
		transition: all .5s;
		visibility: visible;
		opacity: 1;
	}
	
	.wrapper{
		padding-bottom: 80px;
	}
	
	.footerArea {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 54px;
		overflow: hidden;
		z-index: 10;
	}
	.footerArea a {
		display: block;
		float: left;
		position: relative;
		width: 50%;
		margin: 0px auto;
		padding: 15px 0;
		background: rgba(196,184,163,0.8);
		text-align: center;		
		font-family: poynter-oldstyle-display, serif;
		font-weight: 400;
		font-style: normal;
		font-size: 16px;
		letter-spacing: 1.5px;
		color: #4b361d;
	}
	.footerArea a.tel{
		box-sizing: border-box;
		border-right: 1px solid #fff;
	}
	.footerArea a.tel::before {
		display: inline-block;
		vertical-align: middle;
		content: "";
		width: 18px;
		height: 18px;
		line-height: 0;
		background: url(../img/ico_tel.png) no-repeat center center / 100% auto;
		margin-right: 10px;
		margin-top: -3px;
	}
	
	/* footer */
	footer {
		text-align: left;
		background: url(../img/bg_footer.jpg) no-repeat center center / cover;
	}
	footer .footerPatern{
		background: url(../img/patern_footer.png) repeat;
		padding: 25px 0 60px;
	}
	footer .footerInner{
		width: 94%;
		margin: auto;
	}
	footer .footerNav{
		font-size: 12px;
		line-height: 2.5em;
		margin-bottom: 15px;
	}
	footer .footerNav a{
		padding: 0 12px;
	}
	footer .footerInfo{
		font-size: 12px;
		line-height: 1.9em;
		margin-bottom: 25px;
		padding-left: 12px;
	}
	footer p.copyright {
		width: 100%;
		padding: 0;
		font-size: 13px;
		margin:0 auto;
		padding-left: 12px;
	}
}
@media screen and (min-width: 481px) {
	.sp {
		display: none !important;
	}
	.pc {
		display: inline-block !important;
	}
}
@media screen and (max-width: 480px) {
	.sp {
		display: inline-block !important;
	}
	.pc {
		display: none !important;
	}
}
