/*root========================================*/

html:root {
	font-size: 16px;
	line-height: 1em;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Yu Gothic", YuGothic, sans-serif;
}

@media screen and (max-width: 768px) {
	html:root {
		font-size: 14px;
	}
}

body {
	background-color: #efefef;
}

/* Windows用フォント調整 */

@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 100;
}

@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 200;
}

@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 300;
}

@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 400;
}

@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Bold");
	font-weight: bold;
}

/*roboto*/

.roboto {
	font-family: 'Roboto', sans-serif;
}

.roboto.bold {
	font-weight: 700;
}

.roboto.italic {
	font-style: italic;
	n
}

/*Link========================================*/

a:link {
	color: #EE6622;
	text-decoration: none;
}

a:visited {
	color: #CE5B22;
}

a:hover {
	color: #FFCC00;
	text-decoration: underline;
	opacity: 0.8;
	transition: 0.2s;
}

a:active {
	color: #FF0000;
}

/*tel禁止*/

a[href^="tel:"] {
	cursor: default;
	text-decoration: none;
}

a[href^="tel:"]:hover {
	opacity: 1;
}

/*Page Top*/

#btn_page_top {}

#btn_page_top a {
	display: block;
	color: #FF0000;
	text-decoration: none;
}

/*button*/

.button_l {
	width: 100%;
	max-width: 680px;
	margin: 4rem auto;
}

.button_l a {
	position: relative;
	display: block;
	background-color: #EE6622;
	color: #fff;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.25em;
	padding: 1.5rem 1rem;
	-webkit-box-shadow: 0px 2px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 2px rgba(0, 0, 0, 0.15);
}

.button_l a span {
	font-weight: normal;
	font-size: 1rem;
}

.button_l a:hover {
	text-decoration: none;
}

.button_l a:after {
	content: "";
	display: block;
	position: absolute;
	width: 0.5rem;
	height: 0.5rem;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	top: 0;
	right: 1rem;
	bottom: 0;
	margin: auto;
	transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
	.button_l {
		margin: 3rem auto;
	}
}

/*hide========================================*/

.pc_hide {
	display: none;
}

@media screen and (max-width: 768px) {
	.pc_hide {
		display: block;
	}
	.sp_hide {
		display: none;
	}
}

/*flex*/

.flex_box {
	display: flex;
}

.flex_box.justify_center {
	justify-content: center;
}

.flex_box.justify_between {
	justify-content: space-between;
}

.flex_box.justify_around {
	justify-content: space-around;
}

.flex_box.wrap {
	flex-wrap: wrap;
}

@media screen and (max-width:768px) {
	.flex_box.sp_column {
		flex-direction: column;
	}
}

/*menu========================================*/

.bg {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 998;
	background-color: rgba(51, 51, 51, 0.5);
	display: none;
}

.bg.open {
	display: block;
}

.btn_menu {
	display: none;
}

.menu_wrap {
	position: absolute;
	top: 0px;
	right: 0px;
}

.menu li {
	margin: 0 0.5rem;
}

.menu li a {
	display: block;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	padding: 24px 0.5rem;
	font-size: 0.9rem;
}

/*top*/

header.page_header.top .menu li a {
	color: #f00;
}

header.page_header.top .menu li a:hover {
	color: #fff;
	opacity: 1;
}

