/* =========================================================
   りんらん 共通スタイル
   ========================================================= */

:root {
  --c-ink:        #1a1614;
  --c-ink-soft:   #4a4340;
  --c-ivory:      #f7f3ec;
  --c-ivory-deep: #ede5d6;
  --c-red:        #8b1a1a;
  --c-red-deep:   #6e1414;
  --c-gold:       #c9a55b;
  --c-gold-deep:  #a88440;
  --c-line:       #d6cfc1;
  --c-bg:         #fffdf8;
  --c-line-green: #06c755;

  --f-display: "Noto Serif JP", "Yu Mincho", "游明朝", serif;
  --f-body:    "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;

  --maxw: 1240px;
  --pad-x: clamp(20px, 5vw, 56px);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.85;
  color: var(--c-ink);
  background: var(--c-bg);
  font-feature-settings: "palt";
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }

.display { font-family: var(--f-display); font-weight: 500; letter-spacing: 0.02em; }
.eyebrow { font-size: 11px; letter-spacing: 0.4em; color: var(--c-red); text-transform: uppercase; font-weight: 500; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad-x);
  max-width: var(--maxw); margin: 0 auto;
}
.site-logo { font-family: var(--f-display); font-size: 24px; font-weight: 600; color: var(--c-red); letter-spacing: 0.1em; }
.site-logo small { display: block; font-family: var(--f-body); font-size: 9px; letter-spacing: 0.3em; color: var(--c-ink-soft); margin-top: 2px; font-weight: 400; }

.site-nav { display: block; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 32px; }
.site-nav a { font-size: 13px; color: var(--c-ink); transition: color 0.2s; letter-spacing: 0.05em; }
.site-nav a:hover { color: var(--c-red); }
.site-nav a[aria-current="page"] { color: var(--c-red); }

.line-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--c-line-green); color: #fff;
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
}
.line-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(6,199,85,0.3); }
.line-cta::before { content: ""; width: 14px; height: 14px; background: #fff; border-radius: 50%; }

/* ===== Hamburger Nav Toggle (mobile only) ===== */
.nav-toggle {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  margin-left: 4px;
  -webkit-appearance: none;
  appearance: none;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--c-ink);
  position: absolute;
  left: 9px;
  transition: transform 0.25s, opacity 0.2s, top 0.25s;
}
.nav-toggle span:nth-child(1) { top: 11px; }
.nav-toggle span:nth-child(2) { top: 18px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 18px; transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 18px; transform: rotate(-45deg);
}
@media (min-width: 960px) {
  .nav-toggle { display: none; }
}

/* 狭幅(<480px) でヘッダー3ボタンが収まるよう詰め直し */
@media (max-width: 480px) {
  .site-header__inner { padding-left: 12px; padding-right: 12px; }
  .site-logo { font-size: 20px; letter-spacing: 0.08em; }
  .site-logo small { display: none; }
  .header-ctas { gap: 4px; }
  .tel-cta { padding: 6px 10px; font-size: 11px; }
  .line-cta { padding: 6px 12px; font-size: 11px; }
  .nav-toggle { width: 34px; height: 34px; margin-left: 2px; }
}

/* ===== Mobile dropdown nav ===== */
@media (max-width: 959px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(255, 253, 248, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--c-line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.25s ease;
    padding: 0 var(--pad-x);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  }
  .site-nav.is-open {
    max-height: 420px;
    padding: 8px var(--pad-x) 16px;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .site-nav li {
    border-bottom: 1px solid var(--c-line);
  }
  .site-nav li:last-child { border-bottom: 0; }
  .site-nav a {
    display: block;
    padding: 14px 4px;
    font-size: 14px;
    letter-spacing: 0.06em;
  }
}

/* PC ヘッダー非表示・モバイルハンバーガーのみ表示 */
.mobile-only { display: none; }
@media (max-width: 959px) {
  .mobile-only { display: list-item; }
}

/* =========================================================
   HERO (弁当主役)
   ========================================================= */
.hero {
  position: relative;
  background: var(--c-ink);
  color: var(--c-ivory);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: clamp(560px, 90vh, 820px);
  position: relative;
}
.hero__copy {
  padding: 80px var(--pad-x) 60px;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero__years {
  font-family: var(--f-display);
  font-size: clamp(38px, 6.5vw, 68px);
  line-height: 1.15; font-weight: 500;
  margin: 0 0 20px;
  letter-spacing: 0.01em;
}
.hero__years em {
  font-style: normal; color: var(--c-gold); font-size: 1.2em; padding-right: 4px;
}
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 500; line-height: 1.7;
  margin: 0 0 16px;
  color: var(--c-ivory-deep);
}
.hero__targets {
  font-size: clamp(13px, 1.4vw, 14px);
  color: var(--c-ivory-deep);
  margin: 0 0 28px;
  opacity: 0.8;
  letter-spacing: 0.04em;
}
.hero__band {
  display: inline-block;
  padding: 8px 20px;
  border-top: 1px solid var(--c-gold);
  border-bottom: 1px solid var(--c-gold);
  margin-bottom: 32px;
  font-size: clamp(12px, 1.3vw, 13px);
  letter-spacing: 0.18em;
  color: var(--c-gold);
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: 10px;
}
/* ヒーロー文字下のメニュー導線ボタン (サイト標準 .btn を使用) */
.hero__links {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 12px; margin-top: 8px;
}
.hero__visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}
.hero__visual img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--c-ink) 100%);
  pointer-events: none;
}

/* ─── ヒーロー モザイク (高解像度弁当画像のタイル) ─── */
.hero__visual--mosaic { padding: 24px var(--pad-x); }
.hero-mosaic {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 6px;
}
.hero-mosaic__cell {
  position: relative;
  overflow: hidden;
  background: var(--c-ink);
  border-radius: 2px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  transform: translateZ(0);
  display: block;
  text-decoration: none;
  color: inherit;
}
.hero-mosaic__cell::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(0,0,0,0.42) 100%);
  pointer-events: none;
  z-index: 2;
}
.hero-mosaic__cell img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}
.hero-mosaic__cell:hover img { transform: scale(1.04); }
.hero-mosaic__caption {
  position: absolute;
  left: 8px; right: 8px; bottom: 8px;
  background: rgba(20,16,14,0.78);
  backdrop-filter: blur(6px);
  color: #faf6ee;
  font-family: var(--f-display);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  padding: 7px 10px;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 3;
  pointer-events: none;
  border-radius: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-mosaic__cell:hover .hero-mosaic__caption,
.hero-mosaic__cell:focus-visible .hero-mosaic__caption {
  opacity: 1;
  transform: translateY(0);
}
/* タップ視認性ヒント (モバイル: 常時うっすら見せる) */
@media (hover: none) {
  .hero-mosaic__caption {
    opacity: 0.92;
    transform: translateY(0);
    font-size: 10.5px;
    padding: 5px 8px;
  }
}

/* オーバーレイ・グラデーションをモザイク版でも維持 */
.hero__visual--mosaic::after {
  z-index: 2;
  background: linear-gradient(180deg, transparent 70%, var(--c-ink) 100%);
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    /* PC のみ約30%縮小 (スマホは base の clamp(560px,90vh,820px) を維持) */
    min-height: clamp(360px, 56vh, 540px);
  }
  .hero__copy { padding: 52px var(--pad-x) 52px; max-width: none; }
  /* PC は見出しが大きく折返して縦長になりがち → フォント/余白を圧縮 (スマホは不変) */
  .hero__years   { font-size: clamp(36px, 4vw, 50px); line-height: 1.12; margin-bottom: 12px; }
  .hero__title   { margin-bottom: 10px; }
  .hero__targets { margin-bottom: 14px; }
  .hero__band    { margin-bottom: 18px; }
  .hero__visual::before {
    content: "";
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 200px;
    background: linear-gradient(90deg, var(--c-ink) 0%, transparent 100%);
    z-index: 1;
  }
  .hero__visual::after {
    background: linear-gradient(135deg, var(--c-ink) 0%, transparent 30%, transparent 100%);
  }
  .hero__visual--mosaic { padding: 28px var(--pad-x) 28px 0; }
  .hero__visual--mosaic::after {
    background: linear-gradient(135deg, var(--c-ink) 0%, transparent 30%, transparent 100%);
  }
  .hero-mosaic {
    min-height: 360px;
    gap: 8px;
  }
}

