/* ============================================================
   CSS変数
============================================================ */
:root {
  /* カラー */
  --cream:    #FFF4D8;
  --cream-lt: #FFF8EA;
  --sky:      #DDF4FF;
  --pink:     #FF5CA8;
  --orange:   #FF9F43;
  --dark:     #17213A;
  --dark-mid: #1e2d4d;
  --text:     #1D1D2F;
  --muted:    #6B7280;
  --border:   #E5E0D8;
  --white:    #FFFFFF;

  /* タイポグラフィ（1種類に絞る） */
  --font: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Noto Sans JP",
          "Yu Gothic", YuGothic, sans-serif;

  /* レイアウト */
  --pad-sp: 24px;
  --pad-pc: 40px;
  --max-w:  1080px;
  --max-text: 640px;

  /* セクション余白 */
  --gap-sm: 48px;
  --gap-md: 80px;
  --gap-lg: 120px;
}

/* ============================================================
   リセット / ベース
============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  {
  background: var(--dark); /* フッター下の余白もダーク */
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px; /* float-cta分（スマホ） */
}
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-sp);
  padding-right: var(--pad-sp);
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   固定フッターCTA（スマホのみ・ピルボタン単体）
============================================================ */
.float-cta {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 76vw;
  max-width: 300px;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: translateX(-50%) translateY(8px);
}
.float-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.float-cta__btn {
  display: block;
  width: 100%;
  background: var(--orange);
  color: var(--text);
  text-align: center;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 24px rgba(255,159,67,0.4);
  transition: opacity 0.2s;
}
.float-cta__btn:active { opacity: 0.82; }

/* ============================================================
   ナビゲーション
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-sp);
  background: transparent;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(255, 248, 234, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav__logo {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.45;
  transition: color 0.3s;
}
.nav.scrolled .nav__logo { color: var(--text); }

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s, background 0.3s;
}
.nav.scrolled .nav__toggle span { background: var(--text); }
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__menu {
  display: none;
  position: absolute;
  top: 60px; left: 0; right: 0;
  background: rgba(255,248,234,0.97);
  backdrop-filter: blur(12px);
  flex-direction: column;
  padding: 12px 0 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.nav__menu.open { display: flex; }
.nav__menu a {
  padding: 11px var(--pad-sp);
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  transition: color 0.15s;
}
.nav__menu a:hover { color: var(--orange); }
.nav__apply {
  margin: 8px var(--pad-sp) 0;
  background: var(--orange);
  color: var(--text) !important;
  border-radius: 100px;
  text-align: center;
  font-weight: 700 !important;
  padding: 12px var(--pad-sp) !important;
}

/* ============================================================
   汎用CTAボタン
============================================================ */
.btn-cta {
  display: block;
  width: 76vw;
  max-width: 300px;
  margin: 0 auto;
  background: var(--orange);
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 13px 24px;
  border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
  text-align: center;
}
.btn-cta:hover  { opacity: 0.87; transform: translateY(-2px); }
.btn-cta:active { opacity: 0.75; transform: none; }
.btn-cta--outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-cta--outline:hover {
  background: rgba(255,255,255,0.1);
  opacity: 1;
}

/* ============================================================
   HERO — 動画背景
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark); /* 動画ロード前のフォールバック */
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(10,16,30,0.35) 0%,
      rgba(10,16,30,0.2)  40%,
      rgba(10,16,30,0.55) 80%,
      rgba(23,33,58,0.85) 100%
    );
}

/* 下部を背景色（cream）に溶け込ませる */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 80px var(--pad-sp) 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* ロゴ：将来的に <img> へ差し替え */
.hero__logo-text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.12em;
  line-height: 1.8;
}

/* ジャンルコピー：最大テキスト */
.hero__copy {
  font-size: clamp(26px, 6.5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.hero__date {
  font-size: 14px;
  font-weight: 900;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.14em;
}

/* スクロールヒント */
.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.3);
}

/* ============================================================
   STORY — ヒーロー下部に重なるカード
============================================================ */
.story-bg {
  background: var(--cream);
  padding: 0 var(--pad-sp) var(--gap-md);
}

.story__card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px var(--pad-sp) 56px;
  max-width: 720px;
  margin: -80px auto 0; /* ヒーロー下部に重なる */
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 40px rgba(0,0,0,0.12);
}

