:root {
  --orange: #f58220;
  --orange-dark: #e06a00;
  --yellow: #ffd100;
  --brown: #3d2314;
  --brown-light: #5c3a24;
  --wood: #2a1810;
  --white: #ffffff;
  --gray: #666666;
  --gray-light: #f7f4f0;
  --shadow: 0 4px 20px rgba(61, 35, 20, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --header-bar-h: 64px;
  --header-bar-h-compact: 52px;
  --header-wrap-pad: 0px;
  --header-h: calc(var(--header-wrap-pad) + var(--header-bar-h));
}

html.header-is-compact {
  --header-wrap-pad: 10px;
  --header-bar-h: var(--header-bar-h-compact);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  color: var(--brown);
  line-height: 1.7;
  background: var(--white);
}

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

/* ==========================================================
   Reveal — 種別ごと（js/reveal-config.js と対）
   ========================================================== */

.reveal {
  --reveal-delay: 0s;
  --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  will-change: opacity, filter, transform;
}

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

/* 画像：ギャラリー */
.reveal--gallery {
  filter: blur(5px);
  transform: translateY(10px) scale(1.03);
  transition:
    opacity 0.5s var(--reveal-ease) var(--reveal-delay),
    filter 0.55s var(--reveal-ease) var(--reveal-delay),
    transform 0.55s var(--reveal-ease) var(--reveal-delay);
}

.reveal--gallery.is-visible {
  transform: none;
}

.reveal--menu-photo {
  filter: blur(10px);
  transform: rotate(-8deg);
  transition:
    opacity 0.65s var(--reveal-ease) var(--reveal-delay),
    filter 0.7s var(--reveal-ease) var(--reveal-delay);
}

.reveal--menu-photo.is-visible {
  transform: rotate(-8deg);
}

.reveal--spots-photo {
  filter: blur(10px);
  transform: rotate(8deg);
  transition:
    opacity 0.65s var(--reveal-ease) var(--reveal-delay),
    filter 0.7s var(--reveal-ease) var(--reveal-delay);
}

.reveal--spots-photo.is-visible {
  transform: rotate(8deg);
}

.reveal--default {
  filter: blur(6px);
  transform: translateY(12px);
  transition:
    opacity 0.55s var(--reveal-ease) var(--reveal-delay),
    filter 0.6s var(--reveal-ease) var(--reveal-delay),
    transform 0.6s var(--reveal-ease) var(--reveal-delay);
}

.reveal--default.is-visible {
  transform: none;
}

/* 見出し・リード */
.reveal--section-title {
  filter: none;
  transform: translateY(14px);
  transition:
    opacity 0.45s var(--reveal-ease) var(--reveal-delay),
    transform 0.5s var(--reveal-ease) var(--reveal-delay);
}

.reveal--section-title.is-visible {
  transform: none;
}

.reveal--section-lead {
  filter: none;
  transform: translateY(10px);
  transition:
    opacity 0.45s var(--reveal-ease) 0.06s,
    transform 0.5s var(--reveal-ease) 0.06s;
}

.reveal--section-lead.is-visible {
  transform: none;
}

.reveal--service-card,
.reveal--scene-card,
.reveal--plan-card {
  filter: none;
  transform: translateY(16px);
  transition:
    opacity 0.5s var(--reveal-ease) var(--reveal-delay),
    transform 0.55s var(--reveal-ease) var(--reveal-delay);
}

.reveal--service-card.is-visible,
.reveal--scene-card.is-visible,
.reveal--plan-card.is-visible {
  transform: none;
}

.reveal--menu-content {
  filter: none;
  transform: translateY(12px);
  transition:
    opacity 0.5s var(--reveal-ease),
    transform 0.55s var(--reveal-ease);
}

.reveal--menu-content.is-visible {
  transform: none;
}

/* flow 各パーツ */
.reveal--flow-catch {
  filter: none;
  transform: translateY(14px);
  transition:
    opacity 0.5s var(--reveal-ease),
    transform 0.55s var(--reveal-ease);
}

.reveal--flow-intro {
  filter: none;
  transform: translateY(10px);
  transition:
    opacity 0.45s var(--reveal-ease) 0.05s,
    transform 0.5s var(--reveal-ease) 0.05s;
}

.reveal--flow-step {
  filter: none;
  transform: translateY(12px) scale(0.98);
  transition:
    opacity 0.45s var(--reveal-ease) var(--reveal-delay),
    transform 0.5s var(--reveal-ease) var(--reveal-delay);
}

.reveal--flow-catch.is-visible,
.reveal--flow-intro.is-visible,
.reveal--flow-step.is-visible {
  transform: none;
}

.reveal--flow-step.is-visible.reveal--flow-step {
  transform: none;
}

/* BBQ場所・FAQ・その他 */
.reveal--spot-card,
.reveal--faq-item,
.reveal--spots-footer,
.reveal--instagram-box,
.reveal--contact-item {
  filter: none;
  transform: translateY(12px);
  transition:
    opacity 0.45s var(--reveal-ease) var(--reveal-delay),
    transform 0.5s var(--reveal-ease) var(--reveal-delay);
}

.reveal--spot-card.is-visible,
.reveal--faq-item.is-visible,
.reveal--spots-footer.is-visible,
.reveal--instagram-box.is-visible,
.reveal--contact-item.is-visible {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible,
  .hero-bg,
  .hero.is-visible .hero-bg,
  .hero-inner > *,
  .hero.is-visible .hero-inner > *,
  .flow-section::before {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .reveal--menu-photo.is-visible {
    transform: rotate(-8deg);
  }

  .reveal--spots-photo.is-visible {
    transform: rotate(8deg);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-lead {
  text-align: center;
  color: var(--gray);
  margin-bottom: 40px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--header-wrap-pad) 0 0;
  background: transparent;
  transition: padding 0.28s ease;
}

.header-bar {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow);
  transition:
    border-radius 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.header.is-compact {
  padding-left: 16px;
  padding-right: 16px;
}

.header.is-compact .header-bar {
  border-radius: 999px;
  background: rgba(245, 130, 32, 0.97);
  box-shadow: 0 8px 28px rgba(61, 35, 20, 0.24);
  backdrop-filter: blur(8px);
}

.header.is-compact .logo-sub {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-bar-h);
  gap: 16px;
  transition: height 0.28s ease;
}

.logo-sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  opacity: 0.9;
  letter-spacing: 0.05em;
  max-height: 1.2em;
  transition: opacity 0.2s ease, max-height 0.25s ease, margin 0.25s ease;
}

.logo-main {
  display: block;
  font-size: 1.15rem;
  white-space: nowrap;
  transition: font-size 0.25s ease;
}

.logo {
  font-weight: 800;
  line-height: 1.3;
  flex-shrink: 0;
}

.logo-main span {
  color: var(--yellow);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.95;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s ease;
}

.nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-icon-btn,
.footer-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-icon-btn:hover,
.footer-icon-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

/* Unified SVG icons (assets/icons.svg) */
.icon {
  display: block;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--ui {
  width: 18px;
  height: 18px;
}

.icon--service {
  width: 36px;
  height: 36px;
}

.icon--flow {
  width: 100%;
  height: 100%;
}

.header-icon-btn .icon,
.footer-icon-btn .icon {
  width: 18px;
  height: 18px;
}

.header.is-compact .header-icon-btn {
  width: 34px;
  height: 34px;
}

.header.is-compact .header-icon-btn .icon {
  width: 16px;
  height: 16px;
}

.header.is-compact .nav {
  gap: 14px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
  line-height: 0;
}

.menu-toggle .icon {
  width: 22px;
  height: 22px;
}

.menu-toggle .icon-menu-close {
  display: none;
}

.menu-toggle.is-open .icon-menu-open {
  display: none;
}

.menu-toggle.is-open .icon-menu-close {
  display: block;
}

/* Hero */
.hero {
  margin-top: var(--header-h);
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  transform: scale(1);
  filter: none;
}

html.reveal-ready .hero-bg {
  opacity: 0;
  transform: scale(1.06);
  filter: blur(6px);
  transition:
    opacity 0.85s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s ease;
}

html.reveal-ready .hero:not(.is-visible) .hero-bg {
  opacity: 0;
}

html.reveal-ready .hero.is-visible .hero-bg {
  opacity: 1;
  transform: scale(1);
  filter: none;
}

.hero.is-visible .hero-bg {
  opacity: 1;
  transform: scale(1);
  filter: none;
}

.hero-inner > * {
  opacity: 1;
  transform: none;
}

html.reveal-ready .hero-inner > * {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero.is-visible .hero-stars { opacity: 1; transform: none; transition-delay: 0.12s; }
.hero.is-visible .hero-label { opacity: 1; transform: none; transition-delay: 0.2s; }
.hero.is-visible .hero-title { opacity: 1; transform: none; transition-delay: 0.28s; }
.hero.is-visible .hero-sub { opacity: 1; transform: none; transition-delay: 0.36s; }
.hero.is-visible .hero-area { opacity: 1; transform: none; transition-delay: 0.44s; }
.hero.is-visible .hero-actions { opacity: 1; transform: none; transition-delay: 0.52s; }

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(42, 24, 16, 0.45) 0%,
    rgba(42, 24, 16, 0.82) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  text-align: center;
}

.hero-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  opacity: 0.95;
}

.hero-stars {
  color: var(--yellow);
  font-size: 1.2rem;
  letter-spacing: 8px;
  margin-bottom: 8px;
}

.hero-title {
  font-size: clamp(2.2rem, 8vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  text-shadow:
    2px 2px 0 var(--orange),
    -2px -2px 0 var(--orange),
    2px -2px 0 var(--orange),
    -2px 2px 0 var(--orange);
  margin-bottom: 16px;
}

.hero-sub {
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 8px;
}

.hero-area {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--orange);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

/* Services */
.services {
  background: var(--gray-light);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  text-align: center;
  padding: 28px 16px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(245, 130, 32, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(245, 130, 32, 0.18);
}

.service-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--orange), #ff9a3c);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(245, 130, 32, 0.35);
}

.service-icon .icon {
  width: 36px;
  height: 36px;
}

.service-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray);
  line-height: 1.5;
}

