:root {
  --bg-ivory: #faf6ef;
  --bg-rice: #f2ece2;
  --bg-kinari: #eadfcf;
  --text-sumi: #1e1b18;
  --text-charcoal: #4c433b;
  --text-muted: #74685c;
  --accent-hojicha: #9d7a50;
  --accent-kinako: #b99973;
  --accent-matcha: #7f8b69;
  --accent-gold: #c7a97e;
  --line: #ddd2c4;
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg-ivory);
  color: var(--text-sumi);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  line-height: 1.7;
  scroll-behavior: auto;
}

img {
  max-width: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
}

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

.container {
  width: min(92vw, 1320px);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 10rem 0;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
}

.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }

.eyebrow {
  margin: 0 0 1.2rem;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--text-muted);
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 500;
  line-height: 1.2;
}

h1,
h2 {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.35rem, 5.8vw, 4.75rem);
}

h2 {
  font-size: clamp(1.32rem, 2.65vw, 2.35rem);
  margin-bottom: 1.5rem;
}

p {
  margin: 0;
}

.lead {
  color: var(--text-charcoal);
  max-width: 42rem;
  margin-top: 1.8rem;
}

.paper-texture,
.film-grain,
.dust-layer {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 30;
}

.paper-texture {
  background: radial-gradient(circle at 10% 0%, rgba(157, 122, 80, 0.05), transparent 42%),
    radial-gradient(circle at 80% 90%, rgba(127, 139, 105, 0.05), transparent 40%);
  mix-blend-mode: multiply;
}

.film-grain {
  opacity: 0.05;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  animation: grainMove 2.85s steps(2) infinite;
}

.webgl-hover {
  isolation: isolate;
}

.webgl-hover > img {
  position: relative;
  z-index: 1;
}

.dust-layer {
  z-index: 2;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.33) 0.9px, transparent 1.3px),
    radial-gradient(circle at 70% 75%, rgba(255, 255, 255, 0.22) 0.9px, transparent 1.3px);
  background-size: 220px 220px;
  opacity: 0.2;
  animation: dustFloat 96s linear infinite;
}

@keyframes grainMove {
  0% { transform: translate(0, 0); }
  25% { transform: translate(1px, -1px); }
  50% { transform: translate(-1px, 1px); }
  100% { transform: translate(0, 0); }
}

@keyframes dustFloat {
  to { transform: translateY(-30px); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  transition: background-color 0.8s var(--ease-luxury), border-color 0.8s var(--ease-luxury), backdrop-filter 0.8s var(--ease-luxury);
}

.site-header.scrolled {
  background: rgba(250, 246, 239, 0.75);
  border-bottom: 1px solid rgba(221, 210, 196, 0.8);
  backdrop-filter: blur(6px);
}

.header-inner {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.2rem;
}

.menu-btn {
  width: auto;
  min-width: 3rem;
  min-height: 2.75rem;
  padding: 0.65rem 1rem 0.65rem 0.15rem;
  border: none;
  background: transparent;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.35s ease;
}

.menu-btn:hover {
  opacity: 0.72;
}

.menu-btn.is-open {
  opacity: 1;
}

.menu-btn-bar {
  display: block;
  height: 1px;
  background: var(--text-sumi);
  transition:
    transform 0.45s var(--ease-luxury),
    opacity 0.35s ease,
    width 0.35s ease;
  transform-origin: center center;
}

/* 上長 → 中およそ2/3 → 下およそ1/3（左寄せ） */
.menu-btn-bar--1 {
  width: 1.38rem;
}

.menu-btn-bar--2 {
  width: 0.92rem;
}

.menu-btn-bar--3 {
  width: 0.46rem;
}

.menu-btn.is-open .menu-btn-bar--1 {
  transform: translateY(7px) rotate(42deg);
  width: 1.2rem;
}

.menu-btn.is-open .menu-btn-bar--2 {
  opacity: 0;
  width: 0;
  pointer-events: none;
}

.menu-btn.is-open .menu-btn-bar--3 {
  transform: translateY(-7px) rotate(-42deg);
  width: 1.2rem;
}

.overlay-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(5rem, 13vh, 7.5rem) clamp(1rem, 4vw, 2rem) 2rem;
  background: rgba(18, 16, 15, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.5s var(--ease-luxury),
    visibility 0.5s var(--ease-luxury);
}

.overlay-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.overlay-menu-panel {
  width: 100%;
  max-width: min(960px, 100%);
}

.overlay-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: clamp(1.75rem, 5.5vw, 3.25rem);
  row-gap: 2rem;
}

.overlay-menu-list li {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  padding-inline: clamp(0.25rem, 1.2vw, 0.75rem);
}

.overlay-menu-list a {
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: inline-block;
  margin: 0;
  padding: 0.15rem 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.8rem, 2.65vw, 0.98rem);
  font-weight: 400;
  letter-spacing: 0.5em;
  line-height: 1.95;
  color: rgba(244, 236, 222, 0.92);
  text-decoration: none;
  transition: color 0.35s ease, letter-spacing 0.45s var(--ease-luxury);
}

.overlay-menu-list a:hover {
  color: rgba(255, 250, 240, 0.98);
  letter-spacing: 0.52em;
}

.overlay-menu-list a[aria-current="page"] {
  color: rgba(255, 251, 244, 0.98);
  font-weight: 500;
}

.overlay-menu-list a:focus-visible {
  outline: 1px solid rgba(199, 169, 126, 0.55);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .overlay-menu {
    transition-duration: 0.01ms;
  }

  .menu-btn-bar,
  .overlay-menu-list a {
    transition-duration: 0.01ms;
  }
}

@media (max-width: 760px) {
  .overlay-menu-list {
    flex-direction: column;
    align-items: center;
    row-gap: 1.35rem;
  }

  .overlay-menu-list li {
    padding-inline: 0;
  }
}

.hero {
  min-height: min(92vh, 880px);
  min-height: 92svh;
  display: grid;
  align-items: center;
  justify-items: start;
  padding: clamp(5.5rem, 11vh, 7rem) 0 clamp(2rem, 6vh, 3.75rem);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(250, 246, 239, 0.72),
    rgba(250, 246, 239, 0.12) 52%,
    rgba(250, 246, 239, 0.04)
  );
}

.hero-media img {
  height: 100%;
  transform: scale(1.08);
}

.organic-mask {
  position: absolute;
  inset: 8% 9%;
  fill: transparent;
}

.hero-copy {
  padding-top: 0;
  max-width: 40rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
  margin-top: 1.75rem;
}

.hero-actions .link-btn {
  margin-top: 0;
}

.link-btn--ghost::after {
  transform: scaleX(0.35);
  opacity: 0.45;
}

.link-btn--ghost:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.link-btn {
  margin-top: 2rem;
  display: inline-block;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  text-transform: none;
  cursor: pointer;
  position: relative;
  color: var(--text-sumi);
  text-decoration: none;
}
.link-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--text-sumi);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease-luxury);
}

.link-btn:hover::after { transform: scaleX(1); }

/* ----- トップ：白無地＋高山堂調スライド（index のみ .hero--studio） ----- */

.hero--studio {
  position: relative;
  background: #f3f1ed;
  min-height: 100svh;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  isolation: isolate;
}

.hero-studio-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #f3f1ed;
  overflow: hidden;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide:not(.is-active) {
  z-index: 0;
}

.hero-studio-slideshow .hero-slide img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  object-fit: cover;
  object-position: center center;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition-duration: 0.01ms;
  }
}

.hero-studio-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: clamp(5rem, 11vh, 8.75rem);
  padding-bottom: 1.5rem;
  padding-left: calc(
    max(1.25rem, (100vw - min(92vw, 1320px)) / 2) +
      clamp(0.75rem, 2.5vw, 1.75rem)
  );
  padding-right: calc(
    max(1.25rem, (100vw - min(92vw, 1320px)) / 2) +
      clamp(0.75rem, 2.5vw, 1.75rem)
  );
  box-sizing: border-box;
  pointer-events: none;
}

.hero-studio-inner .hero-brand {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  place-self: auto;
  align-self: flex-start;
  text-align: left;
  margin: 0;
  pointer-events: auto;
}

.hero--studio .hero-logo-img.hero-logo-img--transparent {
  width: clamp(4.5rem, 12.5vw, 6rem);
  height: auto;
  max-height: min(30vh, 220px);
  object-fit: contain;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  filter: drop-shadow(0 2px 14px rgba(255, 250, 244, 0.32))
    drop-shadow(0 0 1px rgba(48, 42, 36, 0.06));
}

