@charset "UTF-8";
/* ============================================
   納言志るこ店 ランディングページ
   和モダン × 昭和レトロ / モバイルファースト
   ============================================ */

/* 和文明朝の同梱フォント（Noto Serif JP のサブセット・可変ウェイト）。
   Yu Mincho / Hiragino を持つ端末（Windows/Mac/iOS）ではそちらが優先され
   ダウンロードされない。明朝を持たない端末（主に Android）のみ読み込む。 */
@font-face {
  font-family: "Nagon Serif";
  src: url("../assets/fonts/NotoSerifJP-subset.woff2") format("woff2");
  font-weight: 200 900;
  font-display: swap;
}

/* 書家・片岡佑之氏の手書きを基にした Yuji Syuku（SIL OFL 1.1）。
   店内の小さな案内文まで同じ筆跡へ揃えられる全文字サブセット。 */
@font-face {
  font-family: "Nagon Brush";
  src: url("../assets/fonts/YujiSyuku-subset.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  /* 配色: 生成り・小豆色・墨色・抹茶（＋補助のこがね系） */
  --kinari: #f6f1e5;        /* 生成り（ベース背景） */
  --kinari-deep: #ede4d0;   /* 生成り 濃いめ */
  --azuki: #6d3a3a;         /* 小豆色（メイン） */
  --azuki-deep: #522b2b;    /* 小豆色 濃いめ */
  --sumi: #2e2a26;          /* 墨色（本文） */
  --matcha: #5c6a3b;        /* 抹茶（差し色・生成り上で 4.5:1 以上） */
  --gold: #b08d57;          /* こがね（罫線など装飾専用。本文には使わない） */
  --gold-deep: #7e6034;     /* こがね 濃（明るい背景上のテキスト用） */
  --gold-pale: #d8b98c;     /* こがね 淡（小豆色背景上のテキスト用） */

  --font-serif: "Nagon Serif", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "BIZ UDMincho", serif;
  --font-sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "BIZ UDGothic", "Noto Sans JP", sans-serif;
  --washi-light: #f3ead8;
  --washi-mid: #eadcc3;
  --washi-deep: #dfcdb0;
  --washi-layer:
    radial-gradient(circle at 22% 32%, rgba(91, 54, 36, 0.06) 0 0.65px, transparent 0.95px) 0 0 / 13px 11px,
    repeating-linear-gradient(90deg, rgba(87, 56, 38, 0.024) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 9px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

body {
  font-family: var(--font-serif);
  color: var(--sumi);
  background-color: var(--washi-mid);
  line-height: 1.9;
  letter-spacing: 0.04em;
  background-image:
    radial-gradient(ellipse at 48% 6%, rgba(255, 253, 242, 0.76), transparent 43rem),
    var(--washi-layer);
  font-feature-settings: "palt" 0, "pkna" 1;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--azuki);
}

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 241, 229, 0.94);
  border-bottom: 1px solid rgba(109, 58, 58, 0.18);
}

/* すりガラス効果は擬似要素側に持たせる。
   ヘッダー本体に backdrop-filter を置くと、fixed 配置の .global-nav の
   包含ブロックがヘッダーになり全画面オーバーレイが崩れるため。 */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.6rem 1rem;
}

.site-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--azuki-deep);
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 1.9em;
  height: 1.9em;
  border-radius: 50%;
  background: var(--azuki);
  color: var(--kinari);
  font-size: 0.85em;
}

.nav-toggle {
  display: block;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--azuki-deep);
  margin: 5px auto;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.global-nav {
  position: fixed;
  inset: 0;
  background: rgba(82, 43, 43, 0.96);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

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

/* ナビ表示中は背景ページのスクロールを止める（JSで付与） */
body.nav-open {
  overflow: hidden;
}

.global-nav ul {
  list-style: none;
  text-align: center;
}

.global-nav li + li {
  margin-top: 1.4rem;
}

.global-nav a {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--kinari);
  text-decoration: none;
  letter-spacing: 0.12em;
}

/* ---------- ヒーロー ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--azuki-deep);
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 72vh;
  min-height: 420px;
  object-fit: cover;
}

/* 写真の上に薄い焦げ茶を敷いて、白抜きのキャッチコピーの可読性を保つ */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(46, 22, 22, 0.55),
    rgba(46, 22, 22, 0.28) 55%,
    rgba(46, 22, 22, 0.5)
  );
}

.hero-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  right: 0;
  left: 0;
}

.hero-since {
  font-family: var(--font-serif);
  color: var(--gold-pale);
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  border: 1px solid var(--gold-pale);
  padding: 0.2em 0.9em;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 6vw, 3rem);
  font-weight: 600;
  color: #fdf8ec;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero-lead {
  margin-top: 1rem;
  color: #f0e6d2;
  font-size: clamp(0.85rem, 2.6vw, 1.05rem);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-cta {
  margin-top: 1.6rem;
  display: inline-block;
  font-family: var(--font-serif);
  background: var(--matcha);
  color: #fdf8ec;
  text-decoration: none;
  padding: 0.75em 2em;
  border-radius: 999px;
  letter-spacing: 0.1em;
  transition: opacity 0.25s, transform 0.25s;
}

.hero-cta:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ---------- 帯（四枚仕立ての暖簾） ---------- */
.obi {
  overflow: hidden;
  padding: 0 max(0px, calc((100vw - 1280px) / 2));
  background: #d8c8aa;
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid rgba(109, 58, 58, 0.28);
}

.obi-noren {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
}

.obi-noren span {
  min-width: 0;
  height: 76px;
  padding: 0.6rem 0.45rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fffaf0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 4px),
    linear-gradient(155deg, #7b3538, #55262a);
  border-bottom: 5px solid #4c2024;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
}

.obi-noren b {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.25;
  white-space: nowrap;
}

.obi-noren small {
  margin-top: 0.28rem;
  color: var(--gold-pale);
  font-family: var(--font-serif);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

/* ---------- セクション共通 ---------- */
.section {
  padding: 4rem 0;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-en {
  font-family: var(--font-serif);
  color: var(--gold-deep);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.78rem;
  text-align: center;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4.5vw, 2.1rem);
  font-weight: 600;
  color: var(--azuki-deep);
  text-align: center;
  letter-spacing: 0.15em;
  margin-top: 0.3rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 3em;
  height: 2px;
  background: var(--matcha);
  margin: 0.7rem auto 0;
}

.section-lead {
  text-align: center;
  margin-top: 1.2rem;
  color: #5a5248;
  font-size: 0.95rem;
}

/* スクロール表示アニメーション（JSで .is-visible 付与） */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- お店について ---------- */
.about-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 2.5rem;
}

.about-text h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 4vw, 1.6rem);
  color: var(--azuki-deep);
  line-height: 1.7;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.about-text p + p {
  margin-top: 1rem;
}

.about-points {
  list-style: none;
  margin-top: 1.6rem;
  border-top: 1px solid rgba(109, 58, 58, 0.25);
}

.about-points li {
  padding: 0.8rem 0.2rem;
  border-bottom: 1px solid rgba(109, 58, 58, 0.25);
  font-family: var(--font-serif);
  color: var(--sumi);
}

.about-points span {
  color: var(--matcha);
  margin-right: 0.8em;
  font-weight: 600;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.about-photo {
  margin: 0;
}

.about-photo.photo-main {
  grid-column: 1 / -1;
}

.about-photo img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(46, 42, 38, 0.15);
}

.about-photo figcaption {
  font-size: 0.78rem;
  color: #6e655a;
  margin-top: 0.4rem;
  text-align: center;
}

/* ---------- おすすめメニュー ---------- */
.menu {
  background: var(--kinari-deep);
}

/* 横スクロールのカルーセル。scroll-snap で1枚ずつ気持ちよく止まる */
.menu-scroller {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem max(1.25rem, calc((100vw - 1280px) / 2)) 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--azuki) var(--kinari-deep);
}

.menu-card {
  position: relative;
  flex: 0 0 min(72vw, 300px);
  scroll-snap-align: start;
  background: #fffdf7;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(46, 42, 38, 0.12);
  transition: transform 0.3s, box-shadow 0.3s;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(46, 42, 38, 0.18);
}

.menu-photo {
  position: relative;
}

.menu-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* 写真のない品は小豆色のパネルに品名を明朝で */
.menu-photo-text {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background:
    radial-gradient(rgba(246, 241, 229, 0.08) 1px, transparent 1px) 0 0 / 12px 12px,
    linear-gradient(160deg, var(--azuki) 0%, var(--azuki-deep) 100%);
}

.menu-photo-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--kinari);
  letter-spacing: 0.2em;
  line-height: 1.8;
  text-align: center;
}

/* 縦書き風バッジ。writing-mode は環境によって縦組みメトリクスが
   崩れることがあるため、幅を1文字分に絞って1文字ずつ折り返す方式で実現 */
.menu-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  font-family: var(--font-serif);
  background: var(--azuki);
  color: var(--kinari);
  font-size: 0.8rem;
  width: 2em;
  padding: 0.5em 0;
  text-align: center;
  line-height: 1.5;
  word-break: break-all;
  border-radius: 3px;
  letter-spacing: 0.15em;
}

.menu-badge.badge-season {
  background: var(--matcha);
}

.menu-body {
  padding: 1.2rem 1.3rem 1.5rem;
}

.menu-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--azuki-deep);
  letter-spacing: 0.1em;
}

.menu-price {
  font-family: var(--font-serif);
  color: var(--gold-deep);
  font-size: 1.15rem;
  margin-top: 0.2rem;
}

.menu-price span {
  font-size: 0.8em;
  margin-left: 0.15em;
}

.menu-desc {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: #55504a;
}

.menu-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: #5a5248;
}

/* ---------- Instagram投稿（自動で流れる横帯） ---------- */
.insta-official-posts {
  margin-top: 3rem;
}

.insta-block-label {
  text-align: center;
  font-family: var(--font-serif);
  color: var(--azuki-deep);
  letter-spacing: 0.1em;
}

.insta-marquee {
  margin-top: 1.2rem;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 1.25rem 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--azuki) var(--kinari-deep);
}

.insta-post {
  background: #fffdf7;
  border: 1px solid rgba(109, 58, 58, 0.25);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(46, 42, 38, 0.12);
}

.insta-post-link {
  flex: 0 0 min(74vw, 300px);
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}

.insta-post-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(46, 42, 38, 0.2);
}

.insta-post-link .insta-post-head,
.insta-post-link .insta-post-meta,
.insta-post-link .insta-post-user,
.insta-post-link .insta-post-bio,
.insta-post-link .insta-post-body,
.insta-post-link .insta-post-likes,
.insta-post-link .insta-post-caption,
.insta-post-link .insta-post-tags {
  display: block;
}

.insta-post-link .insta-post-head {
  display: flex;
}

.insta-post-head {
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
}

.insta-post-avatar {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(109, 58, 58, 0.2);
  border-radius: 50%;
}

.insta-post-user {
  color: var(--sumi);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

.insta-post-bio {
  color: #6e655a;
  font-size: 0.72rem;
  line-height: 1.4;
}

.insta-post-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.insta-post-body {
  padding: 0.9rem 1rem 1.1rem;
}

.insta-post-likes {
  color: var(--sumi);
  font-size: 0.85rem;
  font-weight: 600;
}

.insta-post-caption {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.8;
}

.insta-post-tags {
  margin-top: 0.5rem;
  color: var(--matcha);
  font-size: 0.78rem;
  line-height: 1.7;
}

/* ---------- 公式LINE ---------- */
.line-signup {
  background:
    linear-gradient(135deg, rgba(6, 199, 85, 0.08), transparent 48%),
    var(--kinari-deep);
}

.line-signup-card {
  position: relative;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  padding: 2.2rem 1.5rem;
  display: grid;
  gap: 2rem;
  background: #fffdf7;
  border: 1px solid rgba(109, 58, 58, 0.2);
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(46, 42, 38, 0.12);
}

.line-signup-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: #06c755;
}

.line-signup-kicker {
  color: #08753d;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.line-signup-title {
  margin-top: 0.55rem;
  color: var(--azuki-deep);
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 6vw, 2.5rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.1em;
}

.line-signup-lead {
  margin-top: 1rem;
  color: #504a43;
  font-size: 0.95rem;
}

.line-signup-account {
  margin-top: 1rem;
  color: #6e655a;
  font-size: 0.8rem;
}

.line-signup-account span {
  margin-left: 0.45em;
  color: var(--sumi);
  font-weight: 700;
}

.line-signup-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.line-signup-mark {
  width: 76px;
  height: auto;
}

.line-signup-button {
  width: 100%;
  max-width: 320px;
  margin-top: 1.15rem;
  padding: 0.95rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65em;
  background: #08753d;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 7px 18px rgba(8, 117, 61, 0.24);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.line-signup-button:hover {
  background: #065d30;
  box-shadow: 0 10px 24px rgba(8, 117, 61, 0.3);
  transform: translateY(-2px);
}

.line-signup-button:focus-visible {
  outline: 3px solid #06c755;
  outline-offset: 4px;
}

.line-signup-action > p {
  margin-top: 0.7rem;
  color: #6e655a;
  font-size: 0.72rem;
}

/* ---------- 店舗情報 ---------- */
.info {
  background: var(--azuki-deep);
  color: var(--kinari);
}

.info .section-title {
  color: var(--kinari);
}

.info .section-en {
  color: var(--gold-pale);
}

.info-table-wrap {
  margin-top: 2.5rem;
  overflow-x: auto;
}

.info-table {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  padding: 0.95rem 0.8rem;
  border-bottom: 1px solid rgba(246, 241, 229, 0.25);
  text-align: left;
  vertical-align: top;
  font-weight: normal;
}

.info-table th {
  font-family: var(--font-serif);
  color: var(--gold-pale);
  white-space: nowrap;
  width: 6.5em;
  letter-spacing: 0.15em;
}

.info-note {
  display: block;
  font-size: 0.78rem;
  opacity: 0.8;
}

.info-caution {
  margin-top: 1.6rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ---------- アクセス ---------- */
.access-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 2rem;
}

.access-station {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--azuki-deep);
  letter-spacing: 0.05em;
}

.access-station strong {
  color: var(--matcha);
  font-size: 1.2em;
}

.access-steps {
  margin: 1.2rem 0 0 1.4em;
}

.access-steps li {
  padding: 0.35rem 0;
}

.access-note {
  margin-top: 1.2rem;
  font-size: 0.88rem;
  background: var(--kinari-deep);
  border-left: 4px solid var(--matcha);
  padding: 0.8rem 1rem;
  border-radius: 0 6px 6px 0;
}

.access-map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(109, 58, 58, 0.25);
  border-radius: 8px;
}

/* ---------- フッター ---------- */
.site-footer {
  background: var(--sumi);
  color: var(--kinari);
  text-align: center;
  padding: 2.5rem 1rem 2rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  letter-spacing: 0.2em;
}

.footer-address,
.footer-tel {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 0.35rem;
}

.footer-line {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer-line a {
  color: var(--kinari);
}

.footer-insta {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer-insta a {
  color: var(--kinari);
}

.footer-copy {
  margin-top: 1.4rem;
  opacity: 0.6;
}

/* ---------- ユーティリティ ---------- */
.pc-only {
  display: none;
}

.mobile-only {
  display: inline;
}

/* ---------- タブレット以上 (768px〜) ---------- */
@media (min-width: 768px) {
  html {
    scroll-padding-top: 72px;
  }

  .pc-only {
    display: inline;
  }

  .mobile-only {
    display: none;
  }

  .nav-toggle {
    display: none;
  }

  .global-nav {
    position: static;
    background: transparent;
    opacity: 1;
    visibility: visible;
    display: block;
  }

  .global-nav ul {
    display: flex;
    gap: clamp(0.75rem, 2vw, 1.6rem);
  }

  .global-nav li + li {
    margin-top: 0;
  }

  .global-nav a {
    color: var(--azuki-deep);
    font-size: 0.92rem;
  }

  .global-nav a:hover {
    color: var(--matcha);
  }

  .hero-media img {
    height: min(64vh, 560px);
    min-height: 460px;
  }

  .section {
    padding: 5.5rem 0;
  }

  .about-grid {
    grid-template-columns: 1.05fr 1fr;
    align-items: start;
    gap: 3.5rem;
  }

  .menu-card {
    flex-basis: 300px;
  }

  .insta-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .access-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }

  .line-signup-card {
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    align-items: center;
    padding: 3rem 3.25rem;
  }

  .line-signup-action {
    min-height: 230px;
    border-left: 1px solid rgba(109, 58, 58, 0.18);
    padding-left: 2.5rem;
  }
}

/* アニメーションを抑えたい環境への配慮 */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .obi p {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- 追補: 固定アクセスボタン ---------- */
/* 右端の余白を活かした、地図へ飛ぶ縦書き風ボタン */
.access-fab {
  position: fixed;
  right: 0;
  top: 55%;
  z-index: 90;
  width: 2.4em;
  padding: 0.9em 0.35em;
  background: var(--matcha);
  color: #fdf8ec;
  font-family: var(--font-calligraphy);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.55;
  letter-spacing: 0.055em;
  text-align: center;
  text-shadow: 0.025em 0.035em 0 rgba(34, 26, 20, 0.34);
  text-decoration: none;
  word-break: break-all;
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 2px 10px rgba(46, 42, 38, 0.25);
}

.access-fab:hover {
  opacity: 0.9;
}

/* ---------- 追補: メディア掲載 ---------- */
.media {
  background: var(--kinari-deep);
}

.media-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.media-list li {
  background: #fffdf7;
  border: 1px solid rgba(109, 58, 58, 0.25);
  border-radius: 999px;
  padding: 0.45em 1.5em;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--azuki-deep);
  letter-spacing: 0.06em;
}

.media-note {
  margin-top: 1.4rem;
  text-align: center;
  font-size: 0.85rem;
  color: #5a5248;
}

/* ============================================
   スマホ専用: 情報速度を高めるコンパクト設計
   ============================================ */
@media (max-width: 767px) {
body {
  line-height: 1.75;
}

.hero-media img {
  height: clamp(360px, 48svh, 500px);
  min-height: 0;
}

.hero-body {
  padding: 1.25rem;
}

.hero-since {
  margin-bottom: 0.6rem;
}

.hero-lead {
  margin-top: 0.7rem;
}

.hero-cta {
  margin-top: 1.1rem;
  padding: 0.65em 1.5em;
}

.section {
  padding: 3rem 0;
}

.section-title::after {
  margin-top: 0.5rem;
}

.section-lead {
  margin-top: 0.75rem;
}

.reveal {
  transform: translateY(12px);
  transition-duration: 0.45s;
}

/* Instagramセクションの基本レイアウト */
.instagram {
  background: #fffdf7;
  padding: 2.5rem 0;
}

.insta-community,
.insta-official-posts {
  margin-top: 1.5rem;
}

.insta-block-label {
  text-align: left;
  font-family: var(--font-serif);
  color: var(--azuki-deep);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.insta-stories {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.65rem;
  padding-bottom: 0.55rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.insta-story {
  flex: 0 0 min(64vw, 245px);
  min-height: 92px;
  padding: 0.8rem 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  color: var(--sumi);
  background: var(--kinari);
  border: 1px solid rgba(109, 58, 58, 0.16);
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 0.86rem;
  line-height: 1.6;
}

.insta-story small {
  color: var(--gold-deep);
  font-family: var(--font-sans);
  font-size: 0.68rem;
}

.insta-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
  margin-top: 0.65rem;
}

.insta-photo-grid a {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--kinari-deep);
}

.insta-photo-grid a::after {
  content: none;
  position: absolute;
  right: 0.3rem;
  bottom: 0.25rem;
  color: #fff;
  font-size: 0.68rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.insta-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.insta-photo-grid a:hover img {
  transform: scale(1.035);
}

.insta-account-link {
  margin-top: 0.8rem;
  padding: 0.65rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--sumi);
  border-bottom: 1px solid rgba(109, 58, 58, 0.22);
  text-decoration: none;
  font-size: 0.8rem;
}

.insta-account-link span {
  color: var(--azuki);
  font-weight: 700;
}

/* メディア掲載: 1画面内で一覧できる密度 */
.media {
  background: var(--kinari-deep);
}

.media-list {
  margin-top: 1.2rem;
  gap: 0.45rem;
}

.media-list li {
  padding: 0.28em 0.85em;
  font-size: 0.8rem;
}

/* お店について: 長文を削り、写真を小さな組写真に */
.about-grid {
  margin-top: 1.5rem;
  gap: 1.5rem;
}

.about-text h3 {
  margin-bottom: 0.7rem;
  line-height: 1.55;
}

.about-points {
  margin-top: 1rem;
}

.about-points li {
  padding: 0.55rem 0.1rem;
  font-size: 0.86rem;
}

.about-photos {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
}

.about-photo.photo-main {
  grid-column: auto;
}

.about-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: none;
}

.about-photo figcaption {
  margin-top: 0.35rem;
  font-size: 0.68rem;
  line-height: 1.5;
}

/* お品書き: 写真・品名・価格の順に即読める小型カード */
.menu-scroller {
  margin-top: 1.4rem;
  gap: 0.65rem;
  padding-top: 0.2rem;
  padding-bottom: 0.8rem;
}

.menu-card {
  flex-basis: 190px;
  border-radius: 6px;
  box-shadow: 0 3px 12px rgba(46, 42, 38, 0.1);
}

.menu-photo img,
.menu-photo-text {
  aspect-ratio: 4 / 3;
}

.menu-photo-name {
  font-size: 1.2rem;
  line-height: 1.55;
}

.menu-body {
  min-height: 82px;
  padding: 0.7rem 0.8rem 0.75rem;
}

.menu-name {
  font-size: 1rem;
  line-height: 1.45;
}

.menu-price {
  margin-top: 0.1rem;
  font-size: 0.9rem;
}

.menu-desc {
  display: none;
}

.menu-badge {
  top: 0.5rem;
  left: 0.5rem;
  font-size: 0.68rem;
}

.menu-note {
  margin-top: 0.8rem;
}

/* アクセス */
.access-grid {
  margin-top: 1.5rem;
  gap: 1rem;
}

.access-copy {
  margin-top: 0.55rem;
  font-size: 0.87rem;
}

.access-map-link {
  display: inline-block;
  margin-top: 0.8rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid var(--azuki);
  font-size: 0.8rem;
  text-decoration: none;
}

.access-map iframe {
  aspect-ratio: 16 / 9;
}

/* LINE: 公式アイコンは無加工のまま、導線全体だけを小型化 */
.line-signup {
  background:
    linear-gradient(135deg, rgba(6, 199, 85, 0.09), transparent 42%),
    var(--kinari-deep);
}

.line-signup-card {
  max-width: 920px;
  padding: 1.25rem;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 0.9rem 1rem;
  border-radius: 8px;
  box-shadow: 0 5px 18px rgba(46, 42, 38, 0.09);
}

.line-signup-card::before {
  width: 4px;
}

.line-signup-mark {
  width: 48px;
}

.line-signup-kicker {
  font-size: 0.68rem;
}

.line-signup-title {
  margin-top: 0.25rem;
  font-size: clamp(1.35rem, 5.6vw, 2rem);
  line-height: 1.4;
}

.line-signup-lead {
  margin-top: 0.45rem;
  font-size: 0.82rem;
}

.line-signup-benefits {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
}

.line-signup-benefits li {
  padding: 0.22em 0.65em;
  color: #08753d;
  background: rgba(6, 199, 85, 0.08);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
}

.line-signup-action {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
  text-align: left;
}

.line-signup-button {
  max-width: none;
  margin-top: 0;
  padding: 0.72rem 1rem;
  box-shadow: none;
}

.line-signup-action > p {
  margin-top: 0;
  white-space: nowrap;
}

/* 店舗情報・フッター */
.info-table-wrap {
  margin-top: 1.5rem;
}

.info-table th,
.info-table td {
  padding: 0.65rem 0.45rem;
  font-size: 0.82rem;
}

.info-caution {
  margin-top: 1rem;
}

.site-footer {
  padding: 1.8rem 1rem 1.5rem;
}

}

