/* ============================================================
   天富羅 拾幸 ｜ ランチLP
   ============================================================ */

:root {
  --paper:       #f5eedb;
  --paper-warm:  #ece2c6;
  --paper-deep:  #ddd0a8;
  --washi:       #f9f3df;
  --ink:         #1a1310;
  --ink-soft:    #2c2420;
  --text:        #1c1714;
  --text-soft:   #6b5e54;
  --line:        #c8b896;
  --line-soft:   #ddd1ad;
  --accent:      #8b1a1a;
  --accent-deep: #6b1414;
  --gold:        #a8884a;
  --gold-deep:   #7a6230;

  --shadow-soft: 0 4px 20px rgba(26, 19, 16, 0.06);
  --shadow-lift: 0 12px 36px rgba(26, 19, 16, 0.18);

  --font-jp:
    "游明朝", "Yu Mincho", YuMincho,
    "Hiragino Mincho ProN", "ヒラギノ明朝 ProN",
    "Noto Serif JP",
    serif;
}

/* -------- Reset -------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-jp);
  background: var(--paper);
  color: var(--text);
  line-height: 1.85;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
  overflow-x: hidden;
}
img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }
em { font-style: normal; }
small { font-size: 0.78em; opacity: 0.85; font-weight: 500; }

/* ユーティリティ：禁則 */
.nowrap { white-space: nowrap; display: inline-block; }


/* ============================================================
   ランチ営業開始バナー（ページ最上部 ／ 5/20 以降は削除）
   ============================================================ */
.launch-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #0d0907 0%, #1a1310 100%);
  color: var(--paper);
  border-bottom: 1px solid rgba(168, 136, 74, 0.5);
  text-align: center;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 0.06em;
  position: relative;
}

.launch-banner::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(168, 136, 74, 0.5);
}

.launch-banner__label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 3px 10px;
  font-weight: 700;
  white-space: nowrap;
}

.launch-banner__date {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  color: var(--gold);
  font-feature-settings: "tnum" 1;
  white-space: nowrap;
}

.launch-banner__date strong {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.launch-banner__day {
  font-size: 13px;
  font-weight: 600;
}

.launch-banner__msg {
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .launch-banner {
    padding: 14px 24px;
    font-size: 15px;
    gap: 18px;
  }
  .launch-banner__date strong { font-size: 26px; }
  .launch-banner__day { font-size: 15px; }
  .launch-banner__label { font-size: 11px; padding: 4px 12px; }
}


/* ============================================================
   1. HERO — 被写体保護型（mobile=上のみオーバーレイ／PC=左のみオーバーレイ）
   ============================================================ */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
}

.hero__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 941 / 1672; /* スマホ画像の自然比 */
  max-height: 80vh;
  overflow: hidden;
}

.hero__visual picture,
.hero__visual img {
  width: 100%;
  height: 100%;
}

.hero__visual img {
  object-fit: cover;
  object-position: center center;
}

/* 上だけにフェード（下＝海老／主役は被せない） */
.hero__visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 32%;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(26, 19, 16, 0.86) 0%,
    rgba(26, 19, 16, 0.5) 40%,
    rgba(26, 19, 16, 0) 100%
  );
  z-index: 1;
}

/* ロゴオーバーレイ：画像の上部 */
.hero__brand {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}

.hero__logo-link {
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
}
.hero__logo-link:hover { opacity: 0.85; transform: translateY(-1px); }

.hero__logo {
  height: auto;
  max-width: 150px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.7));
}

/* コピー領域：スマホは画像の下（暗背景）／PCは絶対配置で画像左下へ */
.hero__copy {
  position: relative;
  padding: 44px 28px 48px;
  text-align: center;
  background: var(--ink);
  z-index: 0;
}

.hero__date {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  border-top: 1px solid rgba(168, 136, 74, 0.6);
  border-bottom: 1px solid rgba(168, 136, 74, 0.6);
  margin-bottom: 30px;
}

.hero__date-num {
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 600;
  font-feature-settings: "tnum" 1;
}

.hero__date-num .dot { margin: 0 1px; font-weight: 400; }

.hero__date-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--paper);
  opacity: 0.92;
}