.hero-junhyo-wrap {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: clamp(-0.2rem, -0.35vw, 0);
  pointer-events: auto;
}

.hero-junhyo-motif {
  margin: 0;
  padding: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "Hiragino Mincho Pro",
    "MS PMincho",
    serif;
  font-feature-settings: "palt" on;
  font-weight: 400;
  font-size: clamp(2.35rem, 7.75vw, 5rem);
  letter-spacing: 0.45em;
  line-height: 1.72;
  color: rgba(46, 42, 38, 0.14);
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 720px) {
  .hero--studio {
    min-height: 100svh;
  }

  .hero-studio-inner {
    min-height: 100svh;
    padding-top: clamp(4.85rem, 13vw, 7rem);
    padding-left: calc(max(1rem, 4vw) + clamp(0.35rem, 2vw, 1rem));
    padding-right: calc(max(1rem, 4vw) + clamp(0.35rem, 2vw, 1rem));
  }

  .hero-junhyo-motif {
    font-size: clamp(2rem, 8.5vw, 3.6rem);
    letter-spacing: 0.42em;
  }

  .hero--studio .hero-logo-img.hero-logo-img--transparent {
    width: clamp(4rem, 32vw, 5.65rem);
    max-height: min(26vh, 190px);
  }

  .hero--studio .hero-brand {
    margin-block: 0;
  }
}

.hero-kicker {
  margin: 0;
  font-family: "Yuji Syuku", "Noto Serif JP", serif;
  font-size: clamp(0.88rem, 1.9vw, 1.05rem);
  letter-spacing: 0.42em;
  color: var(--text-charcoal);
  padding-top: 0.15rem;
}

.hero-brand {
  place-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo-heading {
  margin: 0;
  line-height: 0;
  font-size: 0;
}

.hero-logo-img {
  display: block;
  width: clamp(10.5rem, 42vw, 17rem);
  height: auto;
  max-height: min(58vh, 520px);
  object-fit: contain;
}

.home-about-intro {
  background: #ffffff;
  padding-top: clamp(3.5rem, 9vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 9vw, 5.5rem);
}

.home-about-intro-inner {
  max-width: 34rem;
  margin: 0 auto;
  text-align: center;
}

.home-about-heading {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.28rem, 2.9vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.38em;
  margin: 0 0 clamp(1.85rem, 4vw, 2.65rem);
  color: var(--text-sumi);
  line-height: 1.55;
}

.home-about-body p {
  margin: 0 0 1.5rem;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.88rem, 1.65vw, 0.97rem);
  line-height: 2.22;
  letter-spacing: 0.06em;
  color: #141312;
  text-align: center;
}

.home-about-body p:last-of-type {
  margin-bottom: 0;
}

.home-about-body strong {
  font-weight: 600;
}

.section.home-about-banner {
  padding-top: 0;
  padding-bottom: 0;
}

.home-about-banner {
  position: relative;
  min-height: min(48vh, 480px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.home-about-banner-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-about-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: sepia(0.14) contrast(0.94) brightness(0.9);
}

.home-about-banner-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(18, 15, 13, 0.42) 0%,
    rgba(14, 12, 11, 0.52) 100%
  );
}

.home-about-banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.45rem, 3.8vh, 2.1rem);
  padding: clamp(2.75rem, 7vw, 4rem) 1.5rem;
}

.home-about-banner-title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(0.92rem, 1.85vw, 1.05rem);
  letter-spacing: 0.42em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: rgba(255, 252, 248, 0.96);
  line-height: 1.9;
  text-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.35);
}

.home-about-banner-btn {
  display: inline-block;
  padding: 0.58rem 1.75rem;
  border: 1px solid rgba(255, 250, 245, 0.88);
  color: rgba(255, 252, 248, 0.96);
  font-family: "Noto Serif JP", serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-decoration: none;
  background: transparent;
  transition:
    background 0.4s var(--ease-luxury),
    border-color 0.4s var(--ease-luxury),
    color 0.35s ease;
}

.home-about-banner-btn:hover {
  background: rgba(255, 252, 248, 0.1);
  border-color: rgba(255, 252, 248, 1);
  color: #fffefc;
}

.section.home-store-banner {
  padding-top: 0;
  padding-bottom: 0;
}

.home-store-banner {
  position: relative;
  min-height: min(48vh, 480px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.home-store-banner-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-store-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: sepia(0.14) contrast(0.94) brightness(0.9);
}

.home-store-banner-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(18, 15, 13, 0.42) 0%,
    rgba(14, 12, 11, 0.52) 100%
  );
}

.home-store-banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.45rem, 3.8vh, 2.1rem);
  padding: clamp(2.75rem, 7vw, 4rem) 1.5rem;
}

.home-store-banner-title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(0.92rem, 1.85vw, 1.05rem);
  letter-spacing: 0.42em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: rgba(255, 252, 248, 0.96);
  line-height: 1.9;
  text-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.35);
}

.home-store-banner-btn {
  display: inline-block;
  padding: 0.58rem 1.75rem;
  border: 1px solid rgba(255, 250, 245, 0.88);
  color: rgba(255, 252, 248, 0.96);
  font-family: "Noto Serif JP", serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-decoration: none;
  background: transparent;
  transition:
    background 0.4s var(--ease-luxury),
    border-color 0.4s var(--ease-luxury),
    color 0.35s ease;
}

.home-store-banner-btn:hover {
  background: rgba(255, 252, 248, 0.1);
  border-color: rgba(255, 252, 248, 1);
  color: #fffefc;
}

.home-menu-showcase {
  --home-gutter: max(1rem, calc((100vw - min(92vw, 1320px)) / 2));
  --home-menu-card-w: min(82vw, 640px);
  --home-menu-track-bleed: clamp(3rem, 9vw, 8.5rem);
  background: #f4f2ef;
  padding-top: clamp(4.5rem, 10vw, 7rem);
  padding-bottom: clamp(4.5rem, 10vw, 7rem);
  overflow-x: visible;
}

.home-menu-showcase-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(3.25rem, 7vw, 5.5rem);
}

.home-menu-showcase-heading-row {
  display: flex;
  justify-content: center;
  padding-inline: var(--home-gutter);
}

.home-menu-v-heading-centered {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
  letter-spacing: 0.38em;
  line-height: 1.75;
  color: #2c2824;
}

.home-menu-showcase-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: clamp(0.65rem, 1.8vw, 1.25rem);
  padding-left: var(--home-gutter);
  padding-right: 0;
  position: relative;
  box-sizing: border-box;
}

.home-menu-v-sub {
  margin: 0;
  flex: 0 0 auto;
  max-width: none;
  padding-top: 0.2rem;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
  letter-spacing: 0.38em;
  line-height: 1.75;
  color: rgba(44, 40, 36, 0.88);
  position: relative;
  z-index: 3;
  pointer-events: none;
}

.home-menu-carousel-column {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.35rem, 2.8vw, 2rem);
}

@media (min-width: 721px) {
  .home-menu-carousel-column {
    margin-left: clamp(-7.5rem, -10vw, -4rem);
  }
}

.home-menu-carousel-viewport {
  position: relative;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.home-menu-card-track {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  min-width: 0;
  padding: 0 0 0.35rem;
  padding-inline: max(
    0px,
    calc((100% - var(--home-menu-card-w)) / 2 - var(--home-menu-track-bleed))
  );
  scroll-padding-inline: max(
    0px,
    calc((100% - var(--home-menu-card-w)) / 2 - var(--home-menu-track-bleed))
  );
  outline: none;
  -webkit-overflow-scrolling: touch;
}

.home-menu-card-track::-webkit-scrollbar {
  display: none;
}

.home-menu-card {
  flex: 0 0 auto;
  width: var(--home-menu-card-w);
  scroll-snap-align: center;
}

.home-menu-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: opacity 0.35s ease;
}

.home-menu-card-link:hover {
  box-shadow: none;
  border: none;
}

.home-menu-card-visual {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f4f2ef;
}

.home-menu-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s var(--ease-luxury);
}

.home-menu-card-link:hover .home-menu-card-visual img {
  transform: scale(1.03);
}