/* PC専用: 既存部分は公式LINEを最初に追加した時の寸法をそのまま使用 */
@media (min-width: 768px) {
  .instagram {
    background: #fffdf7;
  }

  .insta-community,
  .insta-official-posts {
    margin-top: 3rem;
  }

  .insta-block-label {
    text-align: center;
    font-family: var(--font-serif);
    color: var(--azuki-deep);
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .insta-stories {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.2rem;
    padding-bottom: 1rem;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .insta-story {
    flex: 0 0 280px;
    min-height: 130px;
    padding: 1.2rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scroll-snap-align: start;
    color: var(--sumi);
    background: var(--kinari);
    border: 1px solid rgba(109, 58, 58, 0.16);
    border-radius: 10px;
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 1rem;
    line-height: 1.8;
  }

  .insta-story small {
    color: var(--gold-deep);
    font-family: var(--font-sans);
    font-size: 0.78rem;
  }

  .insta-photo-grid {
    max-width: 960px;
    margin: 1.2rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .insta-photo-grid a {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--kinari-deep);
  }

  .insta-photo-grid a::after {
    content: none;
    position: absolute;
    right: 0.5rem;
    bottom: 0.4rem;
    color: #fff;
    font-size: 0.8rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  }

  .insta-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
  }

  .insta-photo-grid a:hover img {
    transform: scale(1.035);
  }

  .insta-account-link {
    max-width: 960px;
    margin: 1.2rem auto 0;
    padding: 0.9rem 0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--sumi);
    border-bottom: 1px solid rgba(109, 58, 58, 0.22);
    text-decoration: none;
    font-size: 0.9rem;
  }

  .insta-account-link span {
    color: var(--azuki);
    font-weight: 700;
  }

  .access-copy {
    margin-top: 1.2rem;
    font-size: 0.95rem;
  }

  .access-map-link {
    display: inline-block;
    margin-top: 1.2rem;
    padding-bottom: 0.15rem;
    border-bottom: 1px solid var(--azuki);
    font-size: 0.9rem;
    text-decoration: none;
  }

  .line-signup-card {
    grid-template-columns: 76px minmax(0, 1fr) minmax(260px, 0.75fr);
  }

  .line-signup-benefits {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
  }

  .line-signup-benefits li {
    padding: 0.35em 0.9em;
    color: #08753d;
    background: rgba(6, 199, 85, 0.08);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
  }

  .line-signup-action {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .line-signup-button {
    margin: 0 auto;
  }
}

/* ============================================
   話題の証拠: 投稿・掲載を一枚の編集面として見せる
   ============================================ */
.instagram {
  overflow: clip;
  background:
    radial-gradient(circle at 10% 14%, rgba(176, 141, 87, 0.13), transparent 24rem),
    #fffdf7;
}

.buzz-summary {
  max-width: 720px;
  margin: 1.6rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(109, 58, 58, 0.2);
  border-bottom: 1px solid rgba(109, 58, 58, 0.2);
}

.buzz-summary p {
  padding: 0.75rem 0.3rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
}

.buzz-summary p + p {
  border-left: 1px solid rgba(109, 58, 58, 0.2);
}

.buzz-summary strong {
  color: var(--azuki-deep);
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
}

.buzz-summary span {
  color: #665d53;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.buzz-carousel {
  width: min(100% - 1rem, 1320px);
  margin: 1.8rem auto 0;
}

.buzz-viewport {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--azuki-deep);
  border: 1px solid rgba(82, 43, 43, 0.2);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(46, 42, 38, 0.18);
}

.buzz-slide {
  position: absolute;
  inset: 0;
  padding: 0.45rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(5%);
  transition:
    opacity 0.65s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.65s;
  pointer-events: none;
}

.buzz-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.buzz-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  display: block;
  color: inherit;
  background: var(--kinari);
  border: 1px solid rgba(246, 241, 229, 0.28);
  border-radius: 7px;
  text-decoration: none;
  isolation: isolate;
}

.buzz-card::after {
  content: none;
  position: absolute;
  z-index: 4;
  top: 0.45rem;
  right: 0.5rem;
  color: #fff;
  font-size: 0.68rem;
  opacity: 0.8;
}

.buzz-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.buzz-photo:hover img {
  transform: scale(1.045);
}

.buzz-overlay {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 1.7rem 0.65rem 0.55rem;
  display: grid;
  gap: 0.08rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(28, 16, 12, 0.82));
}

.buzz-overlay small,
.buzz-quote small {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.buzz-overlay strong {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
}

.buzz-overlay > span {
  display: none;
}

.buzz-quote {
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(rgba(109, 58, 58, 0.08) 1px, transparent 1px) 0 0 / 11px 11px,
    var(--kinari);
}

.buzz-quote small {
  color: var(--gold-deep);
}

.buzz-quote blockquote {
  margin: 0.3rem 0;
  display: -webkit-box;
  overflow: hidden;
  color: var(--azuki-deep);
  font-family: var(--font-serif);
  font-size: 0.75rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.buzz-quote > span {
  color: #6e655a;
  font-size: 0.56rem;
}

.buzz-controls {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
}

.buzz-arrow {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(109, 58, 58, 0.3);
  border-radius: 50%;
  color: var(--azuki-deep);
  background: transparent;
  cursor: pointer;
}

.buzz-dots {
  display: flex;
  gap: 0.5rem;
}

.buzz-dots button {
  width: 24px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(109, 58, 58, 0.23);
  cursor: pointer;
  transition: width 0.25s, background-color 0.25s;
}

.buzz-dots button[aria-current="true"] {
  width: 42px;
  background: var(--azuki);
}

.insta-account-link {
  max-width: 980px;
  margin: 1.2rem auto 0;
  padding: 0.85rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--sumi);
  border-bottom: 1px solid rgba(109, 58, 58, 0.22);
  text-decoration: none;
  font-size: 0.8rem;
}

.insta-account-link span {
  color: var(--azuki);
  font-weight: 700;
}

.press-proof {
  margin-top: 3.2rem;
  scroll-margin-top: 88px;
}

.press-proof-head {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}

.press-proof-head h3 {
  margin-top: 0.25rem;
  color: var(--azuki-deep);
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.press-proof-head > p:last-child {
  margin-top: 0.55rem;
  color: #5a5248;
  font-size: 0.8rem;
}

.press-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.press-card {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  isolation: isolate;
}

.press-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 16, 12, 0.08), rgba(28, 16, 12, 0.84));
}

.press-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.press-card:hover img {
  transform: scale(1.04);
}

.press-card > span {
  position: absolute;
  inset: auto 0 0;
  padding: 0.8rem;
  display: grid;
}