.hero__head {
  margin-bottom: 26px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.hero__head-row { display: block; }

/* 夜は、20,000円。 ─ 比較対象（サイズで控えめに、色はそのまま） */
.hero__head-row--anchor {
  font-size: clamp(22px, 6.4vw, 32px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.hero__head-row--anchor em {
  font-size: 1.18em;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0 0.04em;
  font-feature-settings: "tnum" 1;
}

/* 昼は、1,800円から。 ─ 主役（強調） */
.hero__head-row--main {
  font-size: clamp(40px, 11.6vw, 58px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.hero__head-row--main em {
  font-size: 1.42em;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.01em;
  margin: 0 0.04em;
  font-feature-settings: "tnum" 1;
  text-shadow: 0 2px 24px rgba(168, 136, 74, 0.45);
}

/* 評価バッジ群（食べログ + Google）：信頼の柱として目立たせる */
.hero__ratings {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}

.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(26, 19, 16, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(168, 136, 74, 0.65);
  font-size: 13px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.hero__rating:hover {
  background: rgba(26, 19, 16, 0.9);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.hero__rating-logo {
  font-size: 11px;
  letter-spacing: 0.16em;
  background: var(--paper);
  color: var(--ink);
  padding: 3px 9px;
  font-weight: 700;
  white-space: nowrap;
}

/* Google 専用：マルチカラーロゴ風の背景 */
.hero__rating-logo--google {
  background: #fff;
  color: #4285F4;
  font-family: "Helvetica Neue", "Arial", sans-serif;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.hero__rating-star {
  color: #f3a700;
  font-size: 20px;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(243, 167, 0, 0.4));
}
.hero__rating-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: 0.02em;
  font-feature-settings: "tnum" 1;
  line-height: 1;
}
.hero__rating-meta {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(247, 241, 227, 0.72);
}

/* PCで2バッジを横並びにできるなら */
@media (min-width: 1024px) {
  .hero__ratings {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* CTA — 大型化＆価格を強調 */
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 8px 28px rgba(139, 26, 26, 0.45); }
  50%      { box-shadow: 0 14px 36px rgba(139, 26, 26, 0.75); }
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 22px 24px 18px;
  background: var(--accent);
  color: #fff;
  position: relative;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 10px 32px rgba(139, 26, 26, 0.45);
  animation: ctaGlow 2.6s ease-in-out infinite;
}

.hero__cta::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  pointer-events: none;
}

.hero__cta:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 14px 40px rgba(139, 26, 26, 0.65);
}

.hero__cta-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--gold);
  padding: 4px 12px;
  border: 1px solid rgba(168, 136, 74, 0.5);
  white-space: nowrap;
  font-weight: 600;
}

.hero__cta-amount {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}

.hero__cta-amount em {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-feature-settings: "tnum" 1;
}

.hero__cta-yen {
  font-size: 18px;
  font-weight: 700;
  margin-left: 1px;
}

.hero__cta-off {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-left: 4px;
}

.hero__cta-action {
  font-size: 12px;
  letter-spacing: 0.22em;
  opacity: 0.92;
  margin-top: 4px;
  font-weight: 600;
}


/* ============================================================
   2. LUNCH
   ============================================================ */
.lunch {
  padding: 80px 24px 70px;
  background: var(--paper);
  position: relative;
}

.lunch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background: var(--accent);
}

.lunch__head {
  text-align: center;
  margin-bottom: 44px;
}

.lunch__eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--gold-deep);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.lunch__title {
  font-size: clamp(30px, 8.4vw, 42px);
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 22px;
}

.lunch__intro {
  font-size: 14px;
  line-height: 2;
  color: var(--text-soft);
}

.lunch__intro strong {
  color: var(--accent);
  font-weight: 700;
}

.lunch__menus {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 480px;
  margin: 0 auto 16px;
}

.mset {
  background: #fff;
  border: 1px solid var(--line-soft);
  padding: 32px 28px 28px;
  position: relative;
}

.mset--premium {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fff 0%, #fdf9ee 100%);
}

.mset__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.16em;
  padding: 4px 14px;
  white-space: nowrap;
}

/* 2バッジ並びの場合 */
.mset__badges {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 6px;
  white-space: nowrap;
}
.mset__badges .mset__badge {
  position: static;
  top: auto;
  left: auto;
  transform: none;
}
.mset__badge--reserve {
  background: linear-gradient(180deg, #c8a35e 0%, #8a7142 100%);
  color: var(--ink);
  border: 1px solid var(--gold);
}

.mset__name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  margin-bottom: 12px;
}