.home-menu-card-body {
  padding: 0.85rem 0.25rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.home-menu-card-name {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.45;
  color: #2c2824;
  text-align: center;
}

.home-menu-card-desc {
  margin: 0;
  font-size: clamp(0.72rem, 1.2vw, 0.8rem);
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: rgba(44, 40, 36, 0.68);
  text-align: center;
}

.home-menu-arrow {
  position: absolute;
  top: clamp(4.25rem, 14vw, 7.25rem);
  z-index: 10;
  width: clamp(2.75rem, 8vw, 3.75rem);
  height: clamp(3.25rem, 9vw, 4.5rem);
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  color: rgba(38, 34, 30, 0.38);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.35s ease, opacity 0.35s ease;
}

.home-menu-arrow:hover {
  color: rgba(38, 34, 30, 0.62);
}

.home-menu-arrow:focus-visible {
  outline: 2px solid rgba(38, 34, 30, 0.45);
  outline-offset: 4px;
  border-radius: 2px;
}

.home-menu-arrow--prev {
  left: clamp(0.15rem, 1.25vw, 0.65rem);
  z-index: 12;
}

.home-menu-arrow--next {
  right: clamp(0.15rem, 1.5vw, 0.65rem);
}

.home-menu-arrow-svg {
  display: block;
  flex-shrink: 0;
}

.home-menu-showcase-cta {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.8rem, 1.25vw, 0.9rem);
  font-weight: 400;
  letter-spacing: 0.38em;
  text-indent: 0.38em;
  color: #2a2622;
  text-decoration: none;
  padding-bottom: 0.42rem;
  border-bottom: 1px solid currentColor;
  transition: color 0.35s ease, border-color 0.35s ease;
}

.home-menu-showcase-cta:hover {
  color: rgba(42, 38, 34, 0.72);
}

.seasonal,
.philosophy,
.craft {
  background: linear-gradient(180deg, rgba(242, 236, 226, 0.35), rgba(250, 246, 239, 0));
}

.seasonal-copy {
  padding-right: 2.5rem;
}

.seasonal-media,
.craft-media {
  height: clamp(26rem, 50vw, 38rem);
  overflow: hidden;
}

.seasonal-media.image-mask img,
.seasonal-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}

.offset-copy {
  padding-left: 2rem;
}

.product-grid {
  margin-top: 3.3rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.3rem;
}

.product-card {
  grid-column: span 3;
  border: 1px solid var(--line);
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.26);
  transition: transform 0.7s var(--ease-luxury), box-shadow 0.7s var(--ease-luxury);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 28px rgba(30, 27, 24, 0.08);
}

.product-media {
  aspect-ratio: 4 / 5;
  margin-bottom: 1rem;
  overflow: hidden;
}

.product-media img,
.gift-card img,
.craft-media img,
.seasonal-media img {
  transition: transform 0.45s var(--ease-luxury);
}

.product-card:hover img,
.gift-card:hover img,
.craft-media:hover img,
.seasonal-media:hover img {
  transform: scale(1.03);
}

.product-card h3,
.gift-card h3 {
  font-size: 1.2rem;
}

.product-card p {
  color: var(--text-muted);
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.horizontal-section {
  overflow: hidden;
  padding-bottom: clamp(6rem, 14vw, 10rem);
}

.horizontal-track {
  display: flex;
  gap: 2rem;
  padding: 0 5vw 0.5rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
}

.gift-card {
  scroll-snap-align: start;
  flex: 0 0 min(58vw, 760px);
  flex-shrink: 0;
  border: 1px solid var(--line);
  padding: 1rem;
  background: var(--bg-rice);
}

.gift-card img {
  height: min(56vh, 530px);
  margin-bottom: 0.8rem;
}

.journal-grid {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.journal-item {
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.2rem;
}

.journal-item time {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.journal-item h3 {
  font-size: clamp(1rem, 1.9vw, 1.55rem);
}

.site-footer {
  background: #fff;
  color: var(--text-charcoal);
  padding: clamp(2.5rem, 6vw, 3.75rem) 0;
  border-top: 1px solid rgba(30, 26, 22, 0.08);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 1.35rem);
  text-align: center;
}

.footer-logo-link {
  display: block;
  line-height: 0;
  text-decoration: none;
}

.footer-logo-link:focus-visible {
  outline: 2px solid rgba(30, 26, 22, 0.35);
  outline-offset: 6px;
  border-radius: 2px;
}

.footer-logo {
  display: block;
  width: auto;
  max-width: min(52vw, 15.5rem);
  height: clamp(5.75rem, 12.5vw, 8rem);
  max-height: clamp(5.75rem, 12.5vw, 8rem);
  object-fit: contain;
}

.footer-copy {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: rgba(30, 26, 22, 0.48);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-hojicha);
}

.cursor-ring {
  width: 30px;
  height: 30px;
  margin: -12px 0 0 -12px;
  border: 1px solid rgba(157, 122, 80, 0.45);
  border-radius: 50%;
  transition: transform 0.4s var(--ease-luxury);
}

/* clip-path: path() は座標解釈の差で画像が欠けるため、角丸＋overflow で統一 */
.image-mask {
  overflow: hidden;
  border-radius: clamp(0.75rem, 1.3vw, 1.6rem) clamp(1.1rem, 2vw, 2.1rem)
    clamp(0.6rem, 1vw, 1.1rem) clamp(0.85rem, 1.5vw, 1.4rem);
}

.product-media.image-mask {
  position: relative;
}

.product-media.image-mask img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}

.craft-media.image-mask img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}

.gift-card.image-mask > img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.reveal-up,
.reveal-card,
.reveal-lines,
.reveal-media {
  opacity: 0;
  transform: translateY(24px);
}

.line-word {
  display: inline-block;
}

.about-editorial {
  padding-top: 8.5rem;
}

.about-sheet {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(242, 236, 226, 0.72), rgba(250, 246, 239, 0.92));
}

.about-sheet-top,
.about-sheet-bottom {
  background: linear-gradient(90deg, #4cb0dd, #3f9fcb);
  color: #f7fbff;
  padding: 0.55rem 0.9rem;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
}

.about-sheet-top span:nth-child(2) {
  letter-spacing: 0.04em;
  text-transform: none;
}

.about-sheet-bottom span:last-child {
  font-size: 0.7rem;
}

.about-vertical-wrap {
  display: grid;
  grid-template-columns: 0.8fr 4.6fr 1fr;
  gap: 1rem;
  padding: 2.4rem 1rem 1.1rem;
  min-height: min(73vh, 680px);
}

.about-title-vertical,
.about-shop-vertical {
  writing-mode: vertical-rl;
  text-orientation: upright;
  margin: 0;
}

.about-title-vertical {
  justify-self: center;
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  color: #b8b5b1;
  letter-spacing: 0.2em;
}

.about-shop-vertical {
  justify-self: center;
  font-size: clamp(1.65rem, 3.5vw, 2.6rem);
  letter-spacing: 0.14em;
  color: var(--text-charcoal);
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
}

.about-columns {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  padding: 0.5rem 0.6rem 0.3rem;
}

.about-columns p {
  margin: 0;
  font-size: clamp(0.92rem, 1.4vw, 1.08rem);
  color: var(--text-sumi);
  line-height: 1.95;
  letter-spacing: 0.08em;
  min-height: 30rem;
}

.about-note {
  margin: 0;
  padding: 0.35rem 0.9rem 0.8rem;
  font-size: 0.88rem;
  color: var(--text-charcoal);
}

.about-sheet-body {
  position: relative;
  overflow: hidden;
}

.junhyo-watermark {
  position: absolute;
  left: 2%;
  top: 6%;
  z-index: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2.85rem, 9.5vw, 5.25rem);
  letter-spacing: 0.28em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: rgba(30, 27, 24, 0.065);
  pointer-events: none;
}

.about-sheet-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 300px);
  gap: clamp(1rem, 2.2vw, 2.2rem);
  align-items: end;
  padding: 2.2rem 1.1rem 0.2rem;
}

.about-sheet-main .about-vertical-wrap {
  padding: 0 0 0.4rem;
  min-height: min(70vh, 640px);
}

.about-feature {
  margin: 0;
  position: relative;
}

.about-feature-frame {
  border: 1px solid var(--line);
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 26px 46px rgba(30, 27, 24, 0.09);
}

.about-feature-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  max-height: min(62vh, 520px);
  object-fit: cover;
  object-position: center center;
}

.about-feature-caption {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-align: right;
}

.commitment-editorial {
  padding-top: 8.5rem;
}

.commitment-sheet-body {
  position: relative;
}

.commitment-layout {
  display: grid;
  grid-template-columns: 1.05fr minmax(8rem, 0.82fr) 0.95fr;
  gap: 0.75rem;
  align-items: start;
  padding: 1.5rem 0.95rem 0.95rem;
}

.commitment-copy {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-right: 0.5rem;
}

.commitment-copy p {
  margin: 0;
  font-size: clamp(0.92rem, 1.38vw, 1.05rem);
  line-height: 1.92;
  letter-spacing: 0.07em;
  min-height: 30rem;
}