/* スマホ: 3列×2行 維持（バリエーション訴求） */
@media (max-width: 700px) {
  .hero-mosaic {
    min-height: 240px;
    gap: 4px;
  }
}

/* ===== B1+B2: モバイル(<900px) hero 順序反転 + コピー圧縮 ===== */
@media (max-width: 899px) {
  .hero__inner {
    min-height: auto;
  }
  .hero__copy {
    order: 2;
    padding: 28px var(--pad-x) 36px;
  }
  .hero__visual {
    order: 1;
    min-height: auto;
  }
  .hero__visual--mosaic {
    padding: 16px var(--pad-x) 0;
  }
  .hero__years {
    font-size: clamp(22px, 6vw, 32px);
    margin: 0 0 12px;
    line-height: 1.25;
    text-wrap: balance;
  }
  .hero__years em {
    font-size: 1.1em;
    padding-right: 2px;
  }
  .hero__title {
    display: none; /* スマホでは弁当・御膳のスペック行(hero__targets)に統一 */
  }
  .hero__targets {
    font-size: clamp(12px, 3.2vw, 14px);
    margin: 0 0 14px;
    line-height: 1.6;
    text-wrap: balance;
  }
  .hero__band {
    margin: 0 0 14px;
    padding: 6px 14px;
    font-size: 11px;
  }
}

/* =========================================================
   MENU RANGE (現行メニューPDF準拠ラインナップ)
   ========================================================= */
.menu-range {
  background: var(--c-ivory);
  padding: clamp(64px, 8vw, 110px) 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.menu-range__intro {
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
  padding: 0 var(--pad-x);
}
.menu-range__intro h2 {
  font-family: var(--f-display);
  font-size: clamp(22px, 3.4vw, 36px);
  font-weight: 500;
  line-height: 1.45;
  margin: 12px 0 8px;
  letter-spacing: 0.02em;
  text-wrap: balance;
}
.menu-range__lead {
  color: var(--c-ink-soft);
  font-size: clamp(14px, 1.5vw, 15px);
  margin: 0;
}
.menu-range__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 2vw, 18px);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
@media (min-width: 720px) {
  .menu-range__grid { gap: 22px; }
}
@media (min-width: 1100px) {
  .menu-range__grid { grid-template-columns: repeat(4, 1fr); }
}
.range-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-top: 3px solid var(--c-red);
  padding: clamp(16px, 3.5vw, 32px) clamp(12px, 3vw, 26px) clamp(16px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.5vw, 12px);
}
.range-card__num {
  font-family: var(--f-display);
  font-size: clamp(34px, 3.4vw, 42px);
  line-height: 1;
  color: var(--c-red);
  margin: 0;
  letter-spacing: 0.02em;
}
.range-card__num em {
  font-style: normal;
  font-size: 0.45em;
  color: var(--c-ink);
  margin-left: 4px;
  letter-spacing: 0.1em;
}
.range-card__title {
  font-family: var(--f-display);
  font-size: clamp(14px, 1.9vw, 20px);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--c-line);
  padding-bottom: clamp(8px, 1.5vw, 12px);
  text-wrap: balance;
}
.range-card__items {
  font-size: clamp(11.5px, 1.4vw, 13px);
  line-height: 1.8;
  color: var(--c-ink);
  margin: 0;
}
.range-card__list {
  display: block;
  margin-top: 8px;
  font-size: clamp(10.5px, 1.3vw, 12px);
  color: var(--c-ink-soft);
  line-height: 1.75;
}
.menu-range__note {
  max-width: var(--maxw);
  margin: 24px auto 0;
  padding: 0 var(--pad-x);
  text-align: center;
  font-size: 12px;
  color: var(--c-ink-soft);
}

