@font-face {
  font-family: "Shippori Mincho";
  src: url("fonts/shippori-mincho-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --kuro: #080707;
  --sumi: #0f0e0d;
  --charcoal: #1b1a18;
  --ash: #3a3733;
  --washi: #f3ede2;
  --washi-dim: #c4bcae;
  --shu: #b8321f;
  --shu-deep: #97281a;
  --shu-light: #ec6a4f;
  --hinoki: #d2b48c;
  --display: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Noto Serif JP", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
  --gut: clamp(1.25rem, 5vw, 3.5rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--sumi);
  color: var(--washi);
  font-family: var(--sans);
  font-size: 1.125rem;
  line-height: 1.7;
  overflow-wrap: break-word;
}

img { display: block; max-width: 100%; height: auto; }

h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 400; line-height: 1.2; letter-spacing: .01em; }
p { margin: 0 0 1em; }
ul, ol, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
figure { margin: 0; }
blockquote { margin: 0; }

a { color: inherit; text-decoration-color: var(--shu-light); text-underline-offset: .22em; text-decoration-thickness: 1px; }
a:hover { color: var(--shu-light); }
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--washi);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--shu);
}

.wrap { width: 100%; max-width: 78rem; margin: 0 auto; padding: 0 var(--gut); }

.demobar {
  background: var(--kuro);
  color: var(--washi-dim);
  font-size: .875rem;
  line-height: 1.5;
  text-align: center;
  padding: .55rem var(--gut);
  border-bottom: 1px solid #221f1c;
}
.demobar a { color: var(--washi); }

.skip { position: absolute; left: -9999px; top: 0; z-index: 50; background: var(--washi); color: var(--sumi); padding: .75rem 1rem; font-weight: 600; }
.skip:focus { left: 1rem; top: 1rem; }

.page { position: relative; }

.dot { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--shu-light); vertical-align: middle; margin: 0 .7em; position: relative; top: -.1em; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .7rem 1.5rem;
  font-family: var(--sans);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s;
}
.btn--shu { background: var(--shu); color: var(--washi); border-color: var(--shu); }
.btn--shu:hover { background: var(--shu-deep); border-color: var(--shu-deep); color: var(--washi); }
.btn--line { background: rgba(8, 7, 7, .35); color: var(--washi); border-color: rgba(243, 237, 226, .7); }
.btn--line:hover { background: var(--washi); color: var(--sumi); }

.more {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  min-height: 44px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--washi);
}
.more::after { content: ""; width: 2rem; height: 1px; background: var(--shu-light); transition: width .2s; }
.more:hover::after { width: 3rem; }

.acts { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem 1.5rem; margin-top: 2rem; }

.label {
  font-family: var(--sans);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--washi-dim);
  line-height: 1.4;
  margin: 0 0 1rem;
  max-width: none;
}

.num { display: flex; align-items: center; gap: 1rem; margin: 0 0 1.4rem; }
.num__n { font-family: var(--display); font-size: 2.6rem; line-height: 1; color: var(--shu-light); letter-spacing: .02em; }
.num__t { display: flex; align-items: center; gap: 1rem; font-size: .8125rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--washi-dim); }
.num__t::before { content: ""; width: 2.5rem; height: 1px; background: var(--shu-light); }

h2 { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3rem); margin-bottom: 1.4rem; max-width: 24ch; }

.mast {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem var(--gut);
}
.mark { display: inline-flex; align-items: center; gap: .85rem; text-decoration: none; color: var(--washi); margin-right: auto; min-height: 44px; }
.mark:hover { color: var(--washi); }
.mark__seal { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 3.25rem; background: var(--shu); color: var(--washi); flex: none; }
.mark__seal svg { width: 1rem; height: 2rem; }
.mark__word { font-family: var(--display); font-size: 1.6rem; line-height: 1; letter-spacing: .06em; }
.mark__sub { display: block; font-family: var(--sans); font-size: .6875rem; font-weight: 600; letter-spacing: .42em; text-transform: uppercase; color: var(--washi-dim); margin-top: .45rem; }

.mast__nav { display: none; }
.mast__nav ul { display: flex; gap: .25rem; }
.mast__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 .9rem;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--washi);
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
.mast__nav a:hover { color: var(--shu-light); }
.mast__nav a[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--shu-light); text-underline-offset: .6em; text-decoration-thickness: 2px; }

.mast__cta { padding: .6rem 1rem; min-height: 44px; font-size: .75rem; letter-spacing: .14em; }
.mast__cta-more { display: none; }

.drawer { position: static; }
.drawer summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
  padding: 0 .6rem;
  cursor: pointer;
  color: var(--washi);
  border: 1px solid rgba(243, 237, 226, .45);
  background: rgba(8, 7, 7, .35);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.drawer summary::-webkit-details-marker { display: none; }