.commitment-title-cluster {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.35rem;
}

.commitment-hero-title {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: clamp(1rem, 1.42vw, 1.26rem);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.12em;
  color: var(--text-sumi);
}

.commitment-hero-sub {
  margin: 0;
  max-width: 14rem;
  font-size: 0.8rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-align: center;
}

.commitment-title-vertical {
  margin: 0;
  margin-top: 0.35rem;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: clamp(1.68rem, 3.5vw, 2.65rem);
  letter-spacing: 0.14em;
  color: var(--text-charcoal);
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
}

.commitment-visual {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  justify-content: center;
}

.commitment-visual-head {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.04em;
  font-size: 1.5rem;
  line-height: 1.1;
}

.commitment-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
}

.commitment-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
}

.commitment-photo img {
  height: 8.2rem;
  width: 100%;
  object-fit: cover;
}

.commitment-photo-wide {
  grid-column: span 2;
}

.commitment-photo-wide img {
  height: 9.2rem;
}

.commitment-process {
  display: grid;
  grid-template-columns: minmax(200px, 360px) minmax(0, 1fr);
  gap: 1.35rem;
  align-items: center;
  padding: 1.2rem 0.95rem 1.4rem;
  border-top: 1px solid rgba(221, 210, 196, 0.75);
}

.commitment-process-figure {
  margin: 0;
}

.commitment-process-figure img {
  display: block;
  width: 100%;
  height: 11.5rem;
  object-fit: cover;
  border: 1px solid var(--line);
}

.commitment-process-copy .commitment-process-note {
  margin-top: 0.65rem;
  padding: 0;
}

.commitment-caption {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-charcoal);
}

@media (prefers-reduced-motion: reduce) {
  .film-grain,
  .dust-layer {
    animation: none;
  }

  .reveal-up,
  .reveal-card,
  .reveal-lines,
  .reveal-media,
  .line-word {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 7rem 0;
  }

  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8 {
    grid-column: 1 / -1;
  }

  .offset-copy,
  .seasonal-copy {
    padding: 0;
  }

  .home-menu-showcase {
    --home-menu-card-w: min(92vw, 490px);
    --home-menu-track-bleed: clamp(2rem, 7vw, 5rem);
  }

  .home-menu-showcase-heading-row {
    padding-inline: max(1rem, 4vw);
  }

  .home-menu-showcase-inner {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(1rem, 2.8vw, 1.5rem);
    padding-left: max(1rem, 4vw);
    padding-right: max(1rem, 4vw);
  }

  .home-menu-v-sub {
    max-width: none;
    align-self: center;
    padding-top: 0;
  }

  .home-menu-carousel-column {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .home-menu-carousel-viewport {
    width: 100%;
  }

  .home-menu-arrow--prev {
    left: max(0.35rem, 3vw);
  }

  .home-menu-arrow--next {
    right: max(0.35rem, 3vw);
  }

  .product-card {
    grid-column: span 6;
  }

  .gift-card {
    flex-basis: 82vw;
  }

  .about-sheet-main {
    grid-template-columns: 1fr;
  }

  .about-feature {
    order: -1;
    justify-self: stretch;
  }

  .about-feature-caption {
    text-align: left;
  }

  .junhyo-watermark {
    position: absolute;
    font-size: clamp(2.2rem, 16vw, 3.85rem);
    left: 50%;
    transform: translateX(-50%);
    top: 3%;
    opacity: 1;
    color: rgba(30, 27, 24, 0.08);
  }

  .about-vertical-wrap {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 1.4rem;
  }

  .about-title-vertical,
  .about-shop-vertical,
  .about-columns {
    writing-mode: horizontal-tb;
  }

  .about-title-vertical,
  .about-shop-vertical {
    letter-spacing: 0.08em;
  }

  .about-columns {
    display: grid;
    gap: 1rem;
    overflow: visible;
    padding: 0;
  }

  .about-columns p {
    min-height: 0;
    line-height: 1.9;
  }

  .commitment-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .commitment-copy {
    writing-mode: horizontal-tb;
    overflow: visible;
    display: grid;
    padding-right: 0;
  }

  .commitment-copy p {
    min-height: 0;
  }

  .commitment-title-vertical {
    writing-mode: horizontal-tb;
    font-size: clamp(1.6rem, 6.5vw, 2.45rem);
    letter-spacing: 0.08em;
  }

  .commitment-hero-title {
    writing-mode: horizontal-tb;
    font-size: 1.1rem;
    line-height: 1.75;
    text-align: center;
  }

  .commitment-photo img {
    height: 7.2rem;
  }

  .commitment-photo-wide img {
    height: 8.2rem;
  }

  .commitment-process {
    grid-template-columns: 1fr;
  }

  .commitment-process-figure img {
    height: auto;
    max-height: 16rem;
  }

  .page-article-split {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .page-article-pull {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .page-pull-kanji {
    writing-mode: horizontal-tb;
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

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

  .commit-photo-row {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-inline: auto;
    gap: 1rem;
  }

  .commit-photo-plain img {
    height: auto;
    aspect-ratio: 4 / 5;
    max-height: none;
  }

  .commit-bottom-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .commit-bottom-cta .link-btn {
    display: inline-block;
  }
}

@media (max-width: 720px) {
  .header-inner {
    height: 4.4rem;
  }

  .hero:not(.hero--studio) {
    min-height: 88svh;
    padding: clamp(5rem, 14vw, 6.25rem) 0 clamp(1.75rem, 5vw, 2.5rem);
  }

  h1 {
    font-size: clamp(1.95rem, 9vw, 3.35rem);
  }

  h2 {
    font-size: clamp(1.22rem, 5.2vw, 2.05rem);
  }

  .product-grid {
    gap: 0.9rem;
  }

  .product-card {
    grid-column: 1 / -1;
  }

  .journal-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ---- 記事ページ：しろいくもについて / こだわり ---- */

.page-article .section:first-of-type.page-article-hero,
.page-article-hero.section {
  padding-top: 6.25rem;
  padding-bottom: 2.75rem;
}

.page-article-hero {
  position: relative;
  overflow: hidden;
}

.page-about-visual-hero.section {
  padding-block: 0 !important;
}

.page-about-visual-hero__scene {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: min(92svh, 960px);
  height: min(92svh, 960px);
  background: #faf8f5;
  overflow: hidden;
}

.page-about-visual-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-about-visual-hero__img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 122%;
  height: 122%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  object-fit: cover;
  object-position: 96% center;
  transform: translate(calc(-50% + clamp(4.5rem, 15vw, 13rem)), -50%) scale(1.1);
  transform-origin: center center;
  box-sizing: border-box;
}

.page-about-visual-hero__text .page-article-lead,
.page-about-visual-hero__lead {
  max-width: 22.5rem;
  line-height: 1.92;
}

.page-about-visual-hero__text {
  position: absolute;
  inset: clamp(5rem, 13vh, 9.5rem) 0 auto 0;
  z-index: 2;
  pointer-events: none;
}

.page-about-visual-hero__text-inner {
  max-width: min(92vw, 1320px);
  margin: 0 auto;
  padding-left: max(1rem, calc((100vw - min(92vw, 1320px)) / 2));
  padding-right: max(1rem, 6vw);
  box-sizing: border-box;
}

.page-about-visual-hero__text .eyebrow,
.page-about-visual-hero__text .page-article-title,
.page-about-visual-hero__text .page-article-lead {
  text-shadow:
    0 0 32px rgba(252, 250, 247, 0.94),
    0 1px 0 rgba(255, 255, 255, 0.88);
}

.page-about-visual-hero__text-inner .reveal-up,
.page-about-visual-hero__text-inner .page-article-lead {
  pointer-events: auto;
}

.page-about-visual-hero__caption-row {
  padding: clamp(1.85rem, 5vw, 3.25rem) 0 clamp(3rem, 8vw, 5.5rem);
}

.page-about-visual-hero__caption {
  margin: 0 auto;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  line-height: 1.85;
}

@media (max-width: 720px) {
  .page-about-visual-hero__scene {
    min-height: min(78svh, 740px);
    height: min(78svh, 740px);
  }

  .page-about-visual-hero__img {
    width: 118%;
    height: 118%;
    object-position: 94% center;
    transform: translate(calc(-50% + clamp(2rem, 10vw, 7rem)), -50%) scale(1.06);
  }

  .page-about-visual-hero__text {
    inset: clamp(4.75rem, 21vw, 7.25rem) 0 auto 0;
  }

  .page-about-visual-hero__text-inner {
    padding-inline: max(1rem, 4vw);
  }

  .page-about-visual-hero__caption-row {
    padding-bottom: clamp(2.35rem, 9vw, 4rem);
  }
}

.page-article-watermark {
  position: absolute;
  left: 3%;
  top: 10%;
  z-index: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2.1rem, 8.5vw, 4.75rem);
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.18em;
  color: rgba(30, 27, 24, 0.06);
  pointer-events: none;
}

.page-article-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}

.page-article-title {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(1.68rem, 4vw, 3.05rem);
  line-height: 1.28;
  margin: 0.6rem 0 1.5rem;
  letter-spacing: 0.02em;
}

.page-article-lead {
  font-size: clamp(0.97rem, 1.38vw, 1.09rem);
  line-height: 2.06;
  letter-spacing: 0.035em;
  color: var(--text-charcoal);
  margin: 0;
}

.page-article-section {
  padding-top: clamp(3.5rem, 8vw, 5rem);
  padding-bottom: clamp(3.5rem, 8vw, 5rem);
}

.page-article-muted {
  background: linear-gradient(
    185deg,
    rgba(242, 236, 226, 0.55) 0%,
    rgba(250, 246, 239, 0.15) 100%
  );
}

.page-article-split {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1rem, 3.5vw, 2.5rem);
  align-items: stretch;
  max-width: min(940px, 100%);
  margin-inline: auto;
}

.page-article-pull {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.2rem;
  padding-top: 0.4rem;
}

.page-pull-kanji {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(1.65rem, 3.8vw, 2.45rem);
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: rgba(30, 27, 24, 0.14);
}

.page-article-figure {
  margin: 0;
}

.page-article-figure--solo {
  margin: 0 auto;
  max-width: min(940px, 100%);
}

.page-article-figure--solo img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
}