/* ===== Menu Range ナビ (Signature Bento と外部 menu-bento.html への導線) ===== */
.menu-range__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px clamp(16px, 2.5vw, 28px);
  max-width: var(--maxw);
  margin: clamp(16px, 2vw, 22px) auto clamp(22px, 3vw, 36px);
  padding: 0 var(--pad-x);
}
.menu-range__nav a {
  font-size: clamp(12.5px, 1.4vw, 13.5px);
  color: var(--c-red);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.menu-range__nav a:hover { opacity: 0.65; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 26px;
  font-size: 14px; font-weight: 500;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  letter-spacing: 0.05em;
  min-width: 180px;
}
.btn--primary { background: var(--c-red); color: #fff; }
.btn--primary:hover { background: var(--c-red-deep); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(139,26,26,0.35); }
.btn--ghost { background: transparent; color: var(--c-ivory); border-color: var(--c-ivory-deep); }
.btn--ghost:hover { background: rgba(247,243,236,0.1); }
.btn--gold { background: transparent; color: var(--c-gold); border: 1px solid var(--c-gold); }
.btn--gold:hover { background: var(--c-gold); color: var(--c-ink); }
.btn--line { background: var(--c-line-green); color: #fff; }
.btn--line:hover { background: #05a847; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(6,199,85,0.35); }
.btn--line::before { content: ""; width: 16px; height: 16px; background: #fff; border-radius: 50%; }

/* =========================================================
   SECTION
   ========================================================= */
.section { padding: 96px 0; }
/* 「お客様の声」→「店舗情報」間の余白を詰める (この境界のみ) */
#voices { padding-bottom: clamp(40px, 5vw, 56px); }
#access { padding-top: clamp(40px, 5vw, 56px); }
.section--alt { background: var(--c-ivory); }
.section--dark { background: var(--c-ink); color: var(--c-ivory); }
.section--narrow { padding: 64px 0; }

.section__head { margin-bottom: 64px; max-width: 720px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500; line-height: 1.4;
  margin: 14px 0 18px;
}
.section__lead {
  font-size: clamp(15px, 1.5vw, 16px);
  color: var(--c-ink-soft);
  margin: 0;
}
.section--dark .section__lead { color: var(--c-ivory-deep); }

/* =========================================================
   SIGNATURE BENTO (仕出し高級弁当 — 1品ずつスポットライト)
   ========================================================= */
.signature {
  background: var(--c-ink);
  color: var(--c-ivory);
  padding: 96px 0 0;
}
.signature__intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 80px;
  padding: 0 var(--pad-x);
}
.signature__intro .eyebrow { color: var(--c-gold); }
.signature__intro h2 {
  font-family: var(--f-display);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 500; line-height: 1.4;
  margin: 14px 0 18px;
}
.signature__intro p {
  font-size: 15px;
  color: var(--c-ivory-deep);
  margin: 0;
  line-height: 1.95;
}

.signature__footer {
  text-align: center;
  padding: 64px var(--pad-x) 96px;
  border-top: 1px solid rgba(247,243,236,0.08);
  background: var(--c-ink);
}
.signature__footer p {
  font-size: 14px; color: var(--c-ivory-deep);
  margin: 0 0 24px;
}

/* =========================================================
   BENTO GRID (一覧把握型)
   ========================================================= */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 2vw, 18px);
  margin-bottom: 64px;
}
@media (min-width: 640px) {
  .bento-grid { gap: 22px; }
}
@media (min-width: 1000px) {
  .bento-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

.bento-card {
  background: rgba(247,243,236,0.04);
  border: 1px solid rgba(247,243,236,0.08);
  overflow: hidden;
}
/* メニュー写真は静的表示。ホバーで動かさない (注文ボタンと誤認させない) */
.bento-card__link {
  display: block;
  height: 100%;
  color: inherit;
}
.bento-card__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.bento-card__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.bento-card__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--c-gold);
  color: var(--c-ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  padding: 5px 12px;
  z-index: 2;
}
.bento-card__body {
  padding: clamp(12px, 3vw, 20px) clamp(12px, 3vw, 22px) clamp(14px, 3.5vw, 24px);
}
.bento-card__cat {
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--c-gold);
  text-transform: uppercase;
  margin: 0 0 8px;
}
.bento-card__name {
  font-family: var(--f-display);
  font-size: clamp(16px, 1.9vw, 19px);
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 8px;
  color: var(--c-ivory);
  letter-spacing: 0.02em;
}
.bento-card__lead {
  font-size: 13px;
  line-height: 1.75;
  color: var(--c-ivory-deep);
  margin: 0 0 14px;
  opacity: 0.85;
}
.bento-card__price {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--c-gold);
  margin: 0;
  letter-spacing: 0.02em;
}
.bento-card__price em {
  font-style: normal;
  font-size: 12px;
  color: var(--c-ivory-deep);
  padding-left: 4px;
}

/* =========================================================
   SIGNATURE > PRICE RANGE (signature 内に統合された価格レンジ)
   ========================================================= */
.signature__plan {
  margin-top: 8px;
  padding: 56px 0 0;
  border-top: 1px solid rgba(247,243,236,0.1);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 800px) {
  .signature__plan { grid-template-columns: 5fr 7fr; gap: 48px; }
}
.signature__plan-head .eyebrow { color: var(--c-gold); margin-bottom: 8px; }
.signature__plan-head h3 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 500;
  color: var(--c-ivory);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.signature__plan-head p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--c-ivory-deep);
  margin: 0;
  opacity: 0.9;
}
.signature__plan-tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-top: 8px;
}
.signature__plan-tiers .plan-tier {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  align-items: center;
  padding: clamp(14px, 3vw, 22px) clamp(14px, 3vw, 24px);
  text-align: left;
  background: rgba(247,243,236,0.04);
  border: 1px solid rgba(247,243,236,0.12);
  transition: background 0.25s ease;
}
@media (min-width: 760px) {
  .signature__plan-tiers {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .signature__plan-tiers .plan-tier {
    border-bottom-width: 0;
  }
  .signature__plan-tiers .plan-tier:last-child {
    border-bottom-width: 1px;
  }
}
.signature__plan-tiers .plan-tier:hover {
  background: rgba(247,243,236,0.08);
}
.signature__plan-tiers .plan-tier__name {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--c-gold);
  margin: 0;
}
.signature__plan-tiers .plan-tier__detail { display: flex; flex-direction: column; gap: 2px; }
.signature__plan-tiers .plan-tier__use {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-ivory);
  margin: 0;
  letter-spacing: 0.04em;
}
.signature__plan-tiers .plan-tier__example {
  font-size: 12px;
  color: var(--c-ivory-deep);
  opacity: 0.75;
  margin: 0;
  line-height: 1.6;
}
.signature__plan-tiers .plan-tier__price {
  font-family: var(--f-display);
  font-size: clamp(15px, 2.4vw, 22px);
  color: var(--c-gold);
  margin: 6px 0 0;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.signature__plan-tiers .plan-tier__price em {
  font-style: normal;
  font-size: clamp(9px, 1.2vw, 11px);
  color: var(--c-ivory-deep);
  padding-left: 4px;
  letter-spacing: 0.06em;
}
@media (min-width: 760px) {
  .signature__plan-tiers .plan-tier {
    grid-template-columns: 130px 1fr auto;
    gap: 28px;
    padding: 22px 32px;
  }
  .signature__plan-tiers .plan-tier__price {
    margin: 0;
    font-size: 24px;
  }
}

.signature__footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* =========================================================
   FLEX-PROMISE (柔軟性訴求 — 吹き出し型)
   ========================================================= */
.flex-promise {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--c-bg);
}
.flex-promise__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.flex-promise__head {
  text-align: center;
  margin-bottom: 56px;
}
.flex-promise__head h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  margin: 14px 0 0;
  line-height: 1.4;
  color: var(--c-ink);
  letter-spacing: 0.02em;
}
.flex-promise__head h2 em {
  font-style: normal;
  color: var(--c-red);
  border-bottom: 2px solid var(--c-gold);
  padding: 0 2px 4px;
}
.flex-bubbles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 2.5vw, 22px);
}
@media (min-width: 720px) {
  .flex-bubbles { column-gap: 28px; }
}
.flex-bubble {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.flex-bubble__ask,
.flex-bubble__reply {
  position: relative;
  margin: 0;
  padding: clamp(10px, 2vw, 13px) clamp(12px, 2.5vw, 18px);
  border-radius: 16px;
  font-size: clamp(12.5px, 1.6vw, 14px);
  line-height: 1.7;
  max-width: 92%;
}
.flex-bubble__ask {
  background: var(--c-ivory-deep);
  color: var(--c-ink);
  font-family: var(--f-display);
  font-weight: 500;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.flex-bubble__ask::before {
  content: "";
  position: absolute;
  left: -8px; bottom: 6px;
  border: 7px solid transparent;
  border-right-color: var(--c-ivory-deep);
}
.flex-bubble__reply {
  background: #fff;
  color: var(--c-ink-soft);
  border: 1px solid var(--c-line);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-size: 13px;
}
.flex-bubble__reply::after {
  content: "";
  position: absolute;
  right: -8px; bottom: 6px;
  border: 7px solid transparent;
  border-left-color: #fff;
  z-index: 2;
}
.flex-bubble__reply::before {
  content: "";
  position: absolute;
  right: -10px; bottom: 5px;
  border: 8px solid transparent;
  border-left-color: var(--c-line);
  z-index: 1;
}
.flex-bubble__reply strong {
  color: var(--c-red);
  font-weight: 700;
}


/* =========================================================
   DELIVERY MENU PREVIEW (出前メニュー一覧・カテゴリ別)
   ========================================================= */
.menu-preview {
  padding: clamp(32px, 4vw, 56px) 0 clamp(64px, 8vw, 110px);
  background: var(--c-bg);
}
.menu-preview__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}
.menu-preview__head h2 {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 500;
  margin: 12px 0 18px;
  line-height: 1.4;
  color: var(--c-ink);
  letter-spacing: 0.02em;
}
.menu-preview__head p {
  font-size: 14px;
  line-height: 1.95;
  color: var(--c-ink-soft);
  margin: 0;
}
.menu-preview__category {
  margin-bottom: clamp(40px, 5vw, 56px);
}
.menu-preview__category-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 0 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--c-line);
}
@media (min-width: 720px) {
  .menu-preview__category-head {
    flex-direction: row;
    align-items: baseline;
    gap: 24px;
  }
}
.menu-preview__category-head h3 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  color: var(--c-ink);
  letter-spacing: 0.06em;
  white-space: nowrap;
  position: relative;
  padding-left: 14px;
}
.menu-preview__category-head h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--c-red);
}
.menu-preview__category-head p {
  font-size: 12.5px;
  color: var(--c-ink-soft);
  margin: 0;
  line-height: 1.7;
}
.dish-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 640px) {
  .dish-row { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (min-width: 900px) {
  .dish-row { grid-template-columns: repeat(4, 1fr); }
}
.dish-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--c-line);
  overflow: hidden;
}
/* メニュー写真は静的表示。ホバーで動かさない (注文ボタンと誤認させない) */
.dish-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.dish-card figcaption {
  padding: 10px 12px;
  font-size: 13px;
  text-align: center;
  color: var(--c-ink);
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.menu-preview__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}
.menu-preview__notes {
  list-style: none;
  padding: 24px;
  margin: 32px auto 0;
  max-width: 720px;
  background: var(--c-ivory);
  border-left: 3px solid var(--c-gold);
  font-size: 12.5px;
  line-height: 1.95;
  color: var(--c-ink-soft);
}
.menu-preview__notes li { margin-bottom: 4px; }
.menu-preview__notes li:last-child { margin-bottom: 0; }
.menu-preview__notes strong { color: var(--c-red); font-weight: 600; }