/* Scenes */
.scene-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.scene-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}

.scene-card-img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #d4a574, var(--brown-light));
  overflow: hidden;
}

.scene-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scene-card-body {
  padding: 16px;
}

.scene-card-body h3 {
  font-size: 1rem;
  color: var(--orange);
  margin-bottom: 4px;
}

.scene-card-body p {
  font-size: 0.85rem;
  color: var(--gray);
}

.scene-card-body p a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
}

/* Plans */
.plans {
  background: var(--wood);
  color: var(--white);
}

.plans .section-title {
  color: var(--white);
}

.plans .section-lead {
  color: rgba(255, 255, 255, 0.75);
}

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

.plan-card {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.plan-img {
  aspect-ratio: 1200 / 826;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.plan-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.plan-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.plan-name {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.plan-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  margin-bottom: 4px;
}

.plan-price small {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.plan-price-included {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 4px;
}

.plan-tax {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 16px;
}

.plan-list {
  flex: 1;
  margin-bottom: 20px;
}

.plan-list li {
  font-size: 0.9rem;
  padding: 4px 0;
  padding-left: 1.2em;
  position: relative;
}

.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
}

.plan-card .btn {
  width: 100%;
}

.plan-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* Menu band */
.menu-band {
  background: var(--wood);
  color: var(--white);
  padding: 12px 0 36px;
}

.menu-band h2 {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 12px;
  color: var(--yellow);
}

.menu-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.menu-items li {
  background: rgba(255, 255, 255, 0.12);
  padding: 5px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.5;
}

.menu-note {
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.65;
  opacity: 0.8;
}

.menu-band-photo {
  display: none;
}

/* Flow — 参考: 漁師さん直送市場 flow02.png シェブロン型 */
.flow-section {
  position: relative;
  overflow: hidden;
  padding-top: 52px;
  padding-bottom: 56px;
}

.flow-section::before {
  content: "";
  position: absolute;
  inset: -20px;
  z-index: 0;
  background: url("../assets/images/flow-hero-bg.png") center center / cover no-repeat;
  opacity: 1;
  filter: none;
  transform: scale(1);
}

html.reveal-ready .flow-section:not(.is-visible)::before {
  filter: blur(6px);
  transform: scale(1.06);
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s ease;
}

html.reveal-ready .flow-section.is-visible::before {
  opacity: 1;
  filter: none;
  transform: scale(1);
}

.flow-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(31, 23, 18, 0.5) 0%,
    rgba(31, 23, 18, 0.62) 45%,
    rgba(31, 23, 18, 0.68) 100%
  );
  pointer-events: none;
}

