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

html{
	background:#ffffff;
	font-size:16px;
	color:#333;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.wrapper {
	width:960px;
	margin:0 auto;
	line-height:1.2;
}

.mt30 {
	margin-top:30px;
}

header {
	margin-top:30px;
	position:relative;
}

h1{
width:150px;
margin:0 auto;
}

h1 img {
text-align:center;
width:150px;
}

header .btn {
	display:none;
}

header ul.reservationbtn {
	position:absolute;
	top:36px;
	right:0px;
	display:flex;
	justify-content:flex-end;
}

header ul.reservationbtn li {
	background:#333;
	font-size:14px;
	text-align:center;
	position:relative;
}

header ul.reservationbtn li:after {
	position:absolute;
	bottom:7px;
	right:7px;
	content:"";
	width:0;
	height:0;
	border-top: solid 3px transparent;
	border-right:solid 3px #fff;
	border-bottom:solid 3px #fff;
	border-left: solid 3px transparent;
}

header ul.reservationbtn li:first-child {
	margin-right:2px;
}

header ul.reservationbtn li a {
	display:block;
	padding:7px 20px;
	color:#fff;
	text-decoration:none;
}


nav {
	margin:80px 0 50px;
}

nav ul {
	display:flex;
	justify-content:space-between;
}

nav ul li a {
	color:#666;
	font-weight:bold;
	text-decoration:none;
}

.main img {
	width:960px;
	height:480px;
}

h2 {
	color:#666;
	font-size:18px;
	font-weight:bold;
	text-align:center;
	margin:80px 0 50px;
}

.s_img {
	width:480px;
}

.s_txt {
	width:380px;
	height:300px;
	line-height:1.4;
	position:relative;
}

.f_l {
	float:left;
}

.f_r {
	float:right;
}

ul.instagram li {
	width:176px;
	height:176px;
	float:left;
	margin:0 20px 20px 0;
}

ul.instagram li img {
	width:176px;
	height:176px;
}

ul.instagram li:nth-child(5n) {
	margin-right:0px;
}

ul.regularmenu li {
	width:225px;
	float:left;
	margin-right:20px;
}

dl {
	display:flex;
	flex-wrap: wrap;
}

dl dt {
	width:30%;
	margin:0 0 20px 0;
}

dl dd {
	width:70%;
	margin:0 0 20px 0;
}

.btnwrap {
	width:100%;
	position:absolute;
	bottom:0;
}

p.andbtn {
	text-align:center;
	position:relative;
	border:solid 1px #333;
}

p.andbtn:after {
	position:absolute;
	bottom:7px;
	right:7px;
	content:"";
	width:0;
	height:0;
	border-top: solid 3px transparent;
	border-right:solid 3px #333;
	border-bottom:solid 3px #333;
	border-left: solid 3px transparent;
}

p.andbtn a {
	display:block;
	padding:18px 0;
	color:#333;
	text-decoration:none;
}

section#reservation {
	width: 460px;
	margin:0 auto;
}

section#reservation .r_box {
	margin-top:30px;
}

h3 {
	display: inline-block;
	background:#333;
	color:#fff;
	padding:5px;
	margin-bottom:5px;
}

p.reservationbtn2 {
	width:210px;
	text-align:center;
	position:relative;
	border:solid 1px #333;
}

p.reservationbtn2:after{
	position:absolute;
	bottom:7px;
	right:7px;
	content:"";
	width:0;
	height:0;
	border-top: solid 3px transparent;
	border-right:solid 3px #333;
	border-bottom:solid 3px #333;
	border-left: solid 3px transparent;
}

p.reservationbtn2 a {
	display:block;
	padding:7px 20px;
	color:#333;
	text-decoration:none;
}

.b_list ul {
	display:flex;
}

.b_list ul li a {
	color:#333;
}

section.menu {
	width: 700px;
	margin:0 auto;
	line-height:1.5;
}

section.menu h4 {
	padding-bottom:10px;
	border-bottom:solid 1px #333;
	font-weight:bold;
	margin:20px 0 10px;
}

section.menu h4 span,section.menu dl dd span {
	font-size:80%;
}

section.menu dl dt {
	margin:0;
	width:60%;
}