/* =========================================================
   MEDIA SECTION
   ========================================================= */
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 3vw, 40px);
}
.media-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(8px, 1.5vw, 16px);
  align-items: center;
}
.media-card img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
}
.media-card__label { font-size: clamp(10px, 1.2vw, 11px); letter-spacing: 0.3em; color: var(--c-red); }
.media-card__title { font-family: var(--f-display); font-size: clamp(14px, 2vw, 22px); font-weight: 500; margin: 6px 0; line-height: 1.45; }
.media-card__body { font-size: clamp(12px, 1.5vw, 14px); color: var(--c-ink-soft); margin: 0; line-height: 1.85; }
@media (min-width: 800px) {
  .media-grid { gap: 56px 40px; }
  .media-card:nth-child(odd) { grid-template-columns: 5fr 4fr; }
  .media-card:nth-child(even) { grid-template-columns: 4fr 5fr; }
  .media-card:nth-child(even) img { order: 2; }
}

/* =========================================================
   VOICE (Google口コミ)
   ========================================================= */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2vw, 20px);
  margin-bottom: 32px;
}
.voice-grid .voice-card:nth-child(3) {
  grid-column: 1 / -1;
}
.voice-card {
  background: #fff;
  padding: clamp(16px, 3vw, 28px);
  border-left: 3px solid var(--c-gold);
}
.voice-card__stars { color: var(--c-gold); letter-spacing: 0.1em; margin-bottom: 12px; }
.voice-card__body { font-size: clamp(12.5px, 1.5vw, 14px); line-height: 1.9; margin: 0 0 14px; color: var(--c-ink); }
.voice-card__meta { font-size: clamp(11px, 1.3vw, 12px); color: var(--c-ink-soft); }
@media (min-width: 700px) {
  .voice-grid { grid-template-columns: 1fr 1fr 1fr; }
  .voice-grid .voice-card:nth-child(3) { grid-column: auto; }
}

/* =========================================================
   STORE INFO
   ========================================================= */
.store-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.store-info__map iframe { width: 100%; aspect-ratio: 4 / 3; border: 0; }
.store-info dl { margin: 0; }
.store-info dt { font-size: 11px; letter-spacing: 0.25em; color: var(--c-red); margin-top: 22px; }
.store-info dt:first-child { margin-top: 0; }
.store-info dd { margin: 6px 0 0; font-size: 15px; line-height: 1.85; }
@media (min-width: 800px) { .store-info { grid-template-columns: 1fr 1fr; gap: 64px; } }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--c-ink);
  color: var(--c-ivory-deep);
  padding: 64px 0 32px;
  font-size: 14px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
  margin-bottom: 48px;
}
.site-footer__grid > div:first-child {
  grid-column: 1 / -1;
}
@media (min-width: 800px) {
  .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
  .site-footer__grid > div:first-child { grid-column: auto; }
}
.site-footer__logo { font-family: var(--f-display); font-size: 24px; color: var(--c-gold); margin-bottom: 12px; letter-spacing: 0.1em; }
.site-footer__addr { font-size: 13px; line-height: 1.95; opacity: 0.85; }
.site-footer h4 { font-size: 11px; letter-spacing: 0.3em; color: var(--c-gold); margin: 0 0 16px; font-weight: 500; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 4px 0; }
.site-footer a:hover { color: var(--c-gold); }
.site-footer__bottom {
  border-top: 1px solid rgba(247,243,236,0.15);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: 12px; opacity: 0.6;
}