.flow-section .container {
  position: relative;
  z-index: 1;
}

.flow-catch {
  text-align: center;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.flow-catch strong {
  color: #ffb347;
  font-size: clamp(1.5rem, 4vw, 2.05rem);
}

.flow-intro {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  margin: 0 0 28px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.flow-steps {
  display: grid;
  grid-template-columns: 0.84fr 0.84fr 0.84fr 1.48fr 0.84fr;
  align-items: stretch;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: min(1060px, 100%);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.flow-step {
  min-width: 0;
  display: flex;
}

.flow-chevron {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 188px;
  padding: 16px 16px 14px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, #fff6df 0%, #ffe9b8 100%);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 50%, calc(100% - 24px) 100%, 0 100%, 24px 50%);
  margin-left: -12px;
}

.flow-step--sub:nth-child(even) .flow-chevron {
  background: #fff;
}

.flow-step:first-child .flow-chevron {
  margin-left: 0;
  padding-left: 16px;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 50%, calc(100% - 24px) 100%, 0 100%);
}

.flow-step:last-child .flow-chevron {
  padding-right: 16px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 24px 50%);
}

.flow-step--sub:last-child .flow-chevron {
  background: linear-gradient(180deg, #fff6df 0%, #ffe9b8 100%);
}

.flow-step--main .flow-chevron {
  background: linear-gradient(180deg, #fff59d 0%, #ffb74d 52%, #ff8f2a 100%) !important;
  box-shadow:
    0 0 0 2px rgba(255, 220, 110, 0.55),
    0 6px 18px rgba(255, 120, 0, 0.28);
}

.flow-step--main .flow-chevron::before {
  content: "";
  position: absolute;
  inset: -6px -4px;
  z-index: -1;
  background: repeating-conic-gradient(
    from 0deg,
    transparent 0deg 8deg,
    rgba(255, 210, 60, 0.22) 8deg 10deg
  );
  pointer-events: none;
}

.flow-step--main .flow-chevron::after {
  content: "♪";
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 0.85rem;
  color: #b84a00;
  opacity: 0.7;
}

.flow-step-num {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 800;
  color: #d35400;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.flow-step-num span {
  display: block;
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 900;
  color: #e85d04;
  line-height: 1;
  margin-bottom: 1px;
}

.flow-step--sub .flow-step-num span {
  font-size: clamp(1.15rem, 2vw, 1.38rem);
}

.flow-step--main .flow-step-num span {
  font-size: clamp(1.65rem, 2.8vw, 2rem);
  color: #c03900;
}

.flow-step--main .flow-step-num {
  font-size: 0.7rem;
}

.flow-chevron h3 {
  margin: 0;
  font-size: clamp(0.64rem, 1.05vw, 0.76rem);
  font-weight: 800;
  color: #1a120c;
  line-height: 1.4;
}

.flow-step--sub .flow-chevron {
  justify-content: center;
  gap: 5px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.flow-step--sub .flow-chevron h3 {
  font-size: clamp(0.58rem, 0.92vw, 0.68rem);
  min-height: auto;
  display: block;
  margin: 0;
  flex: 0;
}

.flow-step--sub .flow-step-icon {
  width: 32px;
  height: 32px;
  margin-top: 0;
  flex-shrink: 0;
}

@media (min-width: 901px) {
  .flow-chevron {
    min-height: 208px;
    padding: 18px 18px 16px 26px;
  }

  .flow-step--sub .flow-chevron {
    gap: 10px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .flow-step--sub .flow-step-num {
    font-size: 0.78rem;
  }

  .flow-step--sub .flow-step-num span {
    font-size: clamp(1.55rem, 2.4vw, 1.85rem);
  }

  .flow-step--sub .flow-chevron h3 {
    font-size: clamp(0.82rem, 1.25vw, 0.98rem);
  }

  .flow-step--sub .flow-step-icon {
    width: 48px;
    height: 48px;
  }

  .flow-step--main .flow-chevron {
    gap: 12px;
    padding: 20px 22px 18px 30px;
  }

  .flow-step--main .flow-step-num {
    font-size: 0.85rem;
  }

  .flow-step--main .flow-step-num span {
    font-size: clamp(2.15rem, 3.5vw, 2.7rem);
  }

  .flow-step--main .flow-chevron h3 {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  }

  .flow-step--main .flow-step-cheer {
    font-size: clamp(0.82rem, 1.25vw, 0.98rem);
  }

  .flow-step--main .flow-step-icon {
    width: 68px;
    height: 68px;
  }

  .flow-step--main .flow-chevron::after {
    font-size: 1.15rem;
    top: 12px;
    right: 18px;
  }
}

.flow-step--main .flow-chevron h3 {
  font-size: clamp(0.78rem, 1.25vw, 0.92rem);
  color: #3d1500;
}

.flow-step-cheer {
  margin: 0;
  font-size: clamp(0.62rem, 1vw, 0.74rem);
  font-weight: 800;
  color: #a93200;
  letter-spacing: 0.06em;
}

.flow-step-icon {
  width: 36px;
  height: 36px;
  margin-top: 2px;
  color: #1a120c;
  flex-shrink: 0;
}

.flow-step--main .flow-step-icon {
  width: 46px;
  height: 46px;
  color: #3d1500;
}

.flow-step-icon .icon {
  width: 100%;
  height: 100%;
}

.flow-footnote {
  margin: 18px 0 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Spots / BBQ locations */
.spots {
  background: var(--gray-light);
}

.spots-disclaimer {
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
}

.spots-disclaimer p + p {
  margin-top: 8px;
}

.spots-subtitle {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.spots-subtitle:not(:first-of-type) {
  margin-top: 48px;
}

.spots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.spots-photo {
  display: none;
}

.spot-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.spot-card-header {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  padding: 20px;
}

.spot-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.spot-tag-alt {
  background: rgba(255, 209, 0, 0.35);
}

.spot-card-header h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.spot-area {
  font-size: 0.85rem;
  opacity: 0.9;
}

.spot-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.spot-card-body > p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 16px;
}

.spot-meta {
  margin-top: auto;
}

.spot-meta li {
  font-size: 0.82rem;
  padding: 6px 0;
  border-top: 1px solid #eee;
  color: var(--brown);
  line-height: 1.5;
}

.spot-meta li strong {
  color: var(--orange-dark);
}

.spots-cta {
  margin-top: 48px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow);
}

.spots-cta p {
  margin-bottom: 20px;
  color: var(--gray);
}

.faq-answer-inner a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
}

/* Gallery */
.gallery {
  background: var(--gray-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.gallery-item {
  aspect-ratio: 1;
  background: var(--brown);
  border-radius: var(--radius);
  overflow: hidden;
  list-style: none;
}

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

/* FAQ section */
.faq-section {
  background: var(--white);
}

/* Instagram */
/* Instagram — アカウント確定後に下記を削除して表示 */
#instagram,
a[href="#instagram"] {
  display: none;
}

.instagram-placeholder {
  background: var(--white);
  border: 2px dashed #ddd;
  border-radius: var(--radius);
  padding: 48px 24px;
  text-align: center;
  color: var(--gray);
}

.instagram-placeholder code {
  background: var(--gray-light);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85rem;
}

/* FAQ */
.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .faq-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.faq-item {
  min-width: 0;
}

.faq-question {
  width: 100%;
  height: 100%;
  background: var(--gray-light);
  border: 1px solid #e8e0d8;
  border-radius: var(--radius);
  text-align: left;
  padding: 16px 44px 16px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brown);
  cursor: pointer;
  position: relative;
  font-family: inherit;
  line-height: 1.5;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.faq-question:hover {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: var(--shadow);
}

.faq-question::after {
  content: "›";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--orange);
  font-weight: 800;
}

.faq-answer {
  display: none;
}

.faq-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.faq-modal[hidden] {
  display: none;
}

.faq-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 24, 16, 0.55);
}

.faq-modal-panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(80vh, 640px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.faq-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--gray-light);
  color: var(--brown);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-modal-close:hover {
  background: #ece6df;
}

.faq-modal-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 16px;
  padding-right: 32px;
  line-height: 1.5;
}

.faq-modal-body {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
}

.faq-modal-body a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
}

/* Contact */
.contact {
  background: var(--gray-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 640px;
  margin: 0 auto;
}

.contact-phone-box {
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
}

.contact-phone-box h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.contact-phone-number {
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 16px;
  display: block;
}

.contact-phone-box p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 8px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-group label .required {
  color: var(--orange);
  font-size: 0.75rem;
  margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-message {
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.form-message--success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-message--error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

.form-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--gray);
  text-align: center;
}

.privacy-agreement {
  margin: 8px 0 20px;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--brown);
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}

.privacy-check-label {
  flex: 1;
}

.privacy-link {
  display: inline;
  padding: 0;
  border: 0;
  background: none;
  color: var(--orange);
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.privacy-link:hover {
  color: var(--orange-dark, #d96d10);
}

.form-submit {
  margin-top: 4px;
}

.form-recaptcha-notice {
  margin-top: 12px;
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--gray);
  text-align: center;
}

.form-recaptcha-notice a {
  color: var(--orange);
  text-decoration: underline;
}

.form-recaptcha-notice a:hover {
  color: var(--orange-dark, #d96d10);
}

.privacy-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 11000;
  box-sizing: border-box;
  padding: 24px;
  background: rgba(0, 0, 0, 0.55);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.privacy-modal.is-open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

body.privacy-modal-open {
  overflow: hidden;
}

.privacy-modal-content {
  position: relative;
  flex: 0 1 600px;
  width: min(600px, 100%);
  max-height: min(85vh, calc(100vh - 48px));
  margin: 5vh auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.privacy-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
  background: #faf7f4;
}

.privacy-modal-header h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--brown);
}

.privacy-modal-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--gray);
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-modal-close:hover {
  color: var(--brown);
}