.press-card small {
  color: var(--gold-pale);
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.press-card strong {
  margin-top: 0.08rem;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
}

.press-card em {
  margin-top: 0.18rem;
  font-size: 0.58rem;
  font-style: normal;
  opacity: 0.8;
}

/* ---------- About: 空白を意図のある年号と写真ギャラリーで埋める ---------- */
.about-grid {
  margin-top: 1.5rem;
  gap: 0.75rem;
}

.about-text {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(145deg, rgba(176, 141, 87, 0.08), transparent 55%),
    #fffdf7;
  border: 1px solid rgba(109, 58, 58, 0.18);
  border-radius: 9px;
}

.about-signature {
  margin-top: 1.5rem !important;
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  color: var(--azuki-deep);
  border-top: 1px solid rgba(109, 58, 58, 0.18);
  padding-top: 0.8rem;
}

.about-signature strong {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.about-signature span {
  color: var(--gold-deep);
  font-family: var(--font-serif);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.about-gallery {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.about-gallery-viewport {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: var(--azuki-deep);
  border-radius: 9px;
}

.about-gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition: opacity 0.55s, transform 0.8s, visibility 0.55s;
}

.about-gallery-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.about-gallery-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-gallery-slide figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.8rem 0.8rem 0.65rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(28, 16, 12, 0.75));
  font-family: var(--font-serif);
  font-size: 0.75rem;
  text-align: left;
}

.about-gallery-thumbs {
  margin-top: 0.55rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.about-gallery-thumbs button {
  position: relative;
  height: 64px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  opacity: 0.62;
  transition: opacity 0.25s, border-color 0.25s;
}

.about-gallery-thumbs button[aria-current="true"] {
  border-color: var(--azuki);
  opacity: 1;
}

.about-gallery-thumbs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-gallery-dots {
  margin-top: 0.55rem;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}

.about-gallery-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(109, 58, 58, 0.25);
}

.about-gallery-dots span.is-active {
  width: 18px;
  border-radius: 999px;
  background: var(--azuki);
}

@media (min-width: 768px) {
  .buzz-summary {
    margin-top: 2rem;
  }

  .buzz-summary p {
    padding: 1rem;
    gap: 0.65rem;
  }

  .buzz-summary strong {
    font-size: 2.5rem;
  }

  .buzz-summary span {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }

  .buzz-carousel {
    width: min(100% - 2rem, 1320px);
    margin-top: 2.5rem;
  }

  .buzz-viewport {
    height: 560px;
    border-radius: 18px;
  }

  .buzz-slide {
    padding: 0.85rem;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(6, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .buzz-card {
    border-radius: 12px;
  }

  .buzz-feature {
    grid-column: 1 / 7;
    grid-row: 1 / 4;
  }

  .buzz-slide:first-child .buzz-feature {
    grid-row: 1 / 7;
  }

  .buzz-small-a {
    grid-column: 7 / 10;
    grid-row: 1 / 4;
  }

  .buzz-small-b {
    grid-column: 10 / 13;
    grid-row: 1 / 4;
  }

  .buzz-small-c {
    grid-column: 1 / 5;
    grid-row: 5 / 7;
  }

  .buzz-quote-a {
    grid-column: 5 / 9;
    grid-row: 4 / 7;
  }

  .buzz-slide:first-child .buzz-quote-a {
    grid-column: 7 / 11;
  }

  .buzz-quote-b {
    grid-column: 9 / 13;
    grid-row: 4 / 7;
  }

  .buzz-slide:first-child .buzz-quote-b {
    grid-column: 11 / 13;
  }

  .buzz-photo-a {
    grid-column: 1 / 5;
    grid-row: 1 / 4;
  }

  .buzz-photo-b {
    grid-column: 5 / 9;
    grid-row: 1 / 4;
  }

  .buzz-slide:nth-child(3) .buzz-quote-a {
    grid-column: 9 / 13;
    grid-row: 1 / 4;
  }

  .buzz-photo-c {
    grid-column: 1 / 7;
    grid-row: 4 / 7;
  }

  .buzz-photo-d {
    grid-column: 7 / 11;
    grid-row: 4 / 7;
  }

  .buzz-slide:nth-child(3) .buzz-quote-b {
    grid-column: 11 / 13;
    grid-row: 4 / 7;
  }

  .buzz-card::after {
    top: 0.75rem;
    right: 0.85rem;
    font-size: 0.82rem;
  }

  .buzz-overlay {
    padding: 4.5rem 1.2rem 1.05rem;
  }

  .buzz-overlay small,
  .buzz-quote small {
    font-size: 0.68rem;
  }

  .buzz-overlay strong {
    font-size: 1.15rem;
  }

  .buzz-feature .buzz-overlay strong {
    font-size: 1.75rem;
  }

  .buzz-overlay > span {
    display: block;
    font-size: 0.78rem;
  }

  .buzz-quote {
    padding: 1.25rem;
  }

  .buzz-quote blockquote {
    font-size: 1rem;
    line-height: 1.8;
  }

  .buzz-quote > span {
    font-size: 0.68rem;
  }

  .buzz-controls {
    margin-top: 1rem;
  }

  .insta-account-link {
    margin-top: 1.5rem;
    font-size: 0.9rem;
  }

  .press-proof {
    margin-top: 5rem;
  }

  .press-proof-head h3 {
    font-size: 1.8rem;
  }

  .press-proof-head > p:last-child {
    font-size: 0.92rem;
  }

  .press-grid {
    margin-top: 1.8rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .press-card {
    min-height: 280px;
    border-radius: 11px;
  }

  .press-card:nth-child(even) {
    transform: translateY(1.5rem);
  }

  .press-card > span {
    padding: 1.2rem;
  }

  .press-card small {
    font-size: 0.62rem;
  }

  .press-card strong {
    font-size: 1.15rem;
  }

  .press-card em {
    font-size: 0.68rem;
  }

  .about-grid {
    margin-top: 2.5rem;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: stretch;
    gap: 1rem;
  }

  .about-text {
    min-height: 610px;
    padding: 2.4rem 2.5rem;
    border-radius: 13px;
  }

  .about-signature {
    margin-top: auto !important;
    padding-top: 1.2rem;
  }

  .about-signature strong {
    font-size: 4.8rem;
  }

  .about-signature span {
    font-size: 0.8rem;
  }

  .about-gallery {
    min-height: 610px;
  }

  .about-gallery-viewport {
    height: auto;
    min-height: 492px;
    flex: 1;
    border-radius: 13px;
  }

  .about-gallery-thumbs {
    gap: 0.65rem;
  }

  .about-gallery-thumbs button {
    height: 90px;
    border-radius: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .buzz-slide,
  .about-gallery-slide,
  .buzz-photo img,
  .press-card img {
    transition: none;
  }
}

/* ============================================
   Instagram feed: 投稿画面のリアルさを保った高速レール
   ============================================ */
.social-rail-shell {
  position: relative;
  width: min(100%, 1440px);
  margin: 1.5rem auto 0;
}

.social-rail-shell::before,
.social-rail-shell::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 3.2rem;
  width: clamp(0.4rem, 3vw, 2.6rem);
  pointer-events: none;
}

.social-rail-shell::before {
  left: 0;
  background: linear-gradient(90deg, #fffdf7, transparent);
}

.social-rail-shell::after {
  right: 0;
  background: linear-gradient(-90deg, #fffdf7, transparent);
}

.social-rail {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0.7rem max(1rem, calc((100vw - 1280px) / 2)) 1.2rem;
  scroll-behavior: smooth;
  scroll-padding-inline: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.social-rail::-webkit-scrollbar {
  display: none;
}

.ig-post-card {
  flex: 0 0 clamp(248px, 70vw, 292px);
  overflow: hidden;
  color: #1f1f1f;
  background: #fff;
  border: 1px solid rgba(34, 25, 21, 0.14);
  border-radius: 9px;
  box-shadow: 0 9px 24px rgba(49, 38, 30, 0.11);
  text-decoration: none;
  scroll-snap-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ig-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(49, 38, 30, 0.16);
}

.ig-post-head {
  min-width: 0;
  height: 50px;
  padding: 0.48rem 0.62rem;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
}

.ig-post-head > img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(34, 25, 21, 0.12);
  border-radius: 50%;
}

.ig-post-head > span {
  min-width: 0;
  display: grid;
}

.ig-post-head strong {
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 0.72rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ig-post-head small {
  overflow: hidden;
  color: #787878;
  font-size: 0.55rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ig-post-head i {
  color: #343434;
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.05em;
}

.ig-post-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  background: #eee;
}

.ig-post-actions {
  height: 36px;
  padding: 0.38rem 0.62rem 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #1f1f1f;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.ig-post-actions b {
  font-size: 1.03rem;
  font-weight: 400;
  line-height: 1;
}

.ig-post-actions em {
  margin-left: auto;
  font-size: 1rem;
  font-style: normal;
}

.ig-post-caption {
  height: 58px;
  margin: 0 0.62rem 0.65rem;
  display: block;
  overflow-y: auto;
  color: #383838;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 0.64rem;
  line-height: 1.5;
  scrollbar-width: thin;
}

.ig-post-caption strong {
  margin-right: 0.25rem;
  color: #171717;
  font-size: inherit;
}

.social-rail-controls {
  min-height: 38px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.social-rail-controls button {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(109, 58, 58, 0.32);
  border-radius: 50%;
  color: var(--azuki-deep);
  background: rgba(255, 253, 247, 0.94);
  cursor: pointer;
  transition: color 0.2s, background-color 0.2s;
}

.social-rail-controls button:hover {
  color: #fff;
  background: var(--azuki);
}

.social-rail-controls span {
  color: #7a7065;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.press-card::after {
  background: linear-gradient(180deg, rgba(28, 16, 12, 0.04) 16%, rgba(28, 16, 12, 0.9));
}

.press-card > span {
  text-shadow: 0 1px 7px rgba(0, 0, 0, 0.45);
}

.history-numbers {
  margin-top: 1.2rem;
  padding-top: 0.8rem;
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.8fr;
  gap: 0.45rem;
  border-top: 1px solid rgba(109, 58, 58, 0.18);
}

.history-numbers p {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.history-numbers p + p {
  padding-left: 0.55rem;
  border-left: 1px solid rgba(109, 58, 58, 0.15);
}

.history-numbers strong {
  color: var(--azuki-deep);
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.history-numbers .history-primary strong {
  font-size: 2.45rem;
}

.history-numbers sup {
  margin-left: 0.05em;
  color: var(--gold-deep);
  font-size: 0.32em;
  letter-spacing: 0;
  vertical-align: super;
}

.history-numbers span {
  margin-top: 0.42rem;
  color: #766b5e;
  font-family: var(--font-serif);
  font-size: 0.52rem;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

@media (min-width: 768px) {
  .social-rail-shell {
    margin-top: 2.3rem;
  }

  .social-rail {
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }

  .ig-post-card {
    flex-basis: clamp(300px, 26vw, 360px);
    border-radius: 12px;
  }

  .ig-post-head {
    height: 58px;
    padding: 0.58rem 0.78rem;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 0.6rem;
  }

  .ig-post-head > img {
    width: 40px;
    height: 40px;
  }

  .ig-post-head strong {
    font-size: 0.82rem;
  }

  .ig-post-head small {
    font-size: 0.62rem;
  }

  .ig-post-actions {
    height: 42px;
    padding: 0.48rem 0.78rem 0;
  }

  .ig-post-actions b,
  .ig-post-actions em {
    font-size: 1.15rem;
  }

  .ig-post-caption {
    height: 72px;
    margin: 0 0.78rem 0.8rem;
    font-size: 0.74rem;
    line-height: 1.6;
  }

  .social-rail-controls {
    min-height: 42px;
  }

  .social-rail-controls button {
    width: 40px;
    height: 40px;
  }

  .social-rail-controls span {
    font-size: 0.64rem;
  }

  .history-numbers {
    margin-top: auto;
    padding-top: 1.2rem;
    gap: 0.85rem;
  }

  .history-numbers p + p {
    padding-left: 0.9rem;
  }

  .history-numbers strong {
    font-size: 2.65rem;
  }

  .history-numbers .history-primary strong {
    font-size: 4.8rem;
  }

  .history-numbers span {
    margin-top: 0.6rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }
}

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

  .ig-post-card {
    transition: none;
  }
}

/* ============================================
   Mobile-only refinement: 情報速度と1953の視認性
   ============================================ */
.about-mobile-copy {
  display: none;
}

.history-mobile-value,
.history-mobile-label {
  display: none;
}

@keyframes history-mobile-enter {
  from {
    opacity: 0;
    transform: translateX(-42px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 767px) {
  .instagram .section-lead {
    display: none;
  }

  .instagram .section-title {
    margin-bottom: 0.15rem;
  }

  .about-grid {
    margin-top: 1.35rem;
    gap: 0.8rem;
  }

  .about-text {
    padding: 1.15rem;
  }

  .about-text h3 {
    order: 1;
    margin-bottom: 0;
    font-size: 1.18rem;
    line-height: 1.55;
  }

  .about-desktop-copy,
  .about-points {
    display: none;
  }

  .about-mobile-copy {
    order: 3;
    margin-top: 0.95rem !important;
    display: block;
    color: #4f4941;
    font-size: 0.84rem;
    line-height: 1.8;
  }

  .history-numbers {
    order: 2;
    margin-top: 1rem;
    padding-top: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    border-top: 0;
  }

  .history-numbers p,
  .history-numbers p + p {
    min-height: 88px;
    margin: 0 !important;
    padding: 0.75rem;
    align-items: flex-start;
    justify-content: space-between;
    border: 1px solid rgba(109, 58, 58, 0.18);
    border-radius: 8px;
    background: rgba(255, 253, 247, 0.78);
  }

  .history-numbers .history-primary {
    min-height: 114px;
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-end;
    background:
      linear-gradient(110deg, rgba(255, 255, 255, 0.08), transparent 58%),
      var(--azuki-deep);
    border-color: var(--azuki-deep);
    opacity: 0;
    transform: translateX(-42px);
  }

  .about-text.is-visible .history-numbers .history-primary {
    animation: history-mobile-enter 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .history-numbers strong,
  .history-numbers .history-primary strong {
    font-size: 2.35rem;
    line-height: 0.85;
  }

  .history-numbers .history-primary strong {
    color: #fffdf7;
    font-size: clamp(4rem, 20vw, 5.1rem);
  }

  .history-numbers span {
    margin-top: 0.55rem;
    color: #75695d;
    font-size: 0.56rem;
    letter-spacing: 0.08em;
  }

  .history-desktop-value,
  .history-desktop-label {
    display: none;
  }

  .history-mobile-value,
  .history-mobile-label {
    display: block;
  }

  .history-numbers .history-mobile-label {
    margin-top: 0.48rem;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.06em;
  }

  .history-years .history-mobile-value {
    font-size: 2.72rem;
    white-space: nowrap;
  }

  .history-numbers .history-years .history-mobile-label {
    font-size: 0.8rem;
  }

  .history-walk .history-mobile-value {
    display: flex;
    align-items: baseline;
    gap: 0.16em;
    font-size: 3rem;
  }

  .history-walk .history-mobile-value small {
    font-family: var(--font-sans);
    font-size: 0.5em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
  }

  .history-numbers .history-walk .history-mobile-label {
    order: -1;
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
  }

  .history-numbers .history-primary span {
    max-width: 6.5rem;
    margin: 0 0 0.28rem;
    color: var(--gold-pale);
    font-size: 0.62rem;
    line-height: 1.5;
    text-align: right;
  }

  .line-signup-action > p,
  .footer-line {
    display: none;
  }

  .line-signup-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 0.9rem;
    padding: 0.08rem 0;
    border-top: 1px solid rgba(6, 199, 85, 0.2);
    border-bottom: 1px solid rgba(6, 199, 85, 0.2);
  }

  .line-signup-benefits li {
    min-height: 2.9rem;
    padding: 0.68rem 0.12rem;
    display: grid;
    place-items: center;
    color: #315744;
    background: transparent;
    border-radius: 0;
    font-family: var(--font-serif);
    font-size: 0.62rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-align: center;
    white-space: nowrap;
  }

  .line-signup-benefits li + li {
    border-left: 1px solid rgba(6, 199, 85, 0.16);
  }
}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .history-numbers .history-primary,
  .about-text.is-visible .history-numbers .history-primary {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   Instagram / 暖簾 refinement: 2026-08-02
   ============================================ */
@keyframes social-rail-loop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - (var(--rail-gap) / 2)), 0, 0);
  }
}

.instagram > .section-inner:first-child {
  max-width: 1100px;
}

.instagram .section-title {
  font-size: clamp(2.2rem, 3.4vw, 3.5rem);
  letter-spacing: 0.12em;
}

.instagram .section-lead {
  margin-top: 1rem;
  color: #665548;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
}

.social-rail-shell {
  width: 100%;
  max-width: none;
  overflow: hidden;
}

.social-rail-shell::before,
.social-rail-shell::after {
  bottom: 0;
  width: clamp(1.25rem, 5vw, 5.5rem);
}

.social-rail {
  --rail-gap: 1rem;
  width: max-content;
  gap: var(--rail-gap);
  overflow: visible;
  padding: 1rem 0 1.5rem;
  scroll-behavior: auto;
  scroll-padding-inline: 0;
  scroll-snap-type: none;
  will-change: transform;
}

.social-rail.is-looping {
  animation: social-rail-loop 58s linear infinite;
}

.social-rail-shell:hover .social-rail.is-looping,
.social-rail-shell:focus-within .social-rail.is-looping {
  animation-play-state: paused;
}

.instagram .insta-account-link {
  width: fit-content;
  margin: 1.8rem auto 0;
  padding: 0.85rem 1.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  color: #fffdf7;
  background: var(--azuki-deep);
  border: 1px solid var(--azuki-deep);
  border-radius: 999px;
  box-shadow: 0 9px 24px rgba(75, 32, 36, 0.18);
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.instagram .insta-account-link span {
  color: var(--gold-pale);
  font-size: 1.05rem;
}

.instagram .insta-account-link:hover {
  color: var(--azuki-deep);
  background: #fffdf7;
  transform: translateY(-2px);
}

.press-proof-head > p:last-child {
  margin-top: 0.7rem;
  font-family: var(--font-serif);
  font-size: 0.88rem;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .obi {
    padding: 0;
  }

  .obi-noren {
    gap: 1px;
  }

  .obi-noren span {
    height: 62px;
    padding: 0.42rem 0.16rem 0.55rem;
    border-bottom-width: 4px;
  }

  .obi-noren b {
    font-size: clamp(0.66rem, 3.2vw, 0.82rem);
    letter-spacing: 0.08em;
  }

  .obi-noren span:last-child b {
    font-size: 0.62rem;
  }

  .obi-noren small {
    margin-top: 0.2rem;
    font-size: 0.46rem;
    letter-spacing: 0.05em;
  }

  .instagram .section-title {
    margin-top: 0;
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.35;
    letter-spacing: 0.08em;
  }

  .social-rail {
    --rail-gap: 0.65rem;
    padding: 0.75rem 0 1rem;
  }

  .social-rail.is-looping {
    animation-duration: 52s;
  }

  .instagram .insta-account-link {
    margin-top: 1.15rem;
    padding: 0.72rem 1.15rem;
    font-size: 0.78rem;
  }

  .press-proof {
    margin-top: 2.4rem;
  }

  .press-proof-head > p:last-child {
    margin-top: 0.55rem;
    font-size: 0.72rem;
    line-height: 1.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-rail.is-looping {
    animation: none;
  }

  .social-rail.is-static {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }
}

/* ============================================
   暖簾の入口 / MacBook Air refinement: 2026-08-02
   ============================================ */
.hero-stage {
  position: relative;
  height: 132svh;
  background: #fffdf7;
}

.hero-stage .hero {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
  background: #fffdf7;
}

.hero-stage .hero-media {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.hero-stage .hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.hero-stage .hero-media::after {
  background:
    linear-gradient(90deg, rgba(27, 8, 10, 0.66) 0%, rgba(27, 8, 10, 0.2) 52%, rgba(27, 8, 10, 0.3) 100%),
    linear-gradient(0deg, rgba(27, 8, 10, 0.56) 0%, transparent 46%);
}

.hero-stage .hero-body {
  position: absolute;
  inset: 0;
  height: 100%;
  z-index: 3;
  box-sizing: border-box;
  opacity: var(--hero-copy-opacity, 1);
  transform: translate3d(0, var(--hero-copy-y, 0), 0);
  will-change: transform, opacity;
}

.hero-stage .hero-title {
  max-width: 13em;
  font-size: clamp(2.25rem, 4.8vw, 4.7rem);
  line-height: 1.32;
  letter-spacing: 0.08em;
  text-wrap: balance;
}

.hero-title-mobile {
  display: none;
}

.hero-photo-curtain {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  overflow: hidden;
  pointer-events: none;
  perspective: 1400px;
}

.hero-photo-curtain::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(27, 8, 10, 0.66) 0%, rgba(27, 8, 10, 0.2) 52%, rgba(27, 8, 10, 0.3) 100%),
    linear-gradient(0deg, rgba(27, 8, 10, 0.5) 0%, transparent 46%);
  opacity: var(--hero-shade-opacity, 1);
  will-change: opacity;
}

.hero-photo-curtain > span {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: visible;
  display: block;
  will-change: transform, opacity;
}

.hero-photo-curtain > span::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.035) 46%, rgba(24, 5, 8, 0.09) 100%),
    linear-gradient(180deg, transparent 70%, rgba(22, 5, 7, 0.14) 100%);
  opacity: var(--hero-fold-opacity, 0);
  will-change: opacity;
}

.hero-photo-curtain img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(var(--hero-image-scale, 1));
  transform-origin: center;
  will-change: transform;
}

.hero-photo-curtain > span:nth-child(1) {
  clip-path: inset(0 75% 0 0);
  transform-origin: 12.5% 0;
}

.hero-photo-curtain > span:nth-child(2) {
  clip-path: inset(0 50% 0 25%);
  transform-origin: 37.5% 0;
}

.hero-photo-curtain > span:nth-child(3) {
  clip-path: inset(0 25% 0 50%);
  transform-origin: 62.5% 0;
}

.hero-photo-curtain > span:nth-child(4) {
  clip-path: inset(0 0 0 75%);
  transform-origin: 87.5% 0;
}

.hero-scroll-mark {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 1.35rem;
  width: 1px;
  height: 52px;
  overflow: hidden;
  background: rgba(255, 252, 238, 0.28);
  opacity: var(--hero-scroll-opacity, 1);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-scroll-mark span {
  position: absolute;
  top: -35%;
  left: 0;
  width: 100%;
  height: 42%;
  background: var(--gold-pale);
  animation: hero-scroll-line 2.1s ease-in-out infinite;
}

@keyframes hero-scroll-line {
  0% {
    transform: translateY(0);
  }

  75%,
  100% {
    transform: translateY(320%);
  }
}

.access-route {
  display: none;
}

@media (min-width: 768px) {
  html {
    scroll-padding-top: 0;
  }

  .site-header {
    position: absolute;
    z-index: 20;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
  }

  .site-header::before {
    display: none;
  }

  .header-inner {
    max-width: 1440px;
    min-height: 0;
    padding: 1.45rem clamp(1.8rem, 4vw, 4rem);
  }

  .logo-mark,
  .global-nav {
    display: none;
  }

  .site-logo {
    color: #fffdf7;
    font-size: clamp(1.45rem, 2.1vw, 2.1rem);
    letter-spacing: 0.13em;
    text-shadow: 0 2px 16px rgba(21, 4, 6, 0.65);
  }

  .hero-stage .hero-body {
    width: min(1180px, calc(100% - 8rem));
    margin: 0 auto;
    padding: clamp(8rem, 22svh, 13rem) 0 0;
    justify-content: flex-start;
  }

  .hero-stage .hero-since {
    width: fit-content;
    margin-bottom: 1.3rem;
    padding: 0.5rem 1rem;
    border-color: rgba(225, 194, 131, 0.78);
    font-size: 0.83rem;
    letter-spacing: 0.2em;
  }

  .about {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .about .section-title {
    font-size: clamp(1.8rem, 2.7vw, 2.5rem);
  }

  .about-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 1.1rem;
    margin-top: 1.65rem;
    align-items: stretch;
  }

  .about-text {
    min-height: 0;
    padding: 1.35rem 1.5rem;
  }

  .about-text h3 {
    font-size: clamp(1.15rem, 1.8vw, 1.5rem);
    line-height: 1.6;
  }

  .about-desktop-copy {
    font-size: 0.82rem;
    line-height: 1.78;
  }

  .about-text p + p {
    margin-top: 0.6rem;
  }

  .about-points {
    gap: 0.4rem;
    margin-top: 0.9rem;
  }

  .about-points li {
    padding: 0.48rem 0.62rem;
    font-size: 0.72rem;
  }

  .about-signature {
    margin-top: 0.85rem;
    padding-top: 0.75rem;
  }

  .history-numbers {
    gap: 0.85rem;
    margin-top: 0.85rem;
    padding-top: 0.8rem;
  }

  .history-numbers strong,
  .history-numbers .history-primary strong {
    font-size: clamp(1.6rem, 2.7vw, 2.35rem);
  }

  .about-gallery {
    min-height: 0;
  }

  .about-gallery-viewport {
    height: clamp(270px, 38svh, 330px);
    min-height: 0;
    flex: 0 0 auto;
  }

  .about-gallery-thumbs {
    gap: 0.5rem;
    margin-top: 0.55rem;
  }

  .about-gallery-thumbs button {
    height: 58px;
  }

  .access-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: stretch;
  }

  .access-text {
    padding: 0.4rem 0.4rem 0;
  }

  .access-copy {
    display: none;
  }

  .access-route {
    display: grid;
    gap: 0.68rem;
    margin: 1.15rem 0 0;
    padding: 0;
    list-style: none;
  }

  .access-route li {
    display: grid;
    grid-template-columns: 1.8rem minmax(0, 1fr);
    gap: 0.7rem;
    align-items: start;
  }

  .access-route li > span {
    width: 1.72rem;
    height: 1.72rem;
    display: grid;
    place-items: center;
    color: var(--azuki);
    border: 1px solid rgba(105, 50, 55, 0.3);
    border-radius: 50%;
    font-family: var(--font-serif);
    font-size: 0.68rem;
  }

  .access-route p {
    margin: 0;
    color: #665548;
    font-size: 0.83rem;
    line-height: 1.7;
  }

  .access-route strong {
    color: var(--azuki-deep);
    font-weight: 600;
  }

  .line-signup {
    padding-top: 2.6rem;
    padding-bottom: 2.6rem;
  }

  .line-signup-card {
    max-width: 1060px;
    grid-template-columns: 52px minmax(0, 1fr) 224px;
    gap: 1.1rem;
    align-items: center;
    padding: 1.05rem 1.25rem;
  }

  .line-signup-mark {
    width: 52px;
    height: 52px;
  }

  .line-signup-kicker {
    font-size: 0.68rem;
  }

  .line-signup-title {
    margin-top: 0.18rem;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.35;
  }

  .line-signup-title br {
    display: none;
  }

  .line-signup-lead {
    margin-top: 0.22rem;
    font-size: 0.72rem;
  }

  .line-signup-benefits {
    gap: 0.35rem;
    margin-top: 0.48rem;
  }

  .line-signup-benefits li {
    min-height: 0;
    padding: 0.2rem 0.58rem;
    font-size: 0.62rem;
  }

  .line-signup-action {
    grid-column: auto;
    min-height: 0;
    padding-left: 1.05rem;
    border-left: 1px solid rgba(6, 199, 85, 0.2);
  }

  .line-signup-button {
    width: 100%;
    margin-top: 0;
    padding: 0.68rem 0.8rem;
  }
}

@media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    clip-path: inset(0 0 12% 0);
    transform: translate3d(0, 42px, 0) scale(0.987);
    transition:
      opacity 0.65s ease,
      transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
      clip-path 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal.is-visible {
    opacity: 1;
    clip-path: inset(0);
    transform: none;
  }

  .press-card.reveal:nth-child(2),
  .menu-card.reveal:nth-child(even) {
    transition-delay: 0.07s;
  }

  .press-card.reveal:nth-child(3) {
    transition-delay: 0.14s;
  }

  .press-card.reveal:nth-child(4) {
    transition-delay: 0.21s;
  }
}

@media (max-width: 767px) {
  .hero-stage {
    height: auto;
    background: var(--azuki-deep);
  }

  .hero-stage .hero {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    background: var(--azuki-deep);
  }

  .hero-stage .hero-media {
    position: relative;
    inset: auto;
    opacity: 1;
  }

  .hero-stage .hero-media img {
    height: clamp(360px, 48svh, 500px);
    min-height: 0;
    object-fit: cover;
    object-position: center;
    transform: none;
  }

  .hero-photo-curtain {
    display: none;
  }

  .hero-stage .hero-body {
    min-height: 0;
    padding: 1.25rem;
    justify-content: center;
  }

  .hero-stage .hero-title {
    max-width: 13em;
    font-size: clamp(1.7rem, 7vw, 2.15rem);
    line-height: 1.5;
  }

  .hero-stage .hero-since {
    margin-bottom: 0.6rem;
  }

  .hero-title-desktop {
    display: none;
  }

  .hero-title-mobile {
    display: inline;
  }

  .hero-scroll-mark {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stage {
    height: auto;
  }

  .hero-stage .hero {
    position: relative;
  }

  .hero-stage .hero-media {
    opacity: 1;
  }

  .hero-stage .hero-media img,
  .hero-stage .hero-body {
    opacity: 1;
    transform: none;
  }

  .hero-photo-curtain,
  .hero-scroll-mark {
    display: none;
  }
}

/* ============================================
   4枚暖簾 / full-screen story panels: 2026-08-02
   ============================================ */
@keyframes menu-rail-loop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - (var(--menu-rail-gap) / 2)), 0, 0);
  }
}

.hero-stage {
  height: 220svh;
  background: #fffdf7;
}

.hero-stage .hero {
  background: #fffdf7;
}

.hero-stage .hero-body {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(5rem, 12svh, 8rem) clamp(1.25rem, 5vw, 5rem) 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-stage .hero-title {
  max-width: 14em;
  margin: 0 auto;
  font-size: clamp(3rem, 5.8vw, 5.4rem);
  line-height: 1.28;
  letter-spacing: 0.1em;
  text-wrap: balance;
  text-shadow: 0 3px 24px rgba(24, 5, 8, 0.7);
}

.hero-next-preview {
  position: absolute;
  z-index: 0;
  inset: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--azuki-deep);
  background:
    radial-gradient(circle at 50% 44%, rgba(213, 191, 145, 0.15), transparent 37%),
    #fffdf7;
  opacity: var(--hero-next-opacity, 0);
  transform: translate3d(0, var(--hero-next-y, 30px), 0);
  will-change: opacity, transform;
}

.hero-next-preview p {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.3;
  letter-spacing: 0.13em;
}

.hero-next-preview span {
  margin-top: 0.85rem;
  color: #6a5b4d;
  font-family: var(--font-serif);
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  letter-spacing: 0.13em;
}

.hero-photo-curtain > span {
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.hero-photo-curtain > span::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(25, 4, 7, 0.18));
  opacity: var(--hero-fold-opacity, 0);
  pointer-events: none;
}

.hero-scroll-mark {
  display: none;
}

.menu-track {
  display: flex;
  gap: 1.2rem;
}

.social-rail-shell:hover .social-rail.is-looping,
.social-rail-shell:focus-within .social-rail.is-looping,
.menu-scroller:hover .menu-track,
.menu-scroller:focus-within .menu-track {
  animation-play-state: running;
}

@media (min-width: 768px) {
  html {
    scroll-padding-top: 0;
    scroll-snap-type: y proximity;
  }

  .hero-stage,
  .instagram-screen,
  .press-proof,
  .about,
  .menu {
    scroll-snap-align: start;
  }

  .instagram {
    padding: 0;
    overflow: hidden;
    background: #fffdf7;
  }

  .instagram-screen,
  .press-proof,
  .about,
  .menu {
    box-sizing: border-box;
    min-height: 100svh;
  }

  .instagram-screen {
    padding: clamp(2.5rem, 6svh, 4.3rem) 0 clamp(1.7rem, 4svh, 2.6rem);
    display: grid;
    align-content: center;
    overflow: hidden;
  }

  .instagram-screen .section-title {
    font-size: clamp(2.35rem, 3.5vw, 3.45rem);
  }

  .instagram-screen .section-lead {
    margin-top: 0.5rem;
    font-size: 0.86rem;
  }

  .instagram-screen .social-rail-shell {
    margin-top: clamp(0.7rem, 2svh, 1.3rem);
  }

  .instagram-screen .social-rail {
    padding-top: 0.45rem;
    padding-bottom: 0.7rem;
  }

  .instagram-screen .ig-post-card {
    flex-basis: clamp(230px, 20.5vw, 272px);
  }

  .instagram-screen .ig-post-head {
    height: 42px;
    padding: 0.35rem 0.52rem;
    grid-template-columns: 30px minmax(0, 1fr) auto;
  }

  .instagram-screen .ig-post-head > img {
    width: 30px;
    height: 30px;
  }

  .instagram-screen .ig-post-photo {
    aspect-ratio: 4 / 3;
  }

  .instagram-screen .ig-post-actions {
    height: 30px;
    padding-top: 0.25rem;
  }

  .instagram-screen .ig-post-caption {
    height: 48px;
    margin-bottom: 0.5rem;
    font-size: 0.66rem;
    line-height: 1.45;
  }

  .instagram-screen .insta-account-link {
    margin-top: 0.65rem;
    padding: 0.65rem 1.35rem;
    font-size: 0.82rem;
  }

  .press-proof {
    width: 100%;
    margin: 0;
    padding: clamp(2.4rem, 6svh, 4.2rem) 0;
    display: grid;
    align-content: center;
    background:
      radial-gradient(circle at 50% 18%, rgba(213, 191, 145, 0.16), transparent 32%),
      var(--kinari);
  }

  .press-proof > .section-inner {
    width: min(1180px, calc(100% - 3rem));
  }

  .press-proof-head > p:last-child {
    margin-top: 0.45rem;
    line-height: 1.65;
  }

  .press-grid {
    margin-top: clamp(1rem, 2.4svh, 1.5rem);
    gap: 0.85rem;
  }

  .press-card,
  .press-card:nth-child(even) {
    min-height: clamp(230px, 42svh, 300px);
    transform: none;
  }

  .about {
    padding: clamp(2.3rem, 5svh, 3.7rem) 0;
    display: grid;
    align-content: center;
  }

  .about > .section-inner {
    width: min(1180px, calc(100% - 3rem));
  }

  .about .section-title {
    font-size: clamp(1.8rem, 2.7vw, 2.45rem);
  }

  .about-grid {
    height: clamp(420px, 68svh, 540px);
    margin-top: clamp(1rem, 2.8svh, 1.6rem);
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1rem;
    align-items: stretch;
  }

  .about-text,
  .about-gallery {
    height: 100%;
    min-height: 0;
    box-sizing: border-box;
  }

  .about-text {
    padding: clamp(1.2rem, 2.6svh, 1.8rem);
  }

  .about-gallery {
    display: flex;
    flex-direction: column;
  }

  .about-gallery-viewport {
    height: auto;
    min-height: 0;
    flex: 1 1 auto;
  }

  .about-gallery-thumbs button {
    height: clamp(52px, 9svh, 68px);
  }

  .history-numbers {
    margin-top: auto;
    padding-top: 0.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .history-numbers .history-primary {
    display: none;
  }

  .history-numbers p,
  .history-numbers p + p {
    min-height: 54px;
    padding: 0.65rem 0.75rem;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    gap: 0.45rem;
    border: 1px solid rgba(109, 58, 58, 0.15);
    border-radius: 6px;
    white-space: nowrap;
  }

  .history-numbers strong {
    flex: 0 0 auto;
    font-size: clamp(1.55rem, 2.5vw, 2.2rem);
    line-height: 1;
    white-space: nowrap;
  }

  .history-numbers span {
    margin: 0;
    font-size: 0.58rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  .history-numbers sup {
    font-size: 0.42em;
  }

  .menu {
    padding: clamp(2.2rem, 5svh, 3.4rem) 0;
    display: grid;
    align-content: center;
    overflow: hidden;
  }

  .menu .section-lead {
    margin-top: 0.55rem;
  }

  .menu-scroller {
    width: 100%;
    margin-top: clamp(0.9rem, 2.4svh, 1.5rem);
    padding: 0;
    display: block;
    overflow: hidden;
    scroll-snap-type: none;
    scrollbar-width: none;
  }

  .menu-track {
    --menu-rail-gap: 0.9rem;
    width: max-content;
    gap: var(--menu-rail-gap);
    padding: 0.35rem 0 0.7rem;
    will-change: transform;
  }

  .menu-scroller.is-looping .menu-track {
    animation: menu-rail-loop 76s linear infinite;
  }

  .menu-card {
    flex: 0 0 clamp(220px, 19vw, 250px);
    scroll-snap-align: none;
  }

  .menu-body {
    padding: 0.8rem 0.9rem 0.95rem;
  }

  .menu-name {
    font-size: 1.05rem;
  }

  .menu-price {
    font-size: 0.95rem;
  }

  .menu-desc {
    max-height: 3em;
    margin-top: 0.45rem;
    overflow: hidden;
    font-size: 0.71rem;
    line-height: 1.5;
  }

  .menu-note {
    margin-top: 0.45rem;
    font-size: 0.68rem;
  }

  .info {
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
  }

  .info-table-wrap {
    margin-top: 1.25rem;
    overflow: visible;
  }

  .info-table {
    display: block;
    max-width: 1040px;
  }

  .info-table tbody {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2.2rem;
  }

  .info-table tr {
    display: grid;
    grid-template-columns: 7.2em minmax(0, 1fr);
    align-items: center;
  }

  .info-table th,
  .info-table td {
    padding: 0.58rem 0.45rem;
    font-size: 0.78rem;
  }

  .info-note {
    font-size: 0.68rem;
  }

  .info-caution {
    margin-top: 0.9rem;
    font-size: 0.74rem;
  }
}

@media (max-width: 767px) {
  .hero-stage {
    height: 205svh;
    background: transparent;
  }

  .hero-stage .hero {
    position: sticky;
    z-index: 2;
    top: 0;
    height: 100svh;
    min-height: 560px;
    background: transparent;
  }

  .hero-stage .hero-media {
    position: absolute;
    inset: 0;
    opacity: 0;
  }

  .hero-stage .hero-media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }

  .hero-photo-curtain {
    display: block;
  }

  .hero-stage .hero-body {
    height: 100%;
    min-height: 0;
    padding: 3.9rem 1.1rem 1.2rem;
  }

  .hero-stage .hero-title {
    max-width: 12em;
    font-size: clamp(1.72rem, 7vw, 2.3rem);
    line-height: 1.42;
    letter-spacing: 0.05em;
  }

  .hero-next-preview {
    display: flex;
  }

  .instagram {
    position: relative;
    z-index: 0;
    margin-top: 0;
  }

  .menu-track {
    width: max-content;
    gap: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stage {
    height: auto;
  }

  .hero-stage .hero {
    position: relative;
    height: auto;
  }

  .hero-stage .hero-media {
    position: relative;
    opacity: 1;
  }

  .hero-next-preview,
  .hero-photo-curtain {
    display: none;
  }

  .instagram {
    margin-top: 0;
  }

  .menu-scroller.is-looping .menu-track {
    animation: none;
  }

  .menu-scroller.is-static {
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .menu-scroller.is-static .menu-card {
    scroll-snap-align: start;
  }
}

/* ============================================
   歴史をくぐる暖簾 / compact information: 2026-08-03
   ============================================ */
.hero-next-preview {
  overflow: hidden;
  isolation: isolate;
  justify-content: flex-end;
  padding-bottom: clamp(4.5rem, 8svh, 7rem);
  color: #fffdf7;
  background: #30201b;
}

.hero-next-preview::before,
.hero-next-preview::after {
  content: "";
  position: absolute;
  inset: -3%;
  pointer-events: none;
}

.hero-next-preview::before {
  z-index: -2;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 241, 211, 0.13), transparent 38%),
    linear-gradient(115deg, #2c1714, #5d332c 48%, #241411);
  filter: none;
  transform: none;
}

.hero-next-preview::after {
  z-index: 2;
  background:
    radial-gradient(circle at 36% 42%, rgba(255, 226, 169, 0.07) 0 20%, rgba(22, 10, 8, 0.48) 82%),
    linear-gradient(90deg, rgba(28, 9, 8, 0.56), rgba(61, 31, 21, 0.03) 48%, rgba(28, 9, 8, 0.5)),
    linear-gradient(0deg, rgba(28, 9, 8, 0.48), transparent 54%),
    repeating-linear-gradient(90deg, rgba(255, 247, 222, 0.028) 0 1px, transparent 1px 6px);
}

.hero-next-gallery {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr;
  padding: clamp(8px, 0.8vw, 13px);
  overflow: hidden;
}

.hero-next-gallery span {
  position: relative;
  min-width: 0;
  display: block;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 241, 218, 0.28);
  box-shadow: 0 20px 42px rgba(22, 5, 8, 0.35);
}

.hero-next-gallery span::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 249, 228, 0.12), transparent 38%),
    linear-gradient(0deg, rgba(35, 8, 10, 0.28), transparent 52%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-next-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.12) saturate(1.08) contrast(1.06) brightness(0.94);
  transform: scale(1.025);
}