.mset__price {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
  letter-spacing: 0.04em;
}

.mset__price em {
  font-size: 2.4em;
  font-weight: 700;
  letter-spacing: 0;
  font-feature-settings: "tnum" 1;
  margin-right: 2px;
}

.mset__price-yen {
  font-size: 1em;
  font-weight: 700;
  margin-left: 1px;
}

.mset__price small {
  font-size: 11px;
  margin-left: 8px;
  color: var(--text-soft);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.mset__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mset__items li {
  font-size: 14px;
  letter-spacing: 0.04em;
  padding-left: 18px;
  position: relative;
  color: var(--text);
}

.mset__items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

.mset__items strong {
  font-weight: 700;
  color: var(--accent);
}

.mset__items small {
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  margin-left: 4px;
}

.lunch__note {
  font-size: 11px;
  text-align: center;
  color: var(--text-soft);
  letter-spacing: 0.06em;
}


/* ============================================================
   3. WAYS（食べ方は四つ）— 写真主役の magazine spread
   ============================================================ */
.ways {
  padding: 80px 0 70px;
  background: var(--ink);
  color: var(--paper);
}

.ways__head {
  text-align: center;
  margin: 0 auto 44px;
  max-width: 560px;
  padding: 0 24px;
}

.ways__eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}

.ways__title {
  font-size: clamp(32px, 9vw, 44px);
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
  line-height: 1.5;
}

.ways__title em {
  color: var(--gold);
  font-size: 1.18em;
  font-weight: 700;
  margin: 0 0.04em;
  letter-spacing: 0.06em;
}

.ways__lead {
  font-size: 13.5px;
  color: rgba(247, 241, 227, 0.78);
  line-height: 2;
  letter-spacing: 0.04em;
}

/* グリッド：mobile=2x2／PC=2x2（同じ） */
.ways__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 14px;
  max-width: none;
  margin: 0;
  padding: 0 14px;
}

.way {
  background: transparent;
}

.way__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--ink-soft);
}

.way__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.way:hover .way__photo img {
  transform: scale(1.04);
}

/* 漢数字番号バッジ：写真の左上にオーバーレイ（モバイルは小さめ） */
.way__num {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 19, 16, 0.86);
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  font-family: var(--font-jp);
  line-height: 1;
}

.way__num span {
  position: relative;
  z-index: 1;
}

.way__num::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(168, 136, 74, 0.55);
  pointer-events: none;
}

.way__body {
  text-align: center;
  padding: 0 4px;
  margin-bottom: 6px;
}

.way__name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--paper);
  margin-bottom: 10px;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.way__name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.way__desc {
  font-size: 12px;
  color: rgba(247, 241, 227, 0.74);
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.ways__story {
  text-align: center;
  margin-top: 50px;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 500;
  padding: 0 24px;
}


/* ============================================================
   4. NOTICE（ご案内：限定情報）
   ============================================================ */
.notice {
  padding: 70px 24px 60px;
  background: var(--paper);
}

.notice__plate {
  max-width: 460px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px 28px 28px;
  position: relative;
}

.notice__plate::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--line-soft);
  pointer-events: none;
}

/* 営業開始当初タグ */
.notice__period {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 14px;
  background: #fff;
  font-weight: 700;
  margin: 0 auto 14px;
  text-align: center;
  /* center inline-block */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.notice__title {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--gold-deep);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  font-weight: 600;
}

.notice__title::before,
.notice__title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.notice__title::before { left: 50%; transform: translateX(-50%); }
.notice__title::after  { display: none; }

.notice__list {
  display: flex;
  flex-direction: column;
}

.notice__row {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px 4px;
  border-bottom: 1px dashed var(--line-soft);
}

.notice__row:last-child { border-bottom: none; }

.notice__row dt {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  font-weight: 700;
}

