:root {
  --ink: #111;
  --paper: #fff;
  --muted: #737373;
  --charcoal: #080706;
  --accent: #a96a22;
  --serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --sans: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: .08em;
  -webkit-font-smoothing: antialiased;
}

body.is-loading,
body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

button {
  color: inherit;
  font: inherit;
}

.mobile-only {
  display: none;
}

.narrow-only {
  display: none;
}

.nowrap {
  white-space: nowrap;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 9000;
  opacity: .04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--charcoal);
  transition: opacity 1s var(--ease), visibility 1s;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__mark {
  display: flex;
  align-items: center;
  gap: 16px;
  writing-mode: vertical-rl;
  letter-spacing: .16em;
  opacity: 0;
  transform: translateY(18px);
  animation: loader-mark 1s .15s var(--ease) forwards;
}

.loader__mark span {
  font-size: 13px;
}

.loader__mark strong {
  font-size: 34px;
  font-weight: 500;
}

.loader__line {
  position: absolute;
  bottom: 13vh;
  left: 50%;
  width: min(280px, 58vw);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .25);
  transform: translateX(-50%);
}

.loader__line i {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  animation: loader-line 2.1s .2s var(--ease) forwards;
}

.loader__count {
  position: absolute;
  right: 4vw;
  bottom: 4vh;
  font-family: var(--sans);
  font-size: 11px;
}

@keyframes loader-mark {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loader-line {
  to {
    transform: scaleX(1);
  }
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.hero__slides,
.hero__slide,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__slide {
  opacity: 0;
  background-image: var(--image);
  background-position: center;
  background-size: cover;
  transform: scale(1.08);
  transition: opacity 1.6s ease, transform 8s linear;
}

.hero__slide--exterior {
  background-position: center 43%;
}

.hero__slide--beef {
  background-position: center 48%;
}

.hero__slide--meal {
  background-position: center 54%;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .58), transparent 48%, rgba(0, 0, 0, .24)),
    linear-gradient(0deg, rgba(0, 0, 0, .38), transparent 58%);
}

.hero__center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-shadow: 0 2px 28px rgba(0, 0, 0, .75);
  transform: translate(-50%, -48%);
}

.hero__center p {
  margin: 0;
  font-size: clamp(17px, 1.6vw, 24px);
  letter-spacing: .22em;
  writing-mode: vertical-rl;
}

.hero__center h1 {
  margin: 0;
  font-size: clamp(64px, 8vw, 118px);
  font-weight: 500;
  letter-spacing: .18em;
  text-indent: .18em;
}

.site-mark {
  display: flex;
  align-items: center;
  gap: 8px;
  writing-mode: vertical-rl;
  letter-spacing: .1em;
}

.site-mark span {
  font-size: 12px;
}

.site-mark strong {
  font-size: 27px;
  font-weight: 500;
}

.site-mark--hero {
  position: absolute;
  top: 55px;
  left: 52px;
  z-index: 3;
}

.site-mark--fixed {
  position: sticky;
  top: 48px;
  left: 45px;
  z-index: 80;
  float: left;
  height: 126px;
  margin-top: 42px;
  color: #111;
  mix-blend-mode: multiply;
}

.scroll-cue {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 110px;
  writing-mode: vertical-rl;
  font-family: var(--sans);
  font-size: 10px;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 66px;
  overflow: hidden;
  background: rgba(255, 255, 255, .4);
}

.scroll-cue i::after {
  display: block;
  width: 1px;
  height: 34px;
  content: "";
  background: #fff;
  animation: scroll-line 2.2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    transform: translateY(-40px);
  }
  70%, 100% {
    transform: translateY(80px);
  }
}

.menu-trigger {
  position: fixed;
  top: 48px;
  right: 43px;
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  mix-blend-mode: difference;
}

.menu-trigger__bars {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 38px;
}

.menu-trigger__bars i {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: transform .5s var(--ease), opacity .3s, width .4s;
}

.menu-trigger__bars i:nth-child(2) {
  width: 72%;
  margin-left: auto;
}

.menu-trigger__label {
  position: relative;
  width: 13px;
  height: 45px;
  writing-mode: vertical-rl;
  color: #fff;
  font-family: var(--sans);
  font-size: 10px;
}

