/* ============================================================
   大木町パティシエ体験 LP — style.css (v3 kids-fun)
   ============================================================ */

/* ---- Variables ---- */
:root {
  /* ── メインカラー：サーモンピンク系 ── */
  --pink:        #e8806a;   /* サーモンピンク（メインアクセント） */
  --pink-light:  #f7e0d8;   /* 薄サーモン */
  --pink-dark:   #c05a44;   /* 深みサーモン */

  /* ── サブカラー：テラコッタ・ウォームオレンジ ── */
  --orange:      #d4724a;   /* テラコッタ */
  --orange-light:#f5e6de;   /* 薄テラコッタ */

  /* ── アクセント：ウォームゴールド ── */
  --yellow:      #c8973a;   /* ゴールド */
  --yellow-light:#f5ead8;   /* 薄ゴールド */

  /* ── サブアクセント：セージグリーン（水色→廃止、グリーンのみ残す） ── */
  --blue:        #8a9e7a;   /* セージグリーン（旧水色の代替） */
  --blue-light:  #eef2eb;   /* 薄セージ */

  /* ── グリーン：オリーブ系 ── */
  --green:       #7a9e6a;   /* オリーブグリーン */
  --green-light: #e8f0e4;   /* 薄オリーブ */

  /* ── ベージュ背景系 ── */
  --cream:       #faf5f0;   /* メインベージュ */
  --beige:       #f2ebe2;   /* 少し濃いベージュ */
  --beige-dark:  #e8ddd0;   /* カードボーダー等 */

  --white:       #ffffff;
  --dark:        #3a2a1a;   /* 温かみのあるダークブラウン */
  --mid:         #6a5040;   /* ミドルブラウン */
  --light-text:  #a08878;   /* 薄めブラウン */

  --green-line:  #00b900;
  --green-line-d:#009a00;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 100px;
  --shadow: 0 8px 32px rgba(80,40,20,0.10);
  --shadow-lg: 0 16px 48px rgba(80,40,20,0.15);

  /* フォント: Zen Maru Gothic（ポップなゴシック体） */
  --font: 'Zen Maru Gothic', 'Hiragino Maru Gothic ProN', 'rounded-mplus-1p', sans-serif;
  --font-deco: 'Yomogi', 'Zen Maru Gothic', cursive;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.8;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

#particle-canvas {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 36px; border-radius: var(--r-pill);
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: all 0.25s ease;
  border: 3px solid transparent; letter-spacing: 0.03em;
  position: relative; overflow: hidden;
  margin-bottom: .7rem;
}

.btn:active { transform: scale(0.97); }