.notice__row dd {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.notice__row dd em {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0;
  font-feature-settings: "tnum" 1;
  line-height: 1;
}

.notice__row dd span {
  font-size: 13px;
  color: var(--text);
}

.notice__row--accent dd .notice__no {
  display: inline-block;
  padding: 3px 10px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-right: 6px;
}

/* ポジティブ：予約不要 */
.notice__row--accent dd .notice__free {
  display: inline-block;
  padding: 3px 10px;
  background: linear-gradient(180deg, #c8a35e 0%, #8a7142 100%);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-right: 8px;
  border: 1px solid var(--gold);
}

/* メニュー別予約方針表示 */
.notice__row--reserve {
  grid-template-columns: 56px 1fr;
  align-items: start;
}
.notice__row--reserve dt { padding-top: 4px; }
.notice__reserve {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.notice__reserve-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.notice__reserve-menu {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text);
  font-weight: 600;
}
.notice__reserve-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.notice__reserve-tag--free {
  background: rgba(168, 136, 74, 0.12);
  color: var(--gold-deep);
  border: 1px solid rgba(168, 136, 74, 0.4);
}
.notice__reserve-tag--yes {
  background: linear-gradient(180deg, #c8a35e 0%, #8a7142 100%);
  color: var(--ink);
  border: 1px solid var(--gold);
}
.notice__reserve-tel {
  display: inline-block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: right;
  align-self: flex-end;
}

/* 予約ボタン群（電話・食べログ） */
.notice__reserve-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.notice__reserve-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: left;
  transition: background 0.2s, transform 0.2s;
  line-height: 1.4;
}

.notice__reserve-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.notice__reserve-btn-icon {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
}

.notice__reserve-btn-text {
  flex: 1;
}

.notice__reserve-btn-text small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  opacity: 0.85;
  margin-top: 2px;
}

.notice__reserve-btn--web {
  background: linear-gradient(180deg, #c8a35e 0%, #8a7142 100%);
  color: var(--ink);
  border-color: var(--gold);
}
.notice__reserve-btn--web:hover {
  background: var(--gold);
  color: var(--ink);
}

.notice__sub {
  font-size: 11px;
  text-align: center;
  margin-top: 18px;
  color: var(--text-soft);
  letter-spacing: 0.06em;
  line-height: 1.8;
}

.notice__sub small {
  display: inline-block;
  margin-top: 6px;
  font-size: 10.5px;
  color: var(--accent);
  letter-spacing: 0.06em;
  font-weight: 700;
  opacity: 0.92;
}


/* ============================================================
   5. COUPON
   ============================================================ */
.coupon {
  padding: 80px 24px 56px;
  background: var(--ink);
  color: var(--paper);
  position: relative;
}

.coupon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: var(--gold);
}

.coupon__head { text-align: center; margin-bottom: 32px; }

.coupon__eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold);
  font-weight: 600;
  padding: 4px 14px;
  border: 1px solid rgba(168, 136, 74, 0.5);
  margin-bottom: 22px;
}

.coupon__title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 18px;
  color: var(--gold);
  line-height: 1;
}

.coupon__title em {
  font-size: clamp(76px, 22vw, 110px);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum" 1;
}

.coupon__title .yen { font-size: 22px; font-weight: 700; margin-left: 2px; }
.coupon__title .off { font-size: 20px; font-weight: 700; letter-spacing: 0.06em; margin-left: 6px; }

/* クーポン価格対比 — 大きく＆Before/Afterを明確化 */
.coupon__sub {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 360px;
  margin: 0 auto;
}

.coupon__sub-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(168, 136, 74, 0.08);
  border: 1px solid rgba(168, 136, 74, 0.25);
}

.coupon__sub-name {
  font-size: 14px;
  color: rgba(247, 241, 227, 0.88);
  letter-spacing: 0.04em;
}

.coupon__sub-prices {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
}

.coupon__sub-prices s {
  color: rgba(247, 241, 227, 0.55);
  text-decoration: line-through;
  font-weight: 500;
}

.coupon__sub-prices .arr {
  color: var(--gold);
  font-size: 14px;
  margin: 0 2px;
}

.coupon__sub-prices strong {
  color: #ff8a8a;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-feature-settings: "tnum" 1;
}

.coupon__pre { text-align: center; margin-top: 22px; }

.coupon__count {
  font-size: 14px;
  margin-bottom: 22px;
  letter-spacing: 0.06em;
  color: rgba(247, 241, 227, 0.85);
}

/* 初期表示（残数80超）：先着100名様限定 */
.coupon__count-init {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 22px;
  padding: 8px 18px;
  border: 1px solid rgba(168, 136, 74, 0.45);
  background: rgba(168, 136, 74, 0.08);
  letter-spacing: 0.08em;
  color: rgba(247, 241, 227, 0.92);
  font-size: 14px;
}
.coupon__count-init-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.coupon__count-init strong {
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0;
  margin: 0 2px;
  font-feature-settings: "tnum" 1;
}
.coupon__count-init-suffix {
  font-size: 13px;
}