.hero-next-gallery span img {
  object-position: 50% 12%;
}

.hero-next-preview p {
  position: relative;
  z-index: 3;
  max-width: 11em;
  margin: 0;
  padding: 0.26em 0.35em 0.35em;
  color: #fffdf7;
  font-size: clamp(2.35rem, 3.6vw, 3.5rem);
  line-height: 1.42;
  letter-spacing: 0.08em;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 3px 28px rgba(19, 5, 4, 0.9);
  opacity: var(--hero-next-copy-opacity, 0);
  transform: translate3d(0, var(--hero-next-copy-y, 26px), 0);
  will-change: opacity, transform;
}

.hero-next-preview p::after {
  content: "";
  width: 2.4em;
  height: 1px;
  margin: 0.55em auto 0;
  display: block;
  background: rgba(243, 217, 164, 0.82);
}

.hero-photo-curtain > span {
  filter:
    drop-shadow(0 13px 13px rgba(27, 8, 10, var(--hero-fold-opacity, 0)))
    drop-shadow(0 0 8px rgba(27, 8, 10, var(--hero-fold-opacity, 0)));
}

.hero-photo-curtain > span::before {
  width: 100%;
  background:
    linear-gradient(90deg, transparent 0 22%, rgba(255, 255, 255, 0.045) 33%, transparent 46% 70%, rgba(18, 3, 5, 0.17) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 30%, rgba(22, 5, 7, 0.12));
}

.hero-photo-curtain > span:nth-child(1) {
  clip-path: polygon(
    0 0,
    25% 0,
    26.3% 5%,
    27% 10%,
    26.3% 15%,
    25% 20%,
    23.7% 25%,
    23% 30%,
    23.7% 35%,
    25% 40%,
    26.3% 45%,
    27% 50%,
    26.3% 55%,
    25% 60%,
    23.7% 65%,
    23% 70%,
    23.7% 75%,
    25% 80%,
    26.3% 85%,
    27% 90%,
    26.3% 95%,
    25% 100%,
    0 100%
  );
}

.hero-photo-curtain > span:nth-child(2) {
  clip-path: polygon(
    25% 0,
    50% 0,
    48.5% 5%,
    47.8% 10%,
    48.5% 15%,
    50% 20%,
    51.5% 25%,
    52.2% 30%,
    51.5% 35%,
    50% 40%,
    48.5% 45%,
    47.8% 50%,
    48.5% 55%,
    50% 60%,
    51.5% 65%,
    52.2% 70%,
    51.5% 75%,
    50% 80%,
    48.5% 85%,
    47.8% 90%,
    48.5% 95%,
    50% 100%,
    25% 100%,
    26.3% 95%,
    27% 90%,
    26.3% 85%,
    25% 80%,
    23.7% 75%,
    23% 70%,
    23.7% 65%,
    25% 60%,
    26.3% 55%,
    27% 50%,
    26.3% 45%,
    25% 40%,
    23.7% 35%,
    23% 30%,
    23.7% 25%,
    25% 20%,
    26.3% 15%,
    27% 10%,
    26.3% 5%
  );
}

.hero-photo-curtain > span:nth-child(3) {
  clip-path: polygon(
    50% 0,
    75% 0,
    76.4% 5%,
    77.2% 10%,
    76.4% 15%,
    75% 20%,
    73.6% 25%,
    72.8% 30%,
    73.6% 35%,
    75% 40%,
    76.4% 45%,
    77.2% 50%,
    76.4% 55%,
    75% 60%,
    73.6% 65%,
    72.8% 70%,
    73.6% 75%,
    75% 80%,
    76.4% 85%,
    77.2% 90%,
    76.4% 95%,
    75% 100%,
    50% 100%,
    48.5% 95%,
    47.8% 90%,
    48.5% 85%,
    50% 80%,
    51.5% 75%,
    52.2% 70%,
    51.5% 65%,
    50% 60%,
    48.5% 55%,
    47.8% 50%,
    48.5% 45%,
    50% 40%,
    51.5% 35%,
    52.2% 30%,
    51.5% 25%,
    50% 20%,
    48.5% 15%,
    47.8% 10%,
    48.5% 5%
  );
}

.hero-photo-curtain > span:nth-child(4) {
  clip-path: polygon(
    75% 0,
    100% 0,
    100% 100%,
    75% 100%,
    76.4% 95%,
    77.2% 90%,
    76.4% 85%,
    75% 80%,
    73.6% 75%,
    72.8% 70%,
    73.6% 65%,
    75% 60%,
    76.4% 55%,
    77.2% 50%,
    76.4% 45%,
    75% 40%,
    73.6% 35%,
    72.8% 30%,
    73.6% 25%,
    75% 20%,
    76.4% 15%,
    77.2% 10%,
    76.4% 5%
  );
}

/* 掲載媒体名を写真から独立させ、ひと目で認識できるようにする */
.press-card > .press-brand {
  position: absolute;
  z-index: 4;
  inset: 0.72rem auto auto 0.72rem;
  width: auto;
  min-width: 88px;
  min-height: 28px;
  padding: 0.38rem 0.62rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #171411;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 5px;
  box-shadow: 0 4px 16px rgba(26, 13, 10, 0.16);
  backdrop-filter: blur(8px);
}

.press-card .press-brand img,
.press-card:hover .press-brand img {
  position: static;
  z-index: auto;
  inset: auto;
  width: auto;
  max-width: 112px;
  height: 22px;
  display: block;
  object-fit: contain;
  transform: none;
  transition: none;
}

.press-brand-hanako svg {
  width: 108px;
  height: 22px;
  display: block;
  fill: #111;
}

.press-card > .press-brand-hanako {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.055em;
}

.press-card > span:not(.press-brand) {
  padding-top: 2.8rem;
}