.privacy-modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 20px;
  color: var(--brown);
  line-height: 1.7;
  font-size: 0.92rem;
}

.privacy-modal-body h4 {
  margin: 18px 0 8px;
  font-size: 0.95rem;
  color: var(--brown);
}

.privacy-modal-body p {
  margin: 0 0 10px;
}

.privacy-modal-body ul {
  margin: 8px 0 12px;
  padding-left: 1.25rem;
}

.privacy-modal-body li {
  margin-bottom: 6px;
}

.privacy-modal-body a {
  color: var(--orange);
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--orange);
  color: var(--white);
  padding: 28px 0 24px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  color: var(--white);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
}

.footer-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.95;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.footer-nav a:hover {
  opacity: 1;
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.footer-copy {
  margin-top: 20px;
  font-size: 0.75rem;
  opacity: 0.8;
  text-align: center;
}

@media (min-width: 901px) {
  .footer-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .footer-nav {
    flex: 1;
    justify-content: center;
    gap: 16px;
  }
}

/* Fixed mobile CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 10px 16px;
  gap: 10px;
}

.mobile-cta .btn {
  flex: 1;
  padding: 12px;
  font-size: 0.9rem;
}

/* Responsive */
@media (min-width: 901px) {
  .flow-section {
    padding-top: 64px;
  }

  .menu-band {
    position: relative;
    z-index: 2;
    padding: 0 0 40px;
    overflow-x: clip;
    overflow-y: visible;
  }

  .menu-band-layout {
    position: relative;
    overflow: visible;
  }

  .menu-band-photo {
    display: block;
    position: absolute;
    z-index: 3;
    left: clamp(-72px, -6vw, -40px);
    top: clamp(-112px, -10vw, -72px);
    width: min(308px, 28.6vw);
    margin: 0;
    pointer-events: none;
    transform: translateY(25%);
  }

  .menu-band-photo img {
    display: block;
    width: 97%;
    max-width: none;
    margin-left: -4%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    transform: rotate(-8deg);
    transform-origin: 35% 70%;
    border: 4px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  }

  .menu-band-content {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
    padding: 0;
    margin-top: clamp(-36px, -3vw, -20px);
    padding-bottom: clamp(20px, 2.5vw, 32px);
    text-align: center;
  }

  .menu-band h2 {
    text-align: center;
    margin-bottom: 14px;
  }

  .menu-items {
    justify-content: center;
    margin-bottom: 14px;
  }

  .menu-note {
    text-align: center;
  }

  .spots-grid--featured {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    overflow: visible;
  }

  .spots {
    overflow-x: clip;
  }

  .spots-grid--featured .spots-photo {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    grid-column: 3;
    grid-row: 1;
    align-self: start;
    margin-top: clamp(-128px, -11vw, -88px);
    margin-right: clamp(-72px, -6vw, -40px);
    width: calc(100% + clamp(48px, 4vw, 72px));
    padding: 0;
  }

  .spots-grid--featured .spots-photo img {
    display: block;
    width: 88%;
    max-width: none;
    margin-right: -4%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    transform: rotate(8deg);
    transform-origin: 65% 70%;
    border: 4px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  }
}

@media (max-width: 900px) {
  .service-grid,
  .scene-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .flow-section {
    padding-top: 40px;
    padding-bottom: 48px;
  }

  .flow-intro {
    font-size: 0.75rem;
    margin-bottom: 14px;
  }

  .flow-steps {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 18px auto 0;
    gap: 0;
    filter: none;
    max-width: 300px;
  }

  .flow-step:not(:last-child)::after {
    content: "▼";
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.6rem;
    line-height: 1;
    padding: 4px 0;
  }

  .flow-chevron,
  .flow-step--sub .flow-chevron,
  .flow-step--main .flow-chevron {
    clip-path: none;
    margin-left: 0;
    min-height: auto;
    padding: 16px 14px;
    border-radius: 6px;
    gap: 5px;
  }

  .flow-step--main .flow-chevron {
    padding: 18px 14px;
    box-shadow:
      0 0 0 2px rgba(255, 220, 110, 0.45),
      0 4px 14px rgba(255, 120, 0, 0.22);
  }

  .flow-step--main .flow-chevron::before {
    inset: -4px;
  }

  .flow-step:first-child .flow-chevron,
  .flow-step:last-child .flow-chevron {
    clip-path: none;
    padding-left: 14px;
    padding-right: 14px;
  }

  .flow-step--sub:nth-child(even) .flow-chevron {
    background: linear-gradient(180deg, #fff6df 0%, #ffe9b8 100%);
  }
}

@media (max-width: 640px) {
  .nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--orange-dark);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .header.is-compact {
    padding-left: 10px;
    padding-right: 10px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-icon-btn {
    width: 36px;
    height: 36px;
  }

  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 70px;
  }

  .section {
    padding: 56px 0;
  }
}