.menu-trigger__label b {
  position: absolute;
  inset: 0;
  font-weight: 500;
  transition: opacity .3s;
}

.menu-trigger__label b:last-child {
  opacity: 0;
}

body.menu-open .menu-trigger__bars i:first-child {
  transform: translateY(8px) rotate(20deg);
}

body.menu-open .menu-trigger__bars i:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-trigger__bars i:last-child {
  transform: translateY(-8px) rotate(-20deg);
}

body.menu-open .menu-trigger__label b:first-child {
  opacity: 0;
}

body.menu-open .menu-trigger__label b:last-child {
  opacity: 1;
}

.global-menu {
  position: fixed;
  inset: 0;
  z-index: 2500;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
  visibility: hidden;
  opacity: 0;
  transition: opacity .65s var(--ease), visibility .65s;
}

.global-menu::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .17;
  background: url("assets/images/shin-exterior.png") center / cover;
  transform: scale(1.05);
  transition: transform 1s var(--ease);
}

body.menu-open .global-menu {
  visibility: visible;
  opacity: 1;
}

body.menu-open .global-menu::before {
  transform: scale(1);
}

.global-menu__inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(820px, 80vw);
  height: 100%;
  margin: 0 auto;
}

.global-menu__eyebrow,
.global-menu__note {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.global-menu ul {
  margin: 45px 0;
  padding: 0;
  list-style: none;
}

.global-menu li {
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.global-menu li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.global-menu a {
  display: flex;
  align-items: baseline;
  gap: 26px;
  padding: 20px 4px;
  font-size: clamp(23px, 3vw, 38px);
  transition: padding .35s var(--ease), color .35s;
}

.global-menu a span {
  min-width: 120px;
  color: rgba(255, 255, 255, .58);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .13em;
}

.global-menu a:hover {
  padding-left: 18px;
  color: #d8b17a;
}

.statement {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.statement__image,
.statement__shade {
  position: absolute;
  inset: -9%;
}

.statement__image {
  background: url("assets/images/shin-beef-close.png") center / cover;
  transform: translate3d(0, 0, 0) scale(1.03);
  will-change: transform;
}

.statement__shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .68), rgba(0, 0, 0, .28) 58%, rgba(0, 0, 0, .48)),
    rgba(0, 0, 0, .22);
}

.statement__content {
  position: relative;
  z-index: 1;
  width: min(760px, 76vw);
  text-align: center;
}

.en-title {
  display: inline-block;
  margin: 0 0 38px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}

.statement h2 {
  margin: 0 0 36px;
  font-size: clamp(25px, 2.6vw, 38px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: .12em;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: keep-all;
}

.statement p:last-child {
  margin: 0;
  font-size: 15px;
  line-height: 2.25;
  text-align: left;
}

.light-area {
  position: relative;
  background: #fff;
}

.concept {
  padding: 120px 0 40px;
  overflow: hidden;
}

.concept__intro {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(500px, 1.15fr);
  align-items: center;
  width: min(1180px, calc(100% - 120px));
  min-height: 700px;
  margin: 0 auto;
}

.concept__title {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.concept__title h2 {
  margin: 0;
  writing-mode: vertical-rl;
  font-size: clamp(31px, 3.3vw, 47px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .12em;
}

.concept__photo {
  height: 680px;
  margin: 0;
  overflow: hidden;
}

.concept__photo img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 1.3s var(--ease);
}

.concept__photo:hover img,
.menu-section__photo:hover img {
  transform: scale(1.025);
}

.concept__detail {
  position: relative;
  min-height: 590px;
  margin-top: -250px;
}

.concept__brush {
  position: absolute;
  top: 0;
  left: 10%;
  color: #f0ece5;
  font-size: clamp(260px, 35vw, 520px);
  font-weight: 700;
  line-height: 1;
  transform: rotate(-12deg);
  user-select: none;
}

.concept__copy {
  position: relative;
  z-index: 1;
  width: min(570px, 46vw);
  margin-left: 45%;
  padding-top: 320px;
}

.concept__copy h3 {
  margin: 0 0 28px;
  font-size: clamp(25px, 2.45vw, 36px);
  font-weight: 500;
  line-height: 1.65;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: keep-all;
}

.concept__copy p,
.menu-section__copy > p {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 2.15;
  letter-spacing: .07em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
}

.text-link i {
  width: 90px;
  height: 1px;
  overflow: hidden;
  background: #999;
}

.text-link i::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: #111;
  transform: translateX(-105%);
  transition: transform .45s var(--ease);
}

.text-link:hover i::after {
  transform: translateX(0);
}

.menu-section {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 720px;
  margin-bottom: 0;
}

.menu-section__photo {
  min-height: 720px;
  margin: 0;
  overflow: hidden;
}

.menu-section__photo img {
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transition: transform 1.3s var(--ease);
}

.menu-section__copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 80px 9vw 80px 7vw;
}

