/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
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;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav 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;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  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;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}

p {
  line-height: 1.6;
}

a {
  color: unset;
  text-decoration: unset;
}
a:hover {
  opacity: 0.6;
}

ul, li {
  list-style-type: none;
}

img {
  width: 100%;
  max-width: 100%;
  text-align: center;
}

button {
  border: #000;
}

#container {
  position: relative;
  min-height: 100vh;
  padding-bottom: 100px;
  width: 100%;
}

#content .inner {
  width: 68%;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #content .inner {
    width: 89.3%;
  }
}

.section {
  padding: 80px 5%;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 20px 5% 35px;
  }
}

.ttl {
  display: block;
  margin-bottom: 50px;
  font-size: 36px;
  font-family: "EB Garamond", serif;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .ttl {
    margin-bottom: 35px;
    font-size: 26px;
    letter-spacing: 0.03em;
  }
}

.section-ttl {
  text-align: center;
}

#header {
  position: sticky;
  top: 0;
  right: unset;
  bottom: unset;
  left: unset;
  z-index: 1000;
}
#header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
}
@media screen and (max-width: 768px) {
  #header .inner {
    padding: 10px 10px;
  }
}

#title {
  width: 160px;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  #title {
    width: 70px;
  }
}

.global-nav {
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .global-nav {
    display: none;
    position: absolute;
    top: 0;
    right: unset;
    bottom: unset;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
  }
}
#navBtn.active + .global-nav {
  display: block;
}

.menu-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .menu-list {
    position: absolute;
    top: 50%;
    right: unset;
    bottom: unset;
    left: 50%;
    display: block;
    width: 89%;
    transform: translate(-50%, -50%);
  }
}

.menu-list-item {
  margin-left: 30px;
  font-size: 15px;
  font-family: "EB Garamond", serif;
}
@media screen and (max-width: 768px) {
  .menu-list-item {
    margin-left: 0;
    padding-bottom: 40px;
    text-align: center;
    font-size: 18px;
    color: #fff;
  }
}

#navBtn {
  display: none;
  position: absolute;
  top: unset;
  right: 10px;
  bottom: unset;
  left: unset;
  z-index: 100;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: #000;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #navBtn {
    display: block;
  }
}
#navBtn span {
  position: absolute;
  top: unset;
  right: unset;
  bottom: unset;
  left: calc(50% - 10px);
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #fff;
  transition: all 0.3s;
}
#navBtn span:nth-of-type(1) {
  top: calc(50% - 6px);
}
#navBtn span:nth-of-type(2) {
  top: 50%;
}
#navBtn span:nth-of-type(3) {
  top: calc(50% + 6px);
}
#navBtn.active {
  background: #333;
}
#navBtn.active span:nth-of-type(1) {
  top: 50%;
  transform: rotate(-45deg);
}
#navBtn.active span:nth-of-type(2) {
  opacity: 0;
}
#navBtn.active span:nth-of-type(3) {
  top: 50%;
  transform: rotate(45deg);
}

#footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px 0;
  background: #000;
  color: #fff;
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 15px 0;
    font-size: 10px;
  }
}

.btn-top {
  position: fixed;
  top: unset;
  right: 5%;
  bottom: unset;
  left: unset;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  cursor: pointer;
  background: #000;
  color: #fff;
  font-size: 12px;
  z-index: 100;
  visibility: hidden;
}
.btn-top p {
  line-height: 1.45;
}
.btn-top img {
  width: 19px;
  margin: 0 auto 12px;
  transform: rotate(270deg);
}
.btn-top:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .btn-top {
    width: 60px;
    height: 60px;
    font-size: 10px;
  }
  .btn-top p {
    line-height: 1.3;
  }
  .btn-top img {
    width: 12px;
    margin-bottom: 5px;
  }
}

.fadeIn {
  visibility: visible;
  transition: 0.3s;
}

.swiper {
  width: auto;
  position: relative;
  z-index: 10;
}