.page-article-figure img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.page-article-figure figcaption {
  margin-top: 0.85rem;
  font-size: 0.81rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: var(--text-muted);
  text-align: center;
}

.page-section-label {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.page-section-label.page-section-label--natural {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.78rem, 1.35vw, 0.88rem);
  letter-spacing: 0.14em;
  text-transform: none;
}

.menu-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.35rem, 3vw, 2.25rem);
}

.menu-story-card {
  border: none;
  padding: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 1.8vw, 1.15rem);
}

.menu-story-name {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1.22rem;
  margin: 0;
  letter-spacing: 0.06em;
  color: var(--text-sumi);
}

.menu-story-card > p {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--text-charcoal);
  margin: 0;
}

.menu-story-thumb {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f4f2ef;
}

.menu-story-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.page-article-prose {
  max-width: 40rem;
  margin-inline: auto;
}

.page-article-max p {
  font-size: clamp(1rem, 1.35vw, 1.06rem);
  line-height: 2.03;
  color: var(--text-charcoal);
  margin: 0 0 1.35rem;
}

.page-article-max p:last-of-type {
  margin-bottom: 0;
}

.page-article-footnote {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-top: 1.75rem;
  line-height: 1.8;
}

.page-article-cta {
  margin-top: 2rem;
  position: relative;
  z-index: 3;
}
.store-detail-grid {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  align-items: start;
}

.store-detail-figure {
  margin: 0;
}

.store-detail-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.store-detail-body.page-article-prose {
  margin-inline: 0;
  max-width: none;
}

.store-info-list {
  margin: 0 0 1.5rem;
}

.store-info-row {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 0.75rem 1.25rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.store-info-row:first-of-type {
  border-top: 1px solid var(--line);
}

.store-info-row dt {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.store-info-row dd {
  margin: 0;
  font-size: clamp(0.92rem, 1.15vw, 0.98rem);
  line-height: 1.85;
  color: var(--text-charcoal);
}

.store-info-row dd a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 900px) {
  .store-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .store-info-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

.page-store-heading {
  letter-spacing: clamp(0.26em, 2.15vw, 0.42em);
}

.store-branch-stack {
  max-width: 44rem;
  margin-inline: auto;
}

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

.store-branch-item {
  padding-bottom: clamp(2rem, 4.75vw, 2.95rem);
  margin-bottom: clamp(2rem, 4.75vw, 2.95rem);
  border-bottom: 1px solid var(--line);
}

.store-branch-item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.store-branch-heading {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0 0 0.42rem;
  color: var(--text-charcoal);
}

.store-branch-inside {
  margin: 0 0 clamp(1.05rem, 2.6vw, 1.42rem);
  font-size: clamp(0.86rem, 1.26vw, 0.93rem);
  line-height: 1.74;
  color: var(--text-muted);
  letter-spacing: 0.035em;
}

.store-branch-item .store-info-list {
  margin-bottom: 0;
}

.store-map-link {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-underline-offset: 0.2em;
  color: var(--text-charcoal);
}

@media (max-width: 540px) {
  .store-map-link {
    display: block;
    margin-top: 0.45rem;
  }
}
.page-article-hero--commit .page-article-watermark {
  display: none;
}

.page-article-title--commit {
  margin-top: 0.25rem;
  font-size: clamp(1.88rem, 4.35vw, 3.2rem);
}

.commit-kicker {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.94rem, 1.45vw, 1.06rem);
  letter-spacing: 0.06em;
  color: var(--text-charcoal);
  margin: 0 0 0.35rem;
  line-height: 1.7;
}

.commit-subline {
  font-size: clamp(0.88rem, 1.25vw, 0.96rem);
  color: var(--text-muted);
  letter-spacing: 0.045em;
  margin: 1.1rem 0 0;
  line-height: 2;
}

/* こだわり：フラットな写真＋テキスト（レイアウト参考：髙山堂お菓子ページなどの読みもの型） */
.page-commit-hero-editorial__inner {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}

.page-commit-strip.section {
  padding-top: clamp(2.75rem, 7vw, 4.75rem);
  padding-bottom: clamp(2.75rem, 7vw, 4.75rem);
}

.commit-prose-flow {
  max-width: 38rem;
  margin-inline: auto;
}

.commit-prose-flow p {
  margin: 0 0 1.45rem;
  font-size: clamp(1rem, 1.35vw, 1.05rem);
  line-height: 2.06;
  color: var(--text-charcoal);
}

.commit-prose-flow p:last-child {
  margin-bottom: 0;
}

.commit-block-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.12rem, 2.1vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  margin: 0 0 1.85rem;
  color: var(--text-charcoal);
}

.commit-photo-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.65rem, 2vw, 1.35rem);
  align-items: start;
}

.commit-photo-plain {
  margin: 0;
}

.commit-photo-plain img {
  display: block;
  width: 100%;
  height: clamp(13rem, 32vw, 22rem);
  object-fit: cover;
}

.commit-photo-note {
  margin: 1.65rem auto 0;
  max-width: 38rem;
  font-size: 0.875rem;
  line-height: 1.92;
  color: var(--text-muted);
  letter-spacing: 0.025em;
  text-align: center;
}

.commit-figure-studio {
  margin: 0 auto;
  max-width: min(92vw, 920px);
  padding: 0;
}

.commit-figure-studio img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(70vw, 28rem);
  object-fit: cover;
}

.commit-figure-studio__caption {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  line-height: 1.92;
  color: var(--text-muted);
  letter-spacing: 0.035em;
  text-align: center;
}

.commit-bottom-cta .link-btn:not(:first-child) {
  margin-left: 0;
}

.commit-bottom-cta .commitment-secondary-link::after {
  transform-origin: left;
}

.commit-bottom-cta .commitment-secondary-link:hover::after {
  transform: scaleX(1);
}

/* ---- メニューページ ---- */

.page-menu .section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.menu-board {
  padding-top: clamp(2.75rem, 5vw, 4rem);
  background: radial-gradient(ellipse 118% 72% at 78% 14%, rgba(200, 226, 246, 0.38), transparent 58%),
    radial-gradient(ellipse 86% 62% at 8% 92%, rgba(214, 235, 248, 0.42), transparent 52%),
    linear-gradient(180deg, rgba(250, 246, 239, 0.86), rgba(250, 246, 239, 1));
}

.menu-board-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.75rem;
}

.menu-board-head--tight {
  margin-bottom: 1.75rem;
}

.menu-board-title {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0.5rem 0 0.75rem;
}

.menu-board-intro {
  margin: 0;
  font-size: clamp(0.95rem, 1.25vw, 1.02rem);
  line-height: 2;
  color: var(--text-charcoal);
}

.menu-signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}

.menu-price-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: clamp(0.6rem, 1vw, 1rem);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(30, 27, 24, 0.05);
}

.menu-price-card-visual {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-rice);
}

.menu-price-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-luxury);
}