.btn-line {
  background: var(--green-line); color: #fff;
  box-shadow: 0 6px 24px rgba(0,185,0,0.4);
}
.btn-line:hover {
  background: var(--green-line-d); transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,185,0,0.5);
}
.btn-hero {
  font-size: 1.15rem; padding: 20px 42px;
  animation: heroBtnPop 2.5s ease-in-out infinite;
}
@keyframes heroBtnPop {
  0%,100% { transform: scale(1); box-shadow: 0 6px 24px rgba(0,185,0,0.4); }
  50%      { transform: scale(1.04); box-shadow: 0 10px 36px rgba(0,185,0,0.6); }
}
.btn-plan { width: 100%; font-size: 1rem; padding: 16px 24px; margin-top: auto; }
.btn-plan-outline {
  background: white; color: var(--orange); border-color: var(--orange);
}
.btn-plan-outline:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn-plan-primary {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: white; box-shadow: 0 6px 20px rgba(180,100,70,0.35);
}
.btn-plan-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(180,100,70,0.45); }
.btn-cta {
  font-size: 1.2rem; padding: 22px 30px;
  box-shadow: 0 8px 32px rgba(0,185,0,0.5);
  animation: heroBtnPop 2s ease-in-out infinite;
  width: 100%;
}
.fa-line {
  font-size: 2rem;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding: 64px 0; position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-lead { font-size: 0.93rem; color: var(--mid); margin-top: 10px; }

.section-badge {
  display: inline-block;
  background: var(--pink); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em;
  padding: 5px 18px; border-radius: var(--r-pill);
  margin-bottom: 16px; text-transform: uppercase;
  font-family: var(--font);
}
.section-badge.badge-orange { background: var(--orange); }
.section-badge.badge-blue   { background: var(--blue); }
.section-badge.badge-pink   { background: var(--pink); }
.section-badge.badge-green  { background: var(--green); }

.section-title {
  font-family: var(--font);
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  font-weight: 500; line-height: 1.5; color: var(--dark);
}
.marker-pink   { background: linear-gradient(transparent 55%, #f5cfc0 55%); }
.marker-orange { background: linear-gradient(transparent 55%, #ead8c0 55%); }
.marker-blue   { background: linear-gradient(transparent 55%, #dde6d8 55%); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  background: #ffffff;
  overflow: hidden; display: flex; flex-direction: column;
}

/* floating emoji — いちごのみ */
.deco-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.deco-shape {
  position: absolute; font-size: 2rem;
  animation: floatDeco 6s ease-in-out infinite;
  opacity: 0.35; user-select: none;
}
.s1 { top:8%;  left:4%;  animation-delay:0s;   font-size:2rem; }
.s2 { top:12%; left:88%; animation-delay:0.8s; font-size:1.6rem; }
.s3 { top:38%; left:3%;  animation-delay:1.4s; font-size:1.4rem; }
.s4 { top:58%; left:90%; animation-delay:2.0s; font-size:1.8rem; }
.s5 { top:78%; left:6%;  animation-delay:0.5s; font-size:1.5rem; }
.s6 { top:70%; left:82%; animation-delay:1.8s; font-size:2.2rem; }
.s7 { top:28%; left:92%; animation-delay:3.0s; font-size:1.3rem; }
.s8 { top:88%; left:50%; animation-delay:2.5s; font-size:1.6rem; }
@keyframes floatDeco {
  0%,100% { transform: translateY(0) rotate(-5deg) scale(1); }
  50%      { transform: translateY(-18px) rotate(8deg) scale(1.1); }
}

.hero-inner {
  flex: 1; display: flex; align-items: center;
  gap: 32px; padding: 80px 32px 40px;
  max-width: 1200px; margin: 0 auto; width: 100%;
  position: relative; z-index: 2;
  justify-content: center;
}

/* ---- Logo / FV movie ---- */
.hero-content { flex: 1 1 560px; }
.hero-logo-wrap {
  margin-bottom: 14px;
  display: flex;
  justify-content: flex-start;
}
.hero-logo-stage {
  width: min(100%, 560px);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  max-width: 520px; width: 65%;
  filter: drop-shadow(0 6px 24px rgba(180,100,70,0.18));
  animation: logoFloat 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes logoFloat {
  0%,100% { transform: translateY(0) rotate(-0.5deg); }
  50%      { transform: translateY(-8px) rotate(0.5deg); }
}
.hero-fv-movie-wrap {
  width: min(82%, 410px);
  margin-top: -20px;
  position: relative;
  z-index: 1;
}
.hero-fv-movie {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5.45;
  object-fit: cover;
  border-radius: 42% 38% 44% 44% / 36% 48% 44% 53%;
  box-shadow: 0 20px 48px rgba(120,70,40,0.18), 0 0 0 8px rgba(247,224,216,0.72);
  background: #efe7de;
}
.hero-fv-movie::-webkit-media-controls,
.hero-fv-movie::-webkit-media-controls-enclosure {
  display: none !important;
}
.hero-fv-movie::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}
.hero-video-modal-trigger {
  position: absolute;
  inset: 0;
  border: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.16) 100%);
  color: #fff;
  border-radius: 42% 38% 44% 44% / 36% 48% 44% 53%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 24px 20px 28px;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.hero-video-modal-trigger:hover {
  transform: scale(1.02);
}
.hero-video-modal-trigger-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.42);
  backdrop-filter: blur(2px);
  font-size: 1rem;
}
.hero-video-modal-trigger-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: rgba(58,42,26,0.46);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
}
.hero-logo-fallback {
  display: none;
  flex-direction: column; gap: 4px;
}
.logo-sub {
  font-family: var(--font); font-size: 1rem; font-weight: 700;
  background: var(--pink-light); color: var(--pink-dark);
  padding: 4px 14px; border-radius: var(--r-pill); display: inline-block;
  margin-bottom: 6px;
}
.logo-main {
  font-family: var(--font); font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 700; color: var(--pink);
  text-shadow: 3px 3px 0 rgba(180,100,70,0.18);
}

/* ---- Hero catch copy ---- */
.hero-catch {
  font-family: var(--font); font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700; color: var(--dark);
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
  flex-wrap: nowrap; white-space: nowrap;
}
.hero-catch strong { color: var(--pink); }
.catch-deco { font-size: 1.1rem; flex-shrink: 0; }

.hero-subtitle {
  font-size: 0.92rem; color: var(--mid);
  margin-bottom: 16px; font-style: italic;
}

/* pills */
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 18px; border-radius: var(--r-pill);
  font-size: 0.9rem; font-weight: 700;
  box-shadow: 0 3px 12px rgba(0,0,0,0.10);
}
.pill i { font-size: 0.88rem; }
.pill-orange { background: var(--orange-light); color: var(--orange); border: 2px solid var(--orange); }
.pill-blue   { background: var(--blue-light);   color: var(--blue);   border: 2px solid var(--blue); }
.pill-pink   { background: var(--pink-light);   color: var(--pink);   border: 2px solid var(--pink); }

/* countdown */
.hero-countdown { margin-bottom: 20px; }
.countdown-label {
  /* font-size: 0.78rem; */
  font-size: 1rem;
  font-weight: 700;
  color: var(--pink-dark);
  margin-bottom: 6px;
}
.countdown-wrap {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.92); border-radius: 18px;
  padding: 12px 20px; box-shadow: 0 4px 20px rgba(180,100,70,0.15);
  border: 2.5px solid var(--pink-light); backdrop-filter: blur(6px);
}
.cd-unit { display: flex; flex-direction: column; align-items: center; min-width: 44px; }
.cd-num {
  font-family: var(--font); font-size: 1.8rem; font-weight: 700;
  color: var(--pink-dark); line-height: 1;
}
.cd-label { font-size: 0.62rem; color: var(--light-text); margin-top: 3px; font-weight: 700; }
.cd-sep { font-size: 1.5rem; color: var(--orange); font-weight: 700; margin-bottom: 14px; opacity: 0.5; }
.earlybird-note { margin-top: 6px; font-size: 0.76rem; color: var(--mid); }
.earlybird-note strong { color: var(--pink-dark); }