.drawer summary span { display: none; }
.drawer[open] summary { background: var(--washi); color: var(--sumi); }
.drawer__panel {
  position: absolute;
  top: 100%;
  left: var(--gut);
  right: var(--gut);
  background: var(--sumi);
  border-top: 2px solid var(--shu);
  padding: .5rem 1.25rem 1.25rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .5);
}
.drawer__panel li + li { border-top: 1px solid var(--ash); }
.drawer__panel a { display: flex; align-items: center; min-height: 52px; font-family: var(--display); font-size: 1.35rem; text-decoration: none; color: var(--washi); }
.drawer__panel a[aria-current="page"] { color: var(--shu-light); }
.drawer__call { gap: .7rem; margin-top: .75rem; border-top: 1px solid var(--ash); font-family: var(--sans) !important; font-size: 1.05rem !important; }
.drawer__call svg { color: var(--shu-light); }

@media (min-width: 400px) {
  .drawer summary span { display: inline; }
  .drawer summary { padding: 0 .9rem; }
}
@media (min-width: 560px) {
  .mast__cta-more { display: inline; }
  .mast__cta { padding: .6rem 1.2rem; }
}
@media (min-width: 1040px) {
  .mast { gap: 1.5rem; padding-top: 1.6rem; }
  .mast__nav { display: block; }
  .drawer { display: none; }
  .mark__word { font-size: 1.85rem; }
  .mast__cta { font-size: .8125rem; padding: .7rem 1.4rem; }
}

.hero {
  position: relative;
  background: var(--kuro);
  overflow: hidden;
}
.hero__photo { position: absolute; top: 0; left: 0; width: 100%; }
.hero__photo img { width: 100%; height: auto; }
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150vw;
  background:
    linear-gradient(to top, rgba(8, 7, 7, 1) 0%, rgba(8, 7, 7, .55) 30%, rgba(8, 7, 7, 0) 50%),
    linear-gradient(to bottom, rgba(8, 7, 7, .7) 0%, rgba(8, 7, 7, 0) 18%);
  pointer-events: none;
}
@media (min-width: 700px) {
  .hero {
    min-height: 640px;
    height: 100vh;
    height: 100svh;
    max-height: min(980px, calc(60vw + 330px));
    display: flex;
    align-items: flex-end;
  }
  .hero__photo { inset: 0; height: 100%; }
  .hero__photo img { height: 100%; object-fit: cover; object-position: 50% 70%; }
  .hero::after {
    height: auto;
    bottom: 0;
    background:
      linear-gradient(to top, rgba(8, 7, 7, .92) 0%, rgba(8, 7, 7, .62) 34%, rgba(8, 7, 7, 0) 62%),
      linear-gradient(to bottom, rgba(8, 7, 7, .7) 0%, rgba(8, 7, 7, 0) 22%);
  }
}
.hero__body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 78rem;
  margin: 0 auto;
  padding: calc(150vw * .55) var(--gut) 3.5rem;
}
@media (min-width: 700px) {
  .hero__body { padding-top: 9rem; padding-bottom: clamp(2.5rem, 8vh, 5.5rem); }
}
.hero__kicker { font-size: .8125rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--washi); margin-bottom: 1.1rem; }
.hero h1 { font-size: clamp(2.1rem, 1.3rem + 2.5vw, 3.6rem); line-height: 1.16; max-width: 26ch; margin-bottom: 1.6rem; }
@media (min-width: 700px) { .hero h1 .ln { display: block; } }
.hero__vert {
  position: absolute;
  z-index: 2;
  right: var(--gut);
  top: 50%;
  transform: translateY(-40%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  color: var(--washi);
}
.hero__vert::before { content: ""; width: 1px; height: 4.5rem; background: var(--shu-light); }
.hero__kanji { width: 1.6rem; height: auto; }

.tags { display: flex; flex-wrap: wrap; gap: .6rem; }
.tags li {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border: 1px solid rgba(243, 237, 226, .5);
  color: var(--washi);
  background: rgba(8, 7, 7, .45);
}
.tags li:first-child, .tags li:nth-child(2) { border-color: var(--shu-light); }

@media (min-width: 700px) {
  .hero__vert { display: flex; }
  .hero__body { padding-right: calc(var(--gut) + 3.5rem); }
}

.info { background: var(--charcoal); border-top: 1px solid #2a2724; border-bottom: 1px solid #2a2724; }
.info__grid { max-width: 78rem; margin: 0 auto; display: grid; grid-template-columns: 1fr; }
.info__cell { padding: 1.8rem var(--gut); border-top: 1px solid var(--ash); }
.info__cell:first-child { border-top: 0; }
.info__cell p { font-size: 1.0625rem; color: var(--washi-dim); margin: 0 0 .5rem; max-width: 34ch; }
.info__cell p.info__big { font-family: var(--display); font-size: 1.6rem; line-height: 1.25; color: var(--washi); margin-bottom: .5rem; }
.info__big a { text-decoration: none; }
.info__cell .label { margin-bottom: .7rem; }

.hrs li { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .1rem 1rem; padding: .45rem 0; border-bottom: 1px solid var(--ash); font-size: 1.0625rem; }
.hrs li:last-child { border-bottom: 0; }
.hrs__day { color: var(--washi); }
.hrs__time { color: var(--washi-dim); font-variant-numeric: tabular-nums; }
.hrs li.is-today .hrs__day, .hrs li.is-today .hrs__time { color: var(--shu-light); font-weight: 600; }
.today { display: inline-block; margin-left: .6rem; padding: 0 .45rem; font-size: .6875rem; letter-spacing: .16em; text-transform: uppercase; background: var(--shu); color: var(--washi); vertical-align: .15em; line-height: 1.6; }

@media (min-width: 700px) {
  .info__grid { grid-template-columns: 1fr 1fr; }
  .info__cell { border-top: 1px solid var(--ash); }
  .info__cell:nth-child(-n+2) { border-top: 0; }
  .info__cell:nth-child(even) { border-left: 1px solid var(--ash); }
}
@media (min-width: 1100px) {
  .info__grid { grid-template-columns: 1.35fr 1fr 1fr 1fr; padding: 0 calc(var(--gut) - 1.8rem); }
  .info__cell { border-top: 0; border-left: 1px solid var(--ash); padding: 2.4rem 1.8rem; }
  .info__cell:first-child { border-left: 0; }
}

.counter { padding: clamp(4.5rem, 10vw, 8.5rem) 0; }
.counter__grid { display: grid; gap: 3.5rem; align-items: center; }
.counter__text > p { max-width: 36rem; }
.note { color: var(--washi-dim); font-size: 1.0625rem; }

.facts { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ash); margin: 2rem 0 1.5rem; max-width: 36rem; }
.facts div { padding: 1rem 0; border-bottom: 1px solid var(--ash); }
.facts div:nth-child(even) { padding-left: 1.25rem; border-left: 1px solid var(--ash); }
.facts dt { font-size: .75rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--washi-dim); }
.facts dd { font-family: var(--display); font-size: 1.85rem; line-height: 1.3; color: var(--washi); }
.amp { color: var(--shu-light); margin: 0 .3em; font-size: .8em; }

