@charset "UTF-8";

* {
  box-sizing: border-box;
}

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, dialog, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  padding: 0;
  margin: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  border: 0;
  outline: 0;
}

html {
  font: 14px/1.5 sans-serif;
}

article, aside, dialog, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

a {
  padding: 0;
  margin: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}

ins {
  color: #000;
  text-decoration: none;
  background-color: #ff9;
}

mark {
  font-style: italic;
  font-weight: 800;
  color: #000;
  background-color: #ff9;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  cursor: help;
  border-bottom: 1px dotted #000;
}

table {
  empty-cells: show;
  border-spacing: 0;
  border-collapse: collapse;
}

hr {
  display: none;
}

input, select {
  vertical-align: middle;
}

select, input, button, textarea, table {
  font: inherit;
}

pre, code, kbd, samp, tt {
  font-family: monospace;
}

img {
  vertical-align: top;
}
@charset "UTF-8";

/*
font-family: 'Noto Serif JP', serif;
font-weight: 400
font-family: 'EB Garamond', serif;
font-weight: 400

アンカーリンクの行き先で以下の指定をするとヘッダー被りを回避できる
scroll-margin-top: var(--small-header-height);
*/

:root {
  --main-font: 'EB Garamond', 'Noto Serif JP', serif;
  --fg1: #2d3231;
  --header-height: 105px;
  --small-header-height: 42px;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--main-font);
  font-feature-settings: 'palt';
  color: var(--fg1);
  font-size: 1.3rem;
}

h1, h2, h3 {
  font-weight: normal;
}

p + p {
  margin-top: 1.8em;
}

a {
  color: var(--fg1);
  text-decoration: none;
}

svg.fill {
  fill: currentColor;
}

svg.stroke {
  fill: none;
  stroke: currentColor
}

header {
  position: fixed;
  top: 0;
  left: 0;
  height: var(--header-height);
  width: 100%;
  transition: height .3s;
  z-index: 99000;
  background: #fff;
}

header > div {
  position: relative;
  height: 100%;
}

.header-title {
  position: absolute;
  width: 100%;
  height: 100%;
}

.header-title h1 {
  width: 72px;
  margin: 34px auto 0 auto;
  transition: margin-top .3s, width .3s;
}

.header-title h1 svg {
  display: block;
  width: 100%;
  height: 100%;
}

.header-info {
  display: none;
}

.header-menu {
  position: absolute;
  display: flex;
  top: 32px;
  right: 24px;
  transition: top .3s;
}

.header-instagram {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  fill: currentColor;
}

.header-instagram svg {
  width: 62.5%;
  height: 62.5%;
}

.menu-active {
  overflow: hidden;
}

.menu-trigger {
  position: relative;
  z-index: 99999;
  display: block;
  width: 32px;
  height: 32px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.menu-trigger span {
  position: absolute;
  top: 9px;
  right: 0;
  left: 0;
  display: block;
  width: 87.5%;
  height: 1px;
  margin: auto;
  border-top: 1px solid var(--fg1);
  transition: all .3s;
}

.menu-trigger span:nth-of-type(2) {
  top: auto;
  bottom: 9px;
}

.menu-inner {
  position: fixed;
  top: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  background: #bfc6cb;
  opacity: 0;
  transition: opacity .6s, transform .01s .6s;
  overflow-x: hidden;
  overflow-y: scroll;
}

.menu-active .menu-trigger span:nth-of-type(1) {
  transform: rotate(20deg) translate(3px, 5.8px);
}

.menu-active .menu-trigger span:nth-of-type(2) {
  transform: rotate(-20deg) translate(3px, -5.8px);
}

.menu-active .menu-inner {
  transform: translateX(-100vw);
  opacity: 1;
  transition: transform .01s, opacity .6s .01s;
}

.menu-inner > div {
  position: relative;
  margin: 66px 40px auto 40px;
  padding-bottom: 55px;
}

.menu-inner > div > svg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70px;
  height: 27px;
}

.menu-inner ul {
  font-size: 3rem;
}

.menu-inner ul ul {
  font-size: 2.2rem;
}

.menu-inner ul > li + li {
  margin-top: 36px;
}

.menu-inner ul ul > li {
  margin-top: 12px;
  margin-left: 18px;
}