/* ---- ヒーロー内 オファーバナー ---- */
.hero-earlybird-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}
.offer-mini {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 16px 16px 14px;
  background: linear-gradient(120deg, #7a3a20 0%, #a05030 45%, #c87840 100%);
  box-shadow: 0 10px 28px rgba(100,50,20,0.28);
  text-align: center;
  color: #fff;
}
.offer-mini::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.16) 0%, transparent 42%),
    radial-gradient(circle at 86% 76%, rgba(255,255,255,0.12) 0%, transparent 38%);
  pointer-events: none;
}
.offer-mini > * {
  position: relative;
  z-index: 1;
}
.offer-mini-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 16px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.20);
  border: 1px solid rgba(255,255,255,0.34);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.offer-mini-title {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  line-height: 1.35;
  margin-bottom: 4px;
}
.offer-mini-discount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  line-height: 1;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.offer-mini-number {
  font-family: var(--font);
  font-size: clamp(2.6rem, 5vw, 3.3rem);
  font-weight: 700;
  color: #f5d89a;
  text-shadow: 0 3px 16px rgba(0,0,0,0.18);
}
.offer-mini-unit {
  font-family: var(--font);
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-weight: 700;
  color: #f5d89a;
  margin-right: 3px;
}
.offer-mini-off {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.offer-mini-arrow {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 6px;
}
.offer-mini-sub {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}

/* visual / parfait */
.hero-visual { flex-shrink: 0; }
.hero-parfait-frame {
  position: relative;
  width: clamp(240px, 32vw, 400px);
}
.hero-parfait-img {
  width: 100%;
  border-radius: 42% 38% 44% 44% / 36% 48% 44% 53%;
  /* border-radius: 50% 50% 45% 45% / 40% 40% 55% 55%; */
  box-shadow: 0 24px 64px rgba(180,100,70,0.20), 0 0 0 8px rgba(247,224,216,0.7);
  animation: parfaitFloat 4s ease-in-out infinite;
  /* object-fit: cover; aspect-ratio: 3/4; */
  /* object-fit: cover; aspect-ratio: 2/3; */
  object-fit: cover; aspect-ratio: 5/7;
}
.fv-video {
  border-radius: 42% 49% 44% 44% / 36% 48% 44% 53%;
  /* border-radius: 28% 27% 43% 48% / 25% 28% 42% 43%; */
  width: 76%;
  margin-top: -5rem;
}
@keyframes parfaitFloat {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-14px) rotate(1deg); }
}
.parfait-bubble {
  position: absolute; background: #fff;
  font-family: var(--font); font-size: 0.72rem; font-weight: 700;
  padding: 8px 12px; border-radius: 14px; line-height: 1.4;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  white-space: nowrap; text-align: center;
  animation: bubbleWobble 3s ease-in-out infinite;
}
.parfait-bubble::before {
  content: ''; position: absolute; border: 8px solid transparent;
}
.b1 { top:15%; left:-22%; color:var(--green); border: 2px solid var(--green-light); animation-delay:0s; }
.b1::before { right:-14px; top:50%; transform:translateY(-50%); border-left-color:#fff; }
.b2 { top:45%; right:-24%; color:var(--pink-dark); border: 2px solid var(--pink-light); animation-delay:1s; }
.b2::before { left:-14px; top:50%; transform:translateY(-50%); border-right-color:#fff; }
.b3 { bottom:18%; left:-20%; color:var(--orange); border: 2px solid var(--orange-light); animation-delay:2s; }
.b3::before { right:-14px; top:50%; transform:translateY(-50%); border-left-color:#fff; }
@keyframes bubbleWobble {
  0%,100% { transform: scale(1) rotate(-2deg); }
  50%      { transform: scale(1.06) rotate(2deg); }
}

/* wave */
.hero-wave { line-height: 0; position: relative; z-index: 2; margin-top: auto; }
.hero-wave svg { width: 100%; height: 80px; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--beige); }
.section-deco-top {
  display: flex; justify-content: center; gap: 16px;
  font-size: 1.2rem; margin-bottom: 8px;
  animation: decoRow 6s ease-in-out infinite;
}
@keyframes decoRow {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
/* .about-grid { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: center; } */
.speech-bubble {
  background: var(--white); border-radius: 20px 20px 20px 4px;
  padding: 16px 20px; border: 2.5px solid var(--beige-dark);
  margin-bottom: 14px; box-shadow: 0 4px 20px rgba(80,40,20,0.08);
  position: relative;
}
.speech-bubble::before {
  content: ''; position: absolute; bottom: -16px; left: 24px;
  border: 8px solid transparent; border-top-color: var(--beige-dark);
}
.speech-bubble p { font-size: 0.97rem; line-height: 1.85; color: var(--dark); }
.about-body { font-size: 0.9rem; color: var(--mid); margin-bottom: 10px; line-height: 1.8; }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 18px auto 0; max-width: 840px; }
.feature-card {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 12px; border-radius: var(--r-lg);
  font-size: 0.83rem; font-weight: 700; text-align: center;
  transition: transform 0.25s;
}
.feature-card:hover { transform: translateY(-4px) scale(1.03); }
.feature-emoji { font-size: 1.7rem; margin-bottom: 7px; }
.feature-emoji img { border-radius: 1rem; }
.feature-card strong { display: block; font-size: 1rem; font-weight: 600; margin-bottom: 2px; }
.feature-card span { font-size: 0.92rem; font-weight: 400; opacity: 0.8; }
.fc-green  { background: var(--green-light);  color: #4a6e38; border: 2px solid #bdd4b0; }
.fc-blue   { background: var(--blue-light);   color: #4a6040; border: 2px solid #bccab4; }
.fc-yellow { background: var(--yellow-light); color: #7a5a1a; border: 2px solid #d8bc88; }
.fc-pink   { background: var(--pink-light);   color: var(--pink-dark); border: 2px solid #e8b8a8; }

/* ============================================================
   INGREDIENTS SECTION
   ============================================================ */
.ingredients-section {
  background: linear-gradient(160deg, var(--cream) 0%, var(--beige) 60%, #ede8e0 100%);
}

.ing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ing-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 32px 24px 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  border-top: 6px solid var(--ing-color, var(--pink));
  transition: transform 0.28s, box-shadow 0.28s;
}
.ing-card:hover {
  transform: translateY(-8px) rotate(0.5deg);
  box-shadow: var(--shadow-lg);
}

/* 背景の薄い円装飾 */
.ing-card::before {
  content: '';
  position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--ing-light, #ffe0ec);
  opacity: 0.6;
  z-index: 0;
}

.ing-num {
  position: absolute; top: 14px; left: 18px;
  font-family: var(--font);
  /* font-size: 0.68rem; */
  font-size: 1rem;
  font-weight: 700;
  color: var(--ing-color, var(--pink));
  letter-spacing: 0.1em; opacity: 0.7;
  z-index: 1;
}

.ing-emoji {
  font-size: 3rem; margin-bottom: 14px;
  position: relative; z-index: 1;
  animation: ingFloat 4s ease-in-out infinite;
  margin-top: 1.6rem;
}
.ing-emoji img {
  border-radius: 1rem;
}
/* 各カードのアニメーションずらし */
.ing-card:nth-child(1) .ing-emoji { animation-delay: 0s; }
.ing-card:nth-child(2) .ing-emoji { animation-delay: 0.5s; }
.ing-card:nth-child(3) .ing-emoji { animation-delay: 1.0s; }
.ing-card:nth-child(4) .ing-emoji { animation-delay: 1.5s; }
.ing-card:nth-child(5) .ing-emoji { animation-delay: 2.0s; }
.ing-card:nth-child(6) .ing-emoji { animation-delay: 2.5s; }
@keyframes ingFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-6px) scale(1.06); }
}

.ing-name {
  font-family: var(--font); font-size: 1.1rem; font-weight: 700;
  color: var(--dark); line-height: 1.4; margin-bottom: 12px;
  position: relative; z-index: 1;
}

.ing-desc {
  font-size: 0.83rem; color: var(--mid); line-height: 1.75;
  margin-bottom: 16px; flex: 1;
  position: relative; z-index: 1;
}

.ing-point {
  display: inline-block;
  background: var(--ing-light, #ffe0ec);
  color: var(--ing-color, var(--pink));
  font-size: 0.75rem; font-weight: 700;
  padding: 6px 16px; border-radius: var(--r-pill);
  position: relative; z-index: 1;
  border: 1.5px solid var(--ing-color, var(--pink));
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--beige); }

.gallery-grid { display: flex; gap: 20px; align-items: start; max-width: 840px; margin: 0 auto;}

.gallery-card-wrap {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gallery-card {
  position: relative; border-radius: var(--r-lg);
  overflow: hidden; background: var(--beige-dark);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  width: 100%;
}
.gallery-card:hover { transform: translateY(-6px) rotate(-0.4deg); box-shadow: var(--shadow-lg); }
.gallery-card.main-card { aspect-ratio: 3/4; }
/* .gallery-sub .gallery-card { aspect-ratio: 16/9; } */
.gallery-card img { width: 100%; height: 100%; object-fit: cover; }
.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,10,58,0.65));
  color: #fff; font-size: 0.82rem; font-weight: 700;
  padding: 24px 14px 12px;
}
.gallery-card.card-no-img {
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--pink-light), var(--orange-light));
}

