:root {
  --ink: #14100c;
  --cream: #f1eddf;
  --paper: #f8f8f4;
  --line: #d9d2c5;
  --sans: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --serif: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--serif);
  font-feature-settings: "palt";
  letter-spacing: 0;
}

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

img,
video {
  display: block;
  max-width: 100%;
}

.text-nowrap {
  white-space: nowrap;
}

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

[id] {
  scroll-margin-top: 96px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 32px 50px;
  pointer-events: none;
  transition: background 0.35s ease, padding 0.35s ease;
}

.site-header.is-scrolled {
  align-items: center;
  padding-block: 18px;
  background: rgba(250, 248, 241, 0.9);
  backdrop-filter: blur(14px);
}

body.is-menu-open .site-header {
  background: transparent;
  backdrop-filter: none;
}

.site-header__logo,
.site-header__actions,
.menu-button {
  pointer-events: auto;
}

.site-header__logo {
  position: relative;
  width: clamp(178px, 12.4vw, 223px);
  height: clamp(89px, 6.17vw, 111px);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  transition: color 0.3s ease;
}

.language-switch a {
  opacity: 0.55;
  transition: opacity 0.25s ease;
}

.language-switch a:hover,
.language-switch a[aria-current="page"] {
  opacity: 1;
}

.language-switch a[aria-current="page"] {
  pointer-events: none;
}

.logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  transition: opacity 0.25s ease;
}

.logo--black {
  opacity: 0;
}

.site-header.is-scrolled .site-header__logo {
  width: clamp(140px, 9.72vw, 175px);
  height: clamp(36px, 2.5vw, 45px);
}

.site-header.is-scrolled .logo--white {
  opacity: 0;
}

.site-header.is-scrolled .logo--black {
  opacity: 1;
}

.site-header.is-scrolled .language-switch {
  color: var(--ink);
}

body.is-menu-open .site-header .logo--white {
  opacity: 1;
}

body.is-menu-open .site-header .logo--black {
  opacity: 0;
}

body.is-menu-open .site-header .language-switch {
  color: #fff;
}

.menu-button {
  position: relative;
  display: grid;
  gap: 14px;
  width: 56px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled .menu-button span,
body.is-menu-open .menu-button span {
  background: var(--ink);
}

body.is-menu-open .menu-button span {
  background: #fff;
}

body.is-menu-open .menu-button span:nth-child(1) {
  transform: translateY(16px) rotate(38deg);
}

body.is-menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

body.is-menu-open .menu-button span:nth-child(3) {
  transform: translateY(-16px) rotate(-38deg);
}

.global-menu {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  color: #fff;
  background: #050505 url("../assets/footer-wave.png") center / cover no-repeat;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.global-menu__inner {
  display: grid;
  gap: 26px;
  justify-items: center;
  font-size: 28px;
  line-height: 1.4;
}

.global-menu__logo {
  width: 260px;
  margin-bottom: 22px;
}

.global-menu__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.global-menu__social a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.global-menu__social a:hover {
  opacity: 0.75;
  transform: translateY(-2px);
}

.global-menu__social img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero {
  position: relative;
  display: grid;
  height: 100vh;
  height: 100svh;
  min-height: 0;
  overflow: hidden;
  place-items: center;
  background: #2d1a0d url("../assets/hero-photo.jpg") center / cover no-repeat;
}

.hero__video,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  object-fit: cover;
  animation: heroMediaFocus 1.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  will-change: filter, transform;
}

