/* ============================================================
   天富羅 拾幸 ｜ ランチ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; }


/* ============================================================
   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 {
  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 {
  font-size: clamp(34px, 9.6vw, 54px);
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 26px;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.hero__head-row { display: block; }

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

/* 食べログ点数 */
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(26, 19, 16, 0.66);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(168, 136, 74, 0.5);
  margin-bottom: 30px;
  font-size: 13px;
  transition: background 0.2s, border-color 0.2s;
}

.hero__rating:hover {
  background: rgba(26, 19, 16, 0.85);
  border-color: var(--gold);
}

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

.hero__rating-star { color: #f3c241; font-size: 16px; line-height: 1; }
.hero__rating-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: 0.02em;
  font-feature-settings: "tnum" 1;
}
.hero__rating-meta {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(247, 241, 227, 0.7);
}

/* CTA */
.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding: 18px 22px;
  background: var(--accent);
  color: #fff;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 8px 28px rgba(139, 26, 26, 0.4);
}

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

.hero__cta:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(139, 26, 26, 0.5);
}

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

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

.hero__cta-arrow {
  font-size: 18px;
  font-weight: 600;
  margin-left: 4px;
}


/* ============================================================
   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;
}

.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 20px 70px;
  background: var(--ink);
  color: var(--paper);
}

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

.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=1列／PC=2列 */
.ways__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  max-width: 460px;
  margin: 0 auto;
}

.way {
  background: transparent;
}

.way__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--ink-soft);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.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: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 19, 16, 0.86);
  color: var(--gold);
  font-size: 26px;
  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 8px;
}

.way__name {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--paper);
  margin-bottom: 14px;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

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

.way__desc {
  font-size: 13.5px;
  color: rgba(247, 241, 227, 0.72);
  line-height: 1.95;
  letter-spacing: 0.06em;
}

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


/* ============================================================
   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__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__sub {
  font-size: 11px;
  text-align: center;
  margin-top: 18px;
  color: var(--text-soft);
  letter-spacing: 0.06em;
  line-height: 1.8;
}


/* ============================================================
   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; }

.coupon__sub {
  font-size: 14px;
  line-height: 2;
  color: rgba(247, 241, 227, 0.85);
}

.coupon__sub strong { color: var(--gold); font-weight: 700; }
.coupon__sub .arr { margin: 0 6px; color: rgba(168, 136, 74, 0.7); }

.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);
}

.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;
}

.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__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: 10px;
  width: 100%;
  max-width: 320px;
  padding: 14px 20px;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: transform 0.2s, background 0.2s;
}

.coupon__save:hover:not(:disabled) {
  background: #fff;
  transform: translateY(-2px);
}

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

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

.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__rating {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  max-width: 380px;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid var(--line);
  margin-bottom: 32px;
  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;
}

.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__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);
}


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

.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;
}


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

  /* 食べ方：PC は 2x2 グリッド */
  .ways__grid {
    grid-template-columns: 1fr 1fr;
    max-width: 920px;
    gap: 56px 32px;
  }
  .way__name { font-size: 32px; }

  .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%;
  }

  /* 縦フェードを廃止し、左→右の横フェードに置換（左60%まで暗、右の主役エリアはクリア） */
  .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.7) 22%,
      rgba(26, 19, 16, 0.32) 48%,
      rgba(26, 19, 16, 0) 64%
    );
  }

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

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

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

  .hero__date {
    align-items: flex-start;
  }
}


@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;
}