/* Chef banner */
.chef-banner {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 40px; align-items: center;
  background: #fff; border-radius: var(--r-xl);
  overflow: hidden; margin-top: 28px;
  box-shadow: var(--shadow);
  border-left: 8px solid var(--orange);
}
.chef-banner-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  min-height: 240px;
}
.chef-banner-img.no-img {
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; background: var(--orange-light);
  min-height: 240px;
}
.chef-banner-text { padding: 32px 32px 32px 0; }
.chef-banner-eyebrow {
  font-size: 0.72rem; font-weight: 700; color: var(--orange);
  letter-spacing: 0.05em; margin-bottom: 8px;
}
.chef-banner-name {
  font-family: var(--font); font-size: 1.6rem; font-weight: 700;
  color: var(--dark); margin-bottom: 4px;
}
.chef-banner-shop {
  font-size: 0.85rem; color: var(--light-text); margin-bottom: 16px;
}
.chef-banner-desc {
  font-size: 0.9rem; color: var(--mid); line-height: 1.8;
  border-left: 4px solid var(--orange-light); padding-left: 16px;
}

/* ============================================================
   SCHEDULE
   ============================================================ */
.schedule-section { background: var(--beige); }

.schedule-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.sched-card {
  background: #fff; border-radius: var(--r-xl); padding: 32px 28px;
  box-shadow: var(--shadow); transition: transform 0.25s;
}
.sched-card:hover { transform: translateY(-4px); }
/* .scard-icon { font-size: 2.2rem; margin-bottom: 12px; } */
.sched-card h3 {
  font-family: var(--font); font-size: 1.1rem; font-weight: 700;
  color: var(--dark); margin-bottom: 12px;
  text-align: center;
}
.sched-card p { font-size: 0.95rem; color: var(--mid); }
.date-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.date-chip {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff; font-weight: 700; font-size: 0.95rem;
  padding: 8px 16px; border-radius: var(--r-pill);
  box-shadow: 0 4px 12px rgba(180,100,70,0.25);
}
.date-chip small { display: block; font-size: 0.65rem; font-weight: 700; opacity: 0.85; margin-top: 2px; }
.time-list { margin: 4px 0; }
.time-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0; border-bottom: 1.5px dashed var(--beige-dark);
  font-size: 0.93rem; color: var(--mid);
}
.time-list li:last-child { border-bottom: none; }
.time-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  font-size: 0.78rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.t1 { background: var(--pink); }
.t2 { background: var(--orange); }
.t3 { background: var(--yellow); }
.sched-card .big-num {
  font-family: var(--font); font-size: 4rem; font-weight: 700;
  color: var(--orange); line-height: 1; margin: 8px 0;
}
.big-num span { font-size: 1.5rem; color: var(--mid); }
.scard-note { font-size: 0.76rem; color: var(--light-text); margin-top: 8px; }
.scard-date  { border-top: 6px solid var(--pink); }
.scard-time  { border-top: 6px solid var(--orange); }
.scard-cap   { border-top: 6px solid var(--yellow); text-align: center; }
.scard-place { border-top: 6px solid var(--green); }

/* ---- 開催日程（日付＋時間を統合）---- */
.scard-date-merged {
  grid-column: 1 / -1; /* 横幅いっぱいに広げる */
}
.date-schedule-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
  margin-bottom: 4px;
}
.date-schedule-item {
  background: var(--beige);
  border-radius: 16px;
  padding: 16px 14px;
}
.date-chip-lg {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff; font-weight: 700; font-size: 1.0rem;
  padding: 7px 14px; border-radius: var(--r-pill);
  display: inline-block; margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(180,100,70,0.25);
  line-height: 1.4;
}
.date-chip-lg small {
  display: inline; font-size: 0.72rem; font-weight: 700; opacity: 0.9; margin-left: 2px;
}
.date-schedule-item .time-list li {
  font-size: 0.88rem;
  padding: 6px 0;
}

.place-name  { font-size: 1.6rem; font-weight: 700; color: var(--orange); margin-bottom: 2px; }
.place-sub   { font-size: 0.78rem; color: var(--light-text); margin-bottom: 14px; }

.place-detail { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.place-detail li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.85rem; color: var(--mid); line-height: 1.6;
}
.place-detail-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.place-tel {
  font-size: 1.05rem; font-weight: 700; color: var(--pink-dark);
  letter-spacing: 0.03em;
}
.place-tel:hover { color: var(--orange); }

.btn-map-inline {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-light); color: var(--green);
  border: 2px solid var(--green);
  border-radius: var(--r-pill);
  padding: 8px 18px; font-size: 0.82rem; font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-map-inline:hover {
  background: var(--green); color: #fff;
  transform: translateY(-2px);
}