.hero__shade {
  background: rgba(38, 19, 5, 0.62);
  animation: heroShadeFocus 1.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero__copy {
  position: relative;
  z-index: 1;
  width: min(54vw, 969px);
  min-width: 620px;
  margin-top: 22px;
  opacity: 0.18;
  filter: blur(14px);
  transform: scale(1.045);
  animation: storyTitleFocus 1.35s cubic-bezier(0.2, 0.7, 0.2, 1) 0.45s both;
  will-change: opacity, filter, transform;
}

.hero-copy-en {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
  width: min(86vw, 980px);
  margin: 24px auto 0;
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  text-align: center;
  text-shadow: 0 5px 22px rgba(0, 0, 0, 0.45);
  opacity: 0.18;
  filter: blur(14px);
  transform: scale(1.045);
  animation: storyTitleFocus 1.35s cubic-bezier(0.2, 0.7, 0.2, 1) 0.45s both;
  will-change: opacity, filter, transform;
}

.hero-copy-en__line {
  display: block;
  font-size: 20px;
  letter-spacing: 0.14em;
  line-height: 1.55;
}

.hero-copy-en__line--main {
  font-family: var(--serif);
  font-size: 76px;
  font-weight: 400;
  letter-spacing: 0.09em;
  line-height: 1.1;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  transform: translateX(-50%);
  opacity: 0.72;
}

.scroll-cue span {
  display: block;
  animation: scrollText 1.8s ease-in-out infinite;
}

.scroll-cue::after {
  display: block;
  width: 1px;
  height: 46px;
  background: currentColor;
  content: "";
  transform-origin: top;
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollText {
  0%,
  100% {
    opacity: 0.62;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(5px);
  }
}

@keyframes scrollLine {
  0% {
    opacity: 0.35;
    transform: scaleY(0.24);
  }

  45% {
    opacity: 1;
    transform: scaleY(1);
  }

  100% {
    opacity: 0.35;
    transform: scaleY(0.24);
  }
}

@keyframes heroMediaFocus {
  0% {
    filter: blur(12px) brightness(0.78);
    transform: scale(1.045);
  }

  55% {
    filter: blur(3px) brightness(0.92);
  }

  100% {
    filter: blur(0) brightness(1);
    transform: scale(1);
  }
}

@keyframes heroShadeFocus {
  0% {
    background: rgba(24, 10, 2, 0.78);
  }

  100% {
    background: rgba(38, 19, 5, 0.62);
  }
}

.story {
  position: relative;
  min-height: 1238px;
  overflow: hidden;
  background: var(--paper) url("../assets/story-bg.jpg") center top / cover no-repeat;
  padding: 114px 0 120px;
}

.story__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-kicker {
  margin: 0 0 12px;
  text-align: center;
  font-size: 28px;
  line-height: 1.2;
}

.story__title {
  width: min(45vw, 810px);
  margin: 0 auto 90px;
}

.story__title picture,
.story__title-image {
  display: block;
  width: 100%;
}

.story__title-image {
  opacity: 0.18;
  filter: blur(14px);
  transform: scale(1.045);
  will-change: opacity, filter, transform;
}

.story.is-visible .story__title-image {
  animation: storyTitleFocus 1.35s cubic-bezier(0.2, 0.7, 0.2, 1) 0.12s both;
}

@keyframes storyTitleFocus {
  0% {
    opacity: 0.18;
    filter: blur(14px);
    transform: scale(1.045);
  }

  55% {
    opacity: 0.92;
    filter: blur(3px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

.story__body {
  width: 52%;
  max-width: 590px;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2.15;
}

.story__body p {
  margin: 0 0 58px;
}

.story__signature {
  width: 350px;
  margin-top: 8px;
}

.story__food {
  position: absolute;
  right: -110px;
  bottom: 220px;
  z-index: 1;
  width: min(58vw, 1041px);
}

.features {
  background: var(--cream) url("../assets/features-bg.jpg") center / cover no-repeat;
  padding: 126px 32px 122px;
}

.features__inner {
  max-width: 1104px;
  margin: 0 auto;
}

.features__title {
  width: min(44.2vw, 796px);
  margin: 0 auto;
}

.features__title picture,
.features__title-image {
  display: block;
  width: 100%;
}

.features__title-image {
  opacity: 0.18;
  filter: blur(14px);
  transform: scale(1.045);
  will-change: opacity, filter, transform;
}

.features.is-visible .features__title-image {
  animation: storyTitleFocus 1.35s cubic-bezier(0.2, 0.7, 0.2, 1) 0.12s both;
}

.features__lead {
  margin: 66px auto 84px;
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px 66px;
}

.feature-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: #100d0b;
  border: 4px solid #111;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  filter: brightness(1.08);
}

.feature-card picture,
.shop picture {
  display: block;
}

.feature-card img {
  width: 100%;
}

.feature-card--wide {
  grid-column: 1 / -1;
}

.news {
  background: #fff;
  padding: 94px 32px 104px;
}

.news__inner {
  max-width: 1020px;
  margin: 0 auto;
}

.news h2 {
  margin: 0 0 74px;
  text-align: center;
  font-size: clamp(44px, 3.3vw, 62px);
  font-weight: 500;
  line-height: 1.2;
}

.news-list {
  display: grid;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
}

.news-list li {
  display: grid;
  grid-template-columns: 166px 1fr;
  align-items: baseline;
  padding: 10px 18px;
  border-bottom: 1px solid var(--line);
}

.news-list time {
  color: #3a342d;
}

.backnumber {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  width: max-content;
  margin: 58px 0 0 auto;
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.backnumber::after {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.shop {
  color: #fff;
  background: #050505 url("../assets/footer-wave.png") center / cover no-repeat;
  padding: 98px 32px 58px;
}

.shop__inner {
  max-width: 1104px;
  margin: 0 auto;
}

.sns-banner-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto 68px;
}

.sns-banner-wrap::after {
  content: "";
  position: absolute;
  left: 90.1%;
  top: 59.8%;
  z-index: 1;
  width: 7.1%;
  height: 27%;
  border-radius: 10px;
  background: #fff;
}

.sns-banner {
  width: 100%;
  margin: 0;
}

.sns-banner-hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 10px;
}

.sns-banner-hotspot:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}

.sns-banner-hotspot--instagram {
  left: 74.73%;
  top: 60.89%;
  width: 6.07%;
  height: 24.72%;
}

.sns-banner-hotspot--x {
  left: 82.7%;
  top: 60.89%;
  width: 6.07%;
  height: 24.72%;
}

.shop-info {
  display: grid;
  grid-template-columns: 223px minmax(0, 1fr);
  align-items: center;
  gap: 54px;
  max-width: 820px;
  margin: 0 auto;
}

.shop-info__logo {
  justify-self: end;
  width: 223px;
}

.shop-info__content {
  min-width: 0;
  font-family: var(--sans);
}

.shop-hours {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.shop-hours__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.shop-hours__title::before {
  content: "";
  width: 22px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.shop-hours__list {
  margin: 0;
}

.shop-hours__row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.shop-hours__row:first-child {
  border-top: 0;
}

.shop-hours__row dt {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.shop-hours__row dd {
  display: grid;
  gap: 4px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.shop-hours__row--closed dd {
  color: rgba(255, 255, 255, 0.72);
}

.shop-info__text {
  margin: 14px 0 0;
  font-family: var(--sans);
  font-style: normal;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.map {
  display: grid;
  min-height: 350px;
  place-items: center;
  background: #cfcfcf;
  color: #252525;
  font-family: var(--sans);
  font-size: 16px;
}

.map iframe {
  display: block;
  width: 100%;
  min-height: inherit;
  border: 0;
}

.site-footer {
  display: grid;
  min-height: 112px;
  place-items: center;
  color: #fff;
  background: #050505 url("../assets/footer-wave.png") center bottom / cover no-repeat;
  font-family: var(--sans);
  font-size: 10px;
}

body.page-menu {
  background: var(--paper);
}

body.page-menu::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: var(--paper) url("../assets/menu-bg.jpg") center center / cover no-repeat;
  content: "";
}

body.page-menu main,
body.page-menu .site-footer {
  position: relative;
  z-index: 1;
}

body.page-menu .site-header:not(.is-scrolled) .logo--white {
  opacity: 0;
}

body.page-menu .site-header:not(.is-scrolled) .logo--black {
  opacity: 1;
}

body.page-menu .site-header:not(.is-scrolled) .menu-button span {
  background: var(--ink);
}

body.page-menu .site-header:not(.is-scrolled) .language-switch {
  color: var(--ink);
}

body.page-menu.is-menu-open .site-header .logo--white {
  opacity: 1;
}

body.page-menu.is-menu-open .site-header .logo--black {
  opacity: 0;
}

body.page-menu.is-menu-open .site-header .language-switch {
  color: #fff;
}

body.page-menu.is-menu-open .menu-button span {
  background: #fff;
}

body.page-menu.is-menu-open .site-header .menu-button span {
  background: #fff;
}

.menu-contents {
  color: var(--ink);
  background: transparent;
  padding: 132px 32px 126px;
}

.menu-contents__inner {
  max-width: 1104px;
  margin: 0 auto;
}

.menu-title {
  margin: 0 0 106px;
  text-align: center;
  font-size: clamp(52px, 3.6vw, 64px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
  opacity: 0.18;
  filter: blur(14px);
  transform: scale(1.045);
  will-change: opacity, filter, transform;
}

.menu-contents.is-visible .menu-title {
  animation: storyTitleFocus 1.35s cubic-bezier(0.2, 0.7, 0.2, 1) 0.12s both;
}

.menu-category {
  margin: 0 0 78px;
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category__image {
  width: 100%;
  border-radius: 12px;
}

.menu-items {
  width: min(700px, calc(100% - 220px));
  margin: 22px auto 0;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.menu-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: baseline;
  gap: 28px 44px;
  margin: 0 0 20px;
  padding: 0 0 22px;
  border-bottom: 1px dotted rgba(20, 16, 12, 0.62);
}

.menu-row:last-child {
  margin-bottom: 0;
}

.menu-row > span:first-child {
  min-width: 0;
}

.menu-row > span:last-child {
  white-space: nowrap;
}

.menu-row--option {
  color: rgba(20, 16, 12, 0.78);
  font-size: 0.82em;
}

.menu-row--option > span:first-child {
  padding-left: 1em;
}

.menu-row--note {
  align-items: center;
  border-bottom: 0;
}

.menu-instagram-link {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.25s ease;
}

.menu-instagram-link:hover {
  opacity: 0.72;
}

.menu-instagram-link img {
  width: 49px;
  height: 49px;
}

body.page-shop {
  background: var(--paper);
}

body.page-shop::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: var(--paper) url("../assets/menu-bg.jpg") center center / cover no-repeat;
  content: "";
}

body.page-shop main,
body.page-shop .site-footer {
  position: relative;
  z-index: 1;
}

body.page-shop .site-header:not(.is-scrolled) .logo--white {
  opacity: 0;
}

body.page-shop .site-header:not(.is-scrolled) .logo--black {
  opacity: 1;
}

body.page-shop .site-header:not(.is-scrolled) .menu-button span {
  background: var(--ink);
}

body.page-shop .site-header:not(.is-scrolled) .language-switch {
  color: var(--ink);
}

body.page-shop.is-menu-open .site-header .logo--white {
  opacity: 1;
}

body.page-shop.is-menu-open .site-header .logo--black {
  opacity: 0;
}

body.page-shop.is-menu-open .site-header .language-switch {
  color: #fff;
}

body.page-shop.is-menu-open .menu-button span {
  background: #fff;
}

body.page-shop.is-menu-open .site-header .menu-button span {
  background: #fff;
}

.shop-page-contents {
  color: var(--ink);
  background: transparent;
  padding: 132px 0 96px;
}

.shop-page-contents__inner {
  max-width: 1104px;
  margin: 0 auto;
  padding: 0 32px;
}

.shop-page-title {
  margin: 0 0 92px;
  text-align: center;
  font-size: clamp(52px, 3.6vw, 64px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
  opacity: 0.18;
  filter: blur(14px);
  transform: scale(1.045);
  will-change: opacity, filter, transform;
}

.shop-page-contents.is-visible .shop-page-title {
  animation: storyTitleFocus 1.35s cubic-bezier(0.2, 0.7, 0.2, 1) 0.12s both;
}

.shop-gallery {
  --shop-slide-width: clamp(300px, 58vw, 720px);
  position: relative;
  margin: 0 0 72px;
}

.shop-gallery__frame {
  position: relative;
  margin: 0 calc(50% - 50vw);
}

.shop-gallery__viewport {
  overflow-x: auto;
  scroll-padding-inline: calc((100vw - var(--shop-slide-width)) / 2);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.shop-gallery__viewport::-webkit-scrollbar {
  display: none;
}

.shop-gallery__track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 0 calc((100vw - var(--shop-slide-width)) / 2);
}

.shop-gallery__slide {
  flex: 0 0 var(--shop-slide-width);
  margin: 0;
  scroll-snap-align: center;
}

.shop-gallery__slide img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(20, 16, 12, 0.13);
}

.shop-gallery__button {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(20, 16, 12, 0.22);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(20, 16, 12, 0.15);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.shop-gallery__button:hover {
  background: rgba(255, 255, 255, 0.94);
  transform: translateY(-50%) scale(1.04);
}

.shop-gallery__button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.shop-gallery__button span {
  display: block;
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.shop-gallery__button--prev {
  left: max(18px, calc(50% - 420px));
}

.shop-gallery__button--prev span {
  transform: rotate(225deg);
}

.shop-gallery__button--next {
  right: max(18px, calc(50% - 420px));
}

.shop-gallery__button--next span {
  transform: rotate(45deg);
}

.shop-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.shop-gallery__dots button {
  width: 48px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 16, 12, 0.18);
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}

.shop-gallery__dots button.is-active {
  width: 58px;
  background: rgba(20, 16, 12, 0.58);
}

.shop-page-lead {
  margin: 0 auto 78px;
  text-align: center;
  font-size: clamp(24px, 2.05vw, 30px);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.85;
}

.shop-page-lead p {
  margin: 0;
}

.shop-about {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1fr);
  align-items: start;
  gap: 72px;
  max-width: 900px;
  margin: 0 auto 58px;
}

.shop-about__image {
  width: 100%;
  aspect-ratio: 800 / 532;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(20, 16, 12, 0.12);
}

.shop-about__details {
  display: grid;
  gap: 28px;
  min-width: 0;
  padding-top: 2px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.56;
}

.shop-detail-group h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.shop-detail-group address {
  margin: 0;
  font-style: normal;
}

.shop-page-hours {
  display: grid;
  gap: 0;
  margin: 0;
}

.shop-page-hours__row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 9px 0;
  border-top: 1px solid rgba(20, 16, 12, 0.14);
}

.shop-page-hours__row:first-child {
  border-top: 0;
  padding-top: 0;
}

.shop-page-hours__row dt {
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.shop-page-hours__row dd {
  display: grid;
  gap: 3px;
  margin: 0;
}

.shop-page-map {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(20, 16, 12, 0.28);
  background: #cfcfcf;
}

.shop-page-map iframe {
  display: block;
  width: 100%;
  height: clamp(250px, 28vw, 360px);
  border: 0;
}

body.page-umasa {
  background: var(--paper);
}

body.page-umasa::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: var(--paper) url("../assets/menu-bg.jpg") center center / cover no-repeat;
  content: "";
}

body.page-umasa main,
body.page-umasa .site-footer {
  position: relative;
  z-index: 1;
}

body.page-umasa .site-header:not(.is-scrolled) .logo--white {
  opacity: 0;
}

body.page-umasa .site-header:not(.is-scrolled) .logo--black {
  opacity: 1;
}

body.page-umasa .site-header:not(.is-scrolled) .menu-button span {
  background: var(--ink);
}

body.page-umasa .site-header:not(.is-scrolled) .language-switch {
  color: var(--ink);
}

body.page-umasa.is-menu-open .site-header .logo--white {
  opacity: 1;
}

body.page-umasa.is-menu-open .site-header .logo--black {
  opacity: 0;
}

body.page-umasa.is-menu-open .site-header .language-switch {
  color: #fff;
}

body.page-umasa.is-menu-open .menu-button span {
  background: #fff;
}

body.page-umasa.is-menu-open .site-header .menu-button span {
  background: #fff;
}

.umasa-intro {
  position: relative;
  padding: 150px 32px 28px;
  text-align: center;
}

.umasa-title {
  margin: 0;
  font-size: clamp(52px, 3.8vw, 68px);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.2;
  opacity: 0.18;
  filter: blur(14px);
  transform: scale(1.045);
  animation: storyTitleFocus 1.35s cubic-bezier(0.2, 0.7, 0.2, 1) 0.12s both;
}

.umasa-title-line {
  width: 2px;
  height: 86px;
  margin: 18px auto 50px;
  background: #fff;
}

.umasa-badge {
  display: grid;
  width: 324px;
  height: 324px;
  margin: 0 auto;
  place-items: center;
}

.umasa-badge img {
  display: block;
  width: 100%;
  height: auto;
}

.umasa-badge--black {
  width: 324px;
  height: auto;
}

.umasa-badge--white {
  width: 324px;
  height: auto;
}

.umasa-flow {
  position: relative;
  overflow: clip;
  padding: 48px 32px 0;
}

.umasa-flow--light {
  background: transparent;
}

.umasa-flow__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 4px;
  border: 0;
  background-image: radial-gradient(circle, rgba(20, 16, 12, 0.72) 1.45px, transparent 1.75px);
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 4px 10px;
  transform: translateX(-50%);
}

.umasa-flow__line--dark {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.74) 1.45px, transparent 1.75px);
}

.umasa-sticky-slot {
  position: sticky;
  top: 44vh;
  z-index: 1;
  height: 0;
  pointer-events: none;
}

.umasa-sticky-preview {
  display: grid;
  width: 96px;
  height: 96px;
  margin: 0 auto;
  overflow: hidden;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: #f7f7f3;
  transform: translateY(-50%);
  opacity: 1;
  transition: opacity 0.2s ease;
}

.umasa-sticky-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.14));
  opacity: 1;
  transition: opacity 0.22s ease, filter 0.22s ease, transform 0.22s ease;
}

.umasa-sticky-preview.is-hidden {
  opacity: 0;
}

.umasa-sticky-preview.is-occluded {
  opacity: 0;
}

.umasa-sticky-preview.is-changing img {
  opacity: 0.25;
  filter: blur(3px);
  transform: scale(0.96);
}

.umasa-sticky-preview--dark img {
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.42));
}