.menu-price-card:hover .menu-price-card-visual img {
  transform: scale(1.035);
}

.menu-price-card-body {
  padding: 1.2rem 1.15rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.menu-price-name {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(1.18rem, 2.2vw, 1.42rem);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.02em;
}

.menu-price-tag {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.menu-price-num {
  margin: 0.35rem 0 0;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--text-sumi);
}

.menu-price-num .yen {
  font-size: 0.75em;
  margin-right: 0.06em;
}

.menu-price-note {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  line-height: 1.92;
  color: var(--text-charcoal);
}

.menu-feature {
  background: linear-gradient(185deg, rgba(242, 236, 226, 0.45), rgba(250, 246, 239, 0.15));
}

.menu-feature-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
  max-width: 1180px;
  margin-inline: auto;
}

.menu-feature-visual {
  border-radius: clamp(0.75rem, 1.2vw, 1.35rem);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(30, 27, 24, 0.07);
}

.menu-feature-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.menu-feature-title {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(1.65rem, 3.35vw, 2.55rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0.45rem 0 0;
}

.menu-feature-price {
  margin: 0.75rem 0 0;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}

.menu-feature-lead {
  margin: 1.25rem 0 0;
  font-size: clamp(0.98rem, 1.35vw, 1.07rem);
  line-height: 2.05;
  color: var(--text-charcoal);
}

.menu-feature-lead strong {
  color: #a84a52;
  font-weight: 500;
}

.menu-feature-caption {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.menu-season-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  width: 100%;
}

.menu-item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(1.1rem, 2.8vw, 1.85rem);
  align-items: start;
  width: 100%;
}

.menu-junhyo-badge {
  display: grid;
  place-items: center;
  border: double 4px rgba(76, 67, 59, 0.35);
  aspect-ratio: 1;
  width: min(8.5rem, 38vw);
  flex-shrink: 0;
}

.menu-junhyo-inner {
  font-family: "Noto Serif JP", serif;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: clamp(1.38rem, 3vw, 1.72rem);
  letter-spacing: 0.32em;
  color: rgba(30, 27, 24, 0.45);
}

.menu-grid-section--muted {
  background: rgba(252, 250, 245, 0.65);
}

.menu-item-tile-img {
  border-radius: 0.65rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.menu-item-tile-img img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
}

.menu-item-tile-name {
  margin: 0.75rem 0 0.15rem;
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.55;
}

.menu-item-tile-price {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.menu-limited {
  background: linear-gradient(
    178deg,
    rgba(237, 244, 252, 0.55),
    rgba(250, 246, 239, 0.35) 60%,
    rgba(250, 246, 239, 0.92)
  );
}

.menu-limited-head {
  text-align: center;
  margin-bottom: 2rem;
}

.menu-limited-title {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(1.65rem, 3.75vw, 2.55rem);
  margin: 0.25rem 0 0;
  letter-spacing: 0.04em;
}

.menu-limited-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.75rem);
  max-width: 1080px;
  margin-inline: auto;
}

.menu-limited-visual {
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 1rem;
}

.menu-limited-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu-limited-name {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.65;
}

.menu-limited-price {
  margin: 0.4rem 0 0;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.menu-limited-desc {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--text-charcoal);
}

.menu-extras-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border: 1px solid rgba(157, 180, 210, 0.45);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 248, 255, 0.55));
  max-width: 820px;
  margin-inline: auto;
  box-shadow: 0 16px 40px rgba(30, 40, 60, 0.06);
}

.menu-extras-icon {
  font-size: 2rem;
  opacity: 0.55;
}

.menu-extras-title {
  margin: 0;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(1.42rem, 2.6vw, 1.82rem);
  font-weight: 500;
}

.menu-extras-lead {
  margin: 0.5rem 0 1.1rem;
  font-size: 0.93rem;
  line-height: 1.95;
  color: var(--text-charcoal);
}

.menu-extras-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem 1.75rem;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
}

.menu-extras-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.9rem;
  border-bottom: 1px dashed rgba(200, 200, 200, 0.8);
  padding-bottom: 0.45rem;
}

.menu-extras-yen {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  white-space: nowrap;
}

.menu-disclaimer {
  margin: 2rem auto 0;
  max-width: 46rem;
  font-size: 0.82rem;
  line-height: 1.95;
  color: var(--text-muted);
  text-align: center;
}

.page-menu-editorial .menu-disclaimer {
  margin-top: 2.75rem;
  text-align: left;
}

/* メニューページ読みレイアウト（髙山堂お菓子カテゴリページ風：写真と本文のスタック／字間広め見出し） */

.menu-editorial-page-head.section {
  padding-top: clamp(5.35rem, 13vw, 7.85rem);
  padding-bottom: clamp(2rem, 4.75vw, 3.35rem);
}

.menu-editorial-page-head__inner {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.menu-editorial-page-title {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: clamp(0.3em, 2.85vw, 0.52em);
  font-size: clamp(1.76rem, 4.15vw, 2.92rem);
  margin: 0.65rem 0 1.35rem;
  line-height: 1.3;
}

.menu-editorial-page-lead {
  margin: 0 auto;
  font-size: clamp(0.95rem, 1.35vw, 1.04rem);
  line-height: 2.06;
  color: var(--text-charcoal);
  max-width: 38rem;
}

.menu-editorial-page-actions {
  margin-top: 1.75rem;
}

.menu-editorial-plain {
  background: transparent;
}

.menu-editorial-wash {
  background: rgba(249, 247, 242, 0.55);
}

.menu-editorial-section-inner {
  max-width: 720px;
  margin-inline: auto;
}

.menu-editorial-category {
  text-align: center;
  margin-bottom: clamp(2.15rem, 5vw, 3rem);
}

.menu-editorial-category-en {
  margin: 0 0 0.72rem;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.menu-editorial-category-jp {
  margin: 0 0 0.9rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(1.22rem, 2.62vw, 1.74rem);
  color: var(--text-charcoal);
}

.menu-editorial-category-jp--spaced {
  letter-spacing: 0.4em;
  text-indent: 0.4em;
}

.menu-editorial-category-desc {
  margin: 0 auto;
  font-size: clamp(0.95rem, 1.25vw, 1.02rem);
  line-height: 2;
  max-width: 34rem;
  color: var(--text-charcoal);
}

.menu-editorial-sources--sub {
  margin: -0.15rem 0 0.6rem;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.menu-editorial-junhyo-seal {
  width: fit-content;
  max-width: 100%;
  margin: -0.5rem auto 2rem;
  padding: 0.55rem 1.1rem;
  border: double 4px rgba(76, 67, 59, 0.32);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.05rem, 2.35vw, 1.52rem);
  letter-spacing: 0.52em;
  text-indent: 0.52em;
  color: rgba(30, 27, 24, 0.55);
}

.menu-editorial-block {
  padding-bottom: clamp(2rem, 4.75vw, 3rem);
  margin-bottom: clamp(2rem, 4.75vw, 3rem);
  border-bottom: 1px solid var(--line);
}

.menu-editorial-block--last {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.menu-editorial-figure {
  margin: 0 0 clamp(1.05rem, 2.75vw, 1.42rem);
}

.menu-editorial-figure img {
  width: 100%;
  height: auto;
  max-height: min(88vw, 28rem);
  object-fit: cover;
  display: block;
}

.menu-editorial-product {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(1.04rem, 2.05vw, 1.42rem);
  margin: 0 0 0.45rem;
  letter-spacing: 0.08em;
  color: var(--text-charcoal);
}

.menu-editorial-sources {
  margin: 0 0 0.55rem;
  font-size: 0.872rem;
  line-height: 1.76;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.menu-editorial-price {
  margin: 0 0 0.9rem;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.08em;
  font-size: 0.93rem;
  color: var(--text-charcoal);
}

.menu-editorial-tax {
  margin-left: 0.65rem;
  font-size: 0.722rem;
  letter-spacing: 0.052em;
  color: var(--text-muted);
  font-weight: 400;
}

.menu-editorial-prose {
  margin: 0;
  font-size: clamp(0.94rem, 1.34vw, 1.035rem);
  line-height: 2.06;
  color: var(--text-charcoal);
}

.menu-editorial-strong {
  color: #a84a52;
  font-weight: 500;
}

.menu-editorial-section-inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.65rem, 4vw, 3.1rem);
  align-items: start;
  max-width: 1040px;
}

.menu-editorial-split-figure {
  margin: 0;
}

.menu-editorial-split-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  max-height: 22rem;
  object-fit: cover;
  display: block;
}

.menu-editorial-split-copy .menu-editorial-category-en {
  text-align: left;
}

.menu-editorial-caption {
  margin: 1.05rem 0 0;
  font-size: 0.835rem;
  line-height: 1.94;
  color: var(--text-muted);
  letter-spacing: 0.035em;
}

.menu-editorial-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.45rem, 4vw, 2.65rem);
  align-items: start;
}