.subtle-link { color: var(--c-ivory-deep); border-bottom: 1px solid rgba(247,243,236,0.3); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.subtle-link:hover { color: var(--c-gold); border-color: var(--c-gold); }

/* =========================================================
   FULL MENU (個別配達カテゴリ別 写真+品名リスト)
   ========================================================= */
.full-menu {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--c-bg);
}
.full-menu__category {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.full-menu__cat-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 18px;
  align-items: baseline;
  padding-bottom: 18px;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--c-ink);
}
.full-menu__cat-num {
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0.32em;
  color: var(--c-red);
  margin: 0;
  grid-row: span 2;
  align-self: center;
  font-weight: 600;
}
.full-menu__cat-head h2 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.04em;
}
.full-menu__cat-head p {
  font-size: 13px;
  color: var(--c-ink-soft);
  margin: 0;
  line-height: 1.7;
}
.full-menu__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.full-menu__photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
@media (min-width: 720px) {
  .full-menu__photos { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px; }
}
.full-menu__photos figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--c-line);
  overflow: hidden;
}
.full-menu__photos img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.full-menu__photos figcaption {
  padding: 8px 10px;
  font-size: 12.5px;
  text-align: center;
  color: var(--c-ink);
  line-height: 1.45;
  font-weight: 500;
}
.full-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--c-line);
  border-top: 3px solid var(--c-red);
}
.full-menu__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 14px 22px;
  border-bottom: 1px dashed var(--c-line);
  font-size: 15.5px;
  line-height: 1.65;
}
.full-menu__list li:last-child { border-bottom: 0; }
.full-menu__list li span { color: var(--c-ink); }
.full-menu__list li em {
  font-style: normal;
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--c-red);
  white-space: nowrap;
  font-weight: 600;
}
.full-menu__list--two {
  columns: 1;
  display: block;
  padding: 6px 0;
}
@media (min-width: 540px) {
  .full-menu__list--two { columns: 2; column-gap: 0; }
}
@media (min-width: 960px) {
  .full-menu__list--two { columns: 3; }
}
.full-menu__list--two li {
  break-inside: avoid;
  border-bottom: 1px dashed var(--c-line);
  padding: 12px 22px;
  font-size: 14.5px;
}
.full-menu__pdf-note {
  text-align: center;
  margin: 32px 0 0;
  padding: 16px;
  background: var(--c-ivory);
  border-left: 3px solid var(--c-gold);
  font-size: 13px;
  color: var(--c-ink-soft);
  line-height: 1.85;
}

/* =========================================================
   ORDER INFO (個別配達ページ・受付情報)
   ========================================================= */
.order-info {
  background: #fff;
  border: 1px solid var(--c-line);
  padding: clamp(28px, 4vw, 40px);
}
.order-info__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 20px;
  margin: 0;
}
@media (min-width: 720px) {
  .order-info__list {
    grid-template-columns: 200px 1fr;
    row-gap: 20px;
  }
}
.order-info__list dt {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-red);
  letter-spacing: 0.06em;
  margin: 0;
  padding-top: 2px;
}
.order-info__list dd {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--c-ink);
}
@media (min-width: 720px) {
  .order-info__list dd { margin: 0; padding-bottom: 16px; border-bottom: 1px dashed var(--c-line); }
  .order-info__list dt { padding-bottom: 16px; border-bottom: 1px dashed var(--c-line); }
  .order-info__list > *:nth-last-child(1),
  .order-info__list > *:nth-last-child(2) { border-bottom: 0; padding-bottom: 0; }
}
.order-info__list dd strong {
  color: var(--c-red);
  font-weight: 600;
}

/* =========================================================
   PAGE HERO (内ページ用コンパクトヒーロー)
   ========================================================= */
.page-hero {
  background: var(--c-ink);
  color: var(--c-ivory);
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero .eyebrow { color: var(--c-gold); margin-bottom: 14px; display: inline-block; }
.page-hero__title {
  font-family: var(--f-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  margin: 0 0 20px;
  letter-spacing: 0.04em;
}
.page-hero__lead {
  font-size: 15px;
  color: var(--c-ivory-deep);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.95;
}

/* =========================================================
   PLAN DETAIL (法人プラン詳細)
   ========================================================= */
.plan-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 56px 0;
  border-bottom: 1px solid var(--c-line);
}
.plan-detail:last-of-type { border-bottom: none; }
.plan-detail__head .eyebrow { display: block; margin-bottom: 14px; }
.plan-detail__name {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.6vw, 36px);
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 16px;
  letter-spacing: 0.04em;
}
.plan-detail__name-jp {
  display: block;
  font-size: 16px;
  color: var(--c-ink-soft);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 6px;
}
.plan-detail__price {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--c-red);
  margin: 0;
}
.plan-detail__price em { font-style: normal; font-size: 14px; color: var(--c-ink-soft); padding-left: 4px; }
.plan-detail__lead {
  font-family: var(--f-display);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
  margin: 0 0 16px;
  color: var(--c-ink);
}
.plan-detail__desc {
  font-size: 15px;
  line-height: 2;
  color: var(--c-ink-soft);
  margin: 0 0 24px;
}
.plan-detail__spec {
  margin: 0;
  border-top: 1px solid var(--c-line);
  padding-top: 20px;
}
.plan-detail__spec dt {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--c-red);
  margin-top: 16px;
}
.plan-detail__spec dt:first-child { margin-top: 0; }
.plan-detail__spec dd {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.85;
}
@media (min-width: 800px) {
  .plan-detail { grid-template-columns: 4fr 7fr; gap: 64px; }
  .plan-detail__head { position: sticky; top: 80px; align-self: start; }
}
.plan-detail__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 0 0 28px;
}
.plan-detail__gallery figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plan-detail__gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.plan-detail__gallery figcaption {
  font-size: 11px;
  color: var(--c-ink-soft);
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.5;
}

/* =========================================================
   CASE GRID
   ========================================================= */
.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.case-card {
  background: #fff;
  padding: 32px;
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-red);
}
.case-card__num { font-size: 11px; letter-spacing: 0.3em; color: var(--c-red); margin: 0 0 12px; }
.case-card__title { font-family: var(--f-display); font-size: 20px; font-weight: 500; margin: 0 0 12px; line-height: 1.5; }
.case-card__body { font-size: 14px; line-height: 1.95; color: var(--c-ink-soft); margin: 0; }
@media (min-width: 700px) { .case-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }

/* =========================================================
   AREA GRID
   ========================================================= */
.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.area-grid__map iframe { width: 100%; aspect-ratio: 4 / 3; border: 0; }
.area-grid__title { font-family: var(--f-display); font-size: 20px; font-weight: 500; margin: 0 0 16px; }
.area-grid p { font-size: 15px; line-height: 1.95; margin: 0 0 20px; }
.area-grid p strong { display: block; color: var(--c-red); font-size: 13px; letter-spacing: 0.15em; margin-bottom: 6px; font-weight: 500; }
@media (min-width: 800px) { .area-grid { grid-template-columns: 5fr 4fr; gap: 56px; } }

/* =========================================================
   TERMS
   ========================================================= */
.terms { margin: 0; max-width: 880px; }
.terms dt {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--c-ink);
  margin-top: 32px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-line);
}
.terms dt:first-child { margin-top: 0; }
.terms dd {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 2;
  color: var(--c-ink-soft);
}

/* =========================================================
   FORM
   ========================================================= */