.round {
  position: relative;
  width: min(100%, 30rem);
  margin: 0 auto;
  padding: 1.1rem;
  border-radius: 50%;
  border: 1px solid var(--shu-light);
}
.round img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; }
.round::after {
  content: "";
  position: absolute;
  inset: -1.1rem;
  border-radius: 50%;
  border: 1px solid rgba(236, 106, 79, .35);
}

@media (min-width: 900px) {
  .counter__grid { grid-template-columns: 1.05fr .95fr; gap: 5rem; }
  .round { margin-right: 0; }
}

.wave {
  background-color: var(--charcoal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='40' viewBox='0 0 80 40'%3E%3Cdefs%3E%3Cg id='w' fill='%231b1a18' stroke='%23292623' stroke-width='1.2'%3E%3Ccircle r='38'/%3E%3Ccircle r='30'/%3E%3Ccircle r='22'/%3E%3Ccircle r='14'/%3E%3Ccircle r='6'/%3E%3C/g%3E%3C/defs%3E%3Cuse href='%23w' x='0' y='-20'/%3E%3Cuse href='%23w' x='80' y='-20'/%3E%3Cuse href='%23w' x='40' y='0'/%3E%3Cuse href='%23w' x='0' y='20'/%3E%3Cuse href='%23w' x='80' y='20'/%3E%3Cuse href='%23w' x='40' y='40'/%3E%3Cuse href='%23w' x='0' y='60'/%3E%3Cuse href='%23w' x='80' y='60'/%3E%3C/svg%3E");
  background-size: 80px 40px;
}

.board { padding: clamp(4.5rem, 10vw, 8rem) 0; border-top: 1px solid #2a2724; }
.board__grid { display: grid; gap: 3rem; }
.board__head > p { max-width: 34rem; }
.stamp {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--hinoki);
  margin: .5rem 0 1.8rem !important;
}
.stamp::before { content: ""; width: .55rem; height: .55rem; background: var(--shu-light); transform: rotate(45deg); }

.picks { background: var(--sumi); border: 1px solid var(--ash); padding: .75rem clamp(1.1rem, 3vw, 2.25rem); box-shadow: inset 0 0 0 5px var(--sumi), inset 0 0 0 6px #2a2724; }
.picks li { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 1.05rem 0; border-bottom: 1px solid var(--ash); }
.picks li:last-child { border-bottom: 0; }
.picks__name { font-family: var(--display); font-size: 1.5rem; line-height: 1.25; }
.picks__jp { display: block; font-family: var(--sans); font-size: .9375rem; color: var(--washi-dim); margin-top: .2rem; letter-spacing: .01em; }
.picks__jp span { color: var(--hinoki); margin-right: .5rem; }
.picks__price { font-family: var(--display); font-size: 1.5rem; color: var(--washi); font-variant-numeric: tabular-nums; }

@media (min-width: 900px) {
  .board__grid { grid-template-columns: .9fr 1.1fr; gap: 5rem; align-items: center; }
}

.strip { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: var(--kuro); }
.strip li:first-child { grid-column: 1 / -1; }
.strip a { position: relative; display: block; text-decoration: none; color: var(--washi); overflow: hidden; }
.strip img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .6s ease; }
.strip li:first-child img { aspect-ratio: 4 / 3; }
.strip a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8, 7, 7, .92) 0%, rgba(8, 7, 7, .55) 30%, rgba(8, 7, 7, 0) 55%); }
.strip__cap { position: absolute; z-index: 1; left: 0; right: 0; bottom: 0; padding: 1rem 1rem 1.1rem; font-family: var(--display); font-size: 1.35rem; line-height: 1.2; }
@media (max-width: 559px) { .strip li + li .strip__k { display: none; } .strip li + li .strip__cap { font-size: 1.2rem; } }
.strip__k { display: block; font-family: var(--sans); font-size: .6875rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--washi); margin-bottom: .35rem; }
.strip a:hover img { transform: scale(1.03); }
.strip a:hover .strip__cap { color: var(--washi); }
.strip a:focus-visible { outline-offset: -6px; box-shadow: none; }