.small-header {
  height: var(--small-header-height);
}

.small-header .header-title h1 {
  width: 52px;
  margin-top: 10px;
}

.small-header .header-menu {
  top: 4px;
}

main {
  padding-top: var(--header-height);
}

footer {
  position: relative;
  margin-top: 135px;
  margin-bottom: 41px;
  margin: 135px 0 41px 36px;
}

.go2top {
  position: absolute;
  top: -29px;
  right: -26px;
  width: 140px;
  transform: rotate(90deg);
  font-size: 1.6rem;
}

.go2top svg {
  width: 39px;
  margin-right: 28px;
  stroke-width: 2px;
  vertical-align: middle;
}

.footer-title svg {
  width: 88px;
  height: 100%;
}

.footer-menu {
  font-size: 3rem;
  margin-top: 50px;
}

.footer-menu ul {
  font-size: 2.2rem;
}

.footer-menu > li + li {
  margin-top: 16px;
}

.footer-menu > li:last-child {
  margin-top: 50px;
}

.footer-menu ul li {
  margin-top: 10px;
  margin-left: 18px;
}

.footer-instagram {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  margin-left: -6px;
}

.footer-instagram svg {
  width: 62.5%;
  height: 62.5%;
}

.footer-info {
  margin-top: 54px;
  font-size: 1.5rem;
  line-height: 1.8;
}

.sec {
  padding: 50px 23px;
  max-width: 1228px;
  margin: auto;
}

.sec > div {
  padding: 40px 19px;
}

.sec h1 {
  font-size: 3rem;
  text-align: center;
  font-weight: normal;
  margin-bottom: 1em;
}

.btn {
  display: inline-block;
  border: 1px solid var(--fg1);
  font-size: 2rem;
  padding: 8px 40px;
}

.btn span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn svg {
  stroke-width: 2px;
  margin-left: 1em;
  margin-top: 6px;
  width: 45px;
}

.food-menu-item {
  position: relative;
  padding-bottom: 2.4em;
  margin-bottom: 54px;
}
.food-menu-item--mb40 {
  margin-bottom: 10px;
}
.food-menu-item--sp100 {
  width: 100%!important;
}


.food-menu-item img {
  width: 100%;
}

.food-menu-item h2 {
  margin: 1em 0 .8em 0;
  font-size: 1.6rem;
  font-weight: normal;
}

.food-menu-item h2:first-child {
  margin: 0 0 .8em 0;
}

.food-menu-item h2 span {
  display: block;
  font-size: 1rem;
}

.food-menu-item-price {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 1.6rem;
}

.food-menu-item-price span {
  font-size: .9rem;
  font-family: var(--main-font);
}

.pi {
  display: none;
}

.pb {
  display: none;
}

.mb {
  display: block;
}

.scrAnim-01 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}