.coupon__count-num { display: inline-block; margin: 0 6px; }

.coupon__count-num strong {
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0;
  line-height: 1;
  font-feature-settings: "tnum" 1;
}

.coupon__count-unit { font-size: 14px; margin-left: 2px; }

.coupon__count-total {
  font-size: 12px;
  color: rgba(247, 241, 227, 0.6);
  margin-left: 4px;
}

.coupon__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  margin: 0 auto 14px;
  padding: 20px 24px;
  background: var(--accent);
  color: #fff;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 10px 32px rgba(139, 26, 26, 0.45);
  letter-spacing: 0.06em;
}

.coupon__btn::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.coupon__btn:hover:not(:disabled) {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(139, 26, 26, 0.55);
}

.coupon__btn:disabled { opacity: 0.55; cursor: not-allowed; }

.coupon__btn-main { font-size: 18px; font-weight: 700; letter-spacing: 0.1em; }

.coupon__btn-sub {
  font-size: 11px;
  opacity: 0.78;
  letter-spacing: 0.22em;
  margin-top: 4px;
}

.coupon__notes-pre {
  font-size: 11px;
  color: rgba(247, 241, 227, 0.55);
  margin-top: 14px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

/* 発行フォーム */
.coupon__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 380px;
  margin: 0 auto 12px;
  text-align: left;
}

.coupon__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.coupon__field label {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(247, 241, 227, 0.92);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.coupon__field .req {
  font-size: 10px;
  letter-spacing: 0.16em;
  background: var(--accent);
  color: #fff;
  padding: 2px 7px;
  font-weight: 700;
}

.coupon__field input {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px; /* iOSズーム防止 */
  background: rgba(247, 241, 227, 0.08);
  border: 1px solid rgba(168, 136, 74, 0.4);
  color: var(--paper);
  font-family: inherit;
  letter-spacing: 0.04em;
  border-radius: 0;
  transition: border-color 0.2s, background 0.2s;
}

.coupon__field input::placeholder {
  color: rgba(247, 241, 227, 0.35);
}

.coupon__field input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(247, 241, 227, 0.12);
}

.coupon__form-error {
  font-size: 12px;
  color: #ff8a8a;
  letter-spacing: 0.04em;
  padding: 8px 12px;
  background: rgba(139, 26, 26, 0.2);
  border: 1px solid rgba(255, 138, 138, 0.4);
  margin: -4px 0 0;
}

.coupon__form .coupon__btn {
  margin-top: 8px;
}

.coupon__issued { text-align: center; margin-top: 20px; }

.coupon__issued-msg {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: 0.16em;
  font-weight: 700;
}

/* DOM coupon card（画面表示用） */
.coupon-card {
  max-width: 380px;
  margin: 0 auto 24px;
  background: #fefdf8;
  color: var(--text);
  padding: 28px 26px;
  position: relative;
  border: 2px solid var(--accent);
  outline: 1px solid var(--accent);
  outline-offset: -8px;
  box-shadow: var(--shadow-lift);
  text-align: center;
}

.coupon-card__brand {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--text-soft);
  margin-bottom: 6px;
  font-weight: 500;
}

.coupon-card__type {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 16px;
}

.coupon-card__divider { border-top: 1px dashed var(--line); margin-bottom: 18px; }

.coupon-card__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--accent);
  line-height: 1;
}

.coupon-card__amount em {
  font-size: 80px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum" 1;
}

.coupon-card__amount-yen { font-size: 22px; font-weight: 700; }
.coupon-card__amount-off {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-left: 2px;
}

.coupon-card__menus {
  font-size: 12.5px;
  line-height: 2;
  background: var(--paper-warm);
  padding: 10px 14px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.coupon-card__menus strong { font-weight: 700; color: var(--accent); }

.coupon-card__serial {
  background: var(--ink);
  color: var(--paper);
  padding: 12px 16px;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.coupon-card__serial-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
}

.coupon-card__serial-num {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-feature-settings: "tnum" 1;
}

/* ご利用者名表示 */
.coupon-card__holder {
  background: var(--paper-warm);
  padding: 10px 14px;
  margin-bottom: 14px;
  text-align: center;
  font-size: 13px;
}

.coupon-card__holder-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  margin-right: 8px;
}