.story__heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.story__heading-en {
  display: block;
  font-size: clamp(48px, 12vw, 88px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.06em;
  line-height: 1;
}
.story__heading-ja {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.story__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  max-width: var(--max-text);
}
.story__keywords {
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.story__climax {
  font-size: clamp(18px, 4.5vw, 26px);
  font-weight: 900;
  line-height: 1.6;
  color: var(--text);
  padding-top: 32px;
  margin-top: 12px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   WORLD VISUAL — 差し替え用プレースホルダー
============================================================ */
.world-visual {
  width: 100%;
  aspect-ratio: 16 / 7;
  background: linear-gradient(135deg, var(--sky) 0%, var(--cream) 60%, #FFE8C0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.world-visual__media {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.world-visual__media img,
.world-visual__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.world-visual__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--muted);
  opacity: 0.4;
}

/* ============================================================
   WORLD — ごきげんワールドとは？
============================================================ */
/* WORLDセクションの見出しはborderなし（STORYカード内とは別扱い） */
.world .story__heading {
  border-bottom: none;
  padding-bottom: 0;
}

.world {
  background: var(--white);
  padding: var(--gap-md) 0;
}
.world__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  max-width: var(--max-text);
}
/* 核コピー：余白と改行で印象的に */
.world__lead {
  font-size: clamp(16px, 3.8vw, 20px);
  font-weight: 700;
  line-height: 1.8;
  padding: 28px 0;
  border-top: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
}

/* ============================================================
   EXPERIENCE — 当日、あなたが体験すること
============================================================ */
.experience {
  background: var(--cream);
  padding: var(--gap-md) 0 0;
}
.experience__header {
  margin-bottom: 32px;
}
.section-title {
  font-size: clamp(22px, 5.5vw, 28px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 28px;
}
.section-title--lg {
  font-size: clamp(24px, 6vw, 34px);
  margin-bottom: 12px;
}

/* 横スクロールラッパー（スマホ）/ グリッドラッパー（PC） */
.exp-cards-wrap {
  padding-bottom: var(--gap-md);
}
.exp-cards {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--pad-sp) 20px;
  /* スクロールバー非表示 */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.exp-cards::-webkit-scrollbar { display: none; }

.exp-card {
  flex: 0 0 calc(85vw - 48px);
  max-width: 320px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

/* カード画像エリア（プレースホルダー） */
.exp-card__visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--cream-lt);
}
.exp-card__visual--1 {
  background: linear-gradient(135deg, #FFE0A0 0%, #FFB347 100%);
}
.exp-card__visual--2 {
  background: linear-gradient(135deg, var(--sky) 0%, #8EC5FC 100%);
}
.exp-card__visual--3 {
  background: linear-gradient(135deg, #FFD2D2 0%, #FFABAB 100%);
}
.exp-card__visual--4 {
  background: linear-gradient(135deg, #C9F7C5 0%, #6BCB77 100%);
}
.exp-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp-card__body {
  padding: 20px 20px 24px;
}
.exp-card__title {
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}
.exp-card__desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}

/* ============================================================
   WHY SING — なぜ歌うのか？（濃紺背景）
============================================================ */
.why-sing {
  background: var(--dark);
  color: var(--white);
  padding: var(--gap-md) 0;
}
.ws__title {
  font-size: clamp(22px, 5.5vw, 32px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 36px;
}
.ws__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.78);
  max-width: var(--max-text);
}
.ws__highlight {
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 700;
  line-height: 1.7;
  color: var(--white);
  padding: 28px;
  background: rgba(255,255,255,0.07);
  border-radius: 12px;
  border-left: 4px solid var(--orange);
}
/* キーメッセージ：スクロール中に必ず目に止まる独立行 */
.ws__key-message {
  font-size: clamp(22px, 5.5vw, 32px);
  font-weight: 900;
  line-height: 1.7;
  color: var(--white);
  padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
/* 「へんてこ」「天才」のみオレンジ */
.ws__em {
  color: var(--orange);
}

.ws__closing {
  font-weight: 700;
  color: var(--white);
}

/* ============================================================
   HARMONY — 一人残らずごきげんな調和
============================================================ */
.harmony {
  background: var(--dark);
  padding: var(--gap-md) 0;
}
.harmony__card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 16px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.harmony__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin-bottom: 16px;
}
.harmony__title {
  font-size: clamp(22px, 6vw, 32px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}
.harmony__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
}
.harmony__cap {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

/* ============================================================
   EVENT INFO — 開催情報
============================================================ */
.event-info {
  background: var(--cream);
  padding: var(--gap-md) 0 var(--gap-sm);
}
.evinfo__card {
  max-width: var(--max-text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 28px;
}
.evinfo__row {
  display: flex;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.evinfo__row:last-child {
  border-bottom: none;
}
.evinfo__label {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  white-space: nowrap;
  padding-top: 3px;
  min-width: 44px;
}
.evinfo__icon {
  flex-shrink: 0;
  margin-top: 1px;
}
.evinfo__value {
  flex: 1;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}
.evinfo__date {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.evinfo__times {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.evinfo__time-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.evinfo__time-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  min-width: 52px;
  letter-spacing: 0.04em;
}
.evinfo__time-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.evinfo__time-note {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 4px;
}
.evinfo__venue-name {
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 6px;
}
.evinfo__address {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border);
  transition: color 0.2s;
}
.evinfo__address:hover {
  color: var(--text);
}
.evinfo__map-icon {
  flex-shrink: 0;
  opacity: 0.6;
}

/* ============================================================
   ENTRY METHODS — 参加方法
============================================================ */
.entry-methods {
  background: var(--cream);
  padding: 0 0 var(--gap-md);
}

/* セクションヘッダー */
.em__header {
  background: var(--cream);
  padding: var(--gap-sm) 0 0;
  margin-bottom: 28px;
}
.em__main-title {
  font-size: clamp(22px, 5.5vw, 32px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
}
.em__main-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: var(--max-text);
}

.em__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}
.em__card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}
.em__card--featured {
  border-color: var(--text);
  box-shadow: 2px 2px 0 var(--text);
}

/* SVGアイコンラッパー */
.em__card-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--text);
}
.em__card--featured .em__card-icon {
  background: rgba(29,29,47,0.06);
}

.em__card-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 8px;
}
.em__card-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
}
.em__card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 16px;
}
/* 箇条書きリスト */
.em__card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.em__card-list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  padding-left: 16px;
  position: relative;
}
.em__card-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--muted);
  font-weight: 400;
}

