@charset "UTF-8";

:root {
  --color1: #1c1c1c;
  --color2: #c32607;
  --color3: #f7bf64;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
html {
  font-size: 10px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
body {
  width: 100%;
  max-width: 768px;
  line-height: 1.5;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
	font-style: normal;
  color: var(--color1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0 auto;
}
* {
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: var(--color1);
}
a:visited {
  color: var(--color1);
}
ins {
  background-color: #ff9;
  color: var(--color1);
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: var(--color1);
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0 !important;
  border-top: 1px solid var(--color1) !important;
  margin: 2em 0;
  padding: 0;
}
input, select {
  vertical-align: middle;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.noscroll {
  overflow: hidden;
}

/* 共通 */
.wrap {
  width: 90%;
  margin: 0 auto;
}
.section {
  padding-bottom: 60px;
}
.center {
	text-align: center;
}
.flex {
	display: flex;
}
.font_bold {
	font-weight: 700;
}
.font_en {
	font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.cap {
  font-size: 11px;
  text-align: right;
  margin-top: 5px;
}

/* ヘッダー */
.header {
  width: 100%;
  height: 60px;
  background-color: var(--color2);
}
.header .wrap {
  width: 100%;
  padding: 0 20px;
}

/* ドロワーメニュー */
.nav_wrapper {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transition: opacity .5s ease, visibility .5s ease;
  display: block;
}
.nav_wrapper.fade {
  opacity: 1;
  visibility: visible;
}
.header_nav {
  width: 100%;
  max-width: 380px;
  height: 100%;
  background-color: var(--color1);
  box-sizing: border-box;
  margin-left: auto;
  position: relative;
}
.header .nav_list {
  width: 85%;
  height: 100%;
  padding-top: 60px;
  padding-bottom: 100px;
  overflow-y: scroll;
  margin: 0 auto;
}
.header .nav_item {
  margin-bottom: 20px;
}
.header .nav_item:last-child {
  margin-bottom: 0;
}
.header .nav_title {
  background-color: var(--color3);
  padding: 5px 10px;
}
.header .nav_sub_list {
  background-color: #fff;
}
.header .nav_sub_item {
  border-bottom: dashed 1px var(--color1);
}
.header .nav_sub_item:last-child {
  border-bottom: none;
}
.header .nav_sub_item a {
  padding: 5px 10px;
  display: block;
}
.burger_btn {
  width: 60px;
  height: 60px;
  background-color: var(--color2);
  border: none;
  padding: 0;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3;
  transition: all .3s;
  cursor: pointer;
}
.bar {
  width: 30px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all .3s;
  display: block;
}
.bar_top {
  top: 20px;
}
.burger_btn.close .bar_top {
  transform: translate(-50%, 10px) rotate(45deg);
}
.bar_mid {
  top: 50%;
}
.burger_btn.close .bar_mid {
  opacity: 0;
}
.bar_bottom {
  bottom: 18px;
}
.burger_btn.close .bar_bottom {
  transform: translate(-50%, -10px) rotate(-45deg);
}

.main {
  padding-top: 20px;
  position: relative;
}
.main::after {
  content: "";
  width: 100%;
  height: 100vh;
  background-image: url(../img/common/img_back.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

/* セクションタイトル */
.sectitle {
  font-size: 20px;
  background-color: var(--color3);
  padding: 10px;
}

.menuarea .box {
  margin-bottom: 30px;
}
.menuarea .box:last-child {
  margin-bottom: 0;
}

/* メニュータイトル */
.menutitle {
  color: #fff;
  background-color: var(--color1);
  padding: 5px 10px;
}
.menutitle span {
  font-size: 12px;
  display: block;
}

/* メニューリスト */
.menulistbox {
  margin-top: 10px;
}
.menulistbox .item {
  align-items: center;
  justify-content: space-between;
  border-bottom: dashed 1px var(--color1);
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.menulistbox .item:last-child {
  margin-bottom: 0;
}
.menulistbox .item .name span {
  font-size: 12px;
  text-align: justify;
  padding-left:1em;
  text-indent:-1em;
  display: block;
}
.menulistbox .item .price {
  font-size: 18px;
  color: var(--color2);
}

/* フッター */
.footer .box {
  color: #fff;
  background-color: var(--color2);
  padding: 20px 0;
}
.footer .tel {
  padding-bottom: 5px;
}
.footer .tel a {
  font-size: 20px;
  color: #fff;
}
.footer .time {
  font-size: 14px;
  line-height: 1.2;
  color: var(--color1);
  background-color: #fff;
  padding: 5px 20px;
  display: inline-block;
}
.footer .copyright {
  font-size: 10px;
  color: #fff;
  background-color: var(--color1);
  padding: 5px 0;
}