.coupon-card__holder-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.06em;
}

.coupon-card__expire {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.coupon-card__usage {
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}

/* 画像保存ボタン：ゴールドグラデーションで目立たせる */
.coupon__save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 360px;
  padding: 18px 24px;
  background: linear-gradient(180deg, #c8a35e 0%, #8a7142 100%);
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: 1px solid var(--gold);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(168, 136, 74, 0.4);
}

.coupon__save::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(26, 19, 16, 0.2);
  pointer-events: none;
}

.coupon__save:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(168, 136, 74, 0.55);
}

.coupon__save:disabled { opacity: 0.55; cursor: not-allowed; }

.coupon__save > span:first-child {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.coupon__hint {
  font-size: 11px;
  color: rgba(247, 241, 227, 0.55);
  margin-top: 12px;
  letter-spacing: 0.04em;
}

/* クーポン発行後の予約導線 */
.coupon__reserve {
  margin: 32px auto 0;
  max-width: 380px;
  padding-top: 26px;
  border-top: 1px solid rgba(168, 136, 74, 0.3);
  text-align: center;
}

.coupon__reserve-title {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 6px;
  padding: 0 14px;
  position: relative;
}

.coupon__reserve-title::before,
.coupon__reserve-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
}
.coupon__reserve-title::before { right: 100%; }
.coupon__reserve-title::after { left: 100%; }

.coupon__reserve-sub {
  font-size: 11.5px;
  color: rgba(247, 241, 227, 0.7);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  line-height: 1.75;
}

.coupon__reserve-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.coupon__reserve-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  background: #fff;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: left;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  line-height: 1.35;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.coupon__reserve-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(139, 26, 26, 0.4);
}

.coupon__reserve-btn-icon {
  flex-shrink: 0;
  font-size: 20px;
  line-height: 1;
}

.coupon__reserve-btn-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.coupon__reserve-btn-text small {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.85;
  margin-top: 3px;
}