.quote-form {
  max-width: 720px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 28px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.form-group label .required {
  color: var(--c-red);
  font-size: 11px;
  margin-left: 6px;
  letter-spacing: 0.1em;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="datetime-local"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--c-line);
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--c-ink);
  transition: border-color 0.2s;
}
/* 配達希望日 (date) + お届け時間帯 (select) を横並び。狭幅では縦積み */
.dt-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 460px) { .dt-fields { grid-template-columns: 1fr; } }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-red);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) { .form-row { grid-template-columns: 1fr 1fr; gap: 24px; } }
.form-submit {
  text-align: center;
  margin-top: 40px;
}
.form-submit .btn { padding: 18px 56px; min-width: 240px; }
.form-note {
  background: var(--c-ivory);
  padding: 20px 24px;
  border-left: 3px solid var(--c-gold);
  font-size: 13px;
  line-height: 1.85;
  color: var(--c-ink-soft);
  margin-bottom: 32px;
}
/* 日時クイック選択 */
.dt-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px;
}
.dt-quick button {
  font-family: inherit;
  font-size: 12.5px;
  color: var(--c-ink);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
  transition: all 0.15s;
  letter-spacing: 0.04em;
}
.dt-quick button:hover {
  border-color: var(--c-red);
  color: var(--c-red);
}
.dt-quick button.dt-quick__clear {
  color: var(--c-ink-soft);
  background: transparent;
  border-style: dashed;
}
/* 保存チェック */
.form-remember {
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  padding: 14px 18px;
  margin-bottom: 24px;
}
.form-remember__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13.5px;
  line-height: 1.6;
}
.form-remember__row input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}
.form-remember__note {
  margin: 8px 0 0 26px;
  font-size: 11.5px;
  color: var(--c-ink-soft);
  line-height: 1.65;
}

/* 規約同意 (必須) */
.form-consent {
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-gold, #b48a3c);
  padding: 14px 18px;
  margin-bottom: 24px;
}
.form-consent__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13.5px;
  line-height: 1.6;
}
.form-consent__row input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}
.form-consent__note {
  margin: 6px 0 0 26px;
  font-size: 11.5px;
  color: var(--c-ink-soft);
  line-height: 1.65;
}

/* =========================================================
   THANKS PAGE
   ========================================================= */
.thanks {
  text-align: center;
  padding: 120px 0;
}
.thanks__icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--c-red);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin-bottom: 32px;
}
.thanks__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  margin: 0 0 24px;
}
.thanks__lead {
  font-size: 16px;
  line-height: 2;
  color: var(--c-ink-soft);
  max-width: 640px;
  margin: 0 auto 40px;
}
.thanks__line-cta {
  background: var(--c-ivory);
  padding: 32px;
  margin: 40px auto 0;
  max-width: 640px;
  border: 1px solid var(--c-line);
}
.thanks__line-cta h2 { font-family: var(--f-display); font-size: 18px; font-weight: 500; margin: 0 0 12px; }
.thanks__line-cta p { font-size: 14px; color: var(--c-ink-soft); margin: 0 0 20px; line-height: 1.85; }

/* =========================================================
   DELIVERY (個別配達ページ)
   ========================================================= */
.menu-pdf {
  background: var(--c-ivory);
  padding: 48px;
  text-align: center;
  border: 1px solid var(--c-line);
}
.menu-pdf h3 { font-family: var(--f-display); font-size: 22px; font-weight: 500; margin: 0 0 12px; }
.menu-pdf p { font-size: 14px; color: var(--c-ink-soft); margin: 0 0 20px; }
.menu-pdf__buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.daily-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.daily-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}
.daily-card img { aspect-ratio: 4 / 3; object-fit: cover; }
.daily-card__name { font-family: var(--f-display); font-size: 20px; font-weight: 500; margin: 8px 0 8px; }
.daily-card__desc { font-size: 14px; color: var(--c-ink-soft); line-height: 1.95; margin: 0 0 8px; }
.daily-card__price { font-family: var(--f-display); font-size: 18px; color: var(--c-red); margin: 0; }
@media (min-width: 700px) {
  .daily-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .daily-card { grid-template-columns: 4fr 5fr; }
}
@media (min-width: 1000px) {
  .daily-grid { grid-template-columns: 1fr 1fr 1fr; }
  .daily-card { grid-template-columns: 1fr; }
}

