/* =====================================================================
   ファンツアーLP スタイル(白地×ポップ。場所を選ばない汎用デザイン)
   ※ 色は config.js の theme から CSS変数で注入される。ここは編集不要。
   ===================================================================== */
:root {
  --accent: #f2617f;
  --accent-dark: #d1435f;
  --accent-soft: #fdeef2;
  --sub: #33507d;
  --gold: #f7b731;
  --ink: #33312e;
  --bg: #ffffff;
  --head: "Zen Maru Gothic", sans-serif;
  --sans: "Zen Kaku Gothic New", sans-serif;
  --hand: "Yomogi", cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.9;
  font-size: 15.5px;
  letter-spacing: 0.03em;
  overflow-wrap: anywhere;
}
img { max-width: 100%; display: block; }
a { color: var(--accent-dark); }
ul, ol { list-style: none; }

.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.small { font-size: 0.85em; color: #79736c; }

/* ---------- ボタン(ステッカー風) ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--head);
  font-weight: 700;
  border-radius: 999px;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 16px 56px;
  font-size: 17px;
  box-shadow: 0 5px 0 var(--accent-dark);
}
.btn-primary:hover { transform: translateY(3px); box-shadow: 0 2px 0 var(--accent-dark); }
.btn-large { padding: 19px 70px; font-size: 19px; }
.btn.is-disabled { pointer-events: none; cursor: default; opacity: 0.65; filter: saturate(0.55); }
.cta-note { font-size: 12.5px; margin-top: 16px; opacity: 0.9; }

/* ---------- ヘッダー ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); box-shadow: 0 1px 12px rgba(0,0,0,0.08); }
.header-inner {
  max-width: 1100px; margin: 0 auto; padding: 12px 20px;
  display: flex; align-items: center; gap: 24px;
}
.brand-name { font-family: var(--head); font-weight: 900; font-size: 18px; letter-spacing: 0.05em; color: #fff; transition: color 0.3s; text-shadow: 0 1px 10px rgba(0,0,0,0.5); }
.is-scrolled .brand-name { color: var(--ink); text-shadow: none; }
.header-nav { display: none; gap: 22px; margin-left: auto; }
.header-nav a { color: #fff; text-decoration: none; font-size: 13.5px; font-weight: 700; transition: color 0.3s; text-shadow: 0 1px 10px rgba(0,0,0,0.5); }
.is-scrolled .header-nav a { color: var(--ink); text-shadow: none; }
.header-nav a:hover { color: var(--accent); }
.btn-header { margin-left: auto; background: var(--accent); color: #fff; padding: 9px 24px; font-size: 13.5px; box-shadow: 0 3px 0 var(--accent-dark); }
.btn-header:hover { transform: translateY(2px); box-shadow: 0 1px 0 var(--accent-dark); }
@media (min-width: 800px) {
  .header-nav { display: flex; }
  .btn-header { margin-left: 0; }
}

/* ---------- ヒーロー ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg, .hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-bg img { animation: heroZoom 16s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.07); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 52%, rgba(25,22,28,0.34), transparent 70%),
    linear-gradient(to bottom, rgba(25,22,28,0.62) 0%, rgba(25,22,28,0.22) 30%, rgba(25,22,28,0.28) 60%, rgba(25,22,28,0.5) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 110px 24px 120px; max-width: 760px; }
.hero-badge {
  display: inline-block; background: #fff; color: var(--accent-dark);
  border-radius: 999px; padding: 7px 24px;
  font-family: var(--head); font-weight: 700; font-size: 13px; letter-spacing: 0.14em;
  transform: rotate(-2.5deg);
  box-shadow: 0 3px 0 rgba(0,0,0,0.15);
  animation: floaty 3.2s ease-in-out infinite;
  margin-bottom: 28px;
}
@keyframes floaty { 0%, 100% { transform: rotate(-2.5deg) translateY(0); } 50% { transform: rotate(-2.5deg) translateY(-6px); } }
.hero-content { text-shadow: 0 1px 14px rgba(0,0,0,0.55); }
.hero-subtitle { font-family: var(--hand); font-size: clamp(18px, 3vw, 24px); letter-spacing: 0.12em; margin-bottom: 8px; }
.hero-title {
  font-family: var(--head); font-weight: 900;
  font-size: clamp(30px, 6.4vw, 54px); line-height: 1.5; letter-spacing: 0.05em;
  text-shadow: 0 3px 22px rgba(0,0,0,0.4);
}
.hero-title-note { font-family: var(--head); font-weight: 700; font-size: clamp(15px, 2.6vw, 21px); letter-spacing: 0.16em; margin-top: 14px; }
.hero-info { margin: 28px 0 8px; display: flex; flex-direction: column; gap: 4px; }
.hero-date { font-size: clamp(15px, 2.4vw, 19px); font-weight: 700; letter-spacing: 0.08em; }
.hero-capacity { font-size: 13.5px; letter-spacing: 0.14em; color: var(--gold); font-weight: 700; }
.btn-hero { margin-top: 22px; }
.hero-deadline { font-size: 12.5px; margin-top: 16px; opacity: 0.9; letter-spacing: 0.06em; }
.hero-scroll {
  position: absolute; bottom: 64px; left: 50%; transform: translateX(-50%);
  color: #fff; text-decoration: none; font-size: 11px; letter-spacing: 0.2em; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll::after {
  content: ""; width: 1px; height: 30px; background: rgba(255,255,255,0.85);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 56% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* 文字右寄せレイアウト(顔が左寄りの写真用。モバイルでは通常の中央寄せ) */
@media (min-width: 800px) {
  .hero.text-right { justify-content: flex-end; }
  .hero.text-right .hero-content { margin-right: 5vw; max-width: 640px; }
  .hero.text-right .hero-overlay {
    background:
      linear-gradient(to bottom, rgba(25,22,28,0.5) 0%, rgba(25,22,28,0.08) 24%),
      linear-gradient(to right, rgba(25,22,28,0.02) 34%, rgba(25,22,28,0.5) 66%, rgba(25,22,28,0.56) 100%);
  }
  .hero.text-right .hero-stamp { right: auto; left: 6%; }
}
/* 縦長ポートレート写真のモバイル表示:
   画面の高さによって文字が顔に被る(目隠し状態になる)ため、
   モバイルは「上=写真/下=テキスト」の2段構成にして重なりを完全になくす */
@media (max-width: 799px) {
  .hero.text-right { display: block; min-height: 0; background: #fff; }
  .hero.text-right .hero-bg { position: relative; height: 52vh; min-height: 340px; overflow: hidden; }
  .hero.text-right .hero-bg img { position: absolute; inset: 0; object-position: center 22%; }
  .hero.text-right .hero-overlay {
    inset: auto 0 auto 0; top: 0; height: 52vh; min-height: 340px;
    background: linear-gradient(to bottom, rgba(25,22,28,0.42) 0%, rgba(25,22,28,0) 30%);
  }
  .hero.text-right .hero-content {
    color: var(--ink); text-shadow: none;
    padding: 30px 24px 46px; max-width: none;
  }
  .hero.text-right .hero-badge { background: var(--accent); color: #fff; box-shadow: 0 3px 0 var(--accent-dark); margin-bottom: 18px; }
  .hero.text-right .hero-capacity { color: var(--accent-dark); }
  .hero.text-right .hero-deadline { opacity: 0.75; }
  .hero.text-right .hero-scroll { display: none; }
  .hero.text-right .hero-wave { display: none; }
  .hero.text-right .hero-stamp { color: var(--accent); opacity: 0.9; }
}

/* 回転スタンプ */
.hero-stamp {
  position: absolute; z-index: 2; right: 6%; bottom: 13%;
  width: 116px; height: 116px; color: #fff; opacity: 0.95;
}
.stamp-spin {
  transform-box: view-box; transform-origin: 60px 60px;
  animation: spinSlow 26s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.stamp-ring-text { font-family: var(--sans); font-size: 9px; font-weight: 700; letter-spacing: 2px; fill: currentColor; }
.stamp-center-text { font-family: var(--head); font-weight: 900; font-size: 21px; fill: currentColor; }
@media (max-width: 640px) { .hero-stamp { width: 84px; height: 84px; right: 4%; bottom: auto; top: 88px; } }

/* ヒーロー下の白ウェーブ */
.hero-wave {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 52px; z-index: 3;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 52' preserveAspectRatio='none'%3E%3Cpath d='M0 30 Q 150 0 300 26 T 600 24 T 900 30 T 1200 22 V52 H0 Z' fill='%23ffffff'/%3E%3C/svg%3E") repeat-x;
  background-size: 1200px 52px;
}

/* ---------- 流れる帯(マーキー) ---------- */
.marquee {
  background: var(--accent); color: #fff; overflow: hidden;
  padding: 10px 0; position: relative; z-index: 4;
}
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee-track span {
  white-space: nowrap; font-family: var(--head); font-weight: 700;
  font-size: 13.5px; letter-spacing: 0.22em;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- セクション共通 ---------- */
.section { padding: 88px 0; background: #fff; }
.section-title {
  font-family: var(--head); font-weight: 900;
  font-size: clamp(25px, 4vw, 33px);
  text-align: center; letter-spacing: 0.08em; margin-bottom: 48px;
  opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s ease;
}
.section-title.is-visible { opacity: 1; transform: none; }
/* 見出しのマーカー(蛍光ペン)風ハイライト */
.section-title .t-marker {
  background: linear-gradient(transparent 62%, color-mix(in srgb, var(--gold) 55%, transparent) 62%, color-mix(in srgb, var(--gold) 55%, transparent) 94%, transparent 94%);
  padding: 0 6px;
}
.section-lead { text-align: center; max-width: 640px; margin: -24px auto 46px; font-size: 14.5px; color: #6b655e; }
.reveal { opacity: 0; transform: translateY(22px) rotate(var(--rot, 0deg)); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0) rotate(var(--rot, 0deg)); }

/* ---------- インフルエンサー ---------- */
.influencer-card {
  display: flex; flex-direction: column; align-items: center; gap: 30px;
  background: #fff; border: 2px solid #efe9e2; border-radius: 24px; padding: 40px 28px;
  box-shadow: 0 12px 34px rgba(60, 50, 60, 0.08);
}
.influencer-photo {
  width: 212px; height: 212px; border-radius: 50%; overflow: hidden;
  outline: 3px dashed var(--accent); outline-offset: 7px;
  position: relative;
}
.influencer-photo img { width: 100%; height: 100%; object-fit: cover; }
.influencer-photo.is-placeholder {
  background: var(--accent-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.ph-initial { font-family: var(--head); font-weight: 900; font-size: 62px; color: var(--accent); opacity: 0.5; }
.ph-note { font-size: 10.5px; color: #a2988e; letter-spacing: 0.05em; }
.influencer-body { text-align: center; max-width: 560px; }
.influencer-name-roman { font-family: var(--hand); font-size: 16px; color: var(--accent); letter-spacing: 0.18em; }
.influencer-name { font-family: var(--head); font-weight: 900; font-size: 30px; letter-spacing: 0.1em; margin: 2px 0 16px; }
.influencer-desc { font-size: 14.5px; text-align: left; color: #55504a; }
.sns-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 22px; }
.sns-link {
  display: inline-flex; align-items: center; gap: 7px;
  border: 2px solid #eee3da; border-radius: 999px; padding: 7px 18px;
  font-size: 13px; font-weight: 700; text-decoration: none; color: var(--ink); transition: all 0.2s;
}
.sns-link:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px) rotate(-1deg); }
/* 吹き出しコメント */
.influencer-comment {
  max-width: 640px; margin: 44px auto 0; text-align: center;
  background: var(--accent-soft); border-radius: 20px; padding: 30px 28px; position: relative;
}
.influencer-comment::before {
  content: ""; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  border-left: 12px solid transparent; border-right: 12px solid transparent;
  border-bottom: 14px solid var(--accent-soft);
}
.comment-label { font-family: var(--hand); font-size: 14px; letter-spacing: 0.14em; color: var(--accent-dark); margin-bottom: 10px; }
.comment-body { font-family: var(--head); font-weight: 700; font-size: 16.5px; line-height: 2; }
.influencer-comment.is-draft::after {
  content: "※コメントはご本人確認後に確定"; display: block; margin-top: 10px; font-size: 11px; color: #c07a8a;
}
@media (min-width: 800px) {
  .influencer-card { flex-direction: row; padding: 48px 52px; }
  .influencer-body { text-align: left; }
  .sns-list { justify-content: flex-start; }
}

/* ---------- みどころ(ポラロイド風) ---------- */
.highlights { background: var(--accent-soft); }
.highlight-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 640px) { .highlight-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .highlight-grid { grid-template-columns: 1fr 1fr 1fr; } }
.highlight-card {
  background: #fff; border-radius: 6px; padding: 12px 12px 4px;
  box-shadow: 0 10px 26px rgba(60, 50, 60, 0.13);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.highlight-card:nth-child(3n+1) { --rot: -1.6deg; }
.highlight-card:nth-child(3n+2) { --rot: 1.2deg; }
.highlight-card:nth-child(3n)   { --rot: -0.8deg; }
.highlight-card:hover { transform: translateY(-6px) rotate(0deg) !important; box-shadow: 0 16px 34px rgba(60, 50, 60, 0.18); }
/* マスキングテープ */
.highlight-card::before {
  content: ""; position: absolute; top: -10px; left: 50%;
  width: 92px; height: 22px; transform: translateX(-50%) rotate(-3deg);
  background: color-mix(in srgb, var(--gold) 62%, transparent);
  opacity: 0.9; z-index: 1;
}
.highlight-img { position: relative; aspect-ratio: 3 / 2; overflow: hidden; border-radius: 3px; }
.highlight-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.highlight-card:hover .highlight-img img { transform: scale(1.05); }
.highlight-tag {
  position: absolute; top: 10px; left: -6px;
  background: var(--sub); color: #fff;
  font-family: var(--head); font-weight: 700; font-size: 11.5px; letter-spacing: 0.14em;
  padding: 4px 14px; border-radius: 3px;
  transform: rotate(-2deg);
}
.highlight-body { padding: 18px 10px 20px; }
.highlight-body h3 { font-family: var(--head); font-weight: 700; font-size: 18px; letter-spacing: 0.04em; margin-bottom: 6px; }
.highlight-body p { font-size: 13.5px; color: #6b655e; line-height: 1.85; }

/* ---------- 行程 ---------- */
.schedule-days { display: grid; grid-template-columns: 1fr; gap: 34px; max-width: 860px; margin: 0 auto; }
@media (min-width: 860px) { .schedule-days { grid-template-columns: 1fr 1fr; } }
.day-block { background: #fff; border: 2px dashed #d9d2c8; border-radius: 20px; padding: 30px 26px 34px; }
.day-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; padding-bottom: 14px; border-bottom: 2px solid var(--accent-soft); }
.day-label { font-family: var(--head); font-weight: 900; font-size: 22px; letter-spacing: 0.1em; color: var(--accent); }
.day-date { font-size: 14px; font-weight: 700; color: #6b655e; }
.timeline { position: relative; }
.timeline::before { content: ""; position: absolute; left: 55px; top: 8px; bottom: 8px; width: 2px; background: var(--accent-soft); }
.timeline li { display: flex; gap: 20px; padding: 10px 0; position: relative; }
.tl-time {
  flex: 0 0 48px; font-family: var(--head); font-weight: 700; font-size: 13px;
  color: var(--sub); text-align: right; letter-spacing: 0.02em; padding-top: 2px;
}
.timeline li::after {
  content: ""; position: absolute; left: 51px; top: 20px;
  width: 9px; height: 9px; border-radius: 50%; background: var(--accent); border: 2px solid #fff;
}
.tl-body { padding-left: 14px; }
.tl-title { font-weight: 700; font-size: 14.5px; }
.tl-note { font-size: 12.5px; color: #8b847b; }
.schedule-note { text-align: center; font-size: 12.5px; color: #8b847b; margin-top: 18px; }
/* 行程内の移動手段表示(↓貸切バスで移動) */
.timeline li.tl-move { padding: 2px 0; }
.timeline li.tl-move::after { display: none; }
/* 注記の強調(昼食など) */
.note-strong { font-weight: 700; color: var(--accent-dark); }
.tl-move-label {
  margin-left: 82px; font-size: 11.5px; color: var(--sub);
  background: #f3f6fa; border-radius: 999px; padding: 2px 12px; font-weight: 700;
}

/* 写真キャプション(イメージ・施設名など) */
.photo-caption {
  position: absolute; right: 6px; bottom: 6px; z-index: 2;
  background: rgba(40, 36, 33, 0.55); color: #fff;
  font-size: 10px; letter-spacing: 0.04em; line-height: 1.4;
  padding: 2px 10px; border-radius: 999px; pointer-events: none;
}
.highlight-img { position: relative; }
.hg-item { position: relative; }

/* ---------- 宿泊 ---------- */
.hotel { background: var(--accent-soft); }
.hotel-card { max-width: 900px; margin: 0 auto; }
.hotel-gallery {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 10px; border-radius: 20px; overflow: hidden; aspect-ratio: 16 / 9;
  border: 6px solid #fff; box-shadow: 0 12px 30px rgba(60,50,60,0.14);
}
.hg-item { overflow: hidden; }
.hg-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.hg-item:hover img { transform: scale(1.04); }
.hg-0 { grid-row: 1 / 3; }
.hg-1 { grid-column: 2 / 4; }
.hotel-body { padding: 30px 6px 0; }
.hotel-name { font-family: var(--head); font-weight: 900; font-size: 23px; letter-spacing: 0.06em; margin-bottom: 14px; }
.hotel-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.hotel-features li {
  background: #fff; color: var(--sub); border: 2px solid var(--sub);
  font-size: 12.5px; font-weight: 700; padding: 4px 15px; border-radius: 999px;
}
.hotel-desc { font-size: 14.5px; color: #55504a; }
.hotel-link { display: inline-block; margin-top: 14px; font-size: 13.5px; font-weight: 700; }

/* ---------- 中間CTA/最終CTA ---------- */
.mid-cta, .final-cta { background: var(--sub); color: #fff; text-align: center; padding: 66px 20px; }
.mid-cta-copy { font-family: var(--head); font-weight: 700; font-size: 18px; letter-spacing: 0.1em; margin-bottom: 24px; }
.mid-cta .btn-primary, .final-cta .btn-primary {
  background: var(--gold); color: var(--ink);
  box-shadow: 0 5px 0 color-mix(in srgb, var(--gold) 55%, #000);
}
.mid-cta .btn-primary:hover, .final-cta .btn-primary:hover {
  transform: translateY(3px);
  box-shadow: 0 2px 0 color-mix(in srgb, var(--gold) 55%, #000);
}
.final-cta { padding: 80px 20px; }
.final-cta-copy { font-family: var(--head); font-weight: 700; font-size: clamp(17px, 2.6vw, 20px); letter-spacing: 0.1em; margin-bottom: 28px; }

/* ---------- 募集要項 ---------- */
.outline-table {
  width: 100%; max-width: 860px; margin: 0 auto; border-collapse: collapse;
  background: #fff; border: 2px solid var(--ink); border-radius: 16px; overflow: hidden; display: block;
}
.outline-table tbody { display: table; width: 100%; }
.outline-table th, .outline-table td { padding: 16px 20px; font-size: 14px; text-align: left; border-bottom: 1px dashed #d9d2c8; vertical-align: top; }
.outline-table tr:last-child th, .outline-table tr:last-child td { border-bottom: none; }
.outline-table th { width: 34%; background: var(--accent-soft); color: var(--ink); font-family: var(--head); font-weight: 700; }
@media (max-width: 560px) {
  .outline-table th { width: 38%; padding: 13px 12px; font-size: 12.5px; }
  .outline-table td { padding: 13px 14px; font-size: 13px; }
}

/* ---------- 申込みの流れ ---------- */
.flow { background: var(--accent-soft); }
.flow-steps { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; }
.flow-steps li { display: flex; gap: 22px; position: relative; padding-bottom: 34px; }
.flow-steps li:not(:last-child)::before {
  content: ""; position: absolute; left: 23px; top: 52px; bottom: 6px; width: 2px;
  background: repeating-linear-gradient(to bottom, var(--accent) 0 6px, transparent 6px 12px);
}
.step-num {
  flex: 0 0 47px; height: 47px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--head); font-weight: 900; font-size: 20px;
  box-shadow: 0 3px 0 var(--accent-dark);
}
.step-body h3 { font-family: var(--head); font-weight: 700; font-size: 16.5px; letter-spacing: 0.04em; padding-top: 8px; }
.step-body p { font-size: 13.5px; color: #6b655e; margin-top: 4px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 2px solid #efe9e2; border-radius: 14px; overflow: hidden; transition: border-color 0.2s; }
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 17px 48px 17px 54px;
  font-family: var(--head); font-weight: 700; font-size: 14.5px; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q"; position: absolute; left: 20px; top: 16px;
  font-family: var(--head); font-weight: 900; font-size: 18px; color: var(--accent);
}
.faq-item summary::after {
  content: "+"; position: absolute; right: 20px; top: 14px; font-size: 20px; color: var(--accent); transition: transform 0.25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 24px 20px 54px; font-size: 13.5px; color: #55504a; }

/* ---------- 旅行条件 ---------- */
.terms-lead { max-width: 760px; margin: -24px auto 36px; font-size: 13.5px; color: #55504a; text-align: center; }
.terms-list { max-width: 760px; margin: 0 auto; border: 2px solid #efe9e2; border-radius: 14px; overflow: hidden; }
.terms-item { border-bottom: 1px solid #efe9e2; }
.terms-item:last-child { border-bottom: none; }
.terms-item summary {
  list-style: none; cursor: pointer; padding: 15px 44px 15px 20px;
  font-size: 14px; font-weight: 700; position: relative; background: #fbf8f4;
}
.terms-item summary::-webkit-details-marker { display: none; }
.terms-item summary::after { content: "+"; position: absolute; right: 18px; top: 12px; font-size: 18px; color: var(--accent); transition: transform 0.25s; }
.terms-item[open] summary::after { transform: rotate(45deg); }
.terms-body { padding: 12px 20px 20px; font-size: 13px; color: #55504a; }
.cancel-table { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: 12.5px; }
.cancel-table th, .cancel-table td { border: 1px solid #e7dfd5; padding: 9px 12px; text-align: left; }
.cancel-table th { background: var(--accent-soft); color: var(--ink); }
.cancel-table td:last-child { white-space: nowrap; font-weight: 700; }

/* ---------- 会社情報 ---------- */
.company { padding-bottom: 72px; background: #fbf8f4; }
.company-card { max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 760px) { .company-card { grid-template-columns: 1.2fr 1fr; } }
.company-planner, .company-contact {
  background: #fff; border: 2px solid #efe9e2; border-radius: 16px; padding: 28px 26px; font-size: 13.5px;
}
.company-planner h3, .company-contact h3 { font-family: var(--head); font-weight: 900; font-size: 16.5px; margin-bottom: 12px; letter-spacing: 0.04em; }
.fairtrade-logo { width: 210px; max-width: 80%; height: auto; margin-top: 14px; display: block; }
.company-planner p, .company-contact p { margin-bottom: 4px; color: #55504a; }
.company-note { font-size: 11.5px; color: #8b847b; margin-top: 12px; line-height: 1.8; }

/* ---------- フッター ---------- */
.site-footer { background: var(--ink); color: #c9c2b9; text-align: center; padding: 46px 20px 110px; }
.footer-logo {
  width: 360px; max-width: 86%;
  background: #fff; border-radius: 14px; padding: 18px 30px;
  margin: 0 auto 24px; display: block;
}
.footer-brand { font-family: var(--head); font-weight: 900; font-size: 20px; letter-spacing: 0.1em; color: #fff; }
.footer-tagline { font-size: 12px; margin-top: 8px; letter-spacing: 0.08em; }
.footer-copy { font-size: 11px; margin-top: 20px; opacity: 0.7; }
@media (min-width: 800px) { .site-footer { padding-bottom: 46px; } }

/* ---------- モバイル追従CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.94); backdrop-filter: blur(8px);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  transform: translateY(110%); transition: transform 0.35s ease;
}
.sticky-cta.is-shown { transform: none; }
.btn-sticky { display: block; padding: 14px; font-size: 15.5px; background: var(--accent); color: #fff; box-shadow: 0 4px 0 var(--accent-dark); }
@media (min-width: 800px) { .sticky-cta { display: none; } }