.menu-section__copy .en-title {
  align-self: flex-start;
}

.menu-section__copy h2 {
  margin: 0 0 32px;
  font-size: clamp(27px, 2.7vw, 39px);
  font-weight: 500;
  line-height: 1.75;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: keep-all;
}

.access-map {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #ebe4d9;
}

.access-map iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
  filter: saturate(.82) contrast(.96);
}

.access-map__panel {
  position: absolute;
  top: 72px;
  left: 7vw;
  z-index: 2;
  width: min(390px, 82vw);
  padding: 34px 36px 32px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 70px rgba(20, 16, 13, .16);
}

.access-map__panel .en-title {
  margin-bottom: 22px;
}

.access-map__panel h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .08em;
}

.access-map__panel p:not(.en-title) {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.access-map__info {
  margin: 0 0 24px;
}

.access-map__info div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(17, 17, 17, .13);
}

.access-map__info div:first-child {
  padding-top: 0;
}

.access-map__info dt,
.access-map__info dd {
  margin: 0;
}

.access-map__info dt {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.access-map__info dd {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .08em;
}

.footer {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 40px 80px;
  padding: 90px 8vw 55px;
  color: #fff;
  background: var(--charcoal);
}

.footer__mark {
  display: flex;
  grid-row: span 3;
  align-items: center;
  justify-self: center;
  gap: 10px;
  writing-mode: vertical-rl;
}

.footer__mark > span {
  font-size: 13px;
}

.footer__mark strong {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  writing-mode: horizontal-tb;
}

.footer__mark strong span {
  font-size: inherit;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  font-size: 14px;
}

.footer nav a {
  transition: opacity .3s;
}

.footer nav a:hover {
  opacity: .55;
}

.footer p,
.footer small {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .08em;
}

.menu-page {
  background: #f7f0e3;
}

.menu-page-hero {
  position: relative;
  display: grid;
  min-height: 78vh;
  align-items: end;
  overflow: hidden;
  padding: 140px 8vw 86px;
  color: #fff;
  background: var(--charcoal);
}

.menu-page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 7, 6, .88), rgba(8, 7, 6, .48) 48%, rgba(8, 7, 6, .2)),
    linear-gradient(0deg, rgba(8, 7, 6, .78), rgba(8, 7, 6, .06) 58%);
}

.menu-page-hero__image {
  position: absolute;
  inset: 0;
  margin: 0;
}

.menu-page-hero__image img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.03);
}

.menu-page-hero__content {
  position: relative;
  z-index: 1;
  width: min(720px, 76vw);
}

.menu-page-hero__content h1 {
  margin: 0 0 28px;
  font-size: clamp(56px, 9vw, 118px);
  font-weight: 500;
  letter-spacing: .18em;
  text-indent: .18em;
}

.menu-page-hero__content > p:last-child {
  margin: 0;
  font-size: 16px;
  line-height: 2.1;
}

.menu-feature {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  padding: 120px 8vw;
  background:
    radial-gradient(circle at 18% 12%, rgba(169, 106, 34, .14), transparent 36%),
    #f7f0e3;
}

.menu-feature__photo {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 28px 34px 80px rgba(30, 18, 10, .18);
}

.menu-feature__photo::after {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .58);
  pointer-events: none;
}

.menu-feature__photo img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.menu-feature__label {
  margin: 0 0 16px;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.menu-feature__copy h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: .12em;
}

.menu-feature__price {
  margin: 20px 0 24px;
  color: var(--accent);
  font-family: var(--sans);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: .06em;
}