.umasa-sticky-preview--bowl {
  width: min(14vw, 155px);
  height: auto;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  transform: translateY(-55px);
}

.umasa-sticky-preview--bowl img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.15));
  mix-blend-mode: multiply;
}

.umasa-sticky-preview--sushi {
  width: min(17vw, 209px);
  height: auto;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  transform: translateY(-52px);
}

.umasa-sticky-preview--sushi img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.48));
}

.umasa-preview-marker {
  height: 0;
  pointer-events: none;
}

.umasa-preview-marker--first {
  height: 180px;
}

.umasa-preview-marker--last {
  height: 180px;
}

.umasa-step {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 352px minmax(0, 1fr);
  align-items: start;
  gap: 56px 92px;
  max-width: 1050px;
  min-height: 440px;
  margin: 0 auto 210px;
}

.umasa-step__image {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}

.umasa-step__image img {
  width: 352px;
  max-width: 100%;
}

.umasa-copy {
  grid-row: 1;
  align-self: start;
  max-width: 300px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.95;
}

.umasa-copy--left {
  grid-column: 1;
}

.umasa-copy--right {
  grid-column: 3;
}

.umasa-copy h2 {
  margin: 0 0 18px;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.25;
}

.umasa-step--bonito .umasa-copy h2 {
  white-space: nowrap;
}