/* Googleマップ（スケジュール内） */
.schedule-map {
  margin-top: 24px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--beige-dark);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section {
  background: linear-gradient(160deg, var(--cream) 0%, var(--beige) 50%, #ede8e0 100%);
  padding-top: 0; padding-bottom: 0;
}
.zigzag-top, .zigzag-bottom { height: 40px; width: 100%; }
.zigzag-top {
  background:
    linear-gradient(135deg, var(--beige) 25%, transparent 25%) -20px 0,
    linear-gradient(225deg, var(--beige) 25%, transparent 25%) -20px 0,
    linear-gradient(315deg, var(--beige) 25%, transparent 25%),
    linear-gradient(45deg,  var(--beige) 25%, transparent 25%);
  background-size: 40px 40px; background-color: var(--beige);
}
.zigzag-bottom {
  background:
    linear-gradient(135deg, #fff7f0 25%, transparent 25%) -20px 0,
    linear-gradient(225deg, #fff7f0 25%, transparent 25%) -20px 0,
    linear-gradient(315deg, #fff7f0 25%, transparent 25%),
    linear-gradient(45deg,  #fff7f0 25%, transparent 25%);
  background-size: 40px 40px; background-color: #fff7f0;
}
.pricing-section .container { padding-top: 72px; padding-bottom: 72px; }

/* ---- LINEクーポンバナー（早割と統一デザイン） ---- */
.line-coupon-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  margin: -28px auto 32px;
  background: linear-gradient(120deg, #7a3a20 0%, #a05030 45%, #c87840 100%);
  box-shadow: 0 12px 48px rgba(100,50,20,0.35);
}
.line-coupon-banner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 24px;
  padding: 28px 28px 24px;
}
.line-coupon-copy {
  text-align: left;
}
.line-coupon-title {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 8px;
}
.line-coupon-discount {
  display: flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.line-coupon-price-large {
  font-family: var(--font);
  font-size: clamp(3.2rem, 10vw, 5.2rem);
  font-weight: 700;
  color: #f5d89a;
  text-shadow: 0 4px 24px rgba(0,0,0,0.20);
}
.line-coupon-price-unit {
  font-family: var(--font);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #f5d89a;
  margin-right: 6px;
}
.line-coupon-price-arrow {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  font-weight: 700;
  margin: 0 10px;
}
.line-coupon-sub {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
}
.line-coupon-visual {
  position: relative;
  z-index: 1;
}
.line-coupon-visual img {
  width: 100%;
  display: block;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: 0 12px 36px rgba(60,30,10,0.28), 0 0 0 6px rgba(255,255,255,0.10);
}

/* ---- 早割バナー（大型） ---- */
.earlybird-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  margin-bottom: 52px;
  background: linear-gradient(120deg, #7a3a20 0%, #a05030 45%, #c87840 100%);
  box-shadow: 0 12px 48px rgba(100,50,20,0.35);
  animation: bannerPulse 3s ease-in-out infinite;
}
@keyframes bannerPulse {
  0%,100% { box-shadow: 0 12px 48px rgba(100,50,20,0.35); }
  50%      { box-shadow: 0 18px 60px rgba(100,50,20,0.50); }
}

/* キラキラ背景レイヤー */
.earlybird-banner-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(255,255,255,0.18) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.14) 0%, transparent 40%);
}
.earlybird-banner-bg::before,
.earlybird-banner-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
}
.earlybird-banner-bg::before {
  width: 260px; height: 260px;
  top: -80px; left: -60px;
}
.earlybird-banner-bg::after {
  width: 180px; height: 180px;
  bottom: -60px; right: 10%;
}

/* メインコンテンツ */
.earlybird-banner-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 44px 32px 36px;
  gap: 8px;
}

/* 「🎉 早割キャンペーン」バッジ */
.earlybird-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.22);
  border: 2px solid rgba(255,255,255,0.50);
  border-radius: var(--r-pill);
  color: #fff;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 20px;
  backdrop-filter: blur(4px);
  margin-bottom: 4px;
}

/* 「7月15日まで のご予約で」 */
.earlybird-main {
  color: #fff;
  line-height: 1.3;
  font-weight: 700;
  font-size: clamp(1.1rem, 3.5vw, 1.6rem);
  display: flex; align-items: baseline; flex-wrap: wrap;
  justify-content: center; gap: 4px;
}
.earlybird-date {
  font-family: var(--font);
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  font-weight: 700;
  color: #f5d89a;
  text-shadow: 0 2px 16px rgba(0,0,0,0.22);
  line-height: 1;
}
.earlybird-until {
  font-size: clamp(1.3rem, 4vw, 2.0rem);
  font-weight: 700;
  color: #fff;
}
.earlybird-reserve {
  font-size: clamp(1.0rem, 3vw, 1.4rem);
  font-weight: 700;
  color: rgba(255,255,255,0.92);
}