.footer-line-compact {
  min-width: max-content;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  color: rgba(255, 253, 247, 0.78);
  font-size: 0.7rem;
  line-height: 1.3;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.footer-line-compact strong {
  color: #fffdf7;
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.footer-line-compact span::before,
.footer-line-compact a::before,
.footer-line-compact small::before {
  content: "・";
  margin-right: 0.9rem;
  color: rgba(236, 211, 166, 0.55);
}

.footer-line-compact a {
  color: inherit;
  text-decoration: none;
}

@media (min-width: 768px) {
  .instagram-screen,
  .about,
  .menu {
    min-height: 92svh;
  }

  .instagram-screen {
    padding-top: clamp(2rem, 4.5svh, 3.2rem);
    padding-bottom: clamp(1.5rem, 3svh, 2rem);
  }

  .press-proof {
    min-height: 84svh;
    padding-top: clamp(2rem, 4.2svh, 3rem);
    padding-bottom: clamp(2rem, 4.2svh, 3rem);
  }

  .press-grid {
    margin-top: clamp(0.85rem, 1.8svh, 1.2rem);
  }

  .press-card,
  .press-card:nth-child(even) {
    min-height: clamp(228px, 38svh, 286px);
  }

  .about {
    padding-top: clamp(1.8rem, 3.8svh, 2.8rem);
    padding-bottom: clamp(1.8rem, 3.8svh, 2.8rem);
  }

  .about-grid {
    height: clamp(435px, 67svh, 560px);
    margin-top: clamp(0.8rem, 1.8svh, 1.2rem);
  }

  .about-text {
    padding: clamp(1.25rem, 2.4svh, 1.7rem) clamp(1.35rem, 2vw, 1.9rem);
  }

  .about-text h3 {
    font-size: clamp(1.38rem, 2vw, 1.72rem);
    line-height: 1.48;
  }

  .about-desktop-copy:first-of-type {
    margin-top: 0.72rem;
    color: #493a31;
    font-family: var(--font-serif);
    font-size: clamp(0.86rem, 1.15vw, 0.98rem);
    line-height: 1.8;
  }

  .about-desktop-copy:nth-of-type(2) {
    color: #74665a;
    font-size: 0.75rem;
    line-height: 1.72;
  }

  .about-points {
    margin-top: 0.72rem;
    gap: 0.32rem;
  }

  .about-points li {
    padding: 0.4rem 0.56rem;
    font-size: 0.69rem;
  }

  .history-numbers {
    gap: 0.65rem;
    padding-top: 0.6rem;
  }

  .history-numbers p,
  .history-numbers p + p {
    position: relative;
    min-height: 82px;
    padding: 1.45rem 0.8rem 0.65rem;
    gap: 0.56rem;
    overflow: hidden;
    background:
      linear-gradient(135deg, rgba(130, 49, 53, 0.055), transparent 58%),
      #fffef9;
  }

  .history-numbers p::before {
    position: absolute;
    top: 0.48rem;
    left: 0.75rem;
    color: #967a58;
    font-family: var(--font-sans);
    font-size: 0.48rem;
    font-weight: 700;
    letter-spacing: 0.16em;
  }

  .history-years::before {
    content: "HISTORY";
  }

  .history-walk::before {
    content: "ACCESS";
  }

  .history-numbers strong,
  .history-numbers .history-years .history-desktop-value,
  .history-numbers .history-walk .history-desktop-value {
    color: var(--azuki-deep);
    font-size: clamp(2.65rem, 4.3vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.055em;
  }

  .history-numbers span,
  .history-numbers .history-desktop-label {
    color: #625248;
    font-family: var(--font-serif);
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  .history-numbers sup {
    margin-left: 0.08em;
    color: var(--gold-deep);
    font-family: var(--font-serif);
    font-size: 0.3em;
    letter-spacing: 0;
  }

  .about-gallery-slide.is-active img {
    animation: about-photo-breathe 3.8s ease-out both;
  }

  .menu {
    min-height: 88svh;
    padding-top: clamp(1.8rem, 3.8svh, 2.7rem);
    padding-bottom: clamp(1.8rem, 3.8svh, 2.7rem);
  }

  .access {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }

  .access-grid {
    margin-top: 1.35rem;
  }

  .access-station {
    font-size: clamp(0.9rem, 1.3vw, 1.06rem);
    line-height: 1.35;
  }

  .access-station strong {
    margin-top: 0.22rem;
    display: block;
    color: var(--matcha);
    font-size: clamp(2.55rem, 4.6vw, 4.2rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0;
  }

  .access-route {
    gap: 0.55rem;
    margin-top: 0.9rem;
  }

  .access-route p {
    color: #76675b;
    font-size: 0.73rem;
    line-height: 1.62;
  }

  .access-route strong {
    display: inline-block;
    color: var(--azuki-deep);
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .access-map-link {
    margin-top: 0.75rem;
    font-size: 0.78rem;
  }

  .line-signup {
    padding-top: 1.65rem;
    padding-bottom: 1.65rem;
  }

  .info {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .info-table-wrap {
    margin-top: 0.9rem;
  }

  .info-table th,
  .info-table td {
    padding-top: 0.46rem;
    padding-bottom: 0.46rem;
  }

  .site-footer {
    padding: 0.8rem 1rem;
    overflow-x: auto;
    text-align: left;
    scrollbar-width: none;
  }

  .site-footer::-webkit-scrollbar {
    display: none;
  }
}

@keyframes about-photo-breathe {
  from {
    transform: scale(1.035);
  }

  to {
    transform: scale(1);
  }
}

@media (max-width: 767px) {
  .press-proof {
    margin-top: 1.25rem;
  }

  .press-grid {
    margin-top: 0.9rem;
  }

  .press-card > .press-brand {
    inset: 0.48rem auto auto 0.48rem;
    min-width: 68px;
    min-height: 22px;
    padding: 0.26rem 0.42rem;
    border-radius: 4px;
  }

  .press-card .press-brand img,
  .press-card:hover .press-brand img {
    max-width: 82px;
    height: 17px;
  }

  .press-card > span:not(.press-brand) {
    padding-top: 2.15rem;
  }

  .line-signup {
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
  }

  .line-signup-card {
    max-width: none;
    padding: 0.72rem 0.78rem;
    grid-template-columns: 38px minmax(0, 1fr) 88px;
    gap: 0.65rem;
    align-items: center;
  }

  .line-signup-mark {
    width: 38px;
    height: 38px;
  }

  .line-signup-kicker {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
  }

  .line-signup-title {
    margin-top: 0.12rem;
    font-size: clamp(0.92rem, 4vw, 1.08rem);
    line-height: 1.28;
  }

  .line-signup-title br {
    display: none;
  }

  .line-signup-lead {
    margin-top: 0.16rem;
    font-size: 0.58rem;
    line-height: 1.45;
  }

  .line-signup-benefits {
    display: none;
  }

  .line-signup-action {
    grid-column: auto;
    display: block;
  }

  .line-signup-button {
    width: 100%;
    padding: 0.6rem 0.35rem;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .info {
    padding-top: 1.45rem;
    padding-bottom: 1.35rem;
  }

  .info .section-en {
    display: none;
  }

  .info .section-title {
    font-size: 1.38rem;
  }

  .info-table-wrap {
    margin-top: 0.72rem;
  }

  .info-table,
  .info-table tbody {
    display: block;
    width: 100%;
  }

  .info-table tbody {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0.75rem;
  }

  .info-table tr {
    min-width: 0;
    display: grid;
    grid-template-columns: 3.7em minmax(0, 1fr);
    align-items: start;
    border-bottom: 1px solid rgba(109, 58, 58, 0.14);
  }

  .info-table th,
  .info-table td {
    width: auto;
    padding: 0.42rem 0.14rem;
    font-size: 0.64rem;
    line-height: 1.52;
  }

  .info-table th {
    letter-spacing: 0.03em;
  }

  .info-note {
    display: none;
  }

  .info-caution {
    margin-top: 0.65rem;
    font-size: 0.62rem;
    line-height: 1.55;
  }

  .site-footer {
    padding: 0.72rem 0.85rem;
    overflow-x: auto;
    text-align: left;
    scrollbar-width: none;
  }

  .site-footer::-webkit-scrollbar {
    display: none;
  }

  .footer-line-compact {
    justify-content: flex-start;
    gap: 0.66rem;
    font-size: 0.58rem;
  }

  .footer-line-compact strong {
    font-size: 0.72rem;
  }

  .footer-line-compact span::before,
  .footer-line-compact a::before,
  .footer-line-compact small::before {
    margin-right: 0.66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-gallery-slide.is-active img {
    animation: none;
  }
}

/* ============================================
   和本の活字と和紙 / 二枚暖簾の立体波紋: 2026-08-03
   ============================================ */
body {
  font-weight: 430;
  background:
    radial-gradient(ellipse at 48% 4%, rgba(255, 253, 242, 0.76), transparent 43rem),
    radial-gradient(ellipse at 92% 32%, rgba(123, 77, 48, 0.055), transparent 34rem),
    var(--washi-layer),
    var(--washi-mid);
}

::selection {
  color: #fffaf0;
  background: var(--azuki);
}

.site-logo,
.global-nav,
.hero-title,
.hero-next-preview p,
.section-title,
.press-proof-head h3,
.about-text h3,
.history-numbers strong,
.menu-name,
.menu-price,
.access-station,
.line-signup-title,
.info-table th,
.footer-line-compact strong {
  font-family: var(--font-serif);
  text-shadow: 0.018em 0.018em 0 rgba(67, 33, 25, 0.16);
}

.section-title,
.press-proof-head h3,
.about-text h3,
.menu-name,
.access-station,
.line-signup-title {
  font-weight: 620;
}

.section-title::after {
  height: 3px;
  background:
    linear-gradient(
      180deg,
      var(--matcha) 0 1px,
      transparent 1px 2px,
      rgba(92, 106, 59, 0.48) 2px 3px
    );
}

.instagram {
  background:
    radial-gradient(circle at 9% 16%, rgba(137, 83, 48, 0.12), transparent 27rem),
    radial-gradient(circle at 92% 64%, rgba(92, 106, 59, 0.07), transparent 30rem),
    var(--washi-layer),
    var(--washi-light);
}

.press-proof {
  background:
    linear-gradient(90deg, rgba(114, 68, 42, 0.055), transparent 22%, transparent 78%, rgba(114, 68, 42, 0.055)),
    radial-gradient(circle at 50% 16%, rgba(255, 251, 232, 0.6), transparent 32rem),
    var(--washi-layer),
    #eadcc4;
  box-shadow:
    inset 0 1px rgba(109, 58, 58, 0.1),
    inset 0 -1px rgba(109, 58, 58, 0.1);
}

.about {
  background:
    radial-gradient(circle at 85% 18%, rgba(176, 141, 87, 0.12), transparent 26rem),
    var(--washi-layer),
    #f1e7d4;
}

.menu {
  background:
    linear-gradient(115deg, rgba(104, 62, 39, 0.08), transparent 34%, rgba(92, 106, 59, 0.045)),
    var(--washi-layer),
    var(--washi-deep);
}

.access {
  background:
    radial-gradient(circle at 12% 42%, rgba(109, 58, 58, 0.075), transparent 25rem),
    var(--washi-layer),
    #f2e8d5;
}

.line-signup {
  background:
    linear-gradient(135deg, rgba(6, 126, 63, 0.08), transparent 46%),
    var(--washi-layer),
    #e7dac2;
}

.about-text,
.menu-card,
.line-signup-card,
.access-note,
.history-numbers p,
.history-numbers p + p {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 58%),
    var(--washi-layer),
    #fbf3e3;
  border-color: rgba(98, 57, 38, 0.21);
}

.social-rail-shell::before {
  background: linear-gradient(90deg, #f3ead8, rgba(243, 234, 216, 0));
}

.social-rail-shell::after {
  background: linear-gradient(-90deg, #f3ead8, rgba(243, 234, 216, 0));
}

.hero-stage .hero {
  --hero-next-opacity: 1;
}

.hero-photo-curtain {
  display: block;
  perspective: 760px;
  perspective-origin: 50% 48%;
  transform-style: preserve-3d;
  contain: paint;
}

.hero-photo-curtain > span {
  overflow: hidden;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-photo-curtain > span.is-depth-ready > img {
  z-index: 0;
  opacity: 0.9;
  filter: sepia(0.1) saturate(0.88) contrast(1.07) brightness(0.92);
}

.hero-curtain-band {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  overflow: hidden;
  clip-path: inset(var(--band-top) 0 var(--band-bottom) 0);
  -webkit-clip-path: inset(var(--band-top) 0 var(--band-bottom) 0);
  transform-origin: 50% var(--band-center);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  pointer-events: none;
}

.hero-curtain-band img {
  z-index: 0;
  opacity: 1;
}

.hero-curtain-band::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(22, 4, 7, 0.42),
      transparent 34% 56%,
      rgba(255, 246, 218, 0.34) 72%,
      transparent 88%
    );
  opacity: calc(var(--band-shade, 0) * 0.48);
  pointer-events: none;
}

.hero-curtain-right .hero-curtain-band::after {
  background:
    linear-gradient(
      75deg,
      transparent 12%,
      rgba(255, 246, 218, 0.34) 28%,
      transparent 44% 66%,
      rgba(22, 4, 7, 0.42)
    );
}

.hero-photo-curtain > span:nth-child(1),
.hero-photo-curtain > .hero-curtain-left {
  clip-path: polygon(0 0, 50.08% 0, 50.08% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 50.08% 0, 50.08% 100%, 0 100%);
  transform-origin: 50% 0;
  filter: drop-shadow(
    13px 8px 18px rgb(25 6 8 / calc(var(--hero-pleat-opacity, 0) * 0.56))
  );
}

.hero-photo-curtain > span:nth-child(2),
.hero-photo-curtain > .hero-curtain-right {
  clip-path: polygon(49.92% 0, 100% 0, 100% 100%, 49.92% 100%);
  -webkit-clip-path: polygon(49.92% 0, 100% 0, 100% 100%, 49.92% 100%);
  transform-origin: 50% 0;
  filter: drop-shadow(
    -13px 8px 18px rgb(25 6 8 / calc(var(--hero-pleat-opacity, 0) * 0.56))
  );
}

.hero-stage .hero-media img,
.hero-photo-curtain img {
  object-position: 42% 52%;
  filter: sepia(0.1) saturate(0.88) contrast(1.07) brightness(0.92);
}

.hero-photo-curtain > span::before {
  z-index: 2;
  inset: 0;
  width: auto;
  mix-blend-mode: soft-light;
  opacity: calc(var(--hero-pleat-opacity, 0) * 0.7);
  transform: translateZ(18px);
  transform-origin: 50% 0;
}

.hero-photo-curtain > .hero-curtain-left::before {
  background:
    repeating-conic-gradient(
      from -4deg at 0% 100%,
      rgba(21, 4, 7, 0.44) 0deg 2.2deg,
      transparent 3.4deg 8.2deg,
      rgba(255, 248, 225, 0.38) 9.4deg 10.8deg,
      transparent 12deg 17deg
    ),
    radial-gradient(ellipse at 0% 100%, rgba(24, 5, 8, 0.36), transparent 62%);
}

.hero-photo-curtain > .hero-curtain-right::before {
  background:
    repeating-conic-gradient(
      from 4deg at 100% 100%,
      rgba(255, 248, 225, 0.38) 0deg 1.4deg,
      transparent 2.8deg 7.6deg,
      rgba(21, 4, 7, 0.44) 8.8deg 11deg,
      transparent 12.2deg 17deg
    ),
    radial-gradient(ellipse at 100% 100%, rgba(24, 5, 8, 0.36), transparent 62%);
}

.hero-photo-curtain > span::after {
  z-index: 3;
  inset: 0;
  background-size: 86% 100%, auto;
  background-position: var(--hero-ripple-shift, 0%) center, center;
  mix-blend-mode: soft-light;
  opacity: var(--hero-ripple-opacity, 0);
  transform: translateZ(28px);
  transform-origin: 50% 0;
}

.hero-photo-curtain > .hero-curtain-left::after {
  background:
    linear-gradient(118deg, transparent 0 38%, rgba(255, 248, 224, 0.2) 43%, transparent 48% 58%, rgba(24, 5, 8, 0.24) 64%, transparent 70%),
    radial-gradient(ellipse at 0% 100%, rgba(25, 5, 8, 0.28), transparent 68%);
}

.hero-photo-curtain > .hero-curtain-right::after {
  background:
    linear-gradient(62deg, transparent 0 38%, rgba(255, 248, 224, 0.2) 43%, transparent 48% 58%, rgba(24, 5, 8, 0.24) 64%, transparent 70%),
    radial-gradient(ellipse at 100% 100%, rgba(25, 5, 8, 0.28), transparent 68%);
}

.hero-photo-curtain::after {
  background:
    radial-gradient(circle at 50% 51%, rgba(255, 246, 220, 0.08), transparent 21%),
    linear-gradient(90deg, rgba(27, 8, 10, 0.62), rgba(27, 8, 10, 0.14) 54%, rgba(27, 8, 10, 0.32)),
    linear-gradient(0deg, rgba(27, 8, 10, 0.58), transparent 48%);
}

.hero-stage .hero-title {
  color: #fffaf0;
  font-weight: 640;
  text-shadow:
    0 2px 1px rgba(25, 5, 7, 0.42),
    0 7px 30px rgba(19, 4, 6, 0.78);
}

@media (min-width: 768px) {
  .hero-stage,
  .hero-stage .hero {
    background: #30201b;
  }

  .hero-photo-curtain {
    display: block;
  }
}

@media (max-width: 767px) {
  .site-header {
    background: rgba(239, 226, 201, 0.94);
    border-bottom-color: rgba(98, 57, 38, 0.22);
  }

  .hero-stage .hero-media img,
  .hero-photo-curtain img {
    object-position: 42% 50%;
  }

  .hero-photo-curtain {
    perspective: 1060px;
  }

  .hero-photo-curtain > .hero-curtain-left,
  .hero-photo-curtain > .hero-curtain-right {
    filter: drop-shadow(
      0 7px 10px rgb(25 6 8 / calc(var(--hero-pleat-opacity, 0) * 0.28))
    );
  }

  .hero-photo-curtain > span::before {
    opacity: calc(var(--hero-pleat-opacity, 0) * 0.42);
  }

  .hero-next-preview {
    padding: 4.5rem 1rem 7svh;
  }

  .hero-next-preview::before {
    background-position: center;
  }

  .hero-next-gallery {
    padding: 7px;
  }

  .hero-next-gallery span {
    border-color: rgba(255, 241, 218, 0.2);
  }

  .hero-next-gallery span img {
    object-position: 45% 9%;
  }

  .hero-next-preview p {
    max-width: 8.5em;
    font-size: clamp(1.55rem, 7vw, 1.8rem);
    line-height: 1.38;
    letter-spacing: 0.06em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo-curtain {
    display: none;
  }

  .hero-stage .hero-media img {
    transform: none;
  }
}

/* ============================================
   木格子戸の入口 / shoji entrance: 2026-08-04
   以前の暖簾表現は使わず、格子戸・和紙・行灯の光で老舗感をつくる
   ============================================ */
.hero-stage--shoji {
  position: relative;
  height: 185svh;
  background: #2c1a16;
}

.hero-stage--shoji .hero {
  --hero-intro-opacity: 1;
  --hero-intro-y: 0px;
  --shoji-left: 0%;
  --shoji-right: 0%;
  --shoji-left-tilt: 0deg;
  --shoji-right-tilt: 0deg;
  --shoji-light-opacity: 0;
  --hero-after-opacity: 0;
  --hero-after-y: 22px;
  --exterior-scale: 1.08;
  --exterior-brightness: 0.78;
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  background: #251510;
}

.hero-stage--shoji .hero-exterior {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  background: #38251f;
}

.hero-stage--shoji .hero-exterior > img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 62% 52%;
  transform: scale(var(--exterior-scale));
  filter:
    sepia(0.18)
    saturate(0.83)
    contrast(1.06)
    brightness(var(--exterior-brightness));
  will-change: transform, filter;
}

.hero-stage--shoji .hero-exterior::before,
.hero-stage--shoji .hero-exterior::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-stage--shoji .hero-exterior::before {
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 12, 8, 0.56), rgba(28, 12, 8, 0.06) 55%, rgba(28, 12, 8, 0.32)),
    linear-gradient(0deg, rgba(24, 10, 7, 0.72), transparent 56%);
}

.hero-stage--shoji .hero-exterior::after {
  z-index: 2;
  inset: -12%;
  opacity: 0.13;
  background:
    repeating-linear-gradient(104deg, rgba(255, 246, 222, 0.16) 0 1px, transparent 1px 6px),
    radial-gradient(circle at 65% 20%, rgba(255, 226, 161, 0.28), transparent 27%);
  mix-blend-mode: soft-light;
}

.hero-stage--shoji .hero-shoji {
  position: absolute;
  z-index: 3;
  inset: 0;
  overflow: hidden;
  perspective: 1500px;
  perspective-origin: 50% 46%;
  pointer-events: none;
}

.hero-stage--shoji .hero-shoji-panel {
  position: absolute;
  top: -1%;
  bottom: -1%;
  width: 50.7%;
  overflow: hidden;
  border: clamp(14px, 1.7vw, 26px) solid #513124;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.48), transparent 23%),
    repeating-linear-gradient(94deg, rgba(80, 50, 31, 0.035) 0 1px, transparent 1px 7px),
    #e9dec6;
  box-shadow:
    inset 0 0 0 2px rgba(245, 227, 191, 0.22),
    inset 0 0 42px rgba(71, 42, 26, 0.16),
    0 10px 38px rgba(20, 8, 5, 0.48);
  backface-visibility: hidden;
  will-change: transform;
}

.hero-stage--shoji .hero-shoji-panel::before,
.hero-stage--shoji .hero-shoji-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-stage--shoji .hero-shoji-panel::before {
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 calc(25% - 4px),
      #5c392b calc(25% - 4px) calc(25% + 4px)
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 calc(20% - 3px),
      #684334 calc(20% - 3px) calc(20% + 3px)
    );
  filter: drop-shadow(1px 2px 1px rgba(34, 17, 10, 0.22));
}

.hero-stage--shoji .hero-shoji-panel::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 249, 229, 0.18), transparent 17% 78%, rgba(49, 24, 15, 0.2)),
    linear-gradient(0deg, rgba(45, 23, 15, 0.16), transparent 24% 76%, rgba(255, 249, 229, 0.1));
  box-shadow: inset 0 0 0 1px rgba(48, 27, 18, 0.28);
}

.hero-stage--shoji .hero-shoji-left {
  left: 0;
  transform-origin: 0 50%;
  transform:
    translate3d(var(--shoji-left), 0, 0)
    rotateY(var(--shoji-left-tilt));
  border-right-width: clamp(18px, 2vw, 30px);
}

.hero-stage--shoji .hero-shoji-right {
  right: 0;
  transform-origin: 100% 50%;
  transform:
    translate3d(var(--shoji-right), 0, 0)
    rotateY(var(--shoji-right-tilt));
  border-left-width: clamp(18px, 2vw, 30px);
}

.hero-stage--shoji .hero-shoji-handle {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: clamp(16px, 1.25vw, 22px);
  height: clamp(62px, 8svh, 88px);
  border: 1px solid rgba(42, 23, 12, 0.58);
  border-radius: 999px;
  background:
    linear-gradient(90deg, #6c4a22, #d3b269 44%, #82602e 72%, #4f3218);
  box-shadow:
    inset 1px 0 2px rgba(255, 239, 181, 0.48),
    0 4px 10px rgba(35, 17, 9, 0.35);
  transform: translateY(-50%);
}

.hero-stage--shoji .hero-shoji-left .hero-shoji-handle {
  right: clamp(13px, 1.25vw, 22px);
}

.hero-stage--shoji .hero-shoji-right .hero-shoji-handle {
  left: clamp(13px, 1.25vw, 22px);
}

.hero-stage--shoji .hero-shoji-light {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: 50%;
  width: clamp(8px, 1.2vw, 20px);
  opacity: var(--shoji-light-opacity);
  background: rgba(255, 231, 167, 0.72);
  box-shadow:
    0 0 24px rgba(255, 222, 142, 0.9),
    0 0 80px rgba(255, 212, 118, 0.56);
  transform: translateX(-50%);
  filter: blur(1px);
  will-change: opacity;
}

.hero-stage--shoji .hero-body.hero-intro {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  padding: clamp(6.8rem, 15svh, 10rem) clamp(1.25rem, 5vw, 5rem) 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: var(--hero-intro-opacity);
  transform: translate3d(0, var(--hero-intro-y), 0);
  will-change: opacity, transform;
}

.hero-stage--shoji .hero-intro-card {
  width: min(880px, calc(100vw - 4rem));
  padding: clamp(2rem, 5svh, 3.8rem) clamp(1.5rem, 5vw, 4.5rem);
  border: 1px solid rgba(91, 54, 37, 0.36);
  outline: 1px solid rgba(255, 251, 232, 0.5);
  outline-offset: -8px;
  color: #47291f;
  background:
    repeating-linear-gradient(96deg, rgba(78, 47, 29, 0.024) 0 1px, transparent 1px 7px),
    rgba(244, 235, 213, 0.92);
  box-shadow:
    0 22px 70px rgba(35, 17, 11, 0.25),
    inset 0 0 32px rgba(98, 65, 42, 0.08);
}

.hero-stage--shoji .hero-since {
  width: fit-content;
  margin: 0 auto 1.25rem;
  padding: 0.38em 1.1em;
  border: 1px solid rgba(109, 58, 58, 0.5);
  color: #6d3a3a;
  font-size: clamp(0.76rem, 1.1vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-shadow: none;
}

.hero-stage--shoji .hero-title {
  max-width: none;
  margin: 0 auto;
  color: #42251d;
  font-size: clamp(2.45rem, 5.2vw, 5rem);
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: 0.11em;
  text-shadow: 0 1px 0 rgba(255, 250, 229, 0.72);
  text-wrap: balance;
}

.hero-stage--shoji .hero-lead {
  margin-top: 1.25rem;
  color: #5d4538;
  font-size: clamp(0.9rem, 1.35vw, 1.08rem);
  line-height: 2;
  letter-spacing: 0.05em;
  text-shadow: none;
}

.hero-stage--shoji .hero-cta {
  margin-top: 1.65rem;
  padding: 0.78em 2.2em;
  border: 1px solid rgba(81, 42, 34, 0.32);
  border-radius: 2px;
  color: #fffaf0;
  background: #6d3a3a;
  box-shadow: 0 6px 18px rgba(65, 30, 25, 0.2);
}

.hero-stage--shoji .hero-after-copy {
  position: absolute;
  z-index: 3;
  left: clamp(1.5rem, 7vw, 7.5rem);
  bottom: clamp(3rem, 10svh, 7rem);
  max-width: min(900px, calc(100vw - 3rem));
  color: #fffaf0;
  opacity: var(--hero-after-opacity);
  transform: translate3d(0, var(--hero-after-y), 0);
  text-shadow: 0 3px 24px rgba(22, 9, 6, 0.82);
  will-change: opacity, transform;
}

.hero-stage--shoji .hero-after-kicker {
  margin-bottom: 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(0.78rem, 1.1vw, 0.92rem);
  letter-spacing: 0.22em;
}

.hero-stage--shoji .hero-after-copy h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 4.1vw, 3.8rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.hero-stage--shoji .hero-after-lead {
  margin-top: 0.9rem;
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  letter-spacing: 0.09em;
}

@media (max-width: 767px) {
  .hero-stage--shoji {
    height: 178svh;
    background: #2c1a16;
  }

  .hero-stage--shoji .hero {
    position: sticky;
    top: 0;
    height: 100svh;
    min-height: 560px;
    background: #251510;
  }

  .hero-stage--shoji .hero-exterior > img {
    object-position: 70% 53%;
  }

  .hero-stage--shoji .hero-shoji {
    display: block;
    perspective: 1100px;
  }

  .hero-stage--shoji .hero-shoji-panel {
    width: 51%;
    border-width: 12px;
  }

  .hero-stage--shoji .hero-shoji-panel::before {
    background:
      repeating-linear-gradient(
        90deg,
        transparent 0 calc(33.333% - 3px),
        #5c392b calc(33.333% - 3px) calc(33.333% + 3px)
      ),
      repeating-linear-gradient(
        0deg,
        transparent 0 calc(16.667% - 2px),
        #684334 calc(16.667% - 2px) calc(16.667% + 2px)
      );
  }

  .hero-stage--shoji .hero-body.hero-intro {
    min-height: 0;
    padding: 6.4rem 1rem 2rem;
  }

  .hero-stage--shoji .hero-intro-card {
    width: min(100%, 35rem);
    padding: 2.2rem 1.1rem 2.35rem;
    outline-offset: -6px;
  }

  .hero-stage--shoji .hero-since {
    margin-bottom: 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
  }

  .hero-stage--shoji .hero-title {
    max-width: none;
    font-size: clamp(1.65rem, 7.1vw, 2.2rem);
    line-height: 1.48;
    letter-spacing: 0.055em;
  }

  .hero-stage--shoji .hero-lead {
    margin-top: 1rem;
    font-size: clamp(0.78rem, 3.5vw, 0.92rem);
    line-height: 1.85;
  }

  .hero-stage--shoji .hero-cta {
    margin-top: 1.35rem;
    padding: 0.72em 1.7em;
    font-size: 0.9rem;
  }

  .hero-stage--shoji .hero-after-copy {
    left: 1.25rem;
    right: 1.25rem;
    bottom: clamp(2.25rem, 8svh, 4.5rem);
    max-width: none;
  }

  .hero-stage--shoji .hero-after-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
  }

  .hero-stage--shoji .hero-after-copy h2 {
    font-size: clamp(1.7rem, 7.1vw, 2.35rem);
    line-height: 1.42;
    letter-spacing: 0.03em;
  }

  .hero-stage--shoji .hero-after-lead {
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stage--shoji {
    height: 100svh;
  }

  .hero-stage--shoji .hero {
    position: relative;
    height: 100svh;
  }

  .hero-stage--shoji .hero-shoji {
    display: none;
  }

  .hero-stage--shoji .hero-exterior > img {
    transform: none;
    filter: sepia(0.18) saturate(0.83) contrast(1.06) brightness(0.78);
  }

  .hero-stage--shoji .hero-body.hero-intro {
    opacity: 1;
    transform: none;
  }

  .hero-stage--shoji .hero-after-copy {
    display: none;
  }
}

/* ============================================
   名物しるこの静止ヒーロー: 2026-08-04
   襖・格子戸・スクロール連動を使わず、料理写真を最初に見せる
   ============================================ */
.shiruko-hero {
  position: relative;
  min-height: calc(100svh - 58px);
  overflow: hidden;
  isolation: isolate;
  display: grid;
  background: #2b1712;
}

.shiruko-hero-photo {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.shiruko-hero-photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 48% 54%;
  filter: saturate(0.92) contrast(1.04);
}

.shiruko-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(29, 13, 9, 0.04) 34%, rgba(29, 13, 9, 0.32) 61%, rgba(29, 13, 9, 0.72) 100%),
    linear-gradient(0deg, rgba(29, 13, 9, 0.34), transparent 45%);
}

.shiruko-hero-content {
  width: min(100%, 1280px);
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.shiruko-hero-card {
  width: min(480px, 42vw);
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.7rem, 3.4vw, 3rem);
  border: 1px solid rgba(241, 218, 174, 0.42);
  outline: 1px solid rgba(255, 248, 226, 0.16);
  outline-offset: -8px;
  color: #fffaf0;
  background:
    repeating-linear-gradient(96deg, rgba(255, 244, 218, 0.025) 0 1px, transparent 1px 7px),
    rgba(56, 27, 20, 0.88);
  box-shadow: 0 24px 70px rgba(23, 9, 6, 0.36);
}

.shiruko-hero-since {
  width: fit-content;
  margin-bottom: 1.2rem;
  padding: 0.32em 0.9em;
  border: 1px solid rgba(226, 189, 127, 0.68);
  color: #ead2a8;
  font-size: clamp(0.72rem, 1vw, 0.85rem);
  letter-spacing: 0.22em;
}

.shiruko-hero h1 {
  margin: 0;
  color: #fffaf0;
  font-family: var(--font-serif);
  font-size: clamp(2.45rem, 4.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.09em;
  text-shadow: 0 2px 18px rgba(20, 7, 5, 0.38);
}

.shiruko-hero-lead {
  margin-top: 1.25rem;
  color: #f0e4d1;
  font-size: clamp(0.86rem, 1.15vw, 1rem);
  line-height: 1.95;
  letter-spacing: 0.045em;
}

.shiruko-hero-cta {
  margin-top: 1.6rem;
  padding: 0.72em 1.9em;
  display: inline-block;
  border: 1px solid rgba(255, 248, 226, 0.34);
  color: #fffaf0;
  background: #6d3a3a;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.shiruko-hero-cta:hover,
.shiruko-hero-cta:focus-visible {
  background: #814747;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .shiruko-hero {
    min-height: calc(100svh - 57px);
    grid-template-rows: minmax(300px, 54svh) auto;
    background: #3d2019;
  }

  .shiruko-hero-photo {
    position: relative;
    z-index: 0;
    grid-row: 1;
    min-height: 300px;
  }

  .shiruko-hero-photo img {
    object-position: 45% 54%;
  }

  .shiruko-hero::after {
    z-index: 1;
    grid-row: 1;
    background: linear-gradient(0deg, rgba(37, 15, 11, 0.42), transparent 42%);
  }

  .shiruko-hero-content {
    position: relative;
    z-index: 2;
    grid-row: 2;
    min-height: 0;
    padding: 0;
    display: block;
  }

  .shiruko-hero-card {
    width: 100%;
    padding: 1.45rem 1.25rem 1.65rem;
    border: 0;
    border-top: 1px solid rgba(241, 218, 174, 0.32);
    outline: 0;
    background:
      repeating-linear-gradient(96deg, rgba(255, 244, 218, 0.022) 0 1px, transparent 1px 7px),
      #3d2019;
    box-shadow: none;
  }

  .shiruko-hero-since {
    margin-bottom: 0.7rem;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .shiruko-hero h1 {
    font-size: clamp(1.7rem, 8.2vw, 2.15rem);
    line-height: 1.34;
    letter-spacing: 0.055em;
  }

  .shiruko-hero-lead {
    margin-top: 0.65rem;
    font-size: 0.79rem;
    line-height: 1.72;
  }

  .shiruko-hero-cta {
    margin-top: 0.95rem;
    padding: 0.65em 1.5em;
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shiruko-hero-cta {
    transition: none;
  }
}

/* ============================================
   昔ながらの甘味処らしい文字と貼り和紙: 2026-08-04
   本文の読みやすさは保ち、店名・見出しだけを筆文字寄りにする
   ============================================ */
:root {
  --font-calligraphy:
    "Nagon Brush",
    "YuKyokasho",
    "Yu Kyokasho",
    "Hiragino Mincho ProN",
    "Yu Mincho",
    "YuMincho",
    "Nagon Serif",
    serif;
}

.site-logo,
.global-nav a,
.shiruko-hero h1,
.section-en,
.section-title,
.press-proof-head h3,
.press-card strong,
.about-text h3,
.menu-name,
.access-station strong,
.line-signup-title,
.info-table th,
.footer-line-compact strong {
  font-family: var(--font-calligraphy);
}

.site-logo {
  color: var(--azuki-deep);
  font-size: clamp(1.22rem, 2vw, 1.48rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-shadow:
    0.018em 0.025em 0 rgba(72, 35, 27, 0.2),
    0 0 0.01px currentColor;
}

.section-en {
  color: #795d46;
  font-weight: 500;
  letter-spacing: 0.24em;
}

.section-title,
.press-proof-head h3 {
  letter-spacing: 0.12em;
}

.line-signup-card {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.line-signup-card:hover .line-signup-button {
  background: #055e30;
  box-shadow: 0 8px 22px rgba(6, 126, 63, 0.2);
}

.line-signup-card:focus-visible {
  outline: 3px solid rgba(6, 199, 85, 0.36);
  outline-offset: 4px;
}

/* 外部リンクはカード全体で十分に伝わるため、装飾矢印を出さない。 */
.insta-photo-grid a::after,
.buzz-card::after {
  content: none;
}

@media (min-width: 768px) {
  .site-logo {
    color: #fffaf0;
    text-shadow:
      0 2px 1px rgba(37, 15, 10, 0.52),
      0 5px 18px rgba(24, 8, 6, 0.66);
  }

  /* 掲載記事は、写真の下に記事の中身を添えた「切り抜き」風にする。 */
  .press-grid {
    gap: clamp(0.72rem, 1.25vw, 1.05rem);
    align-items: start;
  }

  .press-grid .press-card,
  .press-grid .press-card:nth-child(even) {
    min-height: clamp(342px, 43svh, 388px);
    display: grid;
    grid-template-rows: clamp(145px, 15vw, 184px) minmax(0, 1fr);
    overflow: hidden;
    color: var(--sumi);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.32), transparent 56%),
      var(--washi-layer),
      #fbf3e3;
    border: 1px solid rgba(98, 57, 38, 0.22);
    border-radius: 2px;
    box-shadow:
      0 13px 28px rgba(62, 37, 24, 0.13),
      inset 0 0 28px rgba(105, 65, 37, 0.045);
    transform-origin: 50% 50%;
  }

  .press-grid .press-card:nth-child(1) {
    transform: rotate(-0.34deg);
  }

  .press-grid .press-card:nth-child(2) {
    transform: translateY(4px) rotate(0.26deg);
  }

  .press-grid .press-card:nth-child(3) {
    transform: translateY(1px) rotate(-0.2deg);
  }

  .press-grid .press-card:nth-child(4) {
    transform: translateY(5px) rotate(0.3deg);
  }

  .press-grid .press-card:hover,
  .press-grid .press-card:focus-visible {
    box-shadow:
      0 18px 36px rgba(62, 37, 24, 0.18),
      inset 0 0 28px rgba(105, 65, 37, 0.045);
    transform: translateY(-5px) rotate(0);
  }

  .press-grid .press-card > .press-card-photo,
  .press-grid .press-card:hover > .press-card-photo {
    position: relative;
    z-index: 0;
    inset: auto;
    grid-row: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.07) saturate(0.88) contrast(1.03);
    transform: none;
  }

  .press-grid .press-card::after {
    z-index: 1;
    inset: 0 0 auto;
    height: clamp(145px, 15vw, 184px);
    background: linear-gradient(180deg, rgba(30, 17, 12, 0.03), rgba(30, 17, 12, 0.25));
  }

  .press-grid .press-card > .press-brand {
    z-index: 3;
  }

  .press-grid .press-card > span:not(.press-brand) {
    position: relative;
    z-index: 2;
    inset: auto;
    grid-row: 2;
    min-height: 0;
    padding: 0.9rem 0.95rem 0.82rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--sumi);
    background:
      linear-gradient(170deg, rgba(255, 255, 255, 0.22), transparent 58%),
      var(--washi-layer),
      #fbf3e3;
    text-shadow: none;
  }

  .press-grid .press-card small {
    display: none;
  }

  .press-grid .press-card strong {
    color: var(--azuki-deep);
    font-size: clamp(0.98rem, 1.35vw, 1.16rem);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }

  .press-grid .press-excerpt {
    margin-top: 0.48rem;
    display: -webkit-box;
    overflow: hidden;
    color: #554a41;
    font-size: clamp(0.69rem, 0.9vw, 0.77rem);
    line-height: 1.72;
    letter-spacing: 0.025em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .press-grid .press-card em {
    width: 100%;
    margin-top: auto;
    padding-top: 0.58rem;
    color: #7a6147;
    border-top: 1px solid rgba(109, 58, 58, 0.12);
    font-family: var(--font-serif);
    font-size: 0.62rem;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: 0.07em;
  }

  /* お店紹介を一枚の和紙、数字を重ねて貼った小さな和紙に見せる。 */
  .about-text {
    position: relative;
    overflow: visible;
    border: 0;
    border-radius: 1px;
    background:
      radial-gradient(circle at 19% 22%, rgba(115, 72, 44, 0.055) 0 0.7px, transparent 1px) 0 0 / 12px 10px,
      repeating-linear-gradient(92deg, rgba(91, 58, 37, 0.025) 0 1px, transparent 1px 7px),
      linear-gradient(145deg, rgba(255, 255, 255, 0.3), transparent 60%),
      #fbf1de;
    box-shadow:
      0 15px 32px rgba(72, 44, 28, 0.12),
      inset 0 0 40px rgba(107, 69, 42, 0.045);
    clip-path: polygon(
      0.8% 0.6%,
      99.4% 0,
      99.8% 24%,
      99.3% 51%,
      100% 75%,
      99.2% 99.3%,
      74% 99.8%,
      48% 99.4%,
      23% 100%,
      0.4% 99.2%,
      0 72%,
      0.6% 47%,
      0.1% 22%
    );
  }

  .history-numbers {
    margin-top: auto;
    padding: 0.85rem 0.15rem 0.28rem;
    display: grid;
    grid-template-columns: 1.18fr 0.92fr 0.98fr;
    gap: clamp(0.45rem, 0.8vw, 0.7rem);
    border-top: 1px solid rgba(109, 58, 58, 0.12);
  }

  .history-numbers .history-primary {
    display: flex;
  }

  .history-numbers p,
  .history-numbers p + p {
    position: relative;
    min-width: 0;
    min-height: clamp(91px, 10svh, 108px);
    margin: 0;
    padding: 1.45rem 0.72rem 0.62rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0.22rem;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 22% 28%, rgba(102, 62, 39, 0.05) 0 0.7px, transparent 1px) 0 0 / 11px 10px,
      repeating-linear-gradient(93deg, rgba(93, 57, 36, 0.03) 0 1px, transparent 1px 6px),
      #f7ead3;
    box-shadow: none;
    filter: drop-shadow(0 5px 5px rgba(59, 36, 23, 0.12));
    clip-path: polygon(2% 3%, 98% 0, 100% 27%, 98.5% 55%, 100% 97%, 69% 100%, 35% 98.5%, 0 100%, 1.5% 62%, 0 28%);
    white-space: normal;
  }

  .history-numbers .history-primary {
    background:
      repeating-linear-gradient(96deg, rgba(255, 244, 218, 0.025) 0 1px, transparent 1px 7px),
      linear-gradient(145deg, #71433f, #5c322f);
    transform: rotate(-0.75deg);
  }

  .history-numbers .history-years {
    transform: translateY(4px) rotate(0.65deg);
  }

  .history-numbers .history-walk {
    transform: translateY(1px) rotate(-0.38deg);
  }

  .history-numbers p::before {
    position: absolute;
    top: 0.48rem;
    left: 0.72rem;
    color: #8c6e4e;
    font-family: var(--font-calligraphy);
    font-size: 0.54rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.18em;
  }

  .history-numbers .history-primary::before {
    content: "創業";
    color: #e6cda0;
  }

  .history-years::before {
    content: "歩み";
  }

  .history-walk::before {
    content: "駅から";
  }

  .history-numbers strong,
  .history-numbers .history-primary strong,
  .history-numbers .history-years .history-desktop-value,
  .history-numbers .history-walk .history-desktop-value {
    color: var(--azuki-deep);
    font-family: var(--font-calligraphy);
    font-size: clamp(2.15rem, 3.55vw, 3.45rem);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.055em;
  }

  .history-numbers .history-primary strong {
    color: #fff9ed;
    font-size: clamp(2.3rem, 3.85vw, 3.8rem);
  }

  .history-numbers span,
  .history-numbers .history-desktop-label,
  .history-numbers .history-primary span {
    max-width: 100%;
    margin: 0;
    color: #665547;
    font-family: var(--font-serif);
    font-size: clamp(0.5rem, 0.65vw, 0.63rem);
    line-height: 1.38;
    letter-spacing: 0.045em;
    text-align: left;
    white-space: normal;
  }

  .history-numbers .history-primary span {
    color: #ecd5aa;
  }

  .history-numbers sup {
    margin-left: 0.08em;
    color: #8c6e4e;
    font-family: var(--font-serif);
    font-size: 0.31em;
  }

  .history-numbers .history-primary sup {
    color: #ecd5aa;
  }
}

@media (max-width: 767px) {
  /* スマホの掲載欄は従来の短いカード密度を維持する。 */
  .press-excerpt {
    display: none;
  }

  .press-card > span:not(.press-brand) {
    padding-top: 2.15rem;
  }

  .site-logo {
    font-size: 1.19rem;
    letter-spacing: 0.075em;
  }

  .line-signup-card {
    grid-template-columns: 40px minmax(0, 1fr) 88px;
  }

  .line-signup-mark {
    width: 40px;
    height: 40px;
  }

  .line-signup-title {
    font-size: 0.92rem;
    text-wrap: balance;
  }
}

/* ============================================
   書のある老舗 / PC沿革の大判和紙: 2026-08-04
   ============================================ */
body.theme-washi-scroll {
  font-family: var(--font-calligraphy);
}

/* SNSと記事抜粋だけは、媒体らしい読みやすい書体を維持する。 */
.ig-post-card,
.ig-post-head,
.ig-post-caption,
.ig-post-actions {
  font-family: var(--font-sans);
}

.press-excerpt,
.press-card em {
  font-family: var(--font-serif);
}

.shiruko-hero-lead,
.shiruko-hero-cta,
.section-lead,
.press-proof-head > p,
.about-desktop-copy,
.about-mobile-copy,
.about-points,
.menu-desc,
.menu-note,
.access-route,
.access-map-link,
.line-signup-copy,
.line-signup-button,
.info-table,
.info-caution {
  font-family: var(--font-calligraphy);
}

.shiruko-hero-lead,
.section-lead,
.about-desktop-copy,
.about-mobile-copy,
.menu-desc,
.access-route,
.info-table td {
  letter-spacing: 0.055em;
}

.history-heading {
  display: none;
}

@media (min-width: 768px) {
  .about-grid {
    height: clamp(610px, 72svh, 650px);
  }

  .about-text {
    padding: clamp(1.25rem, 2.5svh, 1.65rem) clamp(1.35rem, 2vw, 1.8rem);
  }

  .about-text h3 {
    font-size: clamp(1.45rem, 2.15vw, 1.86rem);
    line-height: 1.44;
    letter-spacing: 0.075em;
  }

  .about-desktop-copy:first-of-type {
    margin-top: 0.58rem;
    font-size: clamp(0.81rem, 1.08vw, 0.93rem);
    line-height: 1.72;
  }

  .about-desktop-copy:nth-of-type(2) {
    margin-top: 0.42rem;
    font-size: 0.72rem;
    line-height: 1.65;
  }

  .about-points {
    margin-top: 0.55rem;
    gap: 0.22rem;
  }

  .about-points li {
    padding: 0.3rem 0.5rem;
    font-size: 0.67rem;
  }

  .history-numbers {
    margin-top: auto;
    padding: 0.58rem 0.1rem 0.18rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.48rem 0.6rem;
    border-top-color: rgba(109, 58, 58, 0.16);
  }

  .history-heading {
    min-width: 0;
    grid-column: 1 / -1;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.8rem;
    color: #68463a;
    line-height: 1.2;
  }

  .history-heading strong {
    color: var(--azuki-deep);
    font-family: var(--font-calligraphy);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.18em;
  }

  .history-heading span {
    margin: 0;
    color: #806c5b;
    font-family: var(--font-calligraphy);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .history-numbers p,
  .history-numbers p + p {
    min-height: 84px;
    padding: 1.38rem 0.82rem 0.65rem;
  }

  .history-numbers .history-primary {
    min-height: 112px;
    grid-column: 1 / -1;
    padding: 1.55rem 1.15rem 0.82rem;
    display: grid;
    grid-template-columns: minmax(175px, 0.85fr) minmax(0, 1.15fr);
    align-items: end;
    column-gap: clamp(1.4rem, 2vw, 2rem);
    transform: rotate(-0.38deg);
  }

  .history-numbers .history-primary::before {
    top: 0.55rem;
    left: 1.15rem;
    font-size: 0.62rem;
    letter-spacing: 0.24em;
  }

  .history-numbers .history-primary::after {
    content: "昭和二十八年";
    position: absolute;
    top: 0.58rem;
    right: 1.1rem;
    color: rgba(242, 216, 170, 0.76);
    font-family: var(--font-calligraphy);
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .history-numbers .history-primary strong {
    min-width: 0;
    align-self: end;
    color: #fff9ed;
    font-size: clamp(3.8rem, 5.2vw, 4.8rem);
    line-height: 0.72;
    letter-spacing: -0.07em;
    white-space: nowrap;
  }

  .history-numbers .history-primary .history-desktop-label {
    margin: 0 0 0.12rem;
    display: block;
    color: #f0dab1;
    font-family: var(--font-calligraphy);
    font-size: clamp(0.72rem, 0.9vw, 0.84rem);
    line-height: 1.55;
    letter-spacing: 0.065em;
  }

  .history-numbers .history-primary .history-mobile-label {
    display: none;
  }

  .history-numbers .history-years,
  .history-numbers .history-walk {
    min-height: 88px;
    padding: 1.45rem 0.9rem 0.62rem;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: end;
    justify-content: start;
    column-gap: 0.7rem;
  }

  .history-numbers .history-years {
    transform: translateY(1px) rotate(0.32deg);
  }

  .history-numbers .history-walk {
    transform: translateY(0) rotate(-0.26deg);
  }

  .history-numbers .history-years .history-desktop-value,
  .history-numbers .history-walk .history-desktop-value {
    font-size: clamp(2.85rem, 4.2vw, 3.8rem);
    line-height: 0.8;
  }

  .history-numbers .history-years .history-desktop-label,
  .history-numbers .history-walk .history-desktop-label {
    margin: 0 0 0.05rem;
    color: #5f4d40;
    font-family: var(--font-calligraphy);
    font-size: clamp(0.68rem, 0.78vw, 0.74rem);
    line-height: 1.5;
    letter-spacing: 0.045em;
  }

  .history-years::before,
  .history-walk::before {
    top: 0.48rem;
    left: 0.9rem;
    font-size: 0.54rem;
  }
}

@media (min-width: 768px) and (max-width: 899px) {
  .history-heading span {
    display: none;
  }

  .history-numbers .history-primary {
    grid-template-columns: minmax(138px, 0.9fr) minmax(0, 1.1fr);
    column-gap: 0.75rem;
  }

  .history-numbers .history-primary strong {
    font-size: 3.7rem;
  }

  .history-numbers .history-primary .history-desktop-label,
  .history-numbers .history-years .history-desktop-label,
  .history-numbers .history-walk .history-desktop-label {
    display: none;
  }

  .history-numbers .history-primary .history-mobile-label,
  .history-numbers .history-years .history-mobile-label,
  .history-numbers .history-walk .history-mobile-label {
    margin: 0 0 0.08rem;
    display: block;
    color: #654f41;
    font-family: var(--font-calligraphy);
    font-size: 0.62rem;
    line-height: 1.45;
    letter-spacing: 0.045em;
  }

  .history-numbers .history-primary .history-mobile-label {
    color: #f0dab1;
    font-size: 0.7rem;
  }
}

/* ============================================
   手漉き和紙と古い帳面の意匠: 2026-08-04
   均等な箱・直線・ピル型を減らし、紙の耳、繊維、重なり、
   墨のかすれと和綴じの構造で昔ながらの店らしさをつくる
   ============================================ */
:root {
  --kozo-paper: url("../assets/images/washi-kozo-texture.jpg");
  --washi-deckle: url("../assets/images/washi-deckle-mask.svg");
  --old-ink: #302923;
  --old-vermillion: #793b33;
  --old-paper: #f0e3c8;
  --old-paper-light: #f7eedc;
}

body.theme-washi-scroll {
  font-family: var(--font-serif);
  background-color: #dfcfb2;
  background-image:
    radial-gradient(ellipse at 17% 8%, rgba(255, 250, 229, 0.4), transparent 36rem),
    radial-gradient(ellipse at 82% 56%, rgba(108, 64, 39, 0.11), transparent 42rem),
    linear-gradient(rgba(225, 210, 182, 0.55), rgba(211, 190, 157, 0.62)),
    var(--kozo-paper);
  background-size: auto, auto, auto, 760px 760px;
  background-blend-mode: screen, multiply, multiply, multiply;
}

.about-desktop-copy,
.about-mobile-copy,
.press-excerpt,
.press-card em,
.line-signup-lead,
.info-table td,
.info-caution {
  font-family: var(--font-serif);
}

.site-header {
  border-bottom: 0;
  background-color: rgba(240, 226, 198, 0.94);
  background-image:
    linear-gradient(rgba(247, 237, 216, 0.76), rgba(231, 211, 178, 0.74)),
    var(--kozo-paper);
  background-size: auto, 620px 620px;
  background-blend-mode: multiply;
  box-shadow: 0 0.35rem 1.1rem rgba(67, 42, 27, 0.12);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 0.55rem;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 8% 15%, rgba(88, 55, 37, 0.2) 0 22%, transparent 25%),
    radial-gradient(ellipse at 31% 12%, rgba(88, 55, 37, 0.13) 0 28%, transparent 31%),
    radial-gradient(ellipse at 57% 8%, rgba(88, 55, 37, 0.18) 0 25%, transparent 29%),
    radial-gradient(ellipse at 84% 13%, rgba(88, 55, 37, 0.14) 0 27%, transparent 31%);
  opacity: 0.48;
  filter: blur(0.3px);
}

.section-title::after,
.press-proof-head h3::after {
  width: 5.8rem;
  height: 0.72rem;
  border: 0;
  border-radius: 47% 53% 62% 38% / 58% 39% 61% 42%;
  background:
    radial-gradient(ellipse at 13% 55%, rgba(48, 39, 32, 0.64) 0 31%, transparent 35%),
    radial-gradient(ellipse at 42% 46%, rgba(48, 39, 32, 0.54) 0 42%, transparent 46%),
    radial-gradient(ellipse at 73% 56%, rgba(48, 39, 32, 0.47) 0 36%, transparent 40%),
    radial-gradient(ellipse at 93% 43%, rgba(48, 39, 32, 0.34) 0 27%, transparent 31%);
  box-shadow: none;
  opacity: 0.76;
  filter: blur(0.32px);
  transform: rotate(-2.2deg);
}

.section-en {
  color: #735843;
  text-shadow: 0.025em 0.035em 0 rgba(78, 44, 34, 0.16);
}

.instagram-screen,
.press-proof,
.about,
.menu,
.access,
.line-signup {
  background-image:
    linear-gradient(rgba(245, 234, 212, 0.8), rgba(225, 205, 173, 0.72)),
    var(--kozo-paper);
  background-size: auto, 780px 780px;
  background-blend-mode: multiply;
}

.press-proof,
.menu {
  background-image:
    linear-gradient(rgba(217, 194, 160, 0.7), rgba(229, 211, 181, 0.72)),
    var(--kozo-paper);
}

/* 名物写真の上に、染め和紙を二枚だけ重ねる */
.shiruko-hero-card {
  isolation: isolate;
  overflow: visible;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  transform: rotate(0.3deg);
}

.shiruko-hero-card::before,
.shiruko-hero-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-mask: var(--washi-deckle) center / 100% 100% no-repeat;
  mask: var(--washi-deckle) center / 100% 100% no-repeat;
}

.shiruko-hero-card::before {
  z-index: -1;
  inset: -0.8rem -0.95rem -0.9rem -0.9rem;
  background:
    linear-gradient(rgba(79, 37, 33, 0.92), rgba(62, 31, 28, 0.94)),
    var(--kozo-paper);
  background-size: auto, 520px 520px;
  background-blend-mode: multiply;
  filter: drop-shadow(0 1.2rem 1.4rem rgba(26, 16, 12, 0.32));
}

.shiruko-hero-card::after {
  z-index: -2;
  inset: -1.35rem -0.3rem -0.35rem -1.45rem;
  background:
    linear-gradient(rgba(192, 150, 101, 0.3), rgba(121, 73, 50, 0.28)),
    var(--kozo-paper);
  background-size: auto, 460px 460px;
  background-blend-mode: multiply;
  opacity: 0.74;
  transform: rotate(-1.1deg);
  filter: drop-shadow(0 0.7rem 1rem rgba(28, 18, 12, 0.2));
}

.shiruko-hero-since {
  border: 0;
  background: rgba(239, 216, 172, 0.1);
  -webkit-mask: var(--washi-deckle) center / 100% 100% no-repeat;
  mask: var(--washi-deckle) center / 100% 100% no-repeat;
}

.shiruko-hero-cta,
.insta-account-link,
.line-signup-button {
  border: 0;
  border-radius: 0;
  -webkit-mask: var(--washi-deckle) center / 100% 100% no-repeat;
  mask: var(--washi-deckle) center / 100% 100% no-repeat;
  box-shadow: none;
}

.shiruko-hero-cta {
  color: var(--azuki-deep);
  background:
    linear-gradient(rgba(248, 232, 202, 0.88), rgba(221, 194, 153, 0.88)),
    var(--kozo-paper);
  background-size: auto, 330px 330px;
  background-blend-mode: multiply;
  filter: drop-shadow(0 0.42rem 0.55rem rgba(21, 13, 10, 0.22));
  transform: rotate(-0.8deg);
}

.shiruko-hero-cta:hover,
.insta-account-link:hover,
.line-signup-button:hover {
  transform: rotate(-0.8deg);
  box-shadow: none;
}

/* Instagram投稿は媒体らしさを保ち、長い和紙の上に載せる */
.social-rail-shell {
  isolation: isolate;
  position: relative;
}

.social-rail-shell::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -1.3rem -2rem -1.5rem;
  pointer-events: none;
  background:
    linear-gradient(rgba(248, 239, 220, 0.74), rgba(231, 213, 184, 0.78)),
    var(--kozo-paper);
  background-size: auto, 620px 620px;
  background-blend-mode: multiply;
  -webkit-mask: var(--washi-deckle) center / 100% 100% no-repeat;
  mask: var(--washi-deckle) center / 100% 100% no-repeat;
  filter: drop-shadow(0 0.85rem 1rem rgba(69, 44, 28, 0.12));
  transform: rotate(0.22deg);
}

.social-rail {
  position: relative;
  z-index: 1;
}

.insta-account-link {
  color: #f6ead2;
  background:
    linear-gradient(rgba(104, 47, 43, 0.94), rgba(78, 38, 35, 0.96)),
    var(--kozo-paper);
  background-size: auto, 300px 300px;
  background-blend-mode: multiply;
  filter: drop-shadow(0 0.45rem 0.55rem rgba(63, 37, 24, 0.16));
}

/* 掲載記事は均等なカード列ではなく、重ねた新聞切り抜きにする */
.press-grid {
  align-items: start;
  overflow: visible;
}

.press-card {
  --paper-turn: -0.45deg;
  --paper-shift: 0rem;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(rgba(249, 241, 224, 0.8), rgba(233, 215, 185, 0.84)),
    var(--kozo-paper);
  background-size: auto, 510px 510px;
  background-blend-mode: multiply;
  -webkit-mask: var(--washi-deckle) center / 100% 100% no-repeat;
  mask: var(--washi-deckle) center / 100% 100% no-repeat;
  filter: drop-shadow(0 0.85rem 0.85rem rgba(70, 43, 27, 0.18));
  transform: translateY(var(--paper-shift)) rotate(var(--paper-turn));
  transition: filter 180ms ease;
}

.press-card:nth-child(2) {
  --paper-turn: 0.38deg;
  --paper-shift: 0.65rem;
}

.press-card:nth-child(3) {
  --paper-turn: -0.28deg;
  --paper-shift: -0.3rem;
}

.press-card:nth-child(4) {
  --paper-turn: 0.5deg;
  --paper-shift: 0.45rem;
}

.press-card:hover {
  box-shadow: none;
  filter: drop-shadow(0 0.9rem 1rem rgba(70, 43, 27, 0.22));
  transform: translateY(var(--paper-shift)) rotate(var(--paper-turn));
}

.press-brand {
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(rgba(255, 252, 243, 0.9), rgba(231, 216, 190, 0.9)),
    var(--kozo-paper);
  background-size: auto, 260px 260px;
  background-blend-mode: multiply;
  box-shadow: 0 0.25rem 0.45rem rgba(50, 31, 20, 0.14);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  -webkit-mask: var(--washi-deckle) center / 100% 100% no-repeat;
  mask: var(--washi-deckle) center / 100% 100% no-repeat;
  transform: rotate(-1.1deg);
}

/* 店の歩みは、一枚の和綴じ帳と写真台紙にまとめる */
.about-text,
.about-gallery {
  position: relative;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(rgba(250, 242, 225, 0.72), rgba(232, 213, 181, 0.76)),
    var(--kozo-paper);
  background-size: auto, 620px 620px;
  background-blend-mode: multiply;
  -webkit-mask: var(--washi-deckle) center / 100% 100% no-repeat;
  mask: var(--washi-deckle) center / 100% 100% no-repeat;
  filter: drop-shadow(0 1rem 1.1rem rgba(69, 43, 26, 0.15));
}

.about-text::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 1.2rem;
  bottom: 1.2rem;
  left: 0.72rem;
  width: 1.1rem;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(101, 59, 43, 0.92) 0 0.18rem, transparent 0.21rem)
    center top / 1.1rem 25% repeat-y;
  opacity: 0.7;
}

.about-points li {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.about-gallery {
  padding: 0.72rem;
  transform: rotate(0.28deg);
}

.about-gallery-viewport,
.about-gallery-thumbs button {
  border: 0;
  border-radius: 0;
  -webkit-mask: var(--washi-deckle) center / 100% 100% no-repeat;
  mask: var(--washi-deckle) center / 100% 100% no-repeat;
}

.about-gallery-thumbs button:nth-child(1) {
  transform: rotate(-0.6deg);
}

.about-gallery-thumbs button:nth-child(2) {
  transform: translateY(0.15rem) rotate(0.8deg);
}

.about-gallery-thumbs button:nth-child(3) {
  transform: rotate(-0.35deg);
}

.history-numbers {
  position: relative;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.history-numbers p,
.history-numbers p + p,
.history-numbers .history-primary,
.history-numbers .history-years,
.history-numbers .history-walk {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  clip-path: none;
  filter: none;
  transform: none;
}

.history-numbers .history-primary::after {
  content: none;
}

.history-numbers strong,
.history-numbers .history-primary strong,
.history-numbers .history-years .history-desktop-value,
.history-numbers .history-walk .history-desktop-value {
  color: var(--azuki-deep);
}

.history-numbers .history-primary .history-desktop-label,
.history-numbers .history-primary .history-mobile-label {
  color: #6c493d;
}

/* 品書きはECカードではなく、店先に重ねた手書き札へ */
.menu-track {
  overflow: visible;
}

.menu-card {
  --menu-turn: -0.38deg;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(rgba(248, 239, 220, 0.7), rgba(229, 210, 178, 0.78)),
    var(--kozo-paper);
  background-size: auto, 480px 480px;
  background-blend-mode: multiply;
  -webkit-mask: var(--washi-deckle) center / 100% 100% no-repeat;
  mask: var(--washi-deckle) center / 100% 100% no-repeat;
  filter: drop-shadow(0 0.75rem 0.85rem rgba(69, 43, 26, 0.16));
  transform: rotate(var(--menu-turn));
}

.menu-card:nth-child(3n + 2) {
  --menu-turn: 0.42deg;
}

.menu-card:nth-child(3n) {
  --menu-turn: -0.16deg;
}

.menu-card:hover {
  box-shadow: none;
  filter: drop-shadow(0 0.78rem 0.9rem rgba(69, 43, 26, 0.2));
  transform: rotate(var(--menu-turn));
}

.menu-badge {
  border-radius: 0;
  -webkit-mask: var(--washi-deckle) center / 100% 100% no-repeat;
  mask: var(--washi-deckle) center / 100% 100% no-repeat;
}

/* 道案内は地図を和紙台紙へ貼り、番号を墨書きにする */
.access-text,
.access-map {
  position: relative;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(rgba(249, 240, 221, 0.72), rgba(232, 213, 181, 0.75)),
    var(--kozo-paper);
  background-size: auto, 600px 600px;
  background-blend-mode: multiply;
  -webkit-mask: var(--washi-deckle) center / 100% 100% no-repeat;
  mask: var(--washi-deckle) center / 100% 100% no-repeat;
  filter: drop-shadow(0 0.9rem 1rem rgba(69, 43, 26, 0.15));
}

.access-text {
  padding: clamp(1.3rem, 3vw, 2.15rem);
  transform: rotate(-0.2deg);
}

.access-map {
  padding: 0.72rem;
  transform: rotate(0.25deg);
}

.access-map iframe {
  border-radius: 0;
  -webkit-mask: var(--washi-deckle) center / 100% 100% no-repeat;
  mask: var(--washi-deckle) center / 100% 100% no-repeat;
}

.access-route li > span {
  width: auto;
  min-width: 1.5rem;
  height: auto;
  border: 0;
  border-radius: 0;
  color: var(--azuki-deep);
  background: transparent;
  font-family: var(--font-calligraphy);
  font-size: 1.25rem;
}

.access-map-link {
  border-bottom: 0;
  text-decoration: underline;
  text-decoration-color: rgba(83, 47, 38, 0.42);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.34em;
}

/* LINEは公式アイコンを保った、貼り和紙の店だより */
.line-signup {
  background-color: #d8d2b2;
  background-image:
    linear-gradient(rgba(219, 217, 186, 0.64), rgba(202, 193, 156, 0.72)),
    var(--kozo-paper);
}

.line-signup-card {
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(rgba(249, 242, 224, 0.82), rgba(229, 215, 185, 0.88)),
    var(--kozo-paper);
  background-size: auto, 560px 560px;
  background-blend-mode: multiply;
  -webkit-mask: var(--washi-deckle) center / 100% 100% no-repeat;
  mask: var(--washi-deckle) center / 100% 100% no-repeat;
  filter: drop-shadow(0 0.85rem 1rem rgba(52, 54, 29, 0.16));
  transform: rotate(-0.22deg);
}

.line-signup-card::before {
  content: none;
}

.line-signup-benefits li {
  border: 0;
  border-radius: 0;
  color: #386646;
  background: transparent;
  padding: 0;
}

.line-signup-benefits li + li::before {
  content: "・";
  margin-right: 0.25rem;
  color: rgba(56, 102, 70, 0.62);
}

.line-signup-button {
  color: #f5edda;
  background:
    linear-gradient(rgba(29, 117, 58, 0.96), rgba(22, 91, 46, 0.96)),
    var(--kozo-paper);
  background-size: auto, 300px 300px;
  background-blend-mode: multiply;
  filter: drop-shadow(0 0.38rem 0.45rem rgba(28, 61, 31, 0.17));
  transform: rotate(0.65deg);
}

/* 店舗情報は罫線表ではなく、濃い染め紙に貼った一枚の帳面 */
.info {
  position: relative;
  background:
    linear-gradient(rgba(78, 36, 33, 0.93), rgba(60, 31, 29, 0.96)),
    var(--kozo-paper);
  background-size: auto, 680px 680px;
  background-blend-mode: multiply;
}

.info::before {
  content: "";
  position: absolute;
  top: -0.65rem;
  right: 0;
  left: 0;
  height: 1.2rem;
  background:
    radial-gradient(ellipse at 12% 70%, #663a34 0 27%, transparent 30%),
    radial-gradient(ellipse at 36% 65%, #663a34 0 31%, transparent 34%),
    radial-gradient(ellipse at 62% 72%, #663a34 0 28%, transparent 31%),
    radial-gradient(ellipse at 87% 66%, #663a34 0 32%, transparent 35%);
  opacity: 0.92;
  filter: blur(0.35px);
}

.info-table-wrap {
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(rgba(244, 229, 202, 0.88), rgba(222, 200, 166, 0.9)),
    var(--kozo-paper);
  background-size: auto, 620px 620px;
  background-blend-mode: multiply;
  padding: clamp(1.2rem, 2.8vw, 2rem);
  -webkit-mask: var(--washi-deckle) center / 100% 100% no-repeat;
  mask: var(--washi-deckle) center / 100% 100% no-repeat;
  filter: drop-shadow(0 0.9rem 1rem rgba(23, 14, 12, 0.24));
  transform: rotate(0.12deg);
}

.info-table th,
.info-table td {
  border: 0;
  color: #3c3028;
}

.info-table th {
  color: #7a4d3d;
}

.info-note {
  color: #665448;
}

.info-caution {
  color: #ead9bb;
}

.site-footer {
  border-top: 0;
  background:
    linear-gradient(rgba(40, 31, 26, 0.94), rgba(30, 25, 21, 0.97)),
    var(--kozo-paper);
  background-size: auto, 540px 540px;
  background-blend-mode: multiply;
}

@media (min-width: 768px) {
  html {
    scroll-snap-type: none;
  }

  .instagram-screen,
  .press-proof,
  .about,
  .menu {
    min-height: auto;
    scroll-snap-align: none;
  }

  .about-grid {
    height: auto;
    min-height: 610px;
  }

  .about-text {
    padding-left: clamp(2.25rem, 3.2vw, 2.7rem);
  }

  .history-numbers {
    margin-top: auto;
    padding: 0.8rem 0.2rem 0.25rem;
    display: grid;
    grid-template-columns: minmax(175px, 1.55fr) minmax(92px, 0.78fr) minmax(86px, 0.67fr);
    align-items: end;
    gap: 0.25rem 0.65rem;
  }

  .history-heading {
    grid-column: 1 / -1;
  }

  .history-numbers p,
  .history-numbers p + p,
  .history-numbers .history-primary,
  .history-numbers .history-years,
  .history-numbers .history-walk {
    min-height: 0;
    padding: 1.15rem 0.35rem 0.3rem;
    display: flex;
    align-items: baseline;
    align-self: end;
    gap: 0.55rem;
  }

  .history-numbers .history-primary {
    grid-column: auto;
  }

  .history-numbers .history-primary strong {
    flex: 0 0 auto;
    font-size: clamp(3.45rem, 4.7vw, 4.4rem);
    line-height: 0.82;
  }

  .history-numbers .history-primary .history-desktop-label {
    margin-bottom: 0.08rem;
    font-size: clamp(0.68rem, 0.8vw, 0.76rem);
    line-height: 1.55;
  }

  .history-numbers .history-years .history-desktop-value,
  .history-numbers .history-walk .history-desktop-value {
    font-size: clamp(2.3rem, 3.25vw, 3.05rem);
    line-height: 0.82;
  }

  .history-numbers .history-years .history-desktop-label,
  .history-numbers .history-walk .history-desktop-label {
    font-size: clamp(0.61rem, 0.69vw, 0.68rem);
  }

  .access-grid {
    align-items: stretch;
    gap: clamp(1.7rem, 3vw, 2.8rem);
  }

  body.theme-washi-scroll .site-logo {
    color: var(--azuki-deep);
    text-shadow:
      0.018em 0.025em 0 rgba(72, 35, 27, 0.2),
      0 0 0.01px currentColor;
  }
}

@media (min-width: 768px) and (max-width: 899px) {
  .history-numbers {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  }

  .history-numbers .history-primary {
    grid-column: 1 / -1;
  }

  .history-numbers .history-primary strong {
    font-size: 3.7rem;
  }
}

@media (max-width: 767px) {
  body.theme-washi-scroll {
    background-size: auto, auto, auto, 520px 520px;
  }

  .shiruko-hero-card {
    transform: none;
  }

  .shiruko-hero-card::before {
    inset: -0.4rem -0.35rem -0.55rem;
  }

  .shiruko-hero-card::after {
    inset: -0.65rem 0.2rem -0.2rem -0.6rem;
    transform: rotate(-0.6deg);
  }

  .social-rail-shell::before {
    inset: -0.75rem -0.85rem -0.9rem;
  }

  .press-card {
    --paper-turn: -0.18deg;
    --paper-shift: 0rem;
  }

  .press-card:nth-child(even) {
    --paper-turn: 0.2deg;
    --paper-shift: 0.2rem;
  }

  .about-text {
    padding-left: 1.35rem;
  }

  .about-text::before {
    top: 0.9rem;
    bottom: 0.9rem;
    left: 0.26rem;
    width: 0.75rem;
    background-size: 0.75rem 25%;
  }

  .history-numbers {
    padding: 0.2rem 0.1rem 0.1rem;
  }

  .history-numbers .history-primary,
  .history-numbers .history-years,
  .history-numbers .history-walk {
    background:
      linear-gradient(rgba(247, 236, 215, 0.66), rgba(226, 204, 169, 0.72)),
      var(--kozo-paper);
    background-size: auto, 380px 380px;
    background-blend-mode: multiply;
    -webkit-mask: var(--washi-deckle) center / 100% 100% no-repeat;
    mask: var(--washi-deckle) center / 100% 100% no-repeat;
    filter: drop-shadow(0 0.38rem 0.45rem rgba(68, 42, 26, 0.12));
  }

  .history-numbers .history-primary {
    background:
      linear-gradient(rgba(92, 42, 38, 0.94), rgba(68, 34, 31, 0.96)),
      var(--kozo-paper);
    background-size: auto, 390px 390px;
    background-blend-mode: multiply;
  }

  .history-numbers .history-primary strong {
    color: #fff8e8;
  }

  .history-numbers .history-primary .history-mobile-label {
    color: #ead2a8;
  }

  .menu-card {
    --menu-turn: -0.12deg;
  }

  .menu-card:nth-child(even) {
    --menu-turn: 0.16deg;
  }

  .access-text,
  .access-map {
    transform: none;
  }

  .line-signup-card {
    transform: none;
  }

  .info-table-wrap {
    padding: 1rem 0.9rem;
    transform: none;
  }
}

body.theme-washi-scroll .instagram .insta-account-link {
  border: 0;
  border-radius: 0;
  color: #f6ead2;
  background:
    linear-gradient(rgba(104, 47, 43, 0.94), rgba(78, 38, 35, 0.96)),
    var(--kozo-paper);
  background-size: auto, 300px 300px;
  background-blend-mode: multiply;
  -webkit-mask: var(--washi-deckle) center / 100% 100% no-repeat;
  mask: var(--washi-deckle) center / 100% 100% no-repeat;
  box-shadow: none;
  filter: drop-shadow(0 0.45rem 0.55rem rgba(63, 37, 24, 0.16));
  transform: rotate(-0.8deg);
}

body.theme-washi-scroll .instagram .insta-account-link:hover {
  color: #f6ead2;
  background:
    linear-gradient(rgba(104, 47, 43, 0.94), rgba(78, 38, 35, 0.96)),
    var(--kozo-paper);
  background-size: auto, 300px 300px;
  background-blend-mode: multiply;
  box-shadow: none;
  transform: rotate(-0.8deg);
}

/* ============================================
   本物の筆跡を見せる見出し / About中間幅補正: 2026-08-04
   ============================================ */
body.theme-washi-scroll {
  font-family: var(--font-serif);
}

/* 筆文字は大きな言葉に絞り、本文まで崩しすぎない。 */
.site-logo,
.shiruko-hero h1,
.section-title,
.press-proof-head h3,
.about-text h3,
.line-signup-title,
.history-heading strong {
  font-family: var(--font-calligraphy);
  font-style: normal;
  font-weight: 400;
  font-synthesis: none;
  text-shadow:
    0.018em 0.025em 0 rgba(72, 35, 27, 0.14),
    0 0 0.01px currentColor;
}

.shiruko-hero h1 {
  line-height: 1.22;
  letter-spacing: 0.025em;
}

.section-title {
  line-height: 1.25;
  letter-spacing: 0.055em;
}

.press-proof-head h3 {
  font-size: clamp(1.85rem, 2.8vw, 2.55rem);
  line-height: 1.25;
  letter-spacing: 0.05em;
}

.about-text h3 {
  line-height: 1.42;
  letter-spacing: 0.035em;
}

.line-signup-title {
  letter-spacing: 0.035em;
}

/* 旧ルールで筆文字になっていた本文・小見出しは、読みやすい明朝へ戻す。 */
.global-nav a,
.section-en,
.press-card strong,
.menu-name,
.access-station strong,
.info-table th,
.footer-line-compact strong,
.shiruko-hero-lead,
.shiruko-hero-cta,
.section-lead,
.press-proof-head > p,
.about-desktop-copy,
.about-mobile-copy,
.about-points,
.menu-desc,
.menu-note,
.access-route,
.access-map-link,
.line-signup-copy,
.line-signup-button,
.info-table,
.info-caution,
.history-numbers strong,
.history-numbers span {
  font-family: var(--font-serif);
}

@media (min-width: 768px) {
  .about-grid {
    height: auto;
    min-height: 0;
    align-items: stretch;
  }

  .about-text,
  .about-gallery {
    width: auto;
    height: auto;
    min-width: 0;
    min-height: 0;
  }

  .about-text {
    justify-content: space-between;
  }

  .history-numbers {
    margin-top: 1rem;
  }

  .about-gallery-viewport {
    height: auto;
    min-height: clamp(410px, 38vw, 500px);
    flex: 1 1 0;
  }
}

/* 900px台を含む中間幅では、沿革3列を無理に詰め込まない。 */
@media (min-width: 768px) and (max-width: 1099px) {
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-text {
    justify-content: flex-start;
    padding:
      clamp(1.35rem, 2.5vw, 1.7rem)
      clamp(1rem, 2vw, 1.35rem)
      clamp(1.35rem, 2.5vw, 1.7rem)
      clamp(2.1rem, 4vw, 2.5rem);
  }

  .history-numbers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 0.6rem;
  }

  .history-heading,
  .history-numbers .history-primary {
    grid-column: 1 / -1;
  }

  .history-heading span {
    display: none;
  }

  .history-numbers .history-primary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: end;
    column-gap: 0.8rem;
  }

  .history-numbers .history-years,
  .history-numbers .history-walk {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .history-numbers .history-primary .history-desktop-label,
  .history-numbers .history-years .history-desktop-label,
  .history-numbers .history-walk .history-desktop-label {
    display: block;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .history-numbers .history-primary .history-mobile-label,
  .history-numbers .history-years .history-mobile-label,
  .history-numbers .history-walk .history-mobile-label {
    display: none;
  }

  .about-gallery-viewport {
    min-height: clamp(430px, 52vw, 500px);
  }
}

@media (max-width: 767px) {
  .site-logo {
    letter-spacing: 0.035em;
  }

  .shiruko-hero h1 {
    line-height: 1.28;
    letter-spacing: 0.018em;
  }

  .section-title {
    line-height: 1.3;
    letter-spacing: 0.045em;
  }

  .press-proof-head h3 {
    font-size: clamp(1.55rem, 7vw, 1.95rem);
  }

  .about-text h3 {
    font-size: clamp(1.35rem, 6.3vw, 1.7rem);
    line-height: 1.46;
  }
}

/* ============================================
   MacBook Air 基準 / 全文筆文字 / 和紙端の統一
   2026-08-04 最終基準
   - PCの内容幅を1180pxへ一本化
   - 1440×900 / 1280×832を基準に高さを連続化
   - 小さな本文までYuji Syukuを使用
   - テキスト面の繊維を弱め、紙の四辺を不規則にする
   ============================================ */
:root {
  --site-rail: 1180px;
  --site-edge: clamp(1rem, 2.5vw, 2rem);
  --washi-edge-strip: url("../assets/images/washi-edge-strip.svg");
}

/* ユーザー指定どおり、画面内の文字は大小を問わず筆文字へ統一する。 */
body.theme-washi-scroll,
body.theme-washi-scroll *,
body.theme-washi-scroll *::before,
body.theme-washi-scroll *::after {
  font-family: var(--font-calligraphy) !important;
  font-synthesis: none !important;
}

body.theme-washi-scroll {
  font-weight: 400;
  letter-spacing: 0.035em;
}

body.theme-washi-scroll strong,
body.theme-washi-scroll b,
body.theme-washi-scroll th {
  font-weight: 400;
}

.site-logo,
.global-nav a,
.shiruko-hero h1,
.section-title,
.press-proof-head h3,
.about-text h3,
.menu-name,
.access-station,
.line-signup-title,
.info-table th,
.footer-line-compact strong {
  font-style: normal;
  font-weight: 400;
  text-shadow:
    0.025em 0.035em 0 rgba(62, 34, 26, 0.18),
    0 0 0.01px currentColor;
}

.section-en,
.section-title,
.section-lead,
.press-proof-head > p {
  position: relative;
  z-index: 1;
  text-shadow:
    0 0 0.24rem rgba(244, 232, 208, 0.98),
    0 0 0.7rem rgba(244, 232, 208, 0.92),
    0.02em 0.03em 0 rgba(68, 39, 29, 0.12);
}

.section-en {
  font-size: 0.76rem;
  line-height: 1.55;
  letter-spacing: 0.16em;
}

.section-lead,
.press-proof-head > p:last-child {
  font-size: 0.9rem;
  line-height: 1.65;
  letter-spacing: 0.045em;
}

/* テキストを載せる和紙だけ、濃い繊維を15%前後まで弱める。 */
.about-text,
.access-text,
.line-signup-card,
.info-table-wrap,
.menu-card {
  background-color: #eee0c4;
  background-image:
    linear-gradient(rgba(250, 242, 226, 0.9), rgba(232, 214, 183, 0.9)),
    var(--kozo-paper);
  background-size: auto, 760px 760px;
  background-blend-mode: normal, multiply;
}

.about-desktop-copy,
.about-mobile-copy,
.about-points,
.menu-desc,
.menu-note,
.access-copy,
.access-route,
.access-map-link,
.line-signup-kicker,
.line-signup-lead,
.line-signup-benefits,
.info-table,
.info-caution,
.footer-line-compact {
  letter-spacing: 0.035em;
}

/* すべてのセクション境界を、規則的な直線ではなく手漉きの紙端にする。 */
.instagram-screen,
.press-proof,
.about,
.menu,
.access,
.line-signup,
.info {
  --section-edge-color: #ead8b8;
  position: relative;
  overflow: visible;
  isolation: isolate;
  border: 0;
  box-shadow: none;
}

.instagram-screen {
  --section-edge-color: #ebddc2;
}

.press-proof,
.menu {
  --section-edge-color: #ddc7a4;
}

.about,
.access {
  --section-edge-color: #ebddc2;
}

.line-signup {
  --section-edge-color: #d3ccaa;
}

.info {
  --section-edge-color: #5d3430;
}

.instagram-screen::after,
.press-proof::after,
.about::after,
.menu::after,
.access::after,
.line-signup::after,
.info::after {
  content: "";
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: -0.75rem;
  left: 0;
  height: 1.35rem;
  pointer-events: none;
  background-color: inherit;
  background-image: inherit;
  background-size: inherit;
  background-blend-mode: inherit;
  -webkit-mask: var(--washi-edge-strip) center / 100% 100% no-repeat;
  mask: var(--washi-edge-strip) center / 100% 100% no-repeat;
}

.site-header::after {
  right: 0;
  bottom: -0.62rem;
  left: 0;
  height: 1rem;
  background-color: #ead8b8;
  background-image: var(--kozo-paper);
  background-size: 620px 620px;
  background-blend-mode: multiply;
  opacity: 1;
  filter: none;
  -webkit-mask: var(--washi-edge-strip) center / 100% 100% no-repeat;
  mask: var(--washi-edge-strip) center / 100% 100% no-repeat;
}

.info::before {
  content: none;
}

/* 後続セクション自身の紙端を前へ重ね、下層の直線的な境界を覆う。 */
.instagram-screen::before,
.press-proof::before,
.about::before,
.menu::before,
.access::before,
.line-signup::before,
.info::before,
.site-footer::before {
  content: "";
  position: absolute;
  z-index: 6;
  top: -0.9rem;
  right: 0;
  left: 0;
  height: 1.65rem;
  pointer-events: none;
  background-color: inherit;
  background-image: inherit;
  background-size: inherit;
  background-blend-mode: inherit;
  -webkit-mask: var(--washi-edge-strip) center / 100% 100% no-repeat;
  mask: var(--washi-edge-strip) center / 100% 100% no-repeat;
  transform: scaleY(-1);
}

.site-footer {
  position: relative;
  overflow: visible;
}

/* ヒーロー文言は常に通常フローで積み、ボタンとの重なりを起こさない。 */
.shiruko-hero-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.7rem, 1.5vh, 1.1rem);
}

.shiruko-hero-card > * {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.shiruko-hero h1 {
  line-height: 1.19;
  letter-spacing: 0.018em;
}

.shiruko-hero-lead {
  line-height: 1.68;
  letter-spacing: 0.035em;
}

.shiruko-hero-cta {
  flex: 0 0 auto;
  align-self: flex-start;
  margin-top: 0.15rem;
  white-space: nowrap;
}

/* 実投稿カードは媒体の白い矩形を例外として残し、記号は現行風SVGへ。 */
.social-rail-shell {
  max-width: none;
}

.social-rail {
  align-items: stretch;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.social-rail.is-static {
  transform: none;
  animation: none;
}

.social-rail.is-static .ig-post-card {
  scroll-snap-align: start;
}

.ig-post-card {
  flex: 0 0 clamp(272px, 24vw, 296px);
  border: 1px solid rgba(34, 25, 21, 0.16);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0.65rem 1.4rem rgba(49, 38, 30, 0.12);
}

.ig-post-card:hover {
  transform: translateY(-2px);
}

.ig-post-head {
  height: 56px;
  padding: 0.48rem 0.66rem;
  grid-template-columns: 36px minmax(0, 1fr) 18px;
  gap: 0.55rem;
}

.ig-post-head > img {
  width: 36px;
  height: 36px;
}

.ig-post-head strong {
  font-size: 0.82rem;
  line-height: 1.2;
  letter-spacing: 0.015em;
}

.ig-post-head small {
  font-size: 0.7rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.ig-post-head i {
  width: 18px;
  height: 18px;
  display: block;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  background:
    radial-gradient(circle at 3px 9px, #222 0 1.2px, transparent 1.35px),
    radial-gradient(circle at 9px 9px, #222 0 1.2px, transparent 1.35px),
    radial-gradient(circle at 15px 9px, #222 0 1.2px, transparent 1.35px);
}

.instagram-screen .ig-post-photo,
.ig-post-photo {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.ig-post-actions {
  height: 42px;
  padding: 0.58rem 0.68rem 0.28rem;
  gap: 0.68rem;
}

.ig-post-actions b,
.ig-post-actions em {
  width: 1.28rem;
  height: 1.28rem;
  display: block;
  flex: 0 0 1.28rem;
  overflow: hidden;
  color: #191919;
  background-color: currentColor;
  font-size: 0;
  text-indent: -9999px;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.ig-post-actions b:nth-child(1) {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78L12 21.23l8.84-8.84a5.5 5.5 0 0 0 0-7.78Z' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78L12 21.23l8.84-8.84a5.5 5.5 0 0 0 0-7.78Z' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ig-post-actions b:nth-child(2) {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8A8.5 8.5 0 0 1 12.5 20a8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7A8.38 8.38 0 0 1 4 11.5a8.5 8.5 0 0 1 4.7-7.6A8.38 8.38 0 0 1 12.5 3H13a8.48 8.48 0 0 1 8 8v.5Z' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8A8.5 8.5 0 0 1 12.5 20a8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7A8.38 8.38 0 0 1 4 11.5a8.5 8.5 0 0 1 4.7-7.6A8.38 8.38 0 0 1 12.5 3H13a8.48 8.48 0 0 1 8 8v.5Z' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ig-post-actions b:nth-child(3) {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m22 2-7 20-4-9-9-4 20-7Z' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22 2 11 13' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m22 2-7 20-4-9-9-4 20-7Z' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22 2 11 13' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.ig-post-actions em {
  margin-left: auto;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 21 12 16l-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16Z' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 21 12 16l-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16Z' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ig-post-caption {
  height: 68px;
  margin: 0 0.68rem 0.72rem;
  overflow: hidden;
  font-size: 0.76rem;
  line-height: 1.55;
  letter-spacing: 0.015em;
}

.ig-post-caption strong {
  font-size: 0.78rem;
}

.press-excerpt {
  font-size: 0.76rem;
  line-height: 1.55;
}

.press-card em {
  font-size: 0.72rem;
  line-height: 1.45;
}

@media (min-width: 768px) {
  .header-inner,
  .shiruko-hero-content,
  .instagram-screen > .section-inner,
  .press-proof > .section-inner,
  .about > .section-inner,
  .menu > .section-inner,
  .access > .section-inner,
  .line-signup > .section-inner,
  .info > .section-inner,
  .footer-inner,
  .social-rail-shell,
  .menu-scroller {
    width: min(var(--site-rail), calc(100% - 3rem));
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
  }

  .header-inner,
  .shiruko-hero-content,
  .instagram-screen > .section-inner,
  .press-proof > .section-inner,
  .about > .section-inner,
  .menu > .section-inner,
  .access > .section-inner,
  .line-signup > .section-inner,
  .info > .section-inner,
  .footer-inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .header-inner {
    padding-top: 0.62rem;
    padding-bottom: 0.62rem;
  }

  .shiruko-hero {
    min-height: max(650px, 100svh);
  }

  .shiruko-hero-content {
    min-height: inherit;
    padding-top: max(5.75rem, 8vh);
    padding-bottom: 3rem;
  }

  .shiruko-hero-card {
    width: min(448px, 40vw);
    padding: clamp(1.75rem, 3.2vw, 2.75rem);
  }

  .shiruko-hero h1 {
    font-size: clamp(2.65rem, 4.2vw, 4.15rem);
  }

  .social-rail {
    padding: 0.55rem 1.25rem 1rem;
  }

  .menu-track {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .about {
    padding-top: clamp(2.5rem, 5vh, 3.4rem);
    padding-bottom: clamp(2.7rem, 5.5vh, 3.8rem);
  }

  .about-grid {
    height: auto;
    min-height: 0;
    margin-top: 1.2rem;
    gap: 1.25rem;
    align-items: start;
  }

  .about-text {
    height: auto;
    min-height: 0;
    padding: 1.45rem 1.65rem 1.3rem 2.35rem;
    justify-content: flex-start;
  }

  .about-text h3 {
    margin: 0 0 0.72rem;
    font-size: clamp(1.38rem, 1.85vw, 1.72rem);
    line-height: 1.36;
    letter-spacing: 0.035em;
  }

  .about-desktop-copy:first-of-type {
    margin: 0;
    font-size: clamp(0.84rem, 0.98vw, 0.92rem);
    line-height: 1.62;
    letter-spacing: 0.035em;
  }

  .about-points {
    margin-top: 0.65rem;
    gap: 0.12rem;
    border: 0;
  }

  .about-points li {
    padding: 0.22rem 0.1rem;
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .history-heading {
    display: none;
  }

  .history-numbers {
    margin-top: 0.72rem;
    padding: 0.52rem 0 0;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.82fr) minmax(0, 0.82fr);
    align-items: end;
    gap: 0.45rem;
    border: 0;
  }

  .history-numbers p,
  .history-numbers p + p,
  .history-numbers .history-primary,
  .history-numbers .history-years,
  .history-numbers .history-walk {
    min-height: 78px;
    margin: 0;
    padding: 0.55rem 0.25rem 0.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0.22rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .history-numbers .history-primary {
    grid-column: auto;
  }

  .history-numbers p::before,
  .history-numbers .history-primary::before,
  .history-numbers .history-primary::after {
    content: none;
  }

  .history-numbers .history-primary strong {
    color: var(--azuki-deep);
    font-size: clamp(3.2rem, 4.35vw, 4rem);
    line-height: 0.78;
    letter-spacing: -0.045em;
  }

  .history-numbers .history-years .history-desktop-value,
  .history-numbers .history-walk .history-desktop-value {
    color: var(--azuki-deep);
    font-size: clamp(2.35rem, 3.1vw, 2.95rem);
    line-height: 0.82;
  }

  .history-numbers .history-primary .history-desktop-label,
  .history-numbers .history-years .history-desktop-label,
  .history-numbers .history-walk .history-desktop-label {
    margin: 0;
    display: block;
    color: #665044;
    font-size: 0.75rem;
    line-height: 1.45;
    letter-spacing: 0.025em;
  }

  .history-numbers .history-primary .history-mobile-label,
  .history-numbers .history-years .history-mobile-label,
  .history-numbers .history-walk .history-mobile-label,
  .history-mobile-value {
    display: none;
  }

  .about-gallery {
    height: auto;
    min-height: 0;
    padding: 0.62rem;
    align-self: start;
  }

  .about-gallery-viewport {
    height: clamp(300px, 23vw, 330px);
    min-height: 0;
    flex: 0 0 auto;
  }

  .about-gallery-thumbs button {
    height: 52px;
  }
}

@media (min-width: 900px) {
  .header-inner,
  .shiruko-hero-content,
  .instagram-screen > .section-inner,
  .press-proof > .section-inner,
  .about > .section-inner,
  .menu > .section-inner,
  .access > .section-inner,
  .line-signup > .section-inner,
  .info > .section-inner,
  .footer-inner,
  .social-rail-shell,
  .menu-scroller {
    width: min(var(--site-rail), calc(100% - 4rem));
  }

  .about-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }
}

@media (min-width: 768px) and (max-width: 899px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-gallery-viewport {
    height: 420px;
  }
}

@media (min-width: 768px) and (max-height: 760px) {
  .shiruko-hero-content {
    padding-top: 5.4rem;
    padding-bottom: 2rem;
  }

  .shiruko-hero-card {
    gap: 0.62rem;
    padding: 1.55rem 1.8rem;
  }

  .shiruko-hero h1 {
    font-size: clamp(2.4rem, 6.2vh, 3.25rem);
  }

  .shiruko-hero-lead {
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .shiruko-hero-cta {
    padding: 0.58em 1.5em;
  }
}

@media (max-width: 767px) {
  .section-inner,
  .header-inner,
  .footer-inner {
    width: 100%;
    max-width: none;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .shiruko-hero-card {
    gap: 0.62rem;
  }

  .shiruko-hero h1 {
    font-size: clamp(1.85rem, 8.3vw, 2.25rem);
    line-height: 1.24;
  }

  .shiruko-hero-lead {
    font-size: 0.86rem;
    line-height: 1.62;
  }

  .shiruko-hero-cta {
    margin-top: 0.08rem;
    font-size: 0.9rem;
  }

  .ig-post-card {
    flex-basis: min(82vw, 300px);
  }

  .social-rail {
    padding: 0.75rem 0.75rem 1rem;
  }

  .ig-post-head {
    height: 54px;
  }

  .ig-post-head strong {
    font-size: 0.8rem;
  }

  .ig-post-head small {
    font-size: 0.68rem;
  }

  .ig-post-caption {
    min-height: 66px;
    height: 66px;
    font-size: 0.75rem;
  }

  .history-numbers span,
  .history-numbers .history-mobile-label {
    font-size: 0.74rem;
    line-height: 1.5;
  }

  .about-mobile-copy {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .press-excerpt,
  .press-card em {
    font-size: 0.74rem;
  }

  .footer-line-compact {
    font-size: 0.76rem;
    line-height: 1.65;
  }
}

/* 可変幅のレールは必ず各自の中でスクロールさせ、ページ全体を広げない。 */
html,
body.theme-washi-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.social-rail.is-static {
  width: 100%;
  max-width: 100%;
}

.site-footer {
  overflow-x: hidden;
}

.footer-line-compact {
  min-width: 0;
  max-width: 100%;
  flex-wrap: wrap;
  white-space: normal;
}

@media (max-width: 767px) {
  .footer-line-compact {
    justify-content: flex-start;
    gap: 0.28rem 0.6rem;
  }
}

/* Instagram投稿カード内は、PC・スマホとも実際のアプリに近い角ゴシックへ戻す。 */
body.theme-washi-scroll .ig-post-card,
body.theme-washi-scroll .ig-post-card * {
  font-family: var(--font-sans) !important;
  font-style: normal;
  letter-spacing: normal;
  text-shadow: none;
}

body.theme-washi-scroll .ig-post-head strong,
body.theme-washi-scroll .ig-post-caption strong {
  font-weight: 600;
}

body.theme-washi-scroll .ig-post-head small,
body.theme-washi-scroll .ig-post-caption {
  font-weight: 400;
}

@media (min-width: 768px) {
  /* 名物の椀を文字面から離し、写真の左側へ寄せる。 */
  .shiruko-hero-photo img {
    width: 110%;
    max-width: none;
    transform: translateX(-8.5%);
  }
}

/* ==========================================================
   MacBook Air full-width exhibition: 2026-08-04
   横へ流す展示面だけを画面いっぱいに広げ、読み物は広い和紙面に整える。
   ========================================================== */
@media (min-width: 768px) {
  /* Instagram: 端から端まで、右から左へ常に途切れず流す。 */
  .instagram-screen > .social-rail-shell {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    overflow: hidden;
  }

  .instagram-screen > .social-rail-shell::after {
    content: none;
  }

  .instagram-screen .social-rail {
    width: max-content;
    max-width: none;
    padding: 0.65rem 0 1rem;
    overflow: visible;
    scroll-snap-type: none;
  }

  .instagram-screen .social-rail.is-looping {
    animation: social-rail-loop 58s linear infinite;
  }

  .social-rail-shell:hover .social-rail.is-looping,
  .social-rail-shell:focus-within .social-rail.is-looping {
    animation-play-state: running;
  }

  .instagram-screen .social-rail.is-looping .ig-post-card {
    flex: 0 0 clamp(292px, 23vw, 330px);
  }

  /* 掲載と店の歩みは、MacBook Airでも左右を余らせすぎない。 */
  .press-proof > .section-inner,
  .about > .section-inner,
  .access > .section-inner {
    width: min(1360px, calc(100% - 2rem));
    max-width: none;
  }

  /* 掲載・選出: 小さな4列から、写真と記事が読める大判2列へ。 */
  .press-proof-head h3 {
    font-size: clamp(2.6rem, 4vw, 3.55rem);
    line-height: 1.25;
  }

  .press-proof-head > p:last-child {
    font-size: 1rem;
    line-height: 1.8;
  }

  .press-grid {
    margin-top: 1.65rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.1rem, 2vw, 1.6rem);
  }

  .press-grid .press-card,
  .press-grid .press-card:nth-child(even) {
    min-height: 440px;
    grid-template-rows: clamp(240px, 20vw, 300px) minmax(190px, auto);
  }

  .press-grid .press-card::after {
    height: clamp(240px, 20vw, 300px);
  }

  .press-grid .press-card > span:not(.press-brand) {
    padding: 1.15rem 1.3rem 1.25rem;
  }

  .press-date {
    width: fit-content;
    margin: 0 0 0.48rem;
    padding: 0.2rem 0.58rem 0.24rem;
    display: block;
    color: #fff8e9;
    background: rgba(92, 43, 39, 0.92);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.08em;
    -webkit-mask: var(--washi-deckle) center / 100% 100% no-repeat;
    mask: var(--washi-deckle) center / 100% 100% no-repeat;
  }

  .press-grid .press-card strong {
    font-size: clamp(1.25rem, 1.7vw, 1.55rem);
    line-height: 1.45;
  }

  .press-grid .press-excerpt {
    margin-top: 0.52rem;
    display: block;
    overflow: visible;
    font-size: 0.9rem;
    line-height: 1.75;
    -webkit-line-clamp: unset;
  }

  .press-grid .press-card em {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .press-grid .press-card:nth-child(3) > .press-card-photo {
    object-position: center 68%;
  }

  /* お店について: 数字は同じ二段組にして、値の下端を揃える。 */
  .about-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(1.2rem, 2vw, 1.75rem);
  }

  .history-numbers {
    grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.9fr));
    align-items: stretch;
    gap: 0.55rem;
  }

  .history-numbers > p,
  .history-numbers > p + p,
  .history-numbers > .history-primary,
  .history-numbers > .history-years,
  .history-numbers > .history-walk {
    min-height: 116px;
    padding: 0.68rem 0.35rem 0.24rem;
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 66px minmax(2.9em, auto);
    align-content: end;
    align-items: end;
    gap: 0.32rem;
  }

  .history-numbers > .history-primary > strong,
  .history-numbers > .history-years > .history-desktop-value,
  .history-numbers > .history-walk > .history-desktop-value {
    grid-column: 1;
    grid-row: 1;
    min-height: 66px;
    display: flex;
    align-items: flex-end;
    align-self: end;
    line-height: 0.82;
  }

  .history-numbers .history-primary strong {
    font-size: clamp(3.15rem, 4vw, 3.75rem);
  }

  .history-numbers .history-years .history-desktop-value,
  .history-numbers .history-walk .history-desktop-value {
    font-size: clamp(2.8rem, 3.5vw, 3.3rem);
  }

  .history-numbers .history-years sup,
  .history-numbers .history-walk sup {
    margin: 0 0 0.14em 0.08em;
    font-size: 0.36em;
    line-height: 1;
  }

  .history-numbers .history-primary .history-desktop-label,
  .history-numbers .history-years .history-desktop-label,
  .history-numbers .history-walk .history-desktop-label {
    grid-column: 1;
    grid-row: 2;
    min-height: 2.9em;
    margin: 0;
    align-self: start;
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .history-numbers .history-primary .history-mobile-label,
  .history-numbers .history-years .history-mobile-label,
  .history-numbers .history-walk .history-mobile-label,
  .history-numbers .history-years .history-mobile-value,
  .history-numbers .history-walk .history-mobile-value {
    display: none;
  }

  /* 写真全体を残し、外観・店内・一品の意味が途切れない見せ方にする。 */
  .about-gallery-viewport {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    background:
      linear-gradient(rgba(66, 43, 30, 0.1), rgba(66, 43, 30, 0.1)),
      #eee1c9;
  }

  .about-gallery-slide img,
  .about-gallery-slide.is-active img {
    object-fit: contain;
    object-position: center;
    transform: none;
    animation: none;
  }

  .about-gallery-thumbs button {
    height: 70px;
  }

  /* お品書き: 見出しは読み物幅、写真レールだけ画面いっぱい。 */
  .menu > .menu-scroller {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }

  .menu-track {
    --menu-rail-gap: clamp(1rem, 1.4vw, 1.3rem);
    padding: 0.55rem clamp(0.7rem, 1.1vw, 1rem) 1rem;
  }

  .menu-card {
    flex: 0 0 clamp(300px, 24vw, 350px);
  }

  .menu-photo,
  .menu-photo img {
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .menu-photo img {
    height: 100%;
    object-fit: cover;
  }

  .menu-body {
    padding: 1rem 1.1rem 1.15rem;
  }

  .menu-name {
    font-size: 1.2rem;
  }

  .menu-price {
    font-size: 1.05rem;
  }

  .menu-desc {
    max-height: 3.2em;
    font-size: 0.84rem;
    line-height: 1.6;
  }

  .menu-note {
    font-size: 0.78rem;
  }

  .menu-scroller.is-looping .menu-track {
    animation-duration: 96s;
  }

  /* アクセス: 地図との釣り合いは保ち、道順だけを読みやすくする。 */
  .access-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(1.5rem, 2.5vw, 2rem);
  }

  .access-copy {
    display: block;
    font-size: 1rem;
    line-height: 1.75;
  }

  .access-route {
    gap: 0.7rem;
    margin-top: 1rem;
  }

  .access-route li {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.8rem;
  }

  .access-route li > span {
    min-width: 1.8rem;
    font-size: 1.35rem;
  }

  .access-route p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .access-route strong {
    font-size: 1.05rem;
    line-height: inherit;
  }

  .access-map-link {
    min-height: 44px;
    margin-top: 0.8rem;
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
  }

  .access-map iframe {
    height: 100%;
    min-height: 420px;
    aspect-ratio: auto;
  }

  /* LINEは友だち追加を右端へ揃え、店舗情報までの間を締める。 */
  .line-signup {
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
  }

  .line-signup-card {
    width: 100%;
    max-width: none;
    grid-template-columns: 56px minmax(0, 1fr) 200px;
    padding: 1.1rem 1.4rem;
  }

  .line-signup-mark {
    width: 56px;
    height: 56px;
  }

  .line-signup-kicker {
    font-size: 0.78rem;
  }

  .line-signup-lead {
    font-size: 0.88rem;
  }

  .line-signup-action {
    width: 200px;
    justify-self: end;
  }

  .line-signup-button {
    width: 100%;
    min-height: 52px;
    display: grid;
    place-items: center;
  }
}

@media (max-width: 767px) {
  .about-gallery-viewport {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    background:
      linear-gradient(rgba(66, 43, 30, 0.1), rgba(66, 43, 30, 0.1)),
      #eee1c9;
  }

  .about-gallery-slide img,
  .about-gallery-slide.is-active img {
    object-fit: contain;
    object-position: center;
    transform: none;
    animation: none;
  }
}

/* ==========================================================
   Interactive rails and concise headings: 2026-08-04
   自動送りと、指・トラックパッドによる横操作を同じscrollLeftに統一する。
   ========================================================== */
.press-proof-head h3,
.about > .section-inner > .section-title,
.menu > .section-inner:first-child > .section-title,
.access > .section-inner > .section-title,
.info > .section-inner > .section-title {
  margin-top: 0;
}

body.theme-washi-scroll .instagram-screen > .social-rail-shell,
body.theme-washi-scroll .menu > .menu-scroller {
  overflow-x: auto !important;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-behavior: auto !important;
  scroll-snap-type: none;
  scrollbar-width: none;
  touch-action: pan-x pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

body.theme-washi-scroll .instagram-screen > .social-rail-shell:active,
body.theme-washi-scroll .menu > .menu-scroller:active,
body.theme-washi-scroll .is-user-scrolling {
  cursor: grabbing;
}

body.theme-washi-scroll .instagram-screen > .social-rail-shell::-webkit-scrollbar,
body.theme-washi-scroll .menu > .menu-scroller::-webkit-scrollbar {
  display: none;
}

body.theme-washi-scroll .social-rail,
body.theme-washi-scroll .social-rail.is-looping,
body.theme-washi-scroll .menu-track,
body.theme-washi-scroll .menu-scroller.is-looping .menu-track {
  width: max-content !important;
  max-width: none !important;
  overflow: visible !important;
  animation: none !important;
  transform: none !important;
  will-change: auto;
}

body.theme-washi-scroll .is-interactive-rail:focus-visible {
  outline: 2px solid rgba(92, 43, 39, 0.52);
  outline-offset: -2px;
}

/* アクセスの漢数字と一行目を、PC・スマホとも同じ基線に揃える。 */
.access-route {
  margin: 0.95rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.62rem;
  list-style: none;
}

.access-route li {
  min-width: 0;
  display: grid;
  grid-template-columns: 1.75rem minmax(0, 1fr);
  column-gap: 0.62rem;
  align-items: baseline;
}

.access-route li > span {
  box-sizing: border-box;
  width: 1.75rem;
  min-width: 1.75rem;
  height: auto;
  padding: 0;
  display: block;
  color: var(--azuki-deep);
  border: 0;
  background: transparent;
  font-size: 1.15rem;
  line-height: 1;
  text-align: center;
}

.access-route li > p {
  min-width: 0;
  margin: 0;
  padding: 0;
  color: #665548;
  font-size: 0.9rem;
  line-height: 1.72;
}

.access-route li > p strong {
  display: inline;
  color: var(--matcha);
  font-size: 1.12em;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .access-route {
    margin-top: 1rem;
    gap: 0.7rem;
  }

  .access-route li {
    grid-template-columns: 2rem minmax(0, 1fr);
    column-gap: 0.8rem;
  }

  .access-route li > span {
    width: 2rem;
    min-width: 2rem;
    font-size: 1.35rem;
  }

  .access-route li > p {
    font-size: 1rem;
    line-height: 1.62;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.theme-washi-scroll .instagram-screen > .social-rail-shell,
  body.theme-washi-scroll .menu > .menu-scroller {
    scroll-snap-type: x proximity;
  }

  body.theme-washi-scroll .ig-post-card,
  body.theme-washi-scroll .menu-card {
    scroll-snap-align: start;
  }
}

/* PCファーストビューは、読み物用の1180pxレールより外側まで使う。 */
@media (min-width: 768px) {
  .header-inner,
  .shiruko-hero-content {
    width: 100%;
    max-width: none;
    padding-left: clamp(1.75rem, 2.25vw, 2.25rem);
  }

  .header-inner {
    padding-right: clamp(1.75rem, 2.25vw, 2.25rem);
  }

  /* 右端の固定アクセス札と、染め和紙カードの耳が触れない余白。 */
  .shiruko-hero-content {
    padding-right: 5rem;
  }

  .site-logo {
    font-size: clamp(1.65rem, 2.2vw, 2rem);
  }
}

/* 固定アクセス札も、店内の染め和紙と同じ紙肌・不規則な耳へ揃える。 */
body.theme-washi-scroll .access-fab {
  isolation: isolate;
  width: 2.75rem;
  padding: 1rem 0.45rem;
  color: #f8edda;
  background: none;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(-0.18rem 0.28rem 0.38rem rgba(46, 31, 20, 0.28));
  transition: filter 0.2s ease, transform 0.2s ease;
}

body.theme-washi-scroll .access-fab::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -0.18rem -0.55rem -0.18rem -0.18rem;
  background:
    linear-gradient(rgba(103, 119, 67, 0.94), rgba(65, 78, 43, 0.97)),
    var(--kozo-paper);
  background-size: auto, 240px 240px;
  background-blend-mode: multiply;
  -webkit-mask: var(--washi-deckle) center / 100% 100% no-repeat;
  mask: var(--washi-deckle) center / 100% 100% no-repeat;
  transform: rotate(-0.45deg);
}

body.theme-washi-scroll .access-fab:hover,
body.theme-washi-scroll .access-fab:focus-visible {
  opacity: 1;
  filter:
    drop-shadow(-0.2rem 0.3rem 0.42rem rgba(46, 31, 20, 0.3))
    brightness(1.04);
  transform: translateX(-0.08rem);
}

@media (min-width: 768px) {
  html {
    scroll-padding-top: 4.75rem;
  }

  body.theme-washi-scroll {
    padding-top: 3.75rem;
  }

  /* PCでは、和紙の上部案内をスクロール中も残す。 */
  .site-header {
    position: fixed;
    top: 0;
    right: auto;
    left: auto;
    z-index: 100;
    width: 100%;
  }

  .header-inner {
    min-height: 3.75rem;
    gap: clamp(1.25rem, 2.5vw, 2.5rem);
    padding-top: 0.62rem;
    padding-bottom: 0.62rem;
  }

  .site-logo {
    flex: 0 0 auto;
    color: var(--azuki-deep);
    white-space: nowrap;
    text-shadow:
      0.018em 0.025em 0 rgba(72, 35, 27, 0.2),
      0 0 0.01px currentColor;
  }

  .global-nav {
    position: static;
    inset: auto;
    min-width: 0;
    margin-left: auto;
    display: block;
    overflow-x: auto;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transition: none;
    scrollbar-width: none;
  }

  .global-nav::-webkit-scrollbar {
    display: none;
  }

  .global-nav ul {
    width: max-content;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: clamp(0.7rem, 1.35vw, 1.35rem);
    text-align: left;
  }

  .global-nav li + li {
    margin-top: 0;
  }

  .global-nav a {
    padding: 0.35rem 0;
    display: block;
    color: var(--azuki-deep);
    font-size: clamp(0.82rem, 1.05vw, 0.95rem);
    line-height: 1.4;
    letter-spacing: 0.035em;
    white-space: nowrap;
    text-shadow: none;
  }

  .global-nav a:hover,
  .global-nav a:focus-visible {
    color: var(--matcha);
  }

  .shiruko-hero {
    min-height: max(650px, calc(100svh - 3.75rem));
  }

  /* PCの投稿カードと主要見出しを、MacBook Airでも一段大きく読む。 */
  .instagram-screen .social-rail .ig-post-card,
  .instagram-screen .social-rail.is-looping .ig-post-card {
    flex: 0 0 clamp(360px, 28vw, 410px);
  }

  body.theme-washi-scroll .section-title,
  body.theme-washi-scroll .press-proof-head h3 {
    font-size: clamp(2.7rem, 4.1vw, 3.7rem);
  }
}

.instagram-source-note {
  margin: 0.8rem 0 0;
  color: #65584c;
  font-size: 0.75rem;
  line-height: 1.7;
  text-align: center;
}

.press-card > .press-brand-text {
  min-width: 7.5rem;
  min-height: 2.5rem;
  padding: 0.5rem 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--azuki-deep);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-align: center;
}

@media (min-width: 768px) {
  .press-grid .press-card > .press-brand-text {
    max-width: min(58%, 15rem);
    font-size: clamp(0.88rem, 1.2vw, 1.05rem);
  }
}

.insta-account-icon {
  width: 1.35em;
  height: 1.35em;
  flex: 0 0 auto;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.insta-account-icon-dot {
  fill: currentColor;
  stroke: none;
}

.access-map-actions {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.25rem;
}

.access-map-actions .access-map-link {
  margin-top: 0;
}

/* ==========================================================
   公式SNSだけを短く見せる投稿レール: 2026-08-06
   公式写真と冒頭文だけをカードにし、全文は公式投稿へ案内する。
   ========================================================== */
.social-entry-links {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.social-entry-link {
  min-height: 44px;
  padding: 0.62rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: var(--azuki-deep);
  background: rgba(255, 250, 239, 0.86);
  border: 1px solid rgba(109, 58, 58, 0.3);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(62, 37, 24, 0.1);
}

.social-entry-link--primary {
  color: #fffaf0;
  background: var(--azuki);
  border-color: var(--azuki);
}

.social-entry-link:hover,
.social-entry-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 7px 16px rgba(62, 37, 24, 0.16);
}

.instagram-screen .social-rail {
  align-items: flex-start;
}