.menu-feature__copy > p:not(.menu-feature__label):not(.menu-feature__price) {
  margin: 0;
  font-size: 15px;
  line-height: 2.1;
}

.menu-feature__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.menu-feature__notes li {
  padding: 9px 14px;
  border: 1px solid rgba(17, 17, 17, .18);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .04em;
}

.menu-board {
  padding: 112px 8vw 125px;
}

.menu-board--food {
  background: #fffaf1;
}

.menu-board--drinks {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(169, 106, 34, .22), transparent 36%),
    var(--charcoal);
}

.menu-board__header {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: 28px 70px;
  align-items: end;
  margin-bottom: 54px;
}

.menu-board__header .en-title {
  grid-column: 1 / -1;
  justify-self: start;
  margin-bottom: 0;
}

.menu-board__header h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 74px);
  font-weight: 500;
  letter-spacing: .14em;
}

.menu-board__header > p:last-child {
  margin: 0;
  line-height: 2;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.menu-grid--drinks {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.menu-card {
  padding: 34px 30px 28px;
  border: 1px solid rgba(17, 17, 17, .13);
  background: rgba(255, 255, 255, .72);
}

.menu-card--dark {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .055);
}

.menu-card h3 {
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid currentColor;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: .1em;
}

.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid rgba(17, 17, 17, .12);
}

.menu-card--dark .menu-list li {
  border-bottom-color: rgba(255, 255, 255, .14);
}

.menu-list li:last-child {
  border-bottom: 0;
}

.menu-list span {
  line-height: 1.65;
}

.menu-list small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .04em;
}

.menu-card--dark .menu-list small {
  color: rgba(255, 255, 255, .58);
}