@media (min-width: 700px) {
  .strip { grid-template-columns: repeat(3, 1fr); }
  .strip li:first-child { grid-column: auto; }
  .strip li:first-child img { aspect-ratio: 4 / 5; }
  .strip__cap { padding: 1.5rem 1.75rem 1.75rem; font-size: 1.9rem; }
  .strip__k { font-size: .8125rem; }
}

.chef { padding: clamp(5rem, 11vw, 9rem) 0; }
.chef__grid { display: grid; gap: 4rem; align-items: center; }
.offset { position: relative; width: min(calc(100% - 1.5rem), 30rem); margin: 1.5rem 0 0 1.5rem; }
.offset::before { content: ""; position: absolute; top: -1.5rem; left: -1.5rem; width: 72%; height: 78%; background: var(--shu); }
.offset img { position: relative; width: 100%; }
.pull { margin: 0 0 1.75rem; }
.pull p { font-family: var(--display); font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.5rem); line-height: 1.35; color: var(--washi); margin-bottom: 1rem; max-width: 24ch; }
.pull footer { font-size: .8125rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--hinoki); }
.chef__text > p { max-width: 36rem; color: var(--washi); }

@media (min-width: 900px) {
  .chef__grid { grid-template-columns: .85fr 1.15fr; gap: 6rem; }
  .offset { width: min(calc(100% - 2.5rem), 30rem); margin: 2.5rem 0 0 2.5rem; }
  .offset::before { top: -2.5rem; left: -2.5rem; }
}