.umasa-copy p {
  margin: 0 0 48px;
}

.umasa-copy p:last-child {
  margin-bottom: 0;
}

.umasa-deco {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.umasa-deco::before {
  content: none;
}

.umasa-deco--wheat {
  right: 137px;
  bottom: 252px;
  width: 176px;
  height: 318px;
  background-image: url("../assets/umasa-deco-wheat.png");
}

.umasa-deco--pig {
  left: 30px;
  bottom: 110px;
  width: 300px;
  height: 206px;
  background-image: url("../assets/umasa-deco-pig.png");
}

.umasa-deco--bonito {
  right: 28px;
  bottom: -28px;
  width: 214px;
  height: 204px;
  background-image: url("../assets/umasa-deco-bonito.png");
}

.umasa-large-food {
  position: relative;
  z-index: 1;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.umasa-large-food--ramen {
  width: min(54vw, 780px);
  margin-top: -60px;
  margin-bottom: 0;
}

.umasa-sushi {
  position: relative;
  overflow: clip;
  color: #fff;
  background-color: #050505;
  background-image: url("../assets/umasushi-bg.jpg");
  background-position: center top;
  background-repeat: repeat-y;
  background-size: 100% auto;
  padding: 108px 32px 0;
}

.umasa-sushi .umasa-badge {
  position: relative;
  z-index: 2;
  margin-bottom: 88px;
}

.umasa-sushi .umasa-flow__line {
  top: 432px;
}

.umasa-copy--dark {
  color: #fff;
}

.umasa-step--sumeshi {
  margin-top: 132px;
  margin-bottom: 240px;
}

.umasa-step--neta {
  margin-bottom: 160px;
}

.umasa-visual-placeholder {
  position: relative;
  width: 352px;
  height: 240px;
  border: 6px solid rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  background: #d6d6d6;
}

.umasa-visual-placeholder span {
  position: absolute;
  top: -58px;
  left: -6px;
  display: grid;
  min-width: 140px;
  height: 68px;
  place-items: center;
  border-radius: 13px 13px 13px 0;
  color: #0b0b0b;
  background: #fff;
  font-size: 36px;
  line-height: 1;
}

.umasa-deco--rice {
  left: 40px;
  bottom: -72px;
  width: 236px;
  height: 242px;
  background-image: url("../assets/umasa-deco-rice.png");
}

.umasa-deco--fish {
  right: -8px;
  top: -76px;
  width: 344px;
  height: 308px;
  background-image: url("../assets/umasa-deco-fish.png");
}

.umasa-large-food--sushi {
  width: min(68vw, 1080px);
  margin-bottom: 0;
}

.section-fade {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.page-en {
  font-family: var(--sans);
}

.page-en .global-menu__inner {
  font-family: var(--serif);
}

.page-en .story__body {
  max-width: 690px;
  font-family: var(--sans);
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: 0.02em;
  line-height: 1.95;
}

.page-en .story__body p {
  margin-bottom: 34px;
}

.story-title-en,
.features-title-en {
  display: grid;
  gap: 12px;
  width: min(86vw, 920px);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.28;
  text-align: center;
  opacity: 0.18;
  filter: blur(14px);
  transform: scale(1.045);
  will-change: opacity, filter, transform;
}

.story-title-en {
  width: min(78vw, 820px);
}

.story-title-en span:first-child {
  font-size: 0.62em;
  letter-spacing: 0.12em;
}

.story.is-visible .story-title-en,
.features.is-visible .features-title-en {
  animation: storyTitleFocus 1.35s cubic-bezier(0.2, 0.7, 0.2, 1) 0.12s both;
}

.page-en .features__lead {
  max-width: 820px;
  font-family: var(--sans);
  font-size: clamp(18px, 1.55vw, 23px);
  letter-spacing: 0.02em;
  line-height: 1.95;
}

.page-en .menu-title,
.page-en .shop-page-title,
.page-en .umasa-title {
  font-family: var(--serif);
}

.page-en .menu-items {
  width: min(820px, calc(100% - 120px));
  font-family: var(--sans);
  font-size: 22px;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.menu-category-lead {
  margin: 0 0 26px;
  font-family: var(--sans);
  font-size: 0.82em;
  letter-spacing: 0.02em;
  line-height: 1.65;
  color: rgba(20, 16, 12, 0.78);
}

.menu-row small {
  display: block;
  margin-top: 5px;
  font-size: 0.74em;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.45;
  color: rgba(20, 16, 12, 0.72);
}

.menu-row--heading {
  margin: 10px 0 8px;
  padding-bottom: 0;
  border-bottom: 0;
  font-family: var(--sans);
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(20, 16, 12, 0.72);
}

.page-en .menu-row--option > span:first-child {
  padding-left: 0;
}

.page-en .shop-info {
  grid-template-columns: 223px minmax(0, 1fr);
  gap: 42px;
  max-width: 980px;
}

.page-en .shop-hours__row {
  grid-template-columns: 1fr;
  gap: 7px;
}

.page-en .shop-hours__row dt {
  white-space: normal;
}

.page-en .shop-hours__row dd {
  padding-left: 22px;
}

.page-en .shop-info__text {
  display: grid;
  gap: 6px;
}

.page-en .umasa-title {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1.25;
}

.page-en .umasa-copy {
  font-family: var(--sans);
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 1.78;
}

.page-en .umasa-copy h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 2.7vw, 38px);
  letter-spacing: 0.05em;
}

.umasa-ending-copy {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 64px));
  margin: -26px auto 42px;
  text-align: center;
  font-family: var(--sans);
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 1.75;
}