/* ============================================================
   ENTRY TICKET — 参加費
============================================================ */
.ticket-section {
  background: var(--white);
  padding: var(--gap-md) 0;
}
.ticket-section__note {
  font-size: 14px;
  color: var(--muted);
  max-width: var(--max-text);
  margin-bottom: 28px;
}

.gw-ticket {
  max-width: 680px;
  border: 2px solid var(--text);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 36px;
}
.gw-ticket__main {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gw-ticket__en {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: var(--text);
}
.gw-ticket__subtitle {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.gw-ticket__price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.gw-ticket__price {
  font-size: clamp(36px, 9vw, 52px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
}
.gw-ticket__tax {
  font-size: 14px;
  color: var(--muted);
}

/* ミシン目 */
.gw-ticket__divider {
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    transparent      0px, transparent      8px,
    rgba(29,29,47,.2) 8px, rgba(29,29,47,.2) 14px
  );
  position: relative;
  flex-shrink: 0;
}
.gw-ticket__divider::before,
.gw-ticket__divider::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(29,29,47,0.15);
  z-index: 2;
}
.gw-ticket__divider::before { left: -12px; }
.gw-ticket__divider::after  { right: -12px; }

.gw-ticket__stub {
  padding: 24px 28px;
}
.gw-ticket__includes-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin-bottom: 14px;
}
.gw-ticket__includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gw-ticket__includes li {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
  padding-left: 16px;
  position: relative;
}
.gw-ticket__includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--muted);
}
.gw-ticket__includes small {
  color: var(--muted);
  font-size: 11px;
}

.ticket-section__cta {
  display: block;
}

/* ============================================================
   プチ移住 — 1ヶ月プチ移住で体験できること
============================================================ */
.petchi-iju {
  background: var(--white);
  padding: var(--gap-md) 0;
}
.pij__intro {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
  line-height: 1.9;
  max-width: var(--max-text);
  margin-bottom: 40px;
}