@media screen and (max-width:768px) {
	.menu_wrap {
		width: 240px;
		height: 100%;
		top: 0;
		right: 0;
		transition: all 0.2s;
		transform: translate(240px);
		position: fixed;
		z-index: 10000;
		background-color: #222;
	}
	.menu {
		padding-top: 48px;
	}
	.menu li {
		margin: 0 0;
	}
	.menu li:first-child {
		border-top: 1px solid #111;
	}
	.menu li:last-child {
		border-bottom: 1px solid #333;
	}
	.menu li a {
		padding: 12px 8px;
		line-height: 100%;
		font-size: 1rem;
		border-top: 1px solid #333;
		border-bottom: 1px solid #111;
	}
	header.page_header.top .menu li a {
		color: #fff;
	}
	.menu_wrap.open {
		transform: translate(0);
	}
	/*   ボタンタグ設定   */
	.btn_menu {
		display: block;
		position: fixed;
		top: 8px;
		right: 10px;
		z-index: 10001;
	}
	.btn_menu {
		display: block;
		background: none;
		border: none;
		width: 38px;
		padding: 2px 10px;
		color: #333;
		cursor: pointer;
		outline: none;
		box-sizing: border-box;
		/*        background-color: rgba(255, 255, 255, 0.6);*/
	}
	/*   ハンバーガーボタン3本線   */
	.btn_menu span.bar {
		display: block;
		border-top: 3px solid #FF0000;
		margin: 4px 0;
		transition: all 0.2s;
		transform-origin: 0 0;
	}
	.btn_menu .close {
		letter-spacing: 0.08em;
		display: none;
	}
	.btn_menu .menu {
		display: block;
	}
	/*  メニューアクティブ時  */
	.btn_menu.active span.bar {
		border-color: #FF0000;
	}
	.btn_menu.active .bar1 {
		width: 20px;
		transform: rotate(45deg);
	}
	.btn_menu.active .bar2 {
		opacity: 0;
	}
	.btn_menu.active .bar3 {
		width: 20px;
		transform: rotate(-45deg);
		margin-left: -2px;
	}
}

/*page_wrap========================================*/

#page_wrap {
	min-height: 100vh;
	max-width: 1600px;
	margin: 0 auto;
	position: relative;
	padding-bottom: 200px;
	box-sizing: border-box;
	background-color: #fff;
}

@media screen and (max-width:768px) {
	padding-bottom: 100px;
}

/*header========================================*/

header.page_header {
	position: fixed;
	width: 100%;
	height: 64px;
	top: 0;
	left: 0;
	z-index: 999;
	background-color: #000;
	transition: 0.6s;
}

header.page_header.move {
	box-shadow: -webkit-box-shadow: 0px 0px;
	box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.30);
	-webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.30);
}

header.page_header .page_header_inner {
	position: relative;
	max-width: 1148px;
	margin: 0 auto;
}

header.page_header .page_header_inner .logo {
	position: absolute;
	top: 0;
	left: 0;
	width: 64px;
}

header.page_header .page_header_inner .logo img {
	width: 100%;
	height: auto;
}

/*top*/

header.page_header.top {
	background-color: transparent;
}

header.page_header.top.move {
	background-color: rgba(0, 0, 0, 1.0);
}

@media screen and (max-width:768px) {
	header.page_header {
		height: 48px;
	}
	header.page_header .page_header_inner .logo {
		width: 48px;
	}
	/*top*/
	header.page_header.top, header.page_header.top.move {
		background-color: #000;
	}
}

/*footer========================================*/

footer {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40px;
}

footer .btn_page_top {}

footer .btn_page_top a {
	text-align: center;
	display: block;
	width: 80px;
	height: 40px;
	font-size: 0.9rem;
	color: #FF0000;
	text-decoration: none;
	background-image: url(../images/page_top_sankaku@2x.png);
	background-size: 48px 20px;
	background-position: center bottom;
	background-repeat: no-repeat;
	margin: 0 auto;
}

footer .btn_page_top a:hover {
	opacity: 0.6;
}

/*contents========================================*/

section.contents_wrap {}

.contents_wrap_inner {
	padding-top: calc(64px + 5rem);
}

.contents {
	width: 90%;
	max-width: 1180px;
	margin: 0 auto 0;
}

/*top*/

.contents.top {
	padding-top: 5rem;
}

@media screen and (max-width:768px) {
	.contents_wrap_inner {
		padding-top: calc(48px + 3rem);
	}
}

/*title========================================*/

h1.title, h2.title {
	width: 76%;
	margin: 0 auto 4rem;
	text-align: center;
	font-size: 1.2rem;
}

h2.title {
	margin: 0 auto 2rem;
}

h1.title span, h2.title span {
	font-size: 1.8rem;
}

h3.title {
	width: 57%;
	max-width: 480px;
	margin: 0 auto 1rem;
	text-align: center;
	font-size: 1.2rem;
}

.title span.border {
	display: block;
	padding-bottom: 0.9rem;
	border-bottom: 4px solid #000;
	margin-bottom: 0.9rem;
}