/* 「10%OFF」 */
.earlybird-discount {
  display: flex; align-items: baseline; justify-content: center;
  gap: 0;
  line-height: 1;
  margin: 4px 0 2px;
}
.earlybird-pct {
  font-family: var(--font);
  font-size: clamp(4.5rem, 16vw, 7.5rem);
  font-weight: 700;
  color: #f5d89a;
  text-shadow: 0 4px 24px rgba(0,0,0,0.20);
  line-height: 0.9;
}
.earlybird-pct-unit {
  font-family: var(--font);
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  font-weight: 700;
  color: #f5d89a;
  margin-right: 6px;
}
.earlybird-off {
  font-family: var(--font);
  font-size: clamp(2.8rem, 9vw, 5.0rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

/* 補足テキスト */
.earlybird-sub {
  font-size: clamp(0.88rem, 2vw, 0.88rem);
  color: rgba(255,255,255,0.80);
  margin-top: 4px;
}

/* 右デコ絵文字 */
.earlybird-deco {
  position: absolute; right: 28px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 6px;
  font-size: 2.2rem; z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
  animation: decoFloat 3s ease-in-out infinite;
}
@keyframes decoFloat {
  0%,100% { transform: translateY(-50%) rotate(-5deg); }
  50%      { transform: translateY(calc(-50% - 8px)) rotate(5deg); }
}
@media (max-width: 640px) {
  .earlybird-deco { display: none; }
  .earlybird-banner-inner { padding: 32px 20px 28px; }
}
.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 840px; margin: 0 auto 24px; }
.plan-card {
  background: #fff; border-radius: var(--r-xl); padding: 28px 24px;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s; border: 3px solid transparent;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-featured { border-color: var(--orange); background: linear-gradient(160deg,#fff 0%,#f8f0ea 100%); }
.plan-pop-badge {
  position: absolute; top: 16px; right: -20px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--dark); font-size: 0.73rem; font-weight: 700;
  padding: 6px 36px 6px 16px; border-radius: var(--r-pill);
  box-shadow: 0 4px 12px rgba(255,200,0,0.4);
  animation: badgePop 2s ease-in-out infinite;
}
@keyframes badgePop {
  0%,100% { transform: rotate(-2deg) scale(1); }
  50%      { transform: rotate(2deg) scale(1.06); }
}
.plan-header-deco { display: none; }
.plan-label {
  display: inline-block; background: var(--beige); color: var(--mid);
  font-size: 1rem; font-weight: 700; padding: 4px 14px;
  border-radius: var(--r-pill); margin-bottom: 10px; border: 1.5px solid var(--beige-dark);
}
.plan-label-hot { background: var(--orange-light); color: var(--orange); border-color: var(--orange); }
.plan-name {
  font-family: var(--font); font-size: 1.2rem; font-weight: 700;
  color: var(--dark); line-height: 1.45; margin-bottom: 6px;
}
.plan-img {
  border-radius: 1rem;
}
.plan-desc { font-size: 0.8rem; color: var(--light-text); margin-bottom: 20px; }
.plan-price-box {
  background: var(--beige); border-radius: 16px;
  padding: 18px; text-align: center; margin-bottom: 20px;
}
.price-box-hot { background: linear-gradient(135deg, var(--orange-light), var(--yellow-light)); }
.price-early { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.price-tag-label { font-size: 0.68rem; font-weight: 700; color: var(--orange); letter-spacing: 0.05em; }
.price-val {
  font-family: var(--font); font-size: 2.6rem; font-weight: 700;
  color: var(--pink-dark); line-height: 1;
}
.price-sub { font-size: 0.7rem; color: var(--light-text); }
.price-normal { font-size: 0.76rem; color: var(--light-text); margin-top: 6px; }

.official-price-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff7ef;
  border: 1px solid rgba(212,114,74,0.28);
  color: var(--orange);
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
  margin: 10px 0 0;
}

/* ---- 価格2段表示（早割 + 通常価格）---- */
.price-row {
  display: flex; flex-direction: column; align-items: center;
  gap: 2px; padding: 10px 12px; border-radius: 12px;
  margin-bottom: 8px;
}
.price-row:last-child { margin-bottom: 0; }
.price-row-label {
  font-size: 1rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--light-text); text-transform: none;
}
.price-row-label-early { color: var(--orange); }
.price-row-val {
  font-family: var(--font); font-size: 2.0rem; font-weight: 600;
  line-height: 1.1; color: var(--mid);
}
.price-row-val-early { font-size: 2.4rem; color: var(--pink-dark); }
.price-row-val-normal {
  font-size: 1.4rem; color: var(--mid); opacity: 0.75;
}
.price-row-tax { font-size: 0.65rem; font-weight: 400; color: var(--light-text); margin-left: 3px; }
.price-row-early {
  background: var(--pink-light); border: 1.5px solid var(--beige-dark);
}
.price-row-normal {
  background: rgba(0,0,0,0.04); border: 1.5px dashed rgba(0,0,0,0.12);
}

.plan-list { margin-bottom: 24px; flex: 1; }
.plan-list li {
  font-size: 0.86rem; color: var(--mid);
  padding: 8px 0; border-bottom: 1.5px dashed var(--beige-dark);
  display: flex; align-items: center; gap: 8px;
}
.plan-list li:last-child { border-bottom: none; }
.pricing-note { text-align: center; font-size: 0.76rem; color: var(--light-text); margin-top: 8px; }

/* ============================================================
   AVAILABILITY
   ============================================================ */
.availability-section {
  background: var(--beige);
}
.availability-card {
  background: rgba(255,255,255,0.92);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(122,158,106,0.18);
}
.availability-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
  padding: 6px 8px 0;
}
.availability-head-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.availability-head-note {
  font-size: 0.78rem;
  color: var(--light-text);
}
.availability-iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 20px;
  background: #fff;
  display: block;
}

/* ============================================================
   ORGANIZER
   ============================================================ */
.organizer-section { background: var(--cream); }
.organizer-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.org-card {
  background: #fff; border-radius: var(--r-xl); padding: 36px 24px; text-align: center;
  box-shadow: var(--shadow); transition: transform 0.25s;
  border-bottom: 5px solid var(--yellow);
}
.org-card:nth-child(2) { border-bottom-color: var(--orange); }
.org-card:nth-child(3) { border-bottom-color: var(--green); }
.org-card:hover { transform: translateY(-5px); }
.org-icon { font-size: 2.4rem; margin-bottom: 14px; }
.org-icon img { max-width: 180px; margin: 0 auto;}
.org-card h3 {
  font-size: 0.72rem; font-weight: 700; color: var(--light-text);
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 10px;
}
.org-card p { font-size: 0.88rem; color: var(--mid); line-height: 1.7; }



/* ============================================================
   RESERVE
   ============================================================ */