.menu-editorial-mini-photo {
  margin: 0 0 0.72rem;
  overflow: hidden;
}

.menu-editorial-mini-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  max-height: 18rem;
  object-fit: cover;
  display: block;
}

.menu-editorial-mini-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.85rem;
  justify-content: space-between;
}

.menu-editorial-product--compact {
  font-size: clamp(0.9rem, 1.72vw, 1.06rem);
  letter-spacing: 0.035em;
  margin: 0;
  flex: 1;
  min-width: min(100%, 12rem);
}

.menu-editorial-price--inline {
  margin: 0;
  flex-shrink: 0;
}

.menu-editorial-extras-plain {
  background: transparent;
}

.menu-editorial-extras-heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  margin: 0 0 1.15rem;
  font-size: clamp(1.1rem, 2.65vw, 1.62rem);
  color: var(--text-charcoal);
}

.menu-editorial-section-inner.menu-editorial-extras-max {
  max-width: 680px;
}

.menu-editorial-extras-plain .menu-editorial-prose:first-of-type + .menu-editorial-plain-list {
  margin-top: 0;
}

.menu-editorial-plain-list {
  list-style: none;
  margin: 1.85rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.menu-editorial-plain-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.92rem 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(0.93rem, 1.38vw, 1.06rem);
  line-height: 1.74;
}

.menu-editorial-plain-yen {
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.872rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

@media (max-width: 720px) {
  .menu-editorial-section-inner--split {
    grid-template-columns: 1fr;
  }

  .menu-editorial-mini-grid {
    grid-template-columns: 1fr;
    max-width: 21rem;
    margin-inline: auto;
  }
}

@media (max-width: 980px) {

  .menu-signature-grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin-inline: auto;
  }

  .menu-feature-inner {
    grid-template-columns: 1fr;
  }

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

  .menu-junhyo-inner {
    letter-spacing: 0.24em;
  }

  .menu-extras-panel {
    grid-template-columns: 1fr;
  }

  .menu-extras-icon {
    display: none;
  }
}

/* --- FC franchise page --- */
.page-fc .hero.page-fc-hero {
  position: relative;
  min-height: min(90vh, 860px);
  min-height: 90svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(5.75rem, 14vh, 8rem) 0 clamp(3rem, 10vh, 5rem);
  overflow: hidden;
}

.page-fc .hero.page-fc-hero .hero-media.fc-hero-media {
  z-index: 0;
}

.page-fc .hero.page-fc-hero .hero-media.fc-hero-media::after {
  display: none;
}

.page-fc .hero.page-fc-hero .hero-media.fc-hero-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 78% 45%;
  transform: none;
}

.page-fc .fc-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(250, 246, 239, 0.98) 0%,
    rgba(250, 246, 239, 0.88) 22%,
    rgba(250, 246, 239, 0.42) 44%,
    rgba(250, 246, 239, 0.08) 62%,
    transparent 100%
  );
}

.page-fc .fc-hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: min(52vh, 26rem);
  padding-left: clamp(2.75rem, 11vw, 8.5rem);
  box-sizing: border-box;
}

.page-fc .fc-hero-copy {
  max-width: min(36rem, 100%);
}

.page-fc .fc-hero-copy .eyebrow {
  margin-bottom: 0.75rem;
}

.page-fc .fc-hero-copy h1 {
  margin: 0;
  line-height: 1.08;
}

.page-fc .fc-hero-copy .lead {
  margin-top: 1.35rem;
  max-width: 32rem;
  line-height: 1.88;
  letter-spacing: 0.02em;
}

.page-fc .page-fc-intro-grid {
  align-items: start;
}

.page-fc .fc-intro-photo-col {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.page-fc .fc-intro-photo {
  margin: 0;
}

.page-fc .fc-intro-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  max-height: min(52vh, 28rem);
  object-fit: cover;
  object-position: center;
}

.page-fc .fc-intro-copy {
  padding-left: clamp(0.25rem, 2.5vw, 1.5rem);
}

.page-fc .fc-intro-copy h2 {
  margin-bottom: 1.25rem;
}

.page-fc .fc-intro-copy .reveal-up + .reveal-up {
  margin-top: 1.1rem;
}

.page-fc .fc-hero-actions {
  margin-top: 1.85rem;
}

.page-fc .fc-note,
.page-fc .fc-disclaimer {
  font-size: clamp(0.82rem, 1.2vw, 0.94rem);
  line-height: 1.85;
  color: var(--text-muted);
  margin-top: 1rem;
}

.page-fc .fc-disclaimer {
  border-left: 2px solid var(--line);
  padding-left: 1rem;
  margin-top: 1.35rem;
}

.page-fc .fc-case-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.page-fc .fc-case-list li {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 0.75rem 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(0.9rem, 1.35vw, 1.02rem);
  line-height: 1.75;
}

.page-fc .fc-case-list span:first-child {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 0.2em;
}

.page-fc .fc-lead-muted {
  max-width: 40rem;
  margin: 0.75rem 0 2rem;
  color: var(--text-muted);
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  line-height: 1.85;
}

.page-fc .fc-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-top: 0.5rem;
}

.page-fc .fc-feature-card {
  border: 1px solid var(--line);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  background: rgba(255, 255, 255, 0.45);
  min-height: 100%;
}

.page-fc .fc-feature-card h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  letter-spacing: 0.08em;
  margin: 0 0 0.85rem;
  color: var(--text-charcoal);
}

.page-fc .fc-feature-card p {
  margin: 0;
  font-size: clamp(0.88rem, 1.35vw, 1rem);
  line-height: 1.82;
  color: var(--text-muted);
}

.page-fc .fc-prose-list {
  margin: 1.25rem 0 0;
  padding-left: 1.15rem;
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  line-height: 1.85;
  color: var(--text-muted);
}

.page-fc .fc-prose-list li + li {
  margin-top: 0.65rem;
}

.page-fc .fc-fee-table {
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
}

.page-fc .fc-fee-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(0.88rem, 1.35vw, 1.02rem);
}

.page-fc .fc-fee-table th,
.page-fc .fc-fee-table td {
  padding: 1rem 1.15rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.page-fc .fc-fee-table tr:last-child th,
.page-fc .fc-fee-table tr:last-child td {
  border-bottom: none;
}

.page-fc .fc-fee-table th {
  width: 32%;
  max-width: 11rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.06em;
  color: var(--text-charcoal);
  background: rgba(0, 0, 0, 0.02);
}

.page-fc .fc-fee-table td {
  color: var(--text-muted);
  line-height: 1.75;
}

.page-fc .fc-disclosure-box {
  margin-top: 1.5rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.35);
  max-width: 48rem;
}

.page-fc .fc-disclosure-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: clamp(0.9rem, 1.35vw, 1.02rem);
  line-height: 1.82;
}

.page-fc .fc-disclosure-list li + li {
  margin-top: 0.55rem;
}

.page-fc .fc-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.15rem, 2.5vw, 1.75rem);
  margin-top: 0.5rem;
}

.page-fc .fc-support-card {
  border: 1px solid var(--line);
  padding: clamp(1.2rem, 2.5vw, 1.55rem);
  background: rgba(255, 255, 255, 0.4);
}

.page-fc .fc-support-card h3 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.98rem, 1.8vw, 1.12rem);
  letter-spacing: 0.06em;
  margin: 0 0 0.55rem;
  color: var(--text-charcoal);
}

.page-fc .fc-support-card p {
  margin: 0;
  font-size: clamp(0.86rem, 1.3vw, 0.98rem);
  line-height: 1.78;
  color: var(--text-muted);
}

.page-fc .fc-flow-steps {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: stretch;
  justify-content: flex-start;
}

.page-fc .fc-flow-steps li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1 1 auto;
  min-width: min(100%, 8.5rem);
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.page-fc .fc-flow-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-charcoal);
  opacity: 0.75;
}

.page-fc .fc-flow-body {
  font-size: clamp(0.82rem, 1.25vw, 0.95rem);
  line-height: 1.45;
  color: var(--text-muted);
}

.page-fc .fc-flow-body strong {
  display: block;
  color: var(--text-charcoal);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}

.page-fc .fc-flow-sub {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 400;
}