.title_ribbon {
	background-color: #f00;
	position: relative;
	height: 4rem;
	font-size: 1.75rem;
	font-weight: bold;
	line-height: 4rem;
	text-align: center;
	color: #fff;
	width: 30%;
	min-width: 200px;
	margin: 2rem auto;
}

.title_ribbon:before, .title_ribbon:after {
	position: absolute;
	top: 0;
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-top: 2rem solid #f00;
	border-bottom: 2rem solid #f00;
}

.title_ribbon:before {
	left: -1rem;
	border-left: 1rem solid transparent;
}

.title_ribbon:after {
	right: -1rem;
	border-right: 1rem solid transparent;
}

/*文字間*/

.spacing02em {
	letter-spacing: 0.2em;
}

@media screen and (min-width:769px) {
	h1.title {
		max-width: 640px;
	}
	h2.title {
		max-width: 480px;
	}
}

/*textbox========================================*/

.lh_18 {
	line-height: 1.8em;
}

.lh_24 {
	line-height: 2.4em;
}

.textbox_01 {
	max-width: 680px;
	min-width: 280px;
	width: 75%;
	margin: 2rem auto 3rem;
}

@media screen and (min-width:769px) {
	.pc_text_center {
		text-align: center;
	}
}

@media screen and (max-width:768px) {
	.textbox_01 {
		margin: 1rem auto 3rem;
	}
	.textbox_01.top {
		width: 100%;
	}
	.textbox_01.top.lh_24 {
		line-height: 2em;
	}
}

/*table========================================*/

.table_01 {
	line-height: 1.4em;
	width: 80%;
	max-width: 480px;
	margin: 2rem auto;
}

.table_01 th {
	font-weight: bold;
	width: 40%;
	text-align: left;
	vertical-align: top;
}

.table_01 th, .table_01 td {
	padding: 0.3rem 0;
}

/*-*/

.table_02 {
	line-height: 1.4em;
	width: 75%;
	max-width: 680px;
	margin: 2rem auto;
}

.table_02 th {
	font-weight: normal;
	vertical-align: top;
	width: 50%;
	text-align: left;
	background-color: #ccc;
}

.table_02 tr:nth-child(2n) th {
	background-color: #eee;
}

.table_02 tbody.gyaku tr:nth-child(2n+1) th {
	background-color: #eee;
}

.table_02 tbody.gyaku tr:nth-child(2n) th {
	background-color: #ccc;
}

.table_02 th, .table_02 td {
	border: 1px solid #AAA;
	padding: 0.8rem;
}

.table_02 thead td {
	text-align: center;
	background-color: #aaa;
	color: #fff;
	font-weight: bold;
	padding: 0.4rem;
}

.table_02 caption span {
	font-weight: bold;
	display: inline-block;
	border-bottom: 1px solid #f00;
	padding: 0 0.2em 0.2em;
	margin-bottom: 0.8rem;
}

@media screen and (max-width:768px) {
	.table_01 th {
		width: 35%;
	}
	.table_02 {
		width: 100%;
	}
}

/*-*/

div.menu_plice_wrap {
	max-width: 950px;
	margin: 2rem auto;
}

.menu_plice {
	width: 40%;
}

.menu_plice th, .menu_plice td {
	padding: 0.7rem 0;
	vertical-align: top;
	line-height: 1.4em;
}

.menu_plice th {
	text-align: left;
}

.menu_plice td {
	text-align: right;
}

.menu_plice td.anotation {
	text-align: left;
	font-size: 0.875rem;
}

@media screen and (max-width:768px) {
	.menu_plice {
		width: 100%;
	}
	.menu_plice th, .menu_plice td {
		padding: 0.5rem 0;
	}
	.menu_plice td {
		min-width: 5rem;
	}
}

/*otoiawase========================================*/

.otoiawase {
	border: 1px solid #ccc;
	padding: 1.2rem;
	width: 75%;
	min-width: 280px;
	max-width: 640px;
	margin: 2rem auto;
	box-sizing: border-box;
	text-align: center;
}

.otoiawase .telnomber {
	font-size: 2rem;
	line-height: 1.6em;
}

.otoiawase .telnomber .small {
	font-weight: normal;
	font-size: 0.6em;
}

.otoiawase .telnomber a {
	color: #000;
}