.reserve-section {
  background: linear-gradient(160deg, #2a1a0e 0%, #4a2a14 40%, #7a4020 100%);
  color: #fff; overflow: hidden; position: relative;
}
.reserve-confetti { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.reserve-inner { text-align: center; max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
@keyframes emojiBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.reserve-title {
  font-family: var(--font); font-size: clamp(1.8rem,4vw,2.6rem);
  font-weight: 700; margin-bottom: 20px; line-height: 1.3;
}
.reserve-desc { font-size: 0.93rem; color: rgba(255,255,255,0.85); line-height: 1.9; margin-bottom: 28px; }

.reserve-contact { margin-top: 28px; font-size: 0.8rem; color: rgba(255,255,255,0.65); }
.reserve-contact strong { color: rgba(255,255,255,0.9); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #2a1a0e; color: rgba(255,255,255,0.5); text-align: center; padding: 40px 24px; }
.footer-wave { line-height: 0; }
.footer-wave svg { width: 100%; height: 40px; }
.footer-logo { font-size: 1rem; color: rgba(255,255,255,0.8); font-weight: 700; margin-bottom: 8px; }
.footer-info { font-size: 0.78rem; line-height: 1.7; margin-bottom: 16px; }
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.3); }

/* ============================================================
   FLOATING LINE BUTTON
   ============================================================ */
.float-line-btn {
  position: fixed; bottom: 28px; right: 24px; z-index: 1000;
  background: var(--green-line); color: #fff;
  border-radius: var(--r-pill); padding: 14px 22px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 700;
  box-shadow: 0 6px 28px rgba(0,185,0,0.55);
  transition: opacity 0.4s, transform 0.3s, box-shadow 0.3s;
  opacity: 0;
}
.float-line-btn i { font-size: 1.4rem; }
.float-line-btn:hover { background: var(--green-line-d); transform: scale(1.07); box-shadow: 0 10px 36px rgba(0,185,0,0.65); }
.float-line-btn.show { opacity: 1; animation: linePulse 2.5s ease-in-out infinite; }
@keyframes linePulse {
  0%,100% { box-shadow: 0 6px 28px rgba(0,185,0,0.55); }
  50%      { box-shadow: 0 6px 28px rgba(0,185,0,0.55), 0 0 0 10px rgba(0,185,0,0.1); }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner { flex-direction: column; text-align: center; padding: 56px 24px 40px; gap: 18px; }
  .hero-logo-wrap { justify-content: center; position: relative; z-index: 10;}
  .hero-content { display: flex; flex-direction: column; }
  .hero-logo-stage { width: min(100%, 520px); }
  .hero-logo { max-width: 420px; }
  .hero-fv-movie-wrap {
    width: min(82vw, 360px);
    margin-top: -16px;
  }
  .hero-catch { justify-content: center; white-space: nowrap; }
  .hero-pills { justify-content: center; }
  .hero-countdown { text-align: center; order: 6; margin-bottom: 28px; margin-top: -18px; }
  .hero-visual { display: none; }
  .hero-parfait-frame { 
    width: min(65vw,300px);
    margin: 1rem auto 0; }
  .b1,.b2,.b3 { display: none; }

  .hero-content .hero-earlybird-bar {
    display: contents;
  }
  .hero-content .offer-image-card-early {
    order: 5;
  }
  .hero-content .offer-image-card-line {
    order: 7;
  }
  .hero-content .btn-hero {
    order: 8;
  }
  .hero-content .pricing-note {
    order: 9;
  }

  .reserve-section .hero-earlybird-bar {
    grid-template-columns: 1fr;
  }
  .line-coupon-banner-inner {
    grid-template-columns: 1fr;
    padding: 24px 22px 22px;
  }
  .line-coupon-copy {
    text-align: center;
  }
  .line-coupon-discount {
    justify-content: center;
  }
  .line-coupon-visual {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
  }

  /* .about-grid { grid-template-columns: 1fr; gap: 40px; } */

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

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-sub { grid-template-columns: repeat(3,1fr); grid-template-rows: none; }
  .gallery-sub .gallery-card { aspect-ratio: 1/1; }
  .chef-banner { grid-template-columns: 200px 1fr; }

  .schedule-grid { grid-template-columns: 1fr; }
  .scard-date-merged { grid-column: auto; }
  .date-schedule-list { grid-template-columns: 1fr; gap: 12px; }
  .plan-grid { grid-template-columns: 1fr; max-width: 480px; }
  .organizer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .section-header { margin-bottom: 28px; }
  .section-title { font-size: 1.3rem; font-weight: 500; }

  .fv-video {
  border-radius: 42% 49% 44% 44% / 36% 48% 44% 53%;
  width: 96%;
  margin-top: -5rem;
  }
  .hero-inner { padding: 18px 16px 32px; gap: 18px; }
  .hero-logo { max-width: min(67vw, 390px); }
  .hero-logo-wrap { margin-bottom: 6px; }
  .hero-fv-movie-wrap {
    width: min(88vw, 340px);
    margin-top: -50px;
  }
  .hero-fv-movie {
    aspect-ratio: 4 / 5.3;
    border-radius: 42% 38% 44% 44% / 36% 48% 44% 53%;
    box-shadow: 0 16px 40px rgba(120,70,40,0.18), 0 0 0 6px rgba(247,224,216,0.8);
  }
  .hero-video-modal-trigger {
    border-radius: 42% 38% 44% 44% / 36% 48% 44% 53%;
    padding: 20px 16px 22px;
  }
  .hero-video-modal-trigger-icon {
    width: 50px;
    height: 50px;
  }
  .hero-video-modal-trigger-text {
    font-size: 0.72rem;
  }
  .hero-catch { margin-top: 0.4rem; white-space: nowrap; font-size: clamp(0.98rem, 4.2vw, 1.2rem); gap: 3px; }
  .hero-earlybird-bar {
    gap: 8px;
  }
  .offer-mini {
    border-radius: 22px;
    padding: 14px 12px 12px;
  }
  .offer-mini-title {
    font-size: 0.94rem;
  }
  .offer-mini-number {
    font-size: 2.2rem;
  }
  .offer-mini-unit {
    font-size: 1.1rem;
  }
  .offer-mini-off {
    font-size: 1.6rem;
  }
  .offer-mini-arrow {
    font-size: 1.2rem;
    margin: 0 4px;
  }
  .offer-mini-sub {
    font-size: 0.72rem;
  }
  .line-coupon-banner {
    margin: -22px auto 24px;
    border-radius: 24px;
  }
  .line-coupon-banner-inner {
    padding: 20px 16px 18px;
  }
  .line-coupon-title {
    font-size: 1.08rem;
  }
  .line-coupon-discount {
    justify-content: center;
  }
  .line-coupon-price-large {
    font-size: 2.7rem;
  }
  .line-coupon-price-unit {
    font-size: 1.35rem;
    margin-right: 4px;
  }
  .line-coupon-price-arrow {
    font-size: 1.6rem;
    margin: 0 6px;
  }
  .line-coupon-sub {
    font-size: 0.76rem;
    text-align: center;
  }
  .line-coupon-visual img {
    border-radius: 20px;
    aspect-ratio: 4 / 4.8;
  }

  .availability-card {
    border-radius: 22px;
  }
  .availability-iframe {
    height: 360px;
  }

  .ing-grid { grid-template-columns: 1fr; }
.gallery-grid {
  flex-direction: column;
}
.gallery-card-wrap {
  width: 100%;
}
  .chef-banner { grid-template-columns: 1fr; }
  .chef-banner-img img { min-height: 200px;
     /* max-height: 240px; */
     height: 82vw;}
  .chef-banner-text { padding: 24px; }

  .feature-grid { grid-template-columns: 1fr; }
  .earlybird-ribbon { flex-direction: column; gap: 8px; padding: 16px; border-radius: var(--r-lg); }
  .plan-card { padding: 28px 20px; }

  .float-line-btn span { display: none; }
  .float-line-btn { width: 60px; height: 60px; border-radius: 50%; padding: 0; justify-content: center; }
  .date-chips { flex-direction: column; }
  .date-schedule-list { grid-template-columns: 1fr; gap: 10px; }
  .date-chip-lg { font-size: 0.92rem; }
}

/* アイテム制御 */
.container .sp-item {
    display: block;
}

.container .tab-item {
    display: none;
}

.container .pc-item {
    display: none;
}

.container .tab-pc-item {
    display: none;
}

.container .btn-before-mb {
    margin-bottom: 24px;
}

@media (min-width:640px) {

    .container .sp-item {
        display: none;
    }

    .container .tab-item {
        display: block;
    }

    .container .pc-item {
        display: none;
    }

    .container .tab-pc-item {
        display: block;
    }
}

@media (min-width:960px) {

    .container .sp-item {
        display: none;
    }

    .container .tab-item {
        display: none;
    }

    .container .sp-tab-item {
        display: none;
    }

    .container .pc-item {
        display: block;
    }

    .container .btn-before-mb {
        margin-bottom: 30px;
    }
}

.container .none {
    display: none;
}

/* ============================================================
   OFFER IMAGE LAYOUT + AVAILABILITY MODAL OVERRIDES
   ============================================================ */
.hero-earlybird-bar,
.offer-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.hero-earlybird-bar {
  margin-bottom: 18px;
  align-items: stretch;
}
.offer-showcase {
  max-width: 840px;
  margin: -8px auto 40px;
}
.offer-image-card {
  margin: 0;
  padding: 10px;
  background: rgba(255,255,255,0.94);
  border-radius: 30px;
  border: 1px solid rgba(212,114,74,0.16);
  box-shadow: 0 14px 36px rgba(100,50,20,0.18);
  overflow: hidden;
}
.offer-image-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
}
.hero-earlybird-bar .offer-image-card {
  padding: 8px;
  border-radius: 26px;
}
.hero-earlybird-bar .offer-image-card img,
.offer-showcase .offer-image-card img {
  /* aspect-ratio: 5 / 6.95; */
  object-fit: cover;
}
.hero-video-modal-dialog {
  width: min(980px, 94vw);
  height: auto;
}
.hero-video-modal-head {
  padding-right: 56px;
}
.hero-video-modal-player {
  width: 100%;
  max-height: 74vh;
  display: block;
  border-radius: 24px;
  background: #000;
}
.reserve-section .hero-earlybird-bar {
  margin-bottom: 20px;
}
.availability-section .container {
  max-width: 1240px;
}
.availability-card {
  padding: 20px;
  border-radius: 30px;
  max-width: 640px;
  margin: 0 auto;
}
.availability-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 8px 14px;
}
.availability-toolbar-note {
  font-size: 0.82rem;
  color: var(--light-text);
}
.availability-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.availability-open-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 8px 24px rgba(180,100,70,0.28);
  cursor: pointer;
}
.availability-open-btn:hover {
  transform: translateY(-2px);
}
.availability-frame-shell {
  background: #fff;
  border-radius: 24px;
  padding: 10px;
  box-shadow: inset 0 0 0 1px rgba(122,158,106,0.12);
}
.availability-iframe {
  height: 460px;
  border-radius: 18px;
}
.availability-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.availability-modal.is-open {
  display: flex;
}
.availability-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 20, 10, 0.72);
  backdrop-filter: blur(6px);
}
.availability-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1180px, 94vw);
  height: min(88vh, 860px);
  background: #fff;
  border-radius: 32px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}