.portals {
  background: var(--c-ivory);
}
.portals__group h3 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 16px;
}
.portals__group p.note { margin-bottom: 20px; }
.portals__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
}
.portals__list li {
  background: #fff;
  padding: 16px 20px;
  border: 1px solid var(--c-line);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.portals__list--secondary li {
  background: transparent;
  opacity: 0.65;
  font-size: 12px;
}
@media (min-width: 700px) { .portals__list { grid-template-columns: repeat(5, 1fr); } }


/* =========================================================
   FADE-IN (IntersectionObserver)
   ========================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   UTILITY
   ========================================================= */
.center { text-align: center; }
.text-link { color: var(--c-red); border-bottom: 1px solid currentColor; padding-bottom: 1px; transition: opacity 0.2s; }
.text-link:hover { opacity: 0.7; }
.section-cta { margin-top: 32px; text-align: center; }
.note { font-size: 12px; color: var(--c-ink-soft); }

/* =========================================================
   HEADER TEL CTA (電話番号 常設ボタン・全幅で表示)
   ========================================================= */
.tel-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-red);
  color: #fff;
  padding: clamp(6px, 1.5vw, 8px) clamp(10px, 2.5vw, 14px);
  border-radius: 999px;
  font-size: clamp(11.5px, 1.5vw, 13px);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: var(--f-display);
  white-space: nowrap;
}
.tel-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(139,26,26,0.3); }
.tel-cta:active { transform: translateY(0); }
.tel-cta::before {
  content: "☎";
  font-size: clamp(13px, 1.6vw, 14px);
  line-height: 1;
}
.tel-cta__sub {
  display: none;
  font-size: 10px;
  letter-spacing: 0.08em;
  margin-right: 4px;
  opacity: 0.85;
  font-family: var(--f-body);
  font-weight: 400;
}
@media (min-width: 960px) {
  .tel-cta__sub { display: inline; }
}
.header-ctas {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* =========================================================
   RANGE KEYS (Menu Range サブ訴求 6キーワード)
   Mobile 3×2 / Desktop 6×1 — 縦長化させない
   ========================================================= */
.range-keys {
  list-style: none;
  margin: clamp(36px, 4.5vw, 56px) 0 0;
  padding: clamp(28px, 3.5vw, 40px) 0 0;
  border-top: 1px solid var(--c-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (min-width: 720px) {
  .range-keys {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }
}
.range-keys__item {
  background: var(--c-ivory);
  border-top: 3px solid var(--c-gold);
  text-align: center;
  padding: clamp(14px, 2vw, 22px) 4px;
  font-family: var(--f-display);
  font-size: clamp(13.5px, 1.6vw, 17px);
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: 0.04em;
  line-height: 1.45;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(64px, 8vw, 88px);
}
/* 静的な情報表示。ホバーで動かさない/色を変えない (クリック可と誤認させない) */

/* =========================================================
   CATEGORY PRICE RANGE BADGE (delivery カテゴリ価格レンジ)
   ========================================================= */
.cat-price-range {
  display: inline-block;
  background: var(--c-gold);
  color: #1a1614;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 3px;
  margin-left: 12px;
  vertical-align: middle;
  font-family: var(--f-display);
}
@media (max-width: 640px) {
  .cat-price-range { display: block; margin: 6px 0 0; }
}

/* =========================================================
   FAX CTA BOX (corporate Terms直後ボタン)
   ========================================================= */
.fax-cta-box {
  margin: 40px auto 0;
  max-width: 720px;
  background: var(--c-ivory);
  border-left: 4px solid var(--c-gold);
  padding: 28px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.fax-cta-box__text { flex: 1; min-width: 220px; }
.fax-cta-box__text h3 {
  font-family: var(--f-display);
  font-size: 18px;
  margin: 0 0 6px;
  letter-spacing: 0.04em;
}
.fax-cta-box__text p {
  font-size: 13px;
  color: var(--c-ink-soft);
  margin: 0;
  line-height: 1.75;
}
.fax-cta-box__btn {
  background: var(--c-red);
  color: #fff;
  padding: 14px 24px;
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.fax-cta-box__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(139,26,26,0.3);
}

/* =========================================================
   PRICE TAX NOTE (税込/税抜 二重表記)
   ========================================================= */
.price-tax-note {
  display: block;
  font-size: clamp(9px, 1.1vw, 10.5px);
  color: var(--c-ink-soft);
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: 0;
  white-space: nowrap;
}
.signature__plan-tiers .price-tax-note {
  color: var(--c-ivory-deep);
  opacity: 0.7;
}

/* =========================================================
   NEWS LIST (お知らせ一覧)
   ========================================================= */
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--c-line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.news-item:first-child { padding-top: 0; }
.news-item:last-child { border-bottom: 0; }
.news-item__meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.news-item__date {
  font-family: var(--f-display);
  font-size: 14px;
  color: var(--c-red);
  letter-spacing: 0.08em;
}
.news-item__cat {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-ink-soft);
  border: 1px solid var(--c-line);
  padding: 3px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}
.news-item__title {
  font-family: var(--f-display);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
.news-item__body {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.95;
  color: var(--c-ink-soft);
}

/* =========================================================
   HERO NEWS (ヒーロー直下のヘッドライン 最新2件)
   ========================================================= */
.hero-news {
  background: var(--c-ivory, #f8f4ee);
  border-bottom: 1px solid var(--c-line);
  padding: 18px 0;
}
.hero-news__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-news__label {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--c-red);
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-news__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
}
.hero-news__list a {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-size: 13.5px;
  color: var(--c-ink);
  transition: color 0.2s;
  text-decoration: none;
}
.hero-news__list a:hover { color: var(--c-red); }
.hero-news__list time {
  font-family: var(--f-display);
  font-size: 12px;
  color: var(--c-ink-soft);
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.hero-news__more {
  font-size: 12px;
  color: var(--c-ink-soft);
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 1px solid var(--c-line);
  padding-bottom: 1px;
}
.hero-news__more:hover {
  color: var(--c-red);
  border-color: var(--c-red);
}
@media (max-width: 640px) {
  .hero-news__list { gap: 12px; flex-direction: column; }
  .hero-news__list a { font-size: 13px; }
}

/* =========================================================
   JOB DETAIL (求人) - plan-detail と同パターン
   ========================================================= */
.job-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 56px 0;
  border-bottom: 1px solid var(--c-line);
}
.job-detail:last-of-type { border-bottom: none; }
.job-detail__head .eyebrow { display: block; margin-bottom: 14px; }
.job-detail__name {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 16px;
  letter-spacing: 0.04em;
}
.job-detail__name-jp {
  display: block;
  font-size: 16px;
  color: var(--c-ink-soft);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 6px;
}
.job-detail__price {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--c-red);
  margin: 0;
}
.job-detail__price em { font-style: normal; font-size: 14px; color: var(--c-ink-soft); padding-left: 4px; }
.job-detail__lead {
  font-family: var(--f-display);
  font-size: clamp(17px, 1.9vw, 20px);
  line-height: 1.7;
  margin: 0 0 20px;
  color: var(--c-ink);
}
.job-detail__spec {
  margin: 0;
  border-top: 1px solid var(--c-line);
  padding-top: 20px;
}
.job-detail__spec dt {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--c-red);
  margin-top: 16px;
}
.job-detail__spec dt:first-child { margin-top: 0; }
.job-detail__spec dd {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.85;
}
@media (min-width: 800px) {
  .job-detail { grid-template-columns: 4fr 7fr; gap: 64px; }
  .job-detail__head { position: sticky; top: 80px; align-self: start; }
}
.recruit-badge {
  display: inline-block;
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--c-red);
  border: 1px solid var(--c-red);
  padding: 6px 14px;
  border-radius: 2px;
  background: rgba(139, 26, 26, 0.04);
}

/* =========================================================
   MENU PATHS (2系統選択 — menu.html ハブ / index ミニ版 共通)
   ========================================================= */
/* スマホでも崩れないよう常に2列・中央寄せ・文言最小 */
.menu-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 2.4vw, 24px);
}

.path-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-top: 3px solid var(--c-red);
  border-radius: 3px;
  padding: clamp(14px, 3.2vw, 30px);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.path-card:hover { box-shadow: 0 12px 30px rgba(26,22,20,0.10); transform: translateY(-3px); }
.path-card--soshoku { border-top-color: var(--c-gold-deep); }

.path-card__eyebrow {
  font-size: clamp(9px, 2.4vw, 11px);
  letter-spacing: 0.1em;
  color: var(--c-gold-deep);
  font-weight: 500;
  margin: 0 0 6px;
}
.path-card--haitatsu .path-card__eyebrow { color: var(--c-red); }
.path-card__title {
  font-family: var(--f-display);
  font-size: clamp(16px, 4.4vw, 25px);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  line-height: 1.3;
}
.path-card__sub { font-size: clamp(11px, 2.9vw, 13px); color: var(--c-ink-soft); margin: 0 0 12px; line-height: 1.6; }

.path-card__specs { list-style: none; margin: 0 0 14px; padding: 0; }
.path-card__specs li {
  display: flex; justify-content: center; gap: 5px;
  padding: 3px 0;
  font-size: clamp(11px, 2.8vw, 13px);
  line-height: 1.5;
}
.path-card__specs .spec-k { color: var(--c-ink-soft); }
.path-card__specs .spec-v strong { color: var(--c-red); font-family: var(--f-display); }
.path-card--soshoku .path-card__specs .spec-v strong { color: var(--c-gold-deep); }

.path-card__cta { margin-top: auto; }
.path-card__cta .btn {
  width: 100%; min-width: 0;
  padding: 11px 8px;
  font-size: clamp(11px, 2.9vw, 14px);
  letter-spacing: 0.02em;
}

/* index ミニ版: spec を非表示でさらにコンパクト */
.menu-paths--mini .path-card__specs { display: none; }