/* 3つの柱 タイトル */
.pij__pillars-title {
  font-size: clamp(18px, 4.5vw, 22px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 16px;
}

/* カード共通 */
.pij__pillars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: var(--max-text);
}
.pij__pillar {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

/* トグル開閉カード（summary） */
.pij__pillar-summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 20px;
  list-style: none;
  cursor: pointer;
  user-select: none;
  gap: 12px;
}
.pij__pillar-summary::-webkit-details-marker { display: none; }
.pij__pillar-summary::marker { display: none; }
.pij__pillar-summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1;
  margin-top: 4px;
}
.pij__pillar[open] > .pij__pillar-summary::after { content: '×'; }
.pij__pillar[open] { border-color: var(--text); }

.pij__pillar-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pij__pillar-badge {
  font-size: 14px;
  font-weight: 900;
  color: var(--text);
}
.pij__pillar-sub {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.pij__pillar-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* 詳細パネル */
.pij__pillar-detail {
  padding: 20px 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--text);
}
.pij__detail-heading {
  font-size: 14px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.02em;
  padding-bottom: 2px;
}

/* アプローチ（詳細パネル内） */
.pij__approaches {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pij__approach {
  background: var(--cream);
  border-radius: 10px;
  padding: 16px;
}
.pij__approach-title {
  font-size: 14px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 3px;
}
.pij__approach-sub {
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.pij__approach-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pij__approach-list li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.6;
}
.pij__approach-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--border);
}

/* サイクル（詳細パネル内） */
.pij__cycle {
  display: flex;
  flex-direction: column;
  padding: 2px 0 2px 16px;
  border-left: 2px solid var(--orange);
}
.pij__cycle p {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 2.2;
}

/* リビングルールリスト */
.pij__living-rules {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pij__living-rules li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}
.pij__living-rules li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--border);
}