.take { background: var(--charcoal); padding: clamp(4.5rem, 10vw, 8rem) 0; border-top: 1px solid #2a2724; }
.take__grid { display: grid; gap: 3rem; }
.take__text > p { max-width: 34rem; }

.rows li { display: flex; align-items: baseline; gap: .75rem; padding: .95rem 0; border-bottom: 1px solid var(--ash); }
.rows li:first-child { border-top: 1px solid var(--ash); }
.rows__name { font-family: var(--display); font-size: 1.4rem; line-height: 1.3; }
.rows__lead { flex: 1; border-bottom: 1px dotted #6a645b; transform: translateY(-.3rem); min-width: 1rem; }
.rows__price { font-family: var(--display); font-size: 1.4rem; font-variant-numeric: tabular-nums; }

@media (min-width: 900px) {
  .take__grid { grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
}

.foot { background: var(--kuro); text-align: center; padding: 4.5rem var(--gut) 2.5rem; border-top: 1px solid #221f1c; }
.foot__seal { display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 3rem; background: var(--shu); color: var(--washi); margin-bottom: 1.25rem; }
.foot__seal svg { width: .9rem; height: 1.8rem; }
.foot__name { font-family: var(--display); font-size: 1.75rem; letter-spacing: .06em; margin-bottom: 1rem; }
.foot__line { color: var(--washi-dim); font-size: 1.0625rem; margin: 0 auto .35rem; max-width: 60rem; }
.foot__reach { display: flex; flex-wrap: wrap; justify-content: center; gap: 0 1.75rem; margin: 1rem 0 1.5rem; }
.foot__reach a { display: inline-flex; align-items: center; min-height: 44px; }
.foot__nav ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 0 .25rem; border-top: 1px solid #262320; border-bottom: 1px solid #262320; max-width: 46rem; margin: 0 auto; padding: .4rem 0; }
.foot__nav a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 .85rem; font-size: .8125rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; text-decoration: none; color: var(--washi); }
.foot__nav a[aria-current="page"] { color: var(--shu-light); }
.foot__note { margin: 1.75rem 0 0; font-size: .875rem; color: var(--washi-dim); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

.vh { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.lede { font-size: 1.25rem; line-height: 1.6; color: var(--washi); max-width: 36rem; }

.head {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 560px;
  background: var(--kuro);
  overflow: hidden;
}
.head__photo, .head__photo img { position: absolute; inset: 0; width: 100%; height: 100%; }
.head__photo img { object-fit: cover; }
.head::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8, 7, 7, .95) 0%, rgba(8, 7, 7, .8) 45%, rgba(8, 7, 7, .2) 80%),
    linear-gradient(to bottom, rgba(8, 7, 7, .75) 0%, rgba(8, 7, 7, 0) 30%),
    linear-gradient(to left, rgba(8, 7, 7, .7) 0%, rgba(8, 7, 7, 0) 14rem);
}
.head__body { position: relative; z-index: 2; width: 100%; max-width: 78rem; margin: 0 auto; padding: 8rem var(--gut) 3rem; }
.head__kicker { font-size: .8125rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--washi); margin-bottom: 1rem; }
.head h1 { font-size: clamp(2.3rem, 1.4rem + 3vw, 4.1rem); line-height: 1.12; max-width: 20ch; }
.head__vert {
  position: absolute;
  z-index: 2;
  right: var(--gut);
  top: 7.5rem;
  margin: 0;
  display: none;
  writing-mode: vertical-rl;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--washi);
  padding-top: 5.5rem;
}
.head__vert::before { content: ""; position: absolute; top: 0; left: 50%; width: 1px; height: 4.5rem; background: var(--shu-light); }
@media (min-width: 700px) {
  .head { min-height: 0; height: clamp(500px, 68vh, 660px); }
  .head__body { padding-bottom: 4rem; padding-right: calc(var(--gut) + 3rem); }
  .head__vert { display: block; }
}

.mtop { padding: clamp(3rem, 7vw, 5rem) 0 1rem; }
.mtop__grid { display: grid; gap: 2.5rem; }
.mtop .stamp { margin-top: 0 !important; margin-bottom: 1.25rem !important; }
@media (min-width: 900px) { .mtop__grid { grid-template-columns: 1.3fr 1fr; gap: 5rem; } }

.key { display: flex; flex-wrap: wrap; gap: .6rem 1.75rem; margin-bottom: 1.25rem; }
.key li { display: flex; align-items: center; gap: .6rem; font-size: 1.0625rem; }

.mk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  vertical-align: .2em;
  border: 1px solid currentColor;
}
.mk + .mk { margin-left: .25rem; }
.mk--r { color: var(--shu-light); }
.mk--s { color: var(--hinoki); }
.mk--v { color: #9fc28e; }

.jump { margin-top: 2.5rem; }
.jump ul { display: flex; flex-wrap: wrap; gap: .6rem; padding-top: 1.5rem; border-top: 1px solid var(--ash); }
.jump a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 1rem; border: 1px solid var(--ash); font-size: .8125rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; }
.jump a:hover { border-color: var(--shu-light); color: var(--washi); }

.sheetwrap { padding: 2.5rem var(--gut) clamp(4rem, 9vw, 7rem); }
.sheet {
  max-width: 64rem;
  margin: 0 auto;
  background: var(--charcoal);
  border: 1px solid var(--ash);
  outline: 1px solid #2a2724;
  outline-offset: 6px;
  padding: clamp(1.75rem, 5vw, 4.5rem) clamp(1.1rem, 5vw, 4.5rem);
}
.sheet__sec { padding-bottom: clamp(3rem, 6vw, 4.5rem); margin-bottom: clamp(3rem, 6vw, 4.5rem); border-bottom: 1px solid var(--ash); scroll-margin-top: 1.5rem; }
.sheet__sec h2 { margin-bottom: 1rem; }
.sheet__intro { color: var(--washi-dim); max-width: 38rem; margin-bottom: 2rem; }
.sheet__foot { color: var(--washi-dim); font-size: 1.0625rem; margin: 1.25rem 0 0; }