section.menu dl dd {
	margin:0;
	width:40%;
	text-align:right;
}

section.menu ul {
	margin-bottom:30px;
}

section.menu p.note {
	font-size:70%;
	text-align:right;
}

ol {
	list-style-position:inside;
	margin-top:20px;
}

footer {
	margin-top:100px;
	padding:20px 0 80px;
	border-top: solid 1px #000;
	position:relative;
}

footer  ul {
	display:flex;
}

footer  ul li {
	margin-right:10px;
}

footer  ul li img {
	width:24px;
}

footer  ul li a {
	font-size:80%;
	color:#333;
}

footer p.pagetop {
	position:absolute;
	right:0px;
	top:-60px;
}

footer p.footertext {
	position:absolute;
	right:0px;
	top:20px;
}

@media screen and (max-width:480px) {
	.wrapper {
		width:100%;
	}
	
	.content {
		box-sizing: border-box;
		padding:0 2%;
	}
	
	/*header ul.reservationbtn, nav {
		display:none;
	}
	*/
	.menuarea {
		position: fixed;
		/* メニューの位置マイナス指定で画面外に */
		top:0;
		right: -100%;
		width: 	100%;
		height: 100vh;
		background-color: rgba(255, 255, 255, .8);
		transition: .3s;
	}
	
	.menuarea.open {
		position: absolute;
		right: 0;
	}
	
	header .btn {
		display:block;
		position: absolute;
		top: 0;
		right: 16px;
		z-index: 10;
		width: 48px;
		height: 48px;
	}

	.btn-line {
		display: block;
		position: relative;
		width: 100%;
		height: 2px;
		background-color: #333;
		transition: .2s;
	}
	
	.btn-line::before , .btn-line::after {
		content: "";
		position: absolute;
		width: 100%;
		height: 100%;
		background-color: #333;
		transition: .5s;
	}

	.btn-line::before {
		transform: translateY(-16px);
	}

	.btn-line::after {
		transform: translateY(16px);
	}

	.btn-line.open {
		background-color: transparent;
	}

	.btn-line.open::before , .btn-line.open::after {
		content: "";
		background-color: #333;
		transition: .2s;
	}

	.btn-line.open::before {
		transform: rotate(45deg);
	}

	.btn-line.open::after {
		transform: rotate(-45deg);
	}
	
	nav {
		padding: 0 2%;
	}
	
	nav ul {
		flex-direction:column;
		align-items: center;
		justify-content:center;
		border-bottom:solid 1px #333;
	}
	
	nav ul li {
		width:100%;
    	text-align: center;
		border-top:solid 1px #333;
	}
	
	nav ul li a {
		display:block;
		padding: 4% 0;
		color:#333;
		font-weight:normal;
	}
	
	header ul.reservationbtn {
		position:static;
		padding:0 2%;
	}
	
	header ul.reservationbtn li {
		width:100%;
	}
	
	.main {
		margin-top:10%;
	}
	.main img {
		width:100%;
		height:auto;
	}
	
	ul.instagram li {
		width:50%;
		height:auto;
		float:left;
		margin:0;
	}
	
	ul.instagram li img {
		box-sizing: border-box;
		width:100%;
		height:auto;
		padding:0 2% 0 2%;
	}
	
	.s_txt, .s_img {
		width:100%;
		height:auto;
	}
	
	.s_txt ul {
		margin-top:3%;
	}
	
	.s_img img {
		width:100%;
	}
	
	.f_l, .f_r {
		float:none;
	}
	
	section#reservation {
		width:100%;
	}
	
	section#reservation div {
		text-align:center;
	}
	
	section#reservation .reservationbtn2 {
		width:100%;
		margin-top:3%;
	}
	
	.btnwrap {
		position:static;
		margin-top:10%;
	}
	
	.b_list {
		margin-top:10%;
		font-size:90%;
	}
	
	section.menu {
		width:100%;
		font-size:90%;
	} 
	
	section.menu p {
		font-size:80%;
	}
	
	ol {
		font-size:80%;
	}
	
	footer p.footertext {
		position:static;
		font-size:80%;
		margin-top:2%;
	}


}