.scrAnim-01.scrAnim-run {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (min-width: 960px) {
  :root {
    --header-height: 224px;
    --small-header-height: 60px;
  }

  body {
    font-size: 1.6rem;
  }

  header {
    height: var(--header-height);
  }

  .header-title h1 {
    width: 100px;
    margin: 86px auto 0 auto;
  }

  .header-info {
    position: absolute;
    top: 0;
    bottom: 16px;
    margin: auto;
    left: 44px;
    display: flex;
    align-items: center;
    z-index: 1;
    font-size: 1.6rem;
    transition: bottom .3s, transform .3s;
  }

  .header-menu {
    top: 82px;
    right: 40px;
  }

  .header-instagram {
    justify-content: flex-end;
    width: auto;
    height: 44px;
    font-size: 1.8rem;
    margin-right: 30px;
    border-radius: 16px;
    transition: background .3s;
    padding: 0 10px;
  }

  .header-instagram:focus, .header-instagram:hover, .header-instagram:active {
    background: #2d323111;
  }

  .header-instagram svg {
    width: auto;
    margin-right: 0.5em;
  }

  .menu-trigger {
    cursor: pointer;
    border-radius: 10px;
    width: 44px;
    height: 44px;
    transition: background .3s;
  }

  .menu-trigger span {
    width: 70%;
    top: 15px;
  }

  .menu-trigger span:nth-of-type(2) {
    top: auto;
    bottom: 15px;
  }

  .menu-trigger:hover {
    background: #2d323111;
  }

  .menu-active .menu-trigger:hover {
    background: #fff4;
  }

  .menu-inner {
    display: flex;
    align-items: center;
    z-index: 99900;
  }

  .menu-inner > div {
    width: 84%;
    margin: auto auto auto 8%;
    padding-bottom: 75px;
  }

  .menu-inner > div > svg {
    width: 120px;
    height: 46px;
  }

  .menu-inner ul {
    font-size: 4.6rem;
  }

  .menu-inner ul ul {
    font-size: 3.4rem;
  }

  .menu-inner ul > li + li {
    margin-top: 14px;
  }

  .menu-inner ul ul > li {
    margin-top: 6px;
    margin-left: 28px;
  }

  .menu-inner a {
    position: relative;
    display: inline-block;
  }

  .menu-inner a span {
    display: flex;
    align-items: center;
  }

  .menu-inner a:link .menu-item::before, .menu-inner a:visited .menu-item::before {
    display: block;
    margin-right: 10px;
    content: "●";
    transform: scale(0);
    transition: all .3s;
    font-size: 2.8rem;
  }

  .menu-inner a:focus .menu-item::before, .menu-inner a:hover .menu-item::before, .menu-inner a:active .menu-item::before {
    content: "●";
    transform: scale(.4);
  }

  .menu-inner .header-instagram, .menu-inner .header-instagram {
    display: flex;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-left: 20px;
  }

  .small-header {
    height: var(--small-header-height);
  }

  .small-header .header-title h1 {
    width: 81px;
    margin-top: 12px;
  }

  .small-header .header-info {
    bottom: 0;
    transform: scale(.9);
  }

  .small-header .header-menu {
    top: 7px;
  }

  .menu-inner .header-instagram svg {
    margin-right: 0;
  }

  footer {
    margin: 0;
    padding: 80px 44px 85px 44px;
  }

  .footer-info {
    display: none;
  }

  .footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-title svg {
    display: block;
  }

  .footer-menu {
    display: flex;
    margin-top: 0;
    align-items: center;
    font-size: 2.4rem;
  }

  .footer-menu > li + li, .footer-menu > li:last-child {
    margin-top: 0;
  }

  .footer-menu li {
    margin-left: 60px;
  }

  .footer-menu ul {
    display: none;
  }

  .footer-menu a:link .menu-item::before, .footer-menu a:visited .menu-item::before {
    display: inline-block;
    margin-right: 10px;
    content: "●";
    transform: scale(0);
    transition: all .3s;
    font-size: 2.4rem;
  }

  .footer-menu a:focus .menu-item::before, .footer-menu a:hover .menu-item::before, .footer-menu a:active .menu-item::before {
    content: "●";
    transform: scale(.4);
  }

  .footer-menu li:last-child a {
    border-radius: 16px;
    padding: 10px 0px;
    transition: background .3s;
  }

  .footer-menu li:last-child a:focus, .footer-menu li:last-child a:hover, .footer-menu li:last-child a:active {
    background: #2d323111;
  }

  .go2top {
    top: -140px;
    right: -20px;
  }

  .sec {
    padding: 120px 124px;
  }

  .sec > div {
    padding: 66px 74px 80px 74px;
  }

  .sec h1 {
    font-size: 5.2rem;
  }

  .btn {
    transition: background .3s, color .3s;
  }

  .btn:focus, .btn:hover, .btn:active {
    background: var(--fg1);
    color: #fff;
  }

  .food-menu-item {
    margin-bottom: 100px;
  }
  .food-menu-item--mb40 {
    margin-bottom: 40px;
  }
  .food-menu-item--sp100 {
    width: 50%!important;
  }
  .food-menu-item--width40 {
    width: 40%!important;
  }

  .food-menu-item h2 {
    margin-top: 1.5em;
    font-size: 2.2rem;
  }

  .food-menu-item h2 span {
    font-size: 1.3rem;
  }

  .food-menu-item-price {
    font-size: 2rem;
  }

  .food-menu-item-price span {
    font-size: 1.2rem;
  }

  .pi {
    display: inline;
  }

  .pb {
    display: block;
  }

  .mb {
    display: none;
  }
}