.page-fc .fc-flow-notes {
  max-width: 48rem;
  margin-top: 1.75rem;
  font-size: clamp(0.88rem, 1.35vw, 1.02rem);
  line-height: 1.85;
  color: var(--text-muted);
}

.page-fc .fc-flow-notes p + p {
  margin-top: 1rem;
}

.page-fc .fc-faq-list {
  margin: 1.5rem 0 0;
  max-width: 48rem;
}

.page-fc .fc-faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 0;
}

.page-fc .fc-faq-item:first-child {
  border-top: 1px solid var(--line);
}

.page-fc .fc-faq-item dt {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(0.98rem, 1.8vw, 1.1rem);
  letter-spacing: 0.05em;
  color: var(--text-charcoal);
  margin: 0 0 0.5rem;
}

.page-fc .fc-faq-item dd {
  margin: 0;
  font-size: clamp(0.88rem, 1.35vw, 1.02rem);
  line-height: 1.82;
  color: var(--text-muted);
}

.page-fc .page-fc-cta .link-btn {
  margin-top: 1.25rem;
}

.page-fc .fc-contact-card {
  margin-top: 1.5rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  max-width: 26rem;
}

.page-fc .fc-contact-company {
  margin: 0 0 0.65rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.12rem);
  letter-spacing: 0.06em;
  color: var(--text-charcoal);
}

.page-fc .fc-contact-address {
  margin: 0 0 1.15rem;
  font-size: clamp(0.88rem, 1.35vw, 1rem);
  line-height: 1.75;
  color: var(--text-muted);
}

.page-fc .fc-contact-def {
  margin: 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--line);
}

.page-fc .fc-contact-def > div {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 0.5rem 0.75rem;
  padding: 0.55rem 0;
  font-size: clamp(0.88rem, 1.35vw, 1.02rem);
  line-height: 1.6;
}

.page-fc .fc-contact-def dt {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  padding-top: 0.2em;
}

.page-fc .fc-contact-def dd {
  margin: 0;
  color: var(--text-charcoal);
}

.page-fc .fc-contact-def a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.page-fc .fc-contact-def a:hover {
  opacity: 0.75;
}

@media (max-width: 900px) {
  .page-fc .hero.page-fc-hero {
    min-height: min(82vh, 720px);
    min-height: 82svh;
    padding: clamp(5.25rem, 12vh, 6.5rem) 0 clamp(2.5rem, 8vh, 3.75rem);
    align-items: flex-end;
  }

  .page-fc .hero.page-fc-hero .hero-media.fc-hero-media img {
    object-position: 62% 40%;
  }

  .page-fc .fc-hero-scrim {
    background: linear-gradient(
      180deg,
      rgba(250, 246, 239, 0.2) 0%,
      rgba(250, 246, 239, 0.55) 45%,
      rgba(250, 246, 239, 0.94) 88%,
      rgba(250, 246, 239, 0.98) 100%
    );
  }

  .page-fc .fc-hero-overlay {
    min-height: 0;
    align-items: flex-end;
    justify-content: flex-start;
    padding-left: clamp(1.35rem, 6vw, 2.75rem);
    padding-right: clamp(1rem, 4vw, 1.5rem);
    padding-bottom: 0.25rem;
  }

  .page-fc .fc-hero-copy {
    max-width: 100%;
  }

  .page-fc .fc-hero-copy .lead {
    max-width: 100%;
  }

  .page-fc .page-fc-intro-grid .col-6 {
    grid-column: span 12;
  }

  .page-fc .fc-intro-copy {
    padding-left: 0;
    margin-top: 2rem;
  }

  .page-fc .fc-feature-grid {
    grid-template-columns: 1fr;
  }

  .page-fc .fc-support-grid {
    grid-template-columns: 1fr;
  }

  .page-fc .fc-fee-table th,
  .page-fc .fc-fee-table td {
    display: block;
    width: 100%;
    max-width: none;
  }

  .page-fc .fc-fee-table th {
    padding-bottom: 0.25rem;
    border-bottom: none;
  }

  .page-fc .fc-fee-table td {
    padding-top: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .page-fc .fc-case-list li {
    grid-template-columns: 1fr;
  }

  .page-fc .fc-case-list span:first-child {
    margin-bottom: -0.35rem;
  }
}

/* --- 企業情報：about と同一ビジュアルヒーロー（かき氷画像のトリミングを共有） --- */

.company-profile-dl {
  display: grid;
  grid-template-columns: minmax(5.5rem, 9rem) minmax(0, 1fr);
  gap: 1rem 1.75rem;
  max-width: 48rem;
  margin: 0;
}

.company-profile-dl dt {
  margin: 0;
  padding-top: 0.2em;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.company-profile-dl dd {
  margin: 0;
  font-size: clamp(0.95rem, 1.35vw, 1.06rem);
  line-height: 1.9;
  color: var(--text-charcoal);
}

.company-profile-list {
  margin: 0;
  padding-left: 1.15rem;
}

.company-profile-list li + li {
  margin-top: 0.45rem;
}

.menu-story-card-link {
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 1.8vw, 1.15rem);
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.menu-story-card-link:hover .menu-story-name {
  opacity: 0.72;
}

.company-brand-note {
  margin: -0.35rem 0 0;
  min-height: 1.2em;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  line-height: 1.6;
}

.menu-story-name--and {
  font-weight: 400;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.menu-story-name--butter {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 500;
}

.menu-story-name--ccw {
  font-size: clamp(0.78rem, 1.45vw, 0.92rem);
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.menu-story-name--hug {
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
  line-height: 1.45;
}

.menu-story-name--plum {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}

@media (max-width: 900px) {
  .company-profile-dl {
    grid-template-columns: 1fr;
    gap: 0.25rem 0;
  }

  .company-profile-dl dt {
    padding-top: 1.15rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--line);
  }

  .company-profile-dl dt:first-of-type {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
  }

  .company-profile-dl dd {
    padding-bottom: 0.25rem;
  }
}

/* ---- お問い合わせページ ---- */

.page-contact .hero:not(.hero--studio) {
  min-height: auto;
}

.page-contact .hero-copy--contact {
  max-width: 42rem;
}

.page-contact .page-contact-inquiry {
  margin-top: clamp(1.85rem, 4.5vh, 2.75rem);
  padding-top: clamp(1.6rem, 3.5vh, 2.25rem);
  border-top: 1px solid rgba(62, 58, 54, 0.12);
}

.page-contact .page-contact-inquiry .eyebrow {
  margin-bottom: 0.75rem;
}

.page-contact .page-contact-inquiry h2 {
  margin-bottom: 1rem;
}

.page-contact .page-contact-inquiry > p:last-child {
  margin: 0;
  font-size: clamp(0.95rem, 1.4vw, 1.06rem);
  line-height: 1.9;
  color: var(--text-charcoal);
}

.page-contact .contact-direct-card-wrap {
  position: relative;
  margin-top: clamp(2.15rem, 5vh, 3rem);
  max-width: 26rem;
}

.page-contact .contact-direct-decor {
  position: absolute;
  right: -0.25rem;
  top: 42%;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(62, 58, 54, 0.22);
  border-radius: 50%;
  pointer-events: none;
  transform: translateX(40%);
}

.page-contact .contact-direct-decor::after {
  content: "";
  position: absolute;
  right: 0.15rem;
  bottom: 0.2rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(62, 58, 54, 0.35);
}

.page-contact .contact-direct-card {
  position: relative;
  z-index: 1;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.78);
  backdrop-filter: blur(6px);
}

.page-contact .contact-direct-company {
  margin: 0 0 0.65rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(1.02rem, 2.1vw, 1.14rem);
  letter-spacing: 0.06em;
  color: var(--text-charcoal);
}

.page-contact .contact-direct-address {
  margin: 0 0 1.1rem;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  line-height: 1.8;
  color: var(--text-muted);
}

.page-contact .contact-direct-def {
  margin: 0;
  padding: 0.9rem 0 0;
  border-top: 1px solid var(--line);
}

.page-contact .contact-direct-def > div {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 0.45rem 0.65rem;
  padding: 0.5rem 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.88rem, 1.35vw, 1.02rem);
  line-height: 1.65;
}

.page-contact .contact-direct-def dt {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.page-contact .contact-direct-def dd {
  margin: 0;
  color: var(--text-charcoal);
}

.page-contact .contact-direct-def a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.page-contact .contact-direct-def a:hover {
  opacity: 0.72;
}

@media (max-width: 720px) {
  .page-contact .hero:not(.hero--studio) {
    min-height: auto;
  }

  .page-contact .contact-direct-decor {
    display: none;
  }

  .page-contact .contact-direct-card-wrap {
    max-width: none;
  }
}

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