.fish { width: 100%; max-width: 46rem; border-collapse: collapse; }
.fish thead th { font-size: .75rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--washi-dim); text-align: left; padding: 0 0 .75rem; border-bottom: 1px solid var(--washi-dim); }
.fish th.p, .fish td.p { text-align: right; width: 5.5rem; padding-left: .75rem; }
.fish tbody th { text-align: left; font-weight: 400; padding: 1rem 0; }
.fish tbody th, .fish tbody td { border-bottom: 1px solid var(--ash); vertical-align: top; }
.fish td.p { font-family: var(--display); font-size: 1.4rem; padding-top: 1rem; font-variant-numeric: tabular-nums; }
.fish__en { display: block; font-family: var(--display); font-size: 1.45rem; line-height: 1.3; }
.fish__jp { display: block; font-size: .9375rem; color: var(--washi-dim); margin-top: .2rem; }
.fish__jp span { color: var(--hinoki); margin-right: .6rem; }

.dish { display: grid; gap: 0 4rem; }
@media (min-width: 900px) { .dish { grid-template-columns: 1fr 1fr; } .dish--one { grid-template-columns: 1fr; } }
.dish li { padding: 1.1rem 0; border-bottom: 1px solid var(--ash); }
.dish__top { display: flex; align-items: baseline; gap: .6rem; margin: 0; }
.dish__name { font-family: var(--display); font-size: 1.35rem; line-height: 1.3; }
.dish__lead { flex: 1; min-width: .75rem; border-bottom: 1px dotted #6a645b; transform: translateY(-.3rem); }
.dish__price { font-family: var(--display); font-size: 1.3rem; white-space: nowrap; font-variant-numeric: tabular-nums; }
.dish__desc { margin: .25rem 0 0; font-size: 1.0625rem; color: var(--washi-dim); line-height: 1.55; }

.drinks { display: grid; gap: 2.5rem 4rem; }
.drinks__h { font-family: var(--sans); font-size: .8125rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--hinoki); padding-bottom: .5rem; border-bottom: 1px solid var(--washi-dim); }
.drinks .dish--one + .drinks__h { margin-top: 2.5rem; }
@media (min-width: 900px) { .drinks { grid-template-columns: 1fr 1fr; } }

.advisory { margin: 0; font-size: 1.0625rem; color: var(--washi-dim); border-left: 2px solid var(--shu); padding: .25rem 0 .25rem 1.25rem; max-width: 46rem; }
.advisory strong { color: var(--washi); }

