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

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

body {
	width: 100%;
	min-width: 1000px;
	position: relative;
	line-height: 150%;
	color: #000;
	font-family: 'Noto Serif JP', serif;
}

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: #999;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
header{
	width: 1000px;
	margin: 0 auto;
	padding: 10px 0 5px;
	position: relative;
}
header h1,
header .logo{
	float: left;
}
header .reserve{
	float: right;
	font-size: 0;
}
header .reserve ul li{
	display: inline-block;
	vertical-align: top;
	width: 180px;
	height: 50px;
	margin-left: 2px;
}
header .reserve ul li a{
	display: inline-block;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border: 1px solid #003153;
	text-align: center;
}
header .reserve ul li a p{
	display: inline-block;
	height: 100%;
	text-align: left;
}
header .reserve ul li a span.vaMiddle{
	vertical-align: middle;
}
header .reserve ul li a span.small{
	font-size: 12px;
}
header .reserve ul li:nth-child(1) a{
	font-size: 18px;
	line-height: 1em;
	padding: 2px 0;
	color: #003153;
}
header .reserve ul li:nth-child(2) a{
	font-size: 16px;
	line-height: 48px;
	letter-spacing: 1px;
	color: #fff;
	background: #003153 url(../img/bg_web.png) no-repeat 15px 8px / 20px 35px;
	padding-left: 20px;
}

header .menu_btn{
	display: none;
}
header .menu_bg{
	float: right;
	width: 870px;
	margin-top: 25px;
}
header .menu ul{
	font-size: 0;
	text-align: right;
}
header .menu ul li{
	display: inline-block;
	vertical-align: middle;
}
header .menu ul li a{
	display: block;
	padding: 0 23px;
	font-size: 14px;
	line-height: 2.1em;
	letter-spacing: 0.3px;
	color: #000; 
	position: relative;
}
header .menu ul li:last-child a{
	padding-right: 0;
}

.container{
	padding: 90px 0 130px;
}

/* footer */
footer{
	padding: 40px 0 5px;
	background: #003153;
	color: #fff;
}
footer a{
	color: #fff;
}
footer .instaLink{
	margin-bottom: 35px;
}
footer .footerNav{
	margin-bottom: 30px;
}
footer .footerNav ul{
	font-size: 0;
	text-align: center;
}
footer .footerNav ul li{
	display: inline-block;
}
footer .footerNav ul li a{
	display: block;
	font-size: 14px;
	color: #fff;
	padding: 0 15px;
}
footer .footerInfo{
	margin-bottom: 30px;
	font-size: 12px;
	line-height: 2em;
}
footer .copyright{
	font-size: 11px;
}

 @media screen and (max-width: 480px) {
	body {
		min-width: 320px;
		width: 100%;
		position: relative;
		min-height: 500px;
	}
	header {
		width: 90%;
		margin: 0 auto;
		padding: 15px 0;
	}
	header h1,
	header .logo {
		width: 100%;
		height: 70px;
		margin: 0 auto;
		float: none;
		text-align: center;
	}
	header h1 img,
	header .logo img{
		width: auto;
		height: 100%;
	}
	
	header .menu_btn{
		display: block;
		width: 40px;
		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: 40px;
		height: 1px;
		background: #000;
		border-radius: 5px;
		transition: all 0.3s;
    	transform: rotate(0deg);
	}
	header .menu_btn span.middle{
		transform: translateY(7px);
	}
	header .menu_btn span.bottom{
		transform: translateY(14px);
	}
	.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,10px);
	}
	.open header .menu_btn span.bottom{
		transform: rotate(45deg) translate(9px,6px);
	}
	header .menu_bg{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		float: none;
		margin: 0;
		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: 10px 0 60px;

	}
	header .menu ul li{
		width: 100%;
		margin: 0 auto;
		text-align: center;
	}
	header .menu ul li a{
		display: block;
		width: 80%;
		margin: 0 auto;
		padding: 30px 0;
		font-size: 16px;
		line-height: 1em;
		color: #fff; 
		position: relative;
	}
	/* 開閉用ボタンがクリックされた時のスタイル */
	.open header .menu_bg {
		-webkit-transition: all .5s;
		transition: all .5s;
		visibility: visible;
		opacity: 1;
	}
	

	.container{
		padding: 50px 0 80px;
	}
	
	.footerArea {
		position: fixed;
		bottom: 0;
		width: 100%;
		overflow: hidden;
		z-index: 10;
	}
	.footerArea a {
		display: block;
		width: 100%;
		float: left;
		padding: 10px 0;
		text-align: center;
		letter-spacing: 1.5px;
		box-sizing: border-box;
	}
	.footerArea a.tel{
		height: 64px;
		font-size: 18px;
		line-height: 1.2em;
		color: #003153;
		background: rgba(255,255,255,0.8);
		border: 1px solid #003153; /* ホットペッパーリンク繋いだら消す */
	}
	.footerArea a p{
		display: inline-block;
		height: 100%;
		text-align: left;
	}
	.footerArea a span.vaMiddle{
		vertical-align: middle;
	}
	.footerArea a span.small{
		font-size: 12px;
	}
	/* ホットペッパーリンク繋いだら復活させて、widthを50%にする */
	/*.footerArea a.web{
		height: 64px;
		font-size: 16px;
		line-height: 44px;
		letter-spacing: 1px;
		color: #fff;
		background: rgba(0,49,83,0.8) url(../img/bg_web.png) no-repeat 15px center / 20px 35px;
		padding: 14px 0 6px 30px;
	}*/
	

	/* footer */
	footer{
		padding: 30px 0 80px;
		background: #003153;
		color: #fff;
	}
	footer a{
		color: #fff;
	}
	footer .instaLink{
		margin-bottom: 20px;
	}
	footer .footerNav{
		margin-bottom: 30px;
	}
	footer .footerNav ul{
		font-size: 0;
		text-align: center;
	}
	footer .footerNav ul li{
		display: inline-block;
	}
	footer .footerNav ul li a{
		display: block;
		font-size: 14px;
		color: #fff;
		padding: 0 15px;
	}
	footer .footerInfo{
		margin-bottom: 20px;
		font-size: 12px;
		line-height: 2em;
	}
	footer .copyright{
		font-size: 11px;
	}
}
@media screen and (min-width: 481px) {
	.sp {
		display: none !important;
	}
	.pc {
		display: block !important;
	}
}
@media screen and (max-width: 480px) {
	.sp {
		display: block !important;
	}
	.pc {
		display: none !important;
	}
}