.availability-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(58,42,26,0.08);
  color: var(--dark);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.availability-modal-head {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  padding-right: 56px;
}
.availability-modal-eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 4px;
}
.availability-modal-title {
  font-family: var(--font);
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  line-height: 1.4;
  color: var(--dark);
}
.availability-modal-note {
  font-size: 0.86rem;
  color: var(--light-text);
  margin-top: 4px;
}
.availability-modal-iframe {
  width: 100%;
  flex: 1;
  border: none;
  border-radius: 24px;
  background: #fff;
}
body.modal-open {
  overflow: hidden;
}

@media (max-width: 960px) {
  .hero-earlybird-bar,
  .offer-showcase {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

.hero-earlybird-bar .offer-image-card {
  margin-bottom: 28px;
}
  .availability-iframe {
    height: 420px;
  }
  .availability-modal-dialog {
    width: min(96vw, 860px);
    height: min(88vh, 820px);
  }
  .hero-video-modal-dialog {
    width: min(94vw, 760px);
  }
}

@media (max-width: 640px) {
  .hero-earlybird-bar,
  .offer-showcase {
    gap: 10px;
  }
  .hero-content .offer-image-card-early,
  .hero-content .offer-image-card-line,
  .hero-content .hero-countdown,
  .hero-content .btn-hero,
  .hero-content .pricing-note {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-content .hero-countdown {
    margin-bottom: 20px;
    margin-top: -10px;
  }
.hero-earlybird-bar .offer-image-card {
  padding: 5px;
  border-radius: 22px;
  margin-bottom: 20px;
}
  .offer-image-card img {
    border-radius: 16px;
  }
  .availability-card {
    padding: 14px;
    border-radius: 24px;
  }
  .availability-head {
    padding: 4px 4px 0;
    margin-bottom: 10px;
  }
  .availability-toolbar {
    margin: 0 4px 12px;
  }
  .availability-actions {
    width: 100%;
  }
  .availability-open-btn {
    width: 100%;
  }
  .availability-iframe {
    height: min(62vh, 440px);
  }
  .availability-modal {
    padding: 12px;
  }
  .availability-modal-dialog {
    width: 100%;
    height: min(90vh, 820px);
    border-radius: 24px;
    padding: 16px 12px 12px;
  }
  .hero-video-modal-dialog {
    height: auto;
    padding-bottom: 16px;
  }
  .availability-modal-head {
    flex-direction: column;
    padding-right: 0;
    gap: 10px;
  }
  .hero-video-modal-player {
    border-radius: 18px;
    background-color: rgba(58,42,26,0.08);
  }
  .availability-modal-close {
    top: 10px;
    right: 10px;
  }
  .availability-modal-iframe {
    border-radius: 18px;
  }
}