.cta { background: var(--charcoal); border-top: 1px solid #2a2724; padding: clamp(4rem, 8vw, 6rem) 0; }
.cta__in { text-align: center; }
.cta h2 { margin: 0 auto 1rem; }
.cta p { color: var(--washi-dim); max-width: 34rem; margin: 0 auto; }
.cta .acts { justify-content: center; }

.otop { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.otop__grid { display: grid; gap: 2.5rem; align-items: center; }
.otop .acts { margin-top: 1.5rem; }
.facts--wide { margin: 0; }
@media (min-width: 900px) { .otop__grid { grid-template-columns: 1.1fr 1fr; gap: 5rem; } }

.evening { background: var(--charcoal); border-top: 1px solid #2a2724; border-bottom: 1px solid #2a2724; padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.evening__grid { display: grid; gap: 3rem; }
.evening__intro { color: var(--washi-dim); max-width: 38rem; }
.evening__count { display: flex; align-items: baseline; gap: .75rem; margin: 2rem 0 0; font-size: .8125rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--washi-dim); }
.evening__count span { font-family: var(--display); font-size: 4.5rem; line-height: 1; letter-spacing: 0; color: var(--shu-light); }
@media (min-width: 1000px) { .evening__grid { grid-template-columns: .85fr 1.15fr; gap: 5rem; } .evening__head { position: sticky; top: 2rem; align-self: start; } }
.line { position: relative; max-width: 50rem; }
.line::before { content: ""; position: absolute; top: .6rem; bottom: .6rem; left: 5px; width: 1px; background: linear-gradient(var(--shu-light), var(--ash)); }
.line li { position: relative; display: grid; gap: .25rem; padding: 0 0 2.5rem 2.5rem; }
.line li:last-child { padding-bottom: 0; }
.line li::before { content: ""; position: absolute; left: 0; top: .55rem; width: 11px; height: 11px; border-radius: 50%; background: var(--charcoal); border: 1px solid var(--shu-light); }
.line li:first-child::before { background: var(--shu-light); }
.line__time { margin: 0; font-family: var(--display); font-size: 1.25rem; line-height: 1.4; color: var(--hinoki); font-variant-numeric: tabular-nums; }
.line h3 { font-size: clamp(1.5rem, 1.2rem + 1vw, 1.9rem); margin-bottom: .5rem; }
.line p { margin: 0; color: var(--washi-dim); max-width: 36rem; }
@media (min-width: 700px) {
  .line::before { left: 7.5rem; }
  .line li { grid-template-columns: 6rem 1fr; gap: 3rem; padding-left: 0; }
  .line li::before { left: calc(7.5rem - 5px); }
  .line__time { text-align: right; font-size: 1.6rem; line-height: 1.2; }
}

.policies { padding: clamp(4.5rem, 9vw, 7.5rem) 0; scroll-margin-top: 1rem; }
.policies__grid { display: grid; gap: 3rem; }
@media (min-width: 900px) { .policies__grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }
.rows--desc li { align-items: flex-end; }
.rows__sub { display: block; font-family: var(--sans); font-size: 1rem; color: var(--washi-dim); line-height: 1.5; margin-top: .15rem; }
.rows--desc .rows__lead { transform: translateY(-.55rem); }
.rows--desc .rows__price { padding-bottom: .1rem; }

.rules li { padding: 1.25rem 0; border-bottom: 1px solid var(--ash); }
.rules li:first-child { border-top: 1px solid var(--ash); }
.rules h3, .rules h4 { margin: 0 0 .35rem; font-family: var(--display); font-weight: 400; font-size: 1.4rem; line-height: 1.3; }
.rules p { margin: 0; color: var(--washi-dim); font-size: 1.0625rem; }

.diet { background: var(--charcoal); border-top: 1px solid #2a2724; padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.diet__intro { max-width: 38rem; margin-bottom: 2.5rem; }
.diet__grid { display: grid; gap: 2.5rem 5rem; }
.diet__h { font-family: var(--sans); font-size: .8125rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--washi-dim); margin-bottom: 1rem; }
.diet__h--yes { color: var(--shu-light); }
@media (min-width: 900px) { .diet__grid { grid-template-columns: 1fr 1fr; } }

.reserve { padding: clamp(4.5rem, 9vw, 7.5rem) 0; scroll-margin-top: 1rem; border-top: 1px solid #2a2724; }
.reserve__grid { display: grid; gap: 3.5rem; }
@media (min-width: 960px) { .reserve__grid { grid-template-columns: 1.35fr 1fr; gap: 6rem; align-items: start; } }

.form { display: grid; gap: 1.25rem; margin-top: 2rem; max-width: 40rem; }
.form__two { display: grid; gap: 1.25rem; }
@media (min-width: 560px) { .form__two { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: .45rem; align-content: start; }
.field label { font-size: .8125rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--washi); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: .7rem .9rem;
  font: inherit;
  font-size: 1.0625rem;
  color: var(--washi);
  background: var(--charcoal);
  border: 1px solid #6a645b;
  border-radius: 0;
  color-scheme: dark;
}
.field select { appearance: none; -webkit-appearance: none; padding-right: 2.5rem; background-image: linear-gradient(45deg, transparent 50%, var(--washi-dim) 50%), linear-gradient(-45deg, transparent 50%, var(--washi-dim) 50%); background-position: calc(100% - 1.25rem) 55%, calc(100% - .9rem) 55%; background-size: .35rem .35rem; background-repeat: no-repeat; }
.field textarea { min-height: 7rem; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--washi-dim); }
.field__tip { font-size: .9375rem; color: var(--washi-dim); line-height: 1.45; }
.form .btn { justify-self: start; margin-top: .5rem; }
.demo { margin: 0; font-size: 1rem; color: var(--washi-dim); border-left: 2px solid var(--shu); padding-left: 1rem; }
.demo strong { color: var(--washi); }

.aside { border-top: 2px solid var(--shu); padding-top: 2rem; }
.aside h3 { font-size: 1.6rem; margin-bottom: .75rem; }
.aside h3:not(:first-child) { margin-top: 2.5rem; }
.aside > p { color: var(--washi-dim); font-size: 1.0625rem; }
.aside .rows { margin: 1.5rem 0 1rem; }

.spaced { margin-top: 1.5rem; }
.key--small { margin: 1.5rem 0; }
.key--small li { font-size: 1rem; color: var(--washi-dim); }
.policies .advisory { margin-top: .5rem; }

.steps { background: var(--charcoal); border-top: 1px solid #2a2724; border-bottom: 1px solid #2a2724; padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.steps__list { display: grid; gap: 0 3rem; margin-top: 2.5rem; counter-reset: none; }
.steps__list li { padding: 1.75rem 0; border-top: 1px solid var(--ash); }
.steps__n { display: block; font-family: var(--display); font-size: 2.25rem; line-height: 1; color: var(--shu-light); margin-bottom: 1rem; }
.steps__list h3 { font-size: 1.55rem; margin-bottom: .5rem; }
.steps__list p { margin: 0; color: var(--washi-dim); font-size: 1.0625rem; }
.steps__list a { color: var(--washi); }
@media (min-width: 700px) { .steps__list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .steps__list { grid-template-columns: repeat(4, 1fr); } .steps__list li { border-top: 1px solid var(--shu); } }

.quote { background: var(--charcoal); border-top: 1px solid #2a2724; border-bottom: 1px solid #2a2724; padding: clamp(4.5rem, 9vw, 7rem) 0; }
.quote__in { display: grid; gap: 2rem; }
.pull--big { border-left: 2px solid var(--shu); padding-left: clamp(1.25rem, 3vw, 2.5rem); margin: 0; }
.pull--big p { font-size: clamp(1.8rem, 1.2rem + 2.2vw, 2.9rem); max-width: 28ch; }
.quote .note { max-width: 36rem; margin: 0; }
@media (min-width: 1000px) { .quote__in { grid-template-columns: 1.6fr 1fr; gap: 5rem; align-items: end; } }

.sources { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.sources__grid { display: grid; gap: 2.5rem; }
@media (min-width: 1000px) { .sources__grid { grid-template-columns: .8fr 1.2fr; gap: 5rem; } .sources__grid > div:first-child { position: sticky; top: 2rem; align-self: start; } }
.src li { padding: 1.4rem 0; border-bottom: 1px solid var(--ash); }
.src li:first-child { border-top: 1px solid var(--ash); }
.src__top { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .25rem 1rem; margin: 0 0 .4rem; }
.src__name { font-family: var(--display); font-size: 1.5rem; line-height: 1.3; }
.src__days { font-size: .8125rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--hinoki); }
.src__desc { margin: 0; color: var(--washi-dim); font-size: 1.0625rem; max-width: 40rem; }

.hours { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.hours__grid { display: grid; gap: 3.5rem; }
@media (min-width: 960px) { .hours__grid { grid-template-columns: 1.2fr 1fr; gap: 6rem; } }
.hrs--big { margin: 1rem 0 2rem; border-top: 1px solid var(--ash); }
.hrs--big li { padding: 1rem 0; font-size: 1.125rem; border-bottom: 1px solid var(--ash); }
.hrs--big li:last-child { border-bottom: 1px solid var(--ash); }
.hrs--big .hrs__day { font-family: var(--display); font-size: 1.35rem; }
.hrs--big .hrs__time { text-align: right; }

.reach { border-top: 2px solid var(--shu); padding-top: 2rem; align-self: start; }
.reach__big { font-family: var(--display); font-size: clamp(1.9rem, 1.4rem + 1.5vw, 2.5rem); line-height: 1.2; margin-bottom: .75rem; }
.reach__list { margin: 1.5rem 0 0; }
.reach__list li { padding: 0; border-bottom: 1px solid var(--ash); }
.reach__list li:first-child { border-top: 1px solid var(--ash); }
.reach__link { display: block; width: 100%; padding: 1rem 0; text-decoration: none; }
.reach__link .rows__name { font-size: 1.5rem; }
.reach__link:hover .rows__name { color: var(--shu-light); }
.reach .acts { margin-top: 1.75rem; }
.reserve--tint { background: var(--charcoal); }
@media (max-width: 399px) {
  .mast { gap: .6rem; }
  .mark { gap: .6rem; }
  .mark__seal { width: 2.1rem; height: 2.75rem; }
  .mark__seal svg { width: .85rem; height: 1.7rem; }
  .mark__word { font-size: 1.35rem; }
  .mark__sub { letter-spacing: .3em; }
  .mast__cta { padding: .5rem .75rem; letter-spacing: .08em; }
}
@media (max-width: 359px) {
  .mast__cta { display: none; }
}
.nw { white-space: nowrap; }
@media (max-width: 559px) {
  .foot__line .dot { display: block; width: 0; height: .25rem; margin: 0; background: none; }
  .hrs--big li { flex-direction: column; }
  .hrs--big .hrs__time { text-align: left; }
  .sheetwrap { padding-left: .6rem; padding-right: .6rem; }
  .sheet { padding-left: 1.1rem; padding-right: 1.1rem; }
  .fish th.p, .fish td.p { width: 3.4rem; padding-left: .4rem; }
  .fish td.p { font-size: 1.2rem; }
  .fish__en { font-size: 1.3rem; }
}