.menu-list b {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: .04em;
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(55px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal-image {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.25s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-image.is-visible {
  clip-path: inset(0 0 0 0);
}

@media (max-width: 900px) {
  body {
    font-size: 15px;
  }

  .site-mark--hero {
    top: 28px;
    left: 24px;
  }

  .site-mark--fixed {
    display: none;
  }

  .menu-trigger {
    top: 29px;
    right: 22px;
  }

  .hero__center {
    gap: 12px;
  }

  .hero__center h1 {
    font-size: 68px;
  }

  .global-menu__inner {
    width: 82vw;
  }

  .global-menu a {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding: 16px 0;
  }

  .statement {
    min-height: 100svh;
  }

  .statement__content {
    width: 82vw;
  }

  .statement h2 {
    writing-mode: vertical-rl;
    height: 320px;
    margin: 0 auto 42px;
    text-align: left;
  }

  .statement p:last-child {
    font-size: 13px;
    line-height: 2;
  }

  .pc-only {
    display: none;
  }

  .concept {
    padding-top: 90px;
  }

  .concept__intro {
    grid-template-columns: 36% 64%;
    width: 100%;
    min-height: 560px;
  }

  .concept__photo {
    height: 560px;
  }

  .concept__title h2 {
    font-size: 31px;
  }

  .concept__detail {
    min-height: auto;
    margin-top: -100px;
    padding: 0 9vw 100px;
  }

  .concept__brush {
    top: 0;
    left: -4%;
    font-size: 300px;
  }

  .concept__copy {
    width: 73vw;
    margin-left: auto;
    padding-top: 250px;
  }

  .menu-section {
    display: block;
  }

  .menu-section__photo {
    min-height: 0;
  }

  .menu-section__copy {
    padding: 75px 10vw 100px;
  }

  .access-map {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .access-map__panel {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    padding: 58px 10vw 44px;
    box-shadow: none;
  }

  .access-map iframe {
    height: 430px;
  }

  .menu-page-hero {
    min-height: 680px;
    padding: 120px 9vw 76px;
  }

  .menu-page-hero__content {
    width: min(620px, 82vw);
  }

  .menu-feature {
    grid-template-columns: 1fr;
    padding: 90px 9vw;
  }

  .menu-feature__photo {
    min-height: 58vw;
  }

  .menu-board {
    padding: 86px 9vw 96px;
  }

  .menu-board__header {
    display: block;
  }

  .menu-board__header .en-title {
    margin-bottom: 28px;
  }

  .menu-board__header h2 {
    margin-bottom: 22px;
  }

  .menu-grid,
  .menu-grid--drinks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 560px;
  }

  .hero__slide--exterior {
    background-position: 54% center;
  }

  .hero__slide--beef {
    background-position: 48% center;
  }

  .hero__slide--meal {
    background-position: 45% center;
  }

  .site-mark strong {
    font-size: 23px;
  }

  .hero__center h1 {
    font-size: 56px;
  }

  .scroll-cue {
    left: 48%;
    height: 90px;
  }

  .statement {
    padding: 80px 0;
  }

  .statement__image {
    background-position: 48% center;
  }

  .statement__content {
    width: 84vw;
    text-align: left;
  }

  .statement h2 {
    writing-mode: horizontal-tb;
    height: auto;
    margin: 0 0 30px;
    font-size: 24px;
    line-height: 1.75;
    letter-spacing: .07em;
    text-align: left;
  }

  .statement .en-title {
    margin-left: 0;
  }

  .mobile-only {
    display: initial;
  }

  .statement p:last-child {
    font-size: 12px;
  }

  .concept__intro {
    grid-template-columns: 39% 61%;
    min-height: 470px;
  }

  .concept__photo {
    height: 470px;
  }

  .concept__title .en-title {
    margin-bottom: 22px;
  }

  .concept__title h2 {
    font-size: 25px;
    line-height: 1.7;
  }

  .concept__detail {
    margin-top: -50px;
  }

  .concept__copy {
    width: 82vw;
    padding-top: 210px;
  }

  .concept__copy h3,
  .menu-section__copy h2 {
    font-size: 24px;
    line-height: 1.75;
    letter-spacing: .06em;
  }

  .concept__copy p,
  .menu-section__copy > p {
    font-size: 13px;
    line-height: 2;
  }

  .menu-section__photo img {
    aspect-ratio: 3 / 2;
  }

  .access-map__panel {
    padding: 48px 8vw 38px;
  }

  .access-map__panel h2 {
    font-size: 25px;
    line-height: 1.7;
  }

  .access-map iframe {
    height: 360px;
  }

  .footer {
    display: block;
    padding: 70px 9vw 45px;
  }

  .footer__mark {
    justify-content: flex-start;
    height: 145px;
    margin-bottom: 45px;
  }

  .footer nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
  }

  .footer p {
    margin-bottom: 10px;
  }

  .menu-page-hero {
    min-height: 560px;
    padding: 110px 8vw 62px;
  }

  .menu-page-hero::after {
    background:
      linear-gradient(0deg, rgba(8, 7, 6, .86), rgba(8, 7, 6, .3)),
      linear-gradient(90deg, rgba(8, 7, 6, .78), rgba(8, 7, 6, .22));
  }

  .menu-page-hero__content {
    width: 84vw;
  }

  .menu-page-hero__content h1 {
    font-size: 54px;
  }

  .menu-page-hero__content > p:last-child {
    font-size: 13px;
    line-height: 2;
  }

  .menu-feature {
    padding: 72px 7vw;
  }

  .menu-feature__photo {
    min-height: 72vw;
  }

  .menu-feature__photo::after {
    inset: 12px;
  }

  .menu-feature__copy h2 {
    font-size: 34px;
  }

  .menu-feature__price {
    font-size: 34px;
  }

  .menu-feature__copy > p:not(.menu-feature__label):not(.menu-feature__price) {
    font-size: 13px;
    line-height: 2;
  }

  .menu-board {
    padding: 72px 6vw 82px;
  }

  .menu-board__header {
    margin-bottom: 34px;
  }

  .menu-board__header h2 {
    font-size: 36px;
  }

  .menu-board__header > p:last-child {
    font-size: 13px;
  }

  .menu-grid,
  .menu-grid--drinks {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .menu-card {
    padding: 28px 22px 22px;
  }

  .menu-card h3 {
    font-size: 22px;
  }

  .menu-list li {
    gap: 10px;
  }
}

@media (max-width: 380px) {
  .narrow-only {
    display: initial;
  }

  .statement h2,
  .concept__copy h3,
  .menu-section__copy h2 {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal,
  .reveal-image {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}