.swiper-button-prev,
.swiper-button-next {
  top: 45%;
  width: 88px;
  height: 88px;
  background-color: #000;
  border-radius: 50%;
  opacity: 0.8;
  transition: 0.2s ease;
}
@media screen and (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 44px;
    height: 44px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    background-color: #fff;
    opacity: 0.8;
  }
  .swiper-button-prev:hover img,
  .swiper-button-next:hover img {
    filter: invert(1);
  }
}
.swiper-button-prev.active,
.swiper-button-next.active {
  background-color: #fff;
}
.swiper-button-prev.active img,
.swiper-button-next.active img {
  filter: invert(1);
}

.swiper-button-prev {
  left: 3%;
}
@media screen and (max-width: 768px) {
  .swiper-button-prev {
    left: 4vw;
  }
}

.swiper-button-next {
  right: 3%;
}
@media screen and (max-width: 768px) {
  .swiper-button-next {
    right: 4vw;
  }
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev img,
.swiper-button-next img {
  width: 26px;
  transition: filter 0.2s ease;
}
@media screen and (max-width: 768px) {
  .swiper-button-prev img,
  .swiper-button-next img {
    width: 13px;
  }
}

.swiper-button-prev img {
  transform: rotate(180deg);
}

.section-cont .desc-ttl a {
  -webkit-text-decoration: revert;
          text-decoration: revert;
}
.section-cont .desc-ttl:not(:last-of-type) {
  margin-bottom: 3%;
}

.box-outer {
  display: grid;
  width: -moz-fit-content;
  width: fit-content;
  place-items: center;
  -moz-column-gap: 2em;
       column-gap: 2em;
  grid-template-columns: repeat(3, auto);
  margin-bottom: -40px;
}
@media screen and (max-width: 768px) {
  .box-outer {
    grid-template-columns: repeat(auto-fit, 44%);
    justify-content: center;
    margin-bottom: -20px;
  }
}
.box-outer .box {
  width: 100%;
  background-color: #000;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .box-outer .box {
    margin-bottom: 20px;
  }
}

.menu-ttl {
  line-height: 2.5;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .menu-ttl {
    font-size: 3vw;
  }
}

.info-section {
  padding: 80px 5% 80px;
}
@media screen and (max-width: 768px) {
  .info-section {
    padding: 20px 5% 70px;
  }
}

.shopname {
  padding: 0 0 20px;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .shopname {
    font-size: 18px;
  }
}

#info .box {
  display: flex;
  padding: 22px 0 20px;
  background: url("../images/line.svg") bottom;
  background-repeat: repeat-x;
  background-size: auto 1px;
}

.infotxt_dt {
  width: 30%;
  font-weight: 700;
}
.infotxt_dt .b {
  margin-right: 1em;
  font-weight: 700;
}

.infotxt_dd {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  overflow-wrap: break-word;
  flex-direction: column;
}
.infotxt_dd .day {
  margin-bottom: 10px;
}
.infotxt_dd .time:not(:last-of-type) {
  margin-bottom: 20px;
}

#news-page {
  padding: 80px 5%;
}
@media screen and (max-width: 768px) {
  #news-page {
    padding: 60px 5%;
  }
}
#news-page .inner {
  width: 68%;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #news-page .inner {
    width: 89.3%;
  }
}
#news-page .ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  display: table;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

#menu-page {
  padding: 80px 5%;
}
@media screen and (max-width: 768px) {
  #menu-page {
    padding: 60px 5%;
  }
}
#menu-page .inner {
  width: 68%;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #menu-page .inner {
    width: 89.3%;
  }
}
#menu-page .ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
#menu-page .box-outer {
  margin-bottom: -20px;
}
#menu-page .box {
  background: unset;
  margin-bottom: 0;
}

.menu-name {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .menu-name {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

.menu-desc {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .menu-desc {
    margin-bottom: 20px;
  }
}

.hidden {
  display: none;
}/*# sourceMappingURL=style.css.map */