/*トップページ========================================*/

.top_main_img_wrap {
	width: 100%;
	height: 100vh;
	max-height: 720px;
	overflow: hidden;
	background-image: url(../images/top_main_img.jpg);
	background-position: top center;
	background-size: cover;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
	.top_main_img_wrap {
		background-image: url(../images/top_main_img@2x.jpg);
	}
}

.top_main_img_wrap_inner {
	width: 90%;
	height: 100%;
	max-width: 1180px;
	margin: 0 auto 0;
	position: relative;
}

.top_main_img_wrap_inner h1 {
	position: absolute;
	right: 0;
	top: 15%;
	max-width: 619px;
	width: 60%;
}

.top_main_img_wrap_inner h1 img {
	width: 100%;
	height: auto;
}

.main_img_button {
	position: absolute;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	bottom: 2rem;
	left: 1rem;
	overflow: hidden;
}

.main_img_button a {
	background-color: #ff0000;
	text-align: center;
	display: block;
	width: 180px;
	height: 180px;
}

.main_img_button a span {
	display: block;
	position: absolute;
	font-size: 2rem;
	line-height: 1.25em;
	font-weight: bold;
	color: #fff;
	height: 1.25em;
	width: : 4em;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.main_img_button a:hover {
	text-decoration: none;
}

@media screen and (max-width:768px) {
	.top_main_img_wrap {
		margin-top: 48px;
		height: calc(100vh - 48px);
		min-height: 360px;
	}
	.top_main_img_wrap_inner {
		width: 94%;
	}
	.top_main_img_wrap_inner h1 {
		right: 0;
		top: 20%;
		min-width: 360px;
		width: 67%;
	}
	.main_img_button {
		width: 35vw;
		height: 35vw;
	}
	.main_img_button a span {
		font-size: 8vw;
		height: 2.5em;
	}
}

@media screen and (max-width:480px) {
	.top_main_img_wrap {}
	.top_main_img_wrap_inner h1 {
		min-width: 220px;
	}
}

/*shop info========================================*/

h2#shop_info, h2#menu_info {
	padding-top: 6rem;
}

.shop_info_wrap {
	width: 100%;
	margin: 2rem auto;
}

.shop_info_wrap .shop_info {
display: flex;
}
.shop_info_wrap .shop_info .data_wrap {
	width: 50%;
	flex-shrink: 0;
}
.shop_info_wrap .shop_info img {
	width: 100%;
	height: auto;
}

.shop_info .data {
	padding: 1.2rem 0.5rem;
	color: #fff;
	text-align: center;
	line-height: 1.2em;
}

.shop_info .data h4 {
	font-size: 1.5rem;
}

.shop_info .data h4 span.small {
	font-size: 0.667em;
	font-weight: normal;
	margin-right: 0.5em;
}

.shop_info .data .tel {
	font-size: 2.25rem;
	font-style: italic;
	margin: 1.4rem 0 0.6rem;
}

.shop_info .data .tel span.small {
	font-size: 0.5em;
	font-weight: normal;
	margin-right: 0.3em;
}

.shop_info .data .tel a {
	color: #fff;
}

.shop_info .data .address, .shop_info .data .eigyo {
	margin: 0.2rem 0;
	font-size: 0.875rem;
}

.shop_info .data .address {
	margin: 0.8rem 0;
}

.shop_info .data .eigyo {
	margin: 0.3rem 0;
}

.shop_info.akeno .data {
	background-color: #f00;
}

.shop_info.akeno .address, .shop_info.akeno .eigyo {
	color: #000;
}

.shop_info.wasada .data {
	background-color: #000;
}

@media screen and (max-width:768px) {
	h2#shop_info, h2#menu_info {
		padding-top: 4rem;
	}
	.shop_info_wrap .shop_info {
		width: 100%;
		max-width: 480px;
		margin: 0 auto 2rem;
		display: block;
	}
	.shop_info_wrap .shop_info .data_wrap {
			width: auto;
	}
	.shop_info_wrap {
		margin: 2rem auto 3rem;
	}
}

/*map*/

.map_wrap {
	width: 100%;
	box-sizing: border-box;
}
@media screen and (max-width:768px) {
	.map_wrap {
height: 20rem;
	}
}