.umasa-ending-copy h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(30px, 2.8vw, 42px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.35;
}

.umasa-ending-copy p {
  margin: 0;
}

.umasa-ending-copy--dark {
  color: #fff;
}

.page-en .shop-page-lead,
.page-en .shop-about__details {
  font-family: var(--sans);
}

.page-en .shop-page-hours__row {
  grid-template-columns: 1fr;
  gap: 6px;
}

.page-en .shop-page-hours__row dt {
  white-space: normal;
}

@media (max-width: 900px) {
  .site-header {
    padding: 38px 39px;
  }

  .site-header.is-scrolled {
    padding: 16px 24px;
  }

  .site-header__logo {
    width: 205px;
    height: 102px;
  }

  .site-header.is-scrolled .site-header__logo {
    width: 156px;
    height: 40px;
  }

  .site-header__actions {
    gap: 18px;
  }

  .language-switch {
    font-size: 13px;
  }

  .menu-button {
    width: 70px;
    gap: 22px;
  }

  body.is-menu-open .menu-button span:nth-child(1) {
    transform: translateY(24px) rotate(38deg);
  }

  body.is-menu-open .menu-button span:nth-child(3) {
    transform: translateY(-24px) rotate(-38deg);
  }

  .hero {
    height: 100svh;
  }

  .hero__copy {
    width: min(94vw, 720px);
    min-width: 0;
    margin-top: 6svh;
  }

  .hero-copy-en {
    width: min(88vw, 720px);
    gap: 30px;
    margin-top: 5svh;
  }

  .hero-copy-en__line {
    font-size: 17px;
  }

  .hero-copy-en__line--main {
    font-size: 58px;
  }

  .scroll-cue {
    font-size: 18px;
    gap: 18px;
  }

  .scroll-cue::after {
    height: 56px;
  }

  .story {
    min-height: 0;
    padding: 112px 0 0;
  }

  .story__inner {
    padding: 0 40px;
  }

  .section-kicker {
    margin-bottom: 16px;
    font-size: 35px;
  }

  .story__title {
    width: min(86.3vw, 647px);
    margin-bottom: 116px;
  }

  .story__body {
    width: 100%;
    max-width: none;
    font-size: clamp(24px, 4.1vw, 31px);
    line-height: 2.38;
  }

  .story__body p {
    margin-bottom: 70px;
  }

  .story__signature {
    width: min(72vw, 350px);
    margin-top: 20px;
  }

  .story__food {
    position: relative;
    right: auto;
    bottom: auto;
    width: 138%;
    max-width: none;
    margin: 70px 0 -5px -18%;
  }

  .features {
    padding: 128px 42px 96px;
  }

  .features__title {
    width: min(86.8vw, 651px);
  }

  .features__lead {
    margin: 84px auto 86px;
    font-size: clamp(22px, 4.4vw, 32px);
    line-height: 2.25;
  }

  .feature-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .feature-card {
    border-width: 5px;
  }

  .feature-card--wide {
    grid-column: auto;
  }

  .news {
    padding: 105px 40px 94px;
  }

  .news h2 {
    margin-bottom: 82px;
    font-size: clamp(48px, 9.4vw, 68px);
  }

  .news-list {
    font-size: clamp(20px, 3.8vw, 30px);
    line-height: 1.7;
  }

  .news-list li {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 30px 0;
  }

  .backnumber {
    margin-top: 58px;
    font-size: clamp(20px, 3.4vw, 28px);
  }

  .shop {
    padding: 60px 40px 74px;
  }

  .sns-banner-wrap {
    margin-bottom: 56px;
  }

  .shop-info {
    grid-template-columns: 1fr;
    gap: 46px;
    max-width: 560px;
    text-align: left;
  }

  .shop-info__logo {
    justify-self: center;
    width: min(58vw, 330px);
  }

  .shop-info__text {
    font-size: clamp(16px, 2.8vw, 20px);
    line-height: 1.58;
  }

  .shop-hours {
    padding: 20px 0;
  }

  .shop-hours__title {
    margin-bottom: 16px;
    font-size: clamp(16px, 2.8vw, 20px);
  }

  .shop-hours__row {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 20px;
    padding: 12px 0;
    font-size: clamp(15px, 2.6vw, 18px);
  }

  .map {
    min-height: 468px;
    font-size: clamp(24px, 4.4vw, 32px);
  }

  .site-footer {
    min-height: 66px;
    font-size: 9px;
  }

  .menu-contents {
    padding: 118px 40px 90px;
  }

  .menu-title {
    margin-bottom: 72px;
    font-size: clamp(48px, 9.2vw, 68px);
  }

  .menu-category {
    margin-bottom: 64px;
  }

  .menu-category__image {
    border-radius: 10px;
  }

  .menu-items {
    width: 100%;
    margin-top: 16px;
    font-size: clamp(23px, 3.8vw, 30px);
    line-height: 1.55;
  }

  .menu-row {
    gap: 20px 28px;
    margin-bottom: 18px;
    padding-bottom: 18px;
  }

  .menu-instagram-link {
    gap: 10px;
    font-size: clamp(12px, 2.3vw, 15px);
  }

  .menu-instagram-link img {
    width: 42px;
    height: 42px;
  }

  .page-en .menu-items {
    width: 100%;
    font-size: clamp(18px, 3vw, 23px);
  }

  .page-en .shop-info {
    grid-template-columns: 1fr;
    gap: 46px;
    max-width: 560px;
  }

  .page-en .shop-info__logo {
    justify-self: center;
  }

  .page-en .shop-hours__row {
    grid-template-columns: 1fr;
  }

  .page-en .shop-hours__row dd {
    padding-left: 0;
  }

  .page-en .shop-page-hours__row {
    grid-template-columns: 1fr;
  }

  .umasa-flow .umasa-step__image,
  .umasa-flow .umasa-large-food,
  .umasa-sushi .umasa-step__image,
  .umasa-sushi .umasa-large-food {
    z-index: 8;
  }

  .story-title-en,
  .features-title-en {
    width: min(88vw, 680px);
    font-size: clamp(30px, 6vw, 46px);
  }

  .shop-page-contents {
    padding: 118px 0 82px;
  }

  .shop-page-contents__inner {
    padding: 0 40px;
  }

  .shop-page-title {
    margin-bottom: 72px;
    font-size: clamp(48px, 9.2vw, 68px);
  }

  .shop-gallery {
    --shop-slide-width: clamp(420px, 72vw, 680px);
    margin-bottom: 62px;
  }

  .shop-gallery__button--prev {
    left: 26px;
  }

  .shop-gallery__button--next {
    right: 26px;
  }

  .shop-page-lead {
    margin-bottom: 64px;
    font-size: clamp(22px, 3.6vw, 30px);
    line-height: 1.92;
  }

  .shop-about {
    grid-template-columns: 1fr;
    gap: 34px;
    max-width: 680px;
    margin-bottom: 48px;
  }

  .shop-about__details {
    gap: 24px;
    font-size: clamp(15px, 2.4vw, 18px);
  }

  .shop-detail-group h2 {
    font-size: clamp(22px, 3.5vw, 28px);
  }

  .shop-page-map {
    max-width: 680px;
  }

  .umasa-intro {
    padding: 156px 40px 42px;
  }

  .umasa-title {
    font-size: clamp(48px, 8.4vw, 64px);
  }

  .umasa-title-line {
    height: 74px;
    margin: 18px auto 54px;
  }

  .umasa-badge {
    width: min(56vw, 330px);
    height: auto;
  }

  .umasa-flow {
    padding: 46px 40px 0;
  }

  .umasa-sticky-preview {
    width: 84px;
    height: 84px;
  }

  .umasa-sticky-preview--bowl {
    width: min(22vw, 140px);
    height: auto;
    transform: translateY(-50px);
  }

  .umasa-sticky-preview--sushi {
    width: min(28vw, 170px);
    height: auto;
    transform: translateY(-48px);
  }

  .umasa-preview-marker--first {
    height: 140px;
  }

  .umasa-preview-marker--last {
    height: 138px;
  }

  .umasa-step {
    z-index: auto;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 30px 48px;
    max-width: 670px;
    min-height: 0;
    margin-bottom: 150px;
  }

  .umasa-sticky-slot {
    z-index: 4;
  }

  .umasa-large-food {
    z-index: 5;
  }

  .umasa-step__image {
    position: relative;
    z-index: 5;
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .umasa-step__image img {
    width: min(64vw, 510px);
  }

  .umasa-copy {
    position: relative;
    z-index: 3;
    grid-row: 2;
    max-width: none;
    font-size: clamp(19px, 3.3vw, 25px);
    letter-spacing: 0.05em;
    line-height: 1.78;
  }

  .umasa-copy--left {
    grid-column: 1;
  }

  .umasa-copy--right {
    grid-column: 2;
  }

  .umasa-copy h2 {
    margin-bottom: 16px;
    font-size: clamp(36px, 7vw, 52px);
  }

  .umasa-step--bonito .umasa-copy h2 {
    white-space: normal;
  }

  .umasa-copy p {
    margin-bottom: 38px;
  }

  .umasa-deco {
    display: block;
    z-index: 2;
  }

  .umasa-deco--wheat {
    right: 26px;
    bottom: 130px;
    width: 128px;
    height: 232px;
  }

  .umasa-deco--pig {
    left: 16px;
    bottom: 96px;
    width: 224px;
    height: 146px;
  }

  .umasa-deco--bonito {
    right: -2px;
    bottom: -14px;
    width: 154px;
    height: 146px;
  }

  .umasa-deco--rice {
    left: -4px;
    bottom: -38px;
    width: 174px;
    height: 178px;
  }

  .umasa-deco--fish {
    right: -34px;
    top: -40px;
    width: 248px;
    height: 222px;
  }

  .umasa-large-food--ramen {
    width: min(96vw, 720px);
    margin-top: -40px;
    margin-bottom: 0;
  }

  .umasa-sushi {
    padding: 82px 40px 0;
  }

  .umasa-sushi .umasa-badge {
    margin-bottom: 92px;
  }

  .umasa-sushi .umasa-flow__line {
    top: calc(82px + min(56vw, 330px));
  }

  .umasa-step--sumeshi {
    margin-top: 112px;
  }

  .umasa-step--sumeshi,
  .umasa-step--neta {
    margin-bottom: 152px;
  }

  .umasa-visual-placeholder {
    width: min(64vw, 510px);
    height: min(42vw, 320px);
  }

  .umasa-visual-placeholder span {
    top: -62px;
    min-width: 170px;
    height: 72px;
    font-size: 42px;
  }

  .umasa-large-food--sushi {
    width: min(100vw, 750px);
    margin-bottom: 0;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 22px 20px;
  }

  .site-header__logo {
    width: 108px;
    height: 54px;
  }

  .site-header.is-scrolled {
    padding: 12px 18px;
  }

  .site-header.is-scrolled .site-header__logo {
    width: 112px;
    height: 29px;
  }

  .site-header__actions {
    gap: 10px;
  }

  .language-switch {
    gap: 5px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .menu-button {
    width: 38px;
    gap: 8px;
    padding-block: 5px;
  }

  body.is-menu-open .menu-button span:nth-child(1) {
    transform: translateY(10px) rotate(38deg);
  }

  body.is-menu-open .menu-button span:nth-child(3) {
    transform: translateY(-10px) rotate(-38deg);
  }

  .global-menu__inner {
    gap: 18px;
    font-size: 21px;
  }

  .global-menu__logo {
    width: 190px;
    margin-bottom: 12px;
  }

  .global-menu__social {
    gap: 11px;
    margin-top: 18px;
  }

  .global-menu__social a {
    width: 34px;
    height: 34px;
  }

  .hero-copy-en {
    width: min(86vw, 340px);
    gap: 20px;
    margin-top: 2svh;
  }

  .hero-copy-en__line {
    font-size: 11px;
    letter-spacing: 0.08em;
    line-height: 1.5;
  }

  .hero-copy-en__line--main {
    font-size: 36px;
    letter-spacing: 0.07em;
  }

  .scroll-cue {
    font-size: 11px;
    gap: 11px;
  }

  .scroll-cue::after {
    height: 35px;
  }

  .story__inner,
  .features,
  .news,
  .shop {
    padding-inline: 24px;
  }

  .story {
    background-image: url("../assets/story-bg-sp.jpg");
    padding-top: 60px;
  }

  .section-kicker {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .story__title {
    margin-bottom: 64px;
  }

  .story__body {
    font-size: 15.5px;
    letter-spacing: 0.02em;
    line-height: 2.35;
  }

  .story__body p {
    margin-bottom: 42px;
  }

  .story__signature {
    width: 165px;
    margin-top: 4px;
  }

  .story__food {
    margin-top: 42px;
  }

  .features {
    background-image: url("../assets/features-bg-sp.jpg");
    padding-top: 68px;
    padding-bottom: 54px;
  }

  .features__lead {
    margin: 42px auto 44px;
    font-size: 15.5px;
    letter-spacing: 0.02em;
    line-height: 2.25;
  }

  .feature-cards {
    gap: 30px;
  }

  .feature-card {
    border-width: 3px;
  }

  .news {
    padding-top: 68px;
    padding-bottom: 58px;
  }

  .news h2 {
    margin-bottom: 44px;
    font-size: 32px;
  }

  .news-list {
    font-size: 16px;
  }

  .news-list li {
    padding: 20px 0;
  }

  .backnumber {
    margin-top: 34px;
    font-size: 16px;
  }

  .shop {
    padding-top: 40px;
    padding-bottom: 42px;
  }

  .sns-banner-wrap {
    margin-bottom: 32px;
  }

  .sns-banner-hotspot--instagram {
    left: 41.39%;
    top: 60.93%;
    width: 13.06%;
    height: 29.14%;
  }

  .sns-banner-hotspot--x {
    left: 58.61%;
    top: 60.6%;
    width: 13.06%;
    height: 28.81%;
  }

  .sns-banner-wrap::after {
    left: 74.7%;
    top: 59.4%;
    width: 15.2%;
    height: 31%;
  }

  .shop-info {
    gap: 26px;
    max-width: 310px;
  }

  .shop-info__logo {
    width: 174px;
  }

  .shop-info__text {
    font-size: 13px;
  }

  .shop-hours {
    padding: 15px 0;
  }

  .shop-hours__title {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .shop-hours__row {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 10px 0;
    font-size: 13px;
  }

  .shop-hours__row dd {
    gap: 3px;
  }

  .map {
    min-height: 244px;
    font-size: 16px;
  }

  .site-footer {
    min-height: 38px;
    font-size: 7px;
  }

  .menu-contents {
    padding: 92px 24px 54px;
  }

  .menu-title {
    margin-bottom: 44px;
    font-size: 36px;
    letter-spacing: 0.06em;
  }

  .menu-category {
    margin-bottom: 46px;
  }

  .menu-category__image {
    border-radius: 7px;
  }

  .menu-items {
    margin-top: 12px;
    font-size: 17px;
    letter-spacing: 0.02em;
    line-height: 1.55;
  }

  .menu-row {
    gap: 12px 18px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .menu-row--option {
    font-size: 15px;
  }

  .menu-row--option > span:first-child {
    padding-left: 0.45em;
  }

  .menu-row > span:last-child {
    font-size: 18px;
  }

  .menu-row--option > span:last-child {
    font-size: inherit;
  }

  .menu-row--note {
    grid-template-columns: 1fr;
  }

  .page-en .menu-items {
    font-size: 15px;
  }

  .page-en .menu-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
  }

  .page-en .menu-row > span:last-child {
    font-size: 15px;
  }

  .page-en .menu-row small {
    font-size: 0.78em;
  }

  .page-en .shop-info {
    gap: 30px;
    max-width: min(350px, calc(100vw - 48px));
  }

  .story-title-en,
  .features-title-en {
    gap: 8px;
    width: min(88vw, 340px);
    font-size: 25px;
    letter-spacing: 0.04em;
    line-height: 1.35;
  }

  .story-title-en span:first-child {
    font-size: 0.68em;
    letter-spacing: 0.08em;
  }

  .page-en .shop-hours__row,
  .page-en .shop-page-hours__row {
    grid-template-columns: 1fr;
  }

  .page-en .shop-hours__row dt {
    letter-spacing: 0.08em;
  }

  .page-en .shop-hours__row dd {
    padding-left: 0;
    line-height: 1.6;
  }

  .page-en .umasa-title {
    font-size: 28px;
  }

  .page-en .umasa-copy {
    font-size: 15px;
  }

  .page-en .umasa-copy h2 {
    font-size: 24px;
  }

  .umasa-ending-copy {
    width: min(330px, calc(100% - 48px));
    margin-bottom: 28px;
    font-size: 14px;
  }

  .umasa-ending-copy h2 {
    font-size: 24px;
  }

  .menu-instagram-link {
    justify-self: start;
    gap: 8px;
    font-size: 11px;
  }

  .menu-instagram-link img {
    width: 32px;
    height: 32px;
  }

  .shop-page-contents {
    padding: 92px 0 52px;
  }

  .shop-page-contents__inner {
    padding: 0 24px;
  }

  .shop-page-title {
    margin-bottom: 44px;
    font-size: 36px;
    letter-spacing: 0.06em;
  }

  .shop-gallery {
    --shop-slide-width: min(78vw, 330px);
    margin-bottom: 44px;
  }

  .shop-gallery__track {
    gap: 14px;
  }

  .shop-gallery__button {
    width: 38px;
    height: 38px;
  }

  .shop-gallery__button span {
    width: 11px;
    height: 11px;
  }

  .shop-gallery__button--prev {
    left: 12px;
  }

  .shop-gallery__button--next {
    right: 12px;
  }

  .shop-gallery__dots {
    gap: 9px;
    margin-top: 22px;
  }

  .shop-gallery__dots button {
    width: 32px;
    height: 3px;
  }

  .shop-gallery__dots button.is-active {
    width: 42px;
  }

  .shop-page-lead {
    margin-bottom: 42px;
    font-size: 17px;
    letter-spacing: 0.02em;
    line-height: 1.9;
  }

  .shop-about {
    gap: 24px;
    margin-bottom: 34px;
  }

  .shop-about__details {
    gap: 20px;
    font-size: 13px;
  }

  .shop-detail-group h2 {
    margin-bottom: 8px;
    font-size: 20px;
  }

  .shop-page-hours__row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 9px 0;
  }

  .shop-page-map iframe {
    height: 240px;
  }

  .umasa-intro {
    padding: 112px 24px 30px;
  }

  .umasa-title {
    font-size: 36px;
    letter-spacing: 0.08em;
  }

  .umasa-title-line {
    height: 48px;
    margin: 12px auto 34px;
  }

  .umasa-badge {
    width: 212px;
    height: auto;
  }

  .umasa-flow {
    padding: 32px 24px 0;
  }

  .umasa-flow__line {
    width: 3px;
    background-size: 3px 9px;
  }

  .umasa-sticky-preview {
    width: 64px;
    height: 64px;
  }

  .umasa-sticky-preview--bowl {
    width: 118px;
    height: auto;
    transform: translateY(-42px);
  }

  .umasa-sticky-preview--sushi {
    width: 130px;
    height: auto;
    transform: translateY(-44px);
  }

  .umasa-preview-marker--first {
    height: 100px;
  }

  .umasa-preview-marker--last {
    height: 108px;
  }

  .umasa-step {
    gap: 24px 28px;
    margin-bottom: 96px;
  }

  .umasa-step__image img {
    width: min(78vw, 352px);
  }

  .umasa-copy {
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 1.68;
  }

  .umasa-copy h2 {
    margin-bottom: 10px;
    font-size: 30px;
    letter-spacing: 0.07em;
  }

  .umasa-copy p {
    margin-bottom: 28px;
  }

  .umasa-step--soup .umasa-copy--left,
  .umasa-step--bonito .umasa-copy--left,
  .umasa-step--neta .umasa-copy--left {
    padding-right: 4px;
  }

  .umasa-step--soup .umasa-copy--right,
  .umasa-step--meat .umasa-copy--right,
  .umasa-step--sumeshi .umasa-copy--right {
    padding-left: 4px;
  }

  .umasa-deco {
    display: block;
  }

  .umasa-deco--wheat {
    right: 16px;
    bottom: 12px;
    width: 86px;
    height: 156px;
  }

  .umasa-deco--pig {
    left: 0;
    bottom: 128px;
    width: 136px;
    height: 92px;
  }

  .umasa-deco--bonito {
    right: -22px;
    bottom: 58px;
    width: 94px;
    height: 90px;
  }

  .umasa-deco--rice {
    left: -22px;
    bottom: 64px;
    width: 124px;
    height: 126px;
  }

  .umasa-deco--fish {
    right: -26px;
    top: 116px;
    width: 150px;
    height: 134px;
  }

  .umasa-large-food--ramen {
    width: calc(100% + 48px);
    max-width: none;
    margin-top: -20px;
    margin-right: -24px;
    margin-bottom: 0;
    margin-left: -24px;
  }

  .umasa-sushi {
    padding: 58px 24px 0;
  }

  .umasa-sushi .umasa-badge {
    margin-bottom: 74px;
  }

  .umasa-sushi .umasa-flow__line {
    top: 270px;
  }

  .umasa-step--sumeshi {
    margin-top: 84px;
  }

  .umasa-step--sumeshi,
  .umasa-step--neta {
    margin-bottom: 110px;
  }

  .umasa-visual-placeholder {
    width: min(78vw, 352px);
    height: min(52vw, 240px);
    border-width: 4px;
    border-radius: 10px;
  }

  .umasa-visual-placeholder span {
    top: -48px;
    left: -4px;
    min-width: 118px;
    height: 54px;
    border-radius: 9px 9px 9px 0;
    font-size: 30px;
  }

  .umasa-large-food--sushi {
    width: calc(100% + 48px);
    max-width: none;
    margin-right: -24px;
    margin-bottom: 0;
    margin-left: -24px;
  }

  [id] {
    scroll-margin-top: 66px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