/* 静的カード（オフライン）：開閉なし、やや淡く */
.pij__pillar--static {
  padding: 18px 20px;
  background: var(--cream-lt);
  border-color: rgba(229,224,216,0.6);
  cursor: default;
}
.pij__pillar-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}
.pij__pillar-note a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   SCHEDULE — スケジュール
============================================================ */
.schedule-section {
  background: var(--cream);
  padding: var(--gap-md) 0 var(--gap-sm);
}
.schedule-section__img-wrap {
  width: 100%;
  margin: 28px 0 24px;
}
.schedule-section__img {
  width: 100%;
  height: auto;
  display: block;
}
.schedule-section__notes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.schedule-section__notes li {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   SAFETY — 安心して声を出せる場にするために（カード1枚）
============================================================ */
.safety-section {
  background: var(--cream);
  padding: 0 0 var(--gap-sm);
}
.safety-section__card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
  max-width: var(--max-text);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.safety-section__title {
  font-size: 15px;
  font-weight: 900;
  color: var(--text);
}
.safety-section__body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text);
}
.safety-section__note {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

/* ============================================================
   STEPS — 参加までの5ステップ
============================================================ */
.steps-section {
  background: var(--white);
  padding: var(--gap-md) 0;
}
.steps-wrap {
  overflow-x: auto;
  padding: 24px var(--pad-sp) 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.steps-wrap::-webkit-scrollbar { display: none; }
.steps {
  display: flex;
  align-items: flex-start;
  width: max-content;
}
.step {
  width: 152px;
  flex-shrink: 0;
  padding: 16px;
  background: var(--cream);
  border-radius: 10px;
}
.step__num {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.step__title {
  font-size: 14px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.4;
}
.step__desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.step__arrow {
  display: flex;
  align-items: center;
  padding: 0 6px;
  color: var(--muted);
  font-size: 16px;
  margin-top: 24px;
  flex-shrink: 0;
}
.steps-section__note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  max-width: var(--max-text);
  line-height: 1.6;
}

/* ============================================================
   FAQ
============================================================ */
.faq-section {
  background: var(--cream);
  padding: var(--gap-md) 0;
}
.faq-list {
  max-width: var(--max-text);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  gap: 16px;
  user-select: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::marker { display: none; }
.faq-item__q::after {
  content: '+';
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1;
  transition: transform 0.2s;
}
.faq-item[open] > .faq-item__q::after {
  content: '×';
}
.faq-item__a {
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  max-width: calc(var(--max-text) - 40px);
}

/* ============================================================
   FINAL CTA
============================================================ */
/* Final CTAのボタンは白地オレンジ文字（float-ctaと差別化） */
.final-cta .btn-cta {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.final-cta .btn-cta:hover {
  background: var(--cream-lt);
  opacity: 1;
}

.final-cta {
  background:
    radial-gradient(ellipse at 50% 0%, var(--dark-mid) 0%, var(--dark) 60%);
  padding: var(--gap-md) 0;
  color: var(--white);
  text-align: center;
}
.final-cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.fcta__title {
  font-size: clamp(26px, 6.5vw, 42px);
  font-weight: 900;
  line-height: 1.4;
  color: var(--white);
}
.fcta__body {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.75);
  max-width: 440px;
}

/* ============================================================
   フッター
============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 40px var(--pad-sp) 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer__logo {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}
.footer__date {
  font-size: 12px;
  letter-spacing: 0.08em;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 8px 0;
}
.footer__links a {
  font-size: 13px;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }
.footer__copy {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  margin-top: 8px;
}

/* ============================================================
   PC レイアウト（768px以上）
============================================================ */
@media (min-width: 768px) {
  body { padding-bottom: 0; }

  /* float-cta: スマホ専用 */
  .float-cta { display: none; }

  /* Nav */
  .nav {
    padding: 0 var(--pad-pc);
    height: 72px;
  }
  .nav__toggle { display: none; }
  .nav__menu {
    display: flex !important;
    position: static;
    background: transparent;
    backdrop-filter: none;
    flex-direction: row;
    align-items: center;
    padding: 0;
    box-shadow: none;
    gap: 4px;
  }
  .nav__menu a {
    padding: 8px 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s;
  }
  .nav__menu a:hover { color: var(--white); }
  .nav.scrolled .nav__menu a { color: var(--text); }
  .nav.scrolled .nav__menu a:hover { color: var(--orange); }
  .nav__apply {
    margin: 0;
    padding: 10px 20px !important;
    font-size: 13px !important;
    color: var(--text) !important;
  }

  /* Container */
  .container { padding-left: var(--pad-pc); padding-right: var(--pad-pc); }

  /* Story card */
  .story-bg { padding: 0 var(--pad-pc) var(--gap-lg); }
  .story__card { padding: 56px 48px 72px; }

  /* World visual */
  .world-visual { aspect-ratio: 21 / 7; }

  /* Experience: 横スクロール解除・2x2グリッド */
  .experience {
    padding: var(--gap-md) 0;
  }
  .exp-cards-wrap {
    padding-bottom: 0;
  }
  .exp-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
    padding: 0 var(--pad-pc);
    gap: 24px;
  }
  .exp-card {
    flex: none;
    max-width: none;
  }

  /* Entry methods: 横並び */
  .em__cards {
    flex-direction: row;
    align-items: stretch;
  }
  .em__card { flex: 1; }

  /* プチ移住: アプローチ2列（詳細パネル内） */
  .pij__approaches { flex-direction: row; }
  .pij__approach   { flex: 1; }

  /* Schedule: 左右に内側パディング */
  .schedule-section__img-wrap {
    padding: 0 var(--pad-pc);
  }

  /* Steps: 横スクロール解除・均等分割 */
  .steps-wrap {
    overflow-x: visible;
    padding: 24px var(--pad-pc) 8px;
  }
  .steps {
    width: auto;
  }
  .step {
    flex: 1;
    width: auto;
  }

  /* Ticket: main + stub を横並びに */
  .gw-ticket {
    display: flex;
    flex-direction: row;
  }
  .gw-ticket__main {
    flex: 1;
    padding: 40px 36px;
  }
  .gw-ticket__divider {
    width: 2px; height: auto;
    background: repeating-linear-gradient(
      to bottom,
      transparent      0px, transparent      8px,
      rgba(29,29,47,.2) 8px, rgba(29,29,47,.2) 14px
    );
  }
  .gw-ticket__divider::before,
  .gw-ticket__divider::after {
    top: auto; left: 50%; transform: translateX(-50%);
  }
  .gw-ticket__divider::before { top: -12px; }
  .gw-ticket__divider::after  { top: auto; bottom: -12px; }
  .gw-ticket__stub {
    width: 220px;
    flex-shrink: 0;
    padding: 40px 28px;
  }
}

/* ============================================================
   モーション軽減
============================================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .float-cta { transition: none; }
  html { scroll-behavior: auto; }
}