.coupon__reserve-btn--web {
  background: linear-gradient(180deg, #c8a35e 0%, #8a7142 100%);
  color: var(--ink);
  border-color: var(--gold);
}
.coupon__reserve-btn--web:hover {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(168, 136, 74, 0.45);
}

.coupon__reserve-note {
  font-size: 11px;
  color: rgba(247, 241, 227, 0.55);
  margin-top: 14px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

/* クーポン発行後アクション群（保存＋シェア） */
.coupon__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* 友達にシェア（クーポン発行後） */
.coupon__share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  background: transparent;
  border: 1px solid rgba(247, 241, 227, 0.55);
  color: var(--paper);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.coupon__share:hover {
  background: rgba(247, 241, 227, 0.1);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.coupon__share-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
}
.coupon__share-icon svg { width: 100%; height: 100%; }

.coupon__soldout {
  text-align: center;
  padding: 36px 22px;
  border: 1px solid rgba(168, 136, 74, 0.4);
  background: rgba(247, 241, 227, 0.04);
  margin: 20px auto 0;
  max-width: 420px;
}

.coupon__soldout-mark {
  display: inline-block;
  font-size: 28px;
  letter-spacing: 0.32em;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 8px 22px;
  margin-bottom: 18px;
  font-weight: 700;
}

.coupon__soldout-text {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}

.coupon__soldout-sub {
  font-size: 12px;
  color: rgba(247, 241, 227, 0.7);
  letter-spacing: 0.04em;
}

.coupon__terms {
  max-width: 420px;
  margin: 36px auto 0;
  padding: 18px 22px;
  background: rgba(247, 241, 227, 0.04);
  border: 1px solid rgba(168, 136, 74, 0.25);
  font-size: 11.5px;
  line-height: 1.95;
  color: rgba(247, 241, 227, 0.7);
}

.coupon__terms li {
  padding-left: 16px;
  position: relative;
}

.coupon__terms li::before { content: "・"; position: absolute; left: 0; }
.coupon__terms strong { color: var(--gold); font-weight: 700; }
.coupon__terms li + li { margin-top: 4px; }


/* ============================================================
   6. SPACE
   ============================================================ */
.space {
  padding: 80px 24px;
  background: var(--paper);
  text-align: center;
}

.space__title {
  font-size: clamp(26px, 7.5vw, 34px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.space__lead {
  font-size: 13px;
  line-height: 2;
  color: var(--text-soft);
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}

.space__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.space__photo {
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--paper-warm);
}

.space__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ============================================================
   7. INFO
   ============================================================ */
.info {
  padding: 80px 24px 60px;
  background: var(--paper-warm);
  text-align: center;
}

.info__title {
  font-size: clamp(26px, 7.4vw, 32px);
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 30px;
}

/* Info: 評価バッジ群 */
.info__ratings {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
  margin: 0 auto 32px;
}

.info__rating {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 18px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s;
}

.info__rating:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.info__rating-logo {
  background: var(--ink);
  color: var(--paper);
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

/* Google ロゴ専用：白地＋ブルー */
.info__rating-logo--google {
  background: #fff;
  color: #4285F4;
  border: 1px solid var(--line);
  font-family: "Helvetica Neue", "Arial", sans-serif;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.info__rating-stars {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  flex: 1;
  justify-content: flex-start;
}

.info__rating-star { color: #f3a700; font-size: 18px; line-height: 1; }
.info__rating-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  font-feature-settings: "tnum" 1;
}
.info__rating-meta {
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.06em;
}
.info__rating-arrow { font-size: 18px; color: var(--text-soft); }

.info__list {
  max-width: 460px;
  margin: 0 auto 28px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line-soft);
}

.info__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13.5px;
  align-items: start;
}

.info__row:last-child { border-bottom: none; }

.info__row dt {
  font-weight: 700;
  color: var(--text-soft);
  font-size: 11px;
  letter-spacing: 0.18em;
  padding-top: 3px;
}

.info__row dd { line-height: 1.75; letter-spacing: 0.02em; }
.info__row dd small { font-size: 11px; color: var(--text-soft); display: inline-block; }
.info__row dd a { color: var(--accent); font-weight: 700; letter-spacing: 0.06em; }

.info__row--lunch {
  background: linear-gradient(180deg, #fdf6e3 0%, #fbf2dc 100%);
  border-bottom-color: var(--gold);
}

.info__row--lunch dd strong {
  font-size: 1.18em;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.info__lunch-start {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
}

.info__lunch-rsv {
  display: inline-block;
  margin-top: 4px;
  font-size: 11.5px;
  color: var(--text);
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.info__lunch-rsv a {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.info__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
  margin: 0 auto;
}

.info__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: background 0.2s, color 0.2s;
  background: #fff;
}

.info__link:hover { background: var(--ink); color: var(--paper); }

.info__link--alt {
  background: transparent;
  border-color: var(--text-soft);
  color: var(--text-soft);
}

.info__link--alt:hover { background: var(--text-soft); color: var(--paper); }


/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  padding: 70px 24px 60px;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.final__title {
  font-size: clamp(24px, 6.8vw, 32px);
  font-weight: 700;
  line-height: 1.65;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.final__title span { display: block; }

.final__title em {
  font-size: 1.32em;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0.04em;
  font-feature-settings: "tnum" 1;
}

.final__sub {
  font-size: 13px;
  color: rgba(247, 241, 227, 0.78);
  margin-bottom: 32px;
  letter-spacing: 0.18em;
}

.final__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 360px;
  padding: 18px 22px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
  box-shadow: 0 10px 32px rgba(139, 26, 26, 0.4);
  transition: transform 0.2s, background 0.2s;
}

.final__cta::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.final__cta:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
}

/* 友達にシェア（最終CTA下） */
.final__share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  padding: 12px 22px;
  background: transparent;
  border: 1px solid rgba(247, 241, 227, 0.55);
  color: rgba(247, 241, 227, 0.92);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.final__share:hover {
  background: rgba(247, 241, 227, 0.08);
  border-color: var(--gold);
  color: var(--paper);
  transform: translateY(-1px);
}
.final__share-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
}
.final__share-icon svg { width: 100%; height: 100%; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 40px 24px 36px;
  background: #0d0907;
  color: rgba(247, 241, 227, 0.6);
  text-align: center;
}

.footer__logo-link {
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
}
.footer__logo-link:hover { opacity: 0.75; transform: translateY(-1px); }

.footer__logo {
  width: auto;
  height: 56px;
  margin: 0 auto 14px;
  opacity: 0.9;
}

.footer__copy {
  font-size: 10px;
  letter-spacing: 0.2em;
  margin-top: 10px;
}

/* ============================================================
   モバイル下部固定CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 18px calc(14px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(168, 136, 74, 0.45);
  transition: transform 0.3s ease;
}
.sticky-cta[hidden] { display: none !important; }

.sticky-cta__amount {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  background: var(--ink);
  color: var(--gold);
  padding: 6px 10px;
  border: 1px solid rgba(168, 136, 74, 0.5);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.sticky-cta__amount strong {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-feature-settings: "tnum" 1;
  margin-right: 1px;
}

.sticky-cta__main {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.sticky-cta__arrow {
  font-size: 17px;
  font-weight: 700;
  margin-left: 2px;
}

/* スマホでフッター/最終CTAが固定CTAに被らないようパディング */
@media (max-width: 1023px) {
  body { padding-bottom: 76px; }
}

/* PCでは固定CTA非表示 */
@media (min-width: 1024px) {
  .sticky-cta { display: none; }
}


/* ============================================================
   Tablet & Desktop
   ============================================================ */
@media (min-width: 768px) {
  .lunch__menus {
    flex-direction: row;
    max-width: 760px;
  }
  .mset { flex: 1; }

  /* 食べ方：PC は 2x2 グリッド（より広いgap） */
  .ways__grid {
    grid-template-columns: 1fr 1fr;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 56px 32px;
  }
  .way__photo { margin-bottom: 22px; }
  .way__num { width: 48px; height: 48px; font-size: 26px; top: 16px; left: 16px; }
  .way__body { padding: 0 24px; margin-bottom: 18px; }
  .way__name { font-size: 32px; margin-bottom: 14px; padding-bottom: 12px; }
  .way__desc { font-size: 14px; line-height: 1.95; }

  .notice__plate { max-width: 540px; padding: 44px 40px 32px; }

  .space__photos { max-width: 900px; }
}

/* HERO PC版：画像フルブリード＋左にオーバーレイ（右の主役は被せない） */
@media (min-width: 1024px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
  }

  /* 画像をhero全体にフルブリード */
  .hero__visual {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    max-height: none;
    width: 100%;
    height: 100%;
  }

  /* 縦フェードを廃止し、左→右の横フェードに置換（左で文字が読める／右の主役はクリア） */
  .hero__visual::after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    background: linear-gradient(
      90deg,
      rgba(26, 19, 16, 0.95) 0%,
      rgba(26, 19, 16, 0.78) 28%,
      rgba(26, 19, 16, 0.32) 52%,
      rgba(26, 19, 16, 0) 68%
    );
  }

  /* ロゴ：画像の左上にオーバーレイ（控えめに） */
  .hero__brand {
    top: 48px;
    left: 56px;
    right: auto;
    text-align: left;
    z-index: 3;
  }

  .hero__logo {
    max-width: 130px;
    margin: 0;
  }

  /* コピー：画像の左下にオーバーレイ */
  .hero__copy {
    position: absolute;
    bottom: 56px;
    left: 56px;
    right: auto;
    max-width: 560px;
    text-align: left;
    background: transparent;
    padding: 0;
    z-index: 3;
  }

  /* PCヘッドラインは小さめに（コピー過大化を防ぎロゴと被らせない） */
  .hero__head { margin-bottom: 22px; }

  .hero__head-row--anchor {
    font-size: clamp(20px, 1.9vw, 26px);
    margin-bottom: 4px;
  }
  .hero__head-row--anchor em { font-size: 1.14em; }

  .hero__head-row--main {
    font-size: clamp(34px, 3.6vw, 44px);
  }
  .hero__head-row--main em { font-size: 1.34em; }

  .hero__date {
    align-items: flex-start;
    margin-bottom: 24px;
  }

  /* 食べログ・CTA は左寄せ */
  .hero__rating { align-self: flex-start; }
  .hero__cta { margin-left: 0; margin-right: 0; }
}

@media (min-width: 1280px) {
  .hero__copy { left: 80px; max-width: 600px; }
  .hero__brand { left: 80px; top: 56px; }
  .hero__logo { max-width: 150px; }
}


@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.coupon__issued:not([hidden]) .coupon-card,
.coupon__soldout:not([hidden]) {
  animation: fadeInUp 0.5s ease both;
}