/* menu.html ハブ 2カード: 行 (種類/品数・値段・注文方法) を 2カード間で高さ揃え */
/* sub を 2 行分で固定し specs の開始位置を両カードで揃える (狭幅で片方が折返しても揃う) */
.menu-paths .path-card__sub { line-height: 1.5; min-height: 3em; margin-bottom: 8px; display: flex; align-items: center; justify-content: center; }
/* 種類/品数・値段の行を大きく読みやすく (注文方法の行は現状サイズ維持) */
.menu-paths .spec-row--big {
  font-size: clamp(16px, 4.6vw, 21px);
  line-height: 1.25;
  padding: 5px 0;
  min-height: calc(1.25em + 10px);
  align-items: baseline;
}
.menu-paths .spec-row--big .spec-v strong { font-size: 1.06em; }
/* 大行のラベル (品数/価格) は控えめにして数字を主役に */
.menu-paths .spec-row--big .spec-k { font-size: 0.62em; }
.menu-paths .spec-row--note {
  font-size: clamp(11px, 2.8vw, 13px);
  min-height: calc(1.5em + 6px);
}

/* index トップ: 注文の入口 (仕出し=主役 / 出前=サブ) */
.order-paths { padding: clamp(32px, 5vw, 56px) 0; background: var(--c-ivory); }
.order-paths__head { text-align: center; margin-bottom: clamp(18px, 3vw, 28px); }
.path-card__cta { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }
.menu-paths--lead { grid-template-columns: 1fr 1fr; align-items: stretch; }
.path-card--lead { border-top-width: 4px; box-shadow: 0 8px 24px rgba(26,22,20,0.07); }
/* 主役強調は色(ゴールド)とラベルで行い、サイズは個別配達カードと統一 */
.path-card--lead .path-card__eyebrow { font-weight: 700; }
/* 明るい背景では ghost (アイボリー文字) が読めないため、明色セクション内だけ可読色に */
.order-paths .btn--ghost,
.menu-preview__cta .btn--ghost { color: var(--c-ink); border-color: var(--c-line); }
.order-paths .btn--ghost:hover,
.menu-preview__cta .btn--ghost:hover { background: var(--c-ivory-deep); }
@media (max-width: 700px) {
  .menu-paths--lead { grid-template-columns: 1fr; }
}

/* 迷ったら相談 救済導線 */
.menu-help {
  margin-top: clamp(22px, 4vw, 40px);
  text-align: center;
  padding: clamp(18px, 3vw, 30px);
  background: var(--c-ivory);
  border-radius: 3px;
}
.menu-help h3 { font-family: var(--f-display); font-size: clamp(15px, 4vw, 18px); font-weight: 600; margin: 0 0 14px; }
.menu-help__cta { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.menu-help__cta .btn { min-width: 0; }

/* ページヒーロー コンパクト版 (縦を約半分に) */
.page-hero--compact { padding: clamp(28px, 4vw, 40px) 0 clamp(22px, 3vw, 30px); }
.page-hero--compact .page-hero__title { font-size: clamp(23px, 4vw, 34px); margin-bottom: 10px; }
.page-hero--compact .page-hero__lead { font-size: 14px; line-height: 1.7; }

/* 絞り込みフィルタ ウィジェット (menu-bento / delivery 共通・プルダウン形式) */
.filter-field { display: inline-flex; align-items: center; gap: 8px; }
.filter-field__label { font-size: 12px; color: var(--c-ink-soft); letter-spacing: 0.06em; white-space: nowrap; flex: 0 0 auto; min-width: 3.6em; }
.filter-select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  box-sizing: border-box;
  font-family: inherit; font-size: 13px; color: var(--c-ink);
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238b1a1a' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center; background-size: 11px;
  border: 1px solid var(--c-line); border-radius: 4px;
  padding: 8px 30px 8px 12px; cursor: pointer; width: 200px;
}
.filter-select:focus { outline: none; border-color: var(--c-red); box-shadow: 0 0 0 2px rgba(139,26,26,0.12); }
.filter-reset { background: transparent; color: var(--c-ink-soft); border: 0; cursor: pointer; font-size: 12px; text-decoration: underline; padding: 6px 8px; font-family: inherit; }
.filter-reset:hover { color: var(--c-red); }
.filter-count { font-size: 12px; color: var(--c-ink-soft); margin-left: auto; white-space: nowrap; }
.filter-count strong { color: var(--c-red); font-family: var(--f-display); }
@media (max-width: 520px) {
  .filter-field { flex: 1 1 100%; }
  .filter-select { flex: 1; width: auto; }
  .filter-count { margin-left: 0; }
}

/* =========================================================
   受付締切バナー (仕出しの「配達日2日前17時まで」を強調)
   index 仕出しカード / メニュー hero / 注文画面の日付入力 で共用
   ========================================================= */
.deadline-banner {
  display: flex; align-items: center; gap: 12px;
  background: var(--c-ivory, #f7f3ec);
  border: 1px solid var(--c-gold, #c9a55b);
  border-left: 4px solid var(--c-red, #8b1a1a);
  border-radius: 6px; padding: 12px 16px; margin: 14px 0; line-height: 1.5;
}
.deadline-banner__label {
  flex-shrink: 0; background: var(--c-red, #8b1a1a); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  padding: 5px 11px; border-radius: 999px; white-space: nowrap;
}
.deadline-banner__txt { font-size: clamp(13.5px, 1.6vw, 15px); color: var(--c-ink); font-weight: 500; }
.deadline-banner__txt strong { color: var(--c-red, #8b1a1a); font-weight: 700; font-size: 1.18em; white-space: nowrap; }
/* hero 等での大型・中央寄せ版 */
.deadline-banner--lg { justify-content: center; max-width: 620px; margin-left: auto; margin-right: auto; }
.deadline-banner--lg .deadline-banner__txt { font-size: clamp(15px, 2.2vw, 19px); }
@media (max-width: 480px) {
  .deadline-banner { flex-direction: column; align-items: flex-start; gap: 8px; text-align: left; }
  .deadline-banner--lg { align-items: center; text-align: center; }
}

/* === Breadcrumb 可視パンくず (JSON-LD BreadcrumbList と対応) === */
.breadcrumb{ background:var(--c-ivory); border-bottom:1px solid var(--c-line); }
.breadcrumb ol{ list-style:none; display:flex; flex-wrap:wrap; align-items:center; gap:.45em; margin:0; padding:9px 0; font-size:12px; line-height:1.5; color:var(--c-ink-soft); }
.breadcrumb li{ display:inline-flex; align-items:center; }
.breadcrumb li+li::before{ content:"\203A"; margin-right:.45em; color:var(--c-ink-soft); opacity:.55; }
.breadcrumb a{ color:var(--c-ink-soft); text-decoration:none; }
.breadcrumb a:hover{ color:var(--c-gold-deep); text-decoration:underline; }
.breadcrumb [aria-current="page"]{ color:var(--c-ink); font-weight:600; }

/* ===== skip link (a11y) ===== */
.skip-link{position:absolute;left:8px;top:-56px;z-index:2000;background:var(--c-red,#b3261e);color:#fff;padding:.65em 1.1em;border-radius:0 0 8px 8px;font-weight:700;text-decoration:none;transition:top .15s ease;}
.skip-link:focus{top:0;outline:3px solid #fff;outline-offset:-3px;}
main:focus{outline:none;}
