/* =========================================================
   アスキテ LP - asmitsu本体トーンに統一
   ========================================================= */

:root {
  /* Pattern A: サンライズオレンジ */
  --main: #FF8340;          /* メイン（h2・アクセント・アクティブ） */
  --main-deep: #E8600A;     /* CTA深・リンクhover */
  --main-darker: #5C2E0A;   /* 極深ブラウンオレンジ */
  --sub: #FFB347;           /* サブ（アンバー・タグ・バッジ） */
  --sub-light: #FFE0C0;     /* サブライト（ピーチクリーム） */
  --dark: #2D1A0E;          /* ダークセクション背景 */
  --dark-deep: #1A0F08;     /* ダークセクション深 */
  --highlight: #FFB347;     /* ダーク内ハイライト（アンバー） */
  --ink: #1A1A1A;           /* 本文テキスト */
  --muted: #8A7560;         /* サブテキスト（薄ブラウン） */
  --muted-2: #5C4A3A;       /* サブテキスト濃（深ブラウン） */
  --bg: #FFFBF5;            /* ページ背景（ウォームホワイト） */
  --surface: #FFF3E0;       /* カード/サーフェス */
  --line-green: #06c755;    /* LINE固定 */
  --line-green-deep: #05b34c;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
  margin: 0;
  padding: 0 0 120px;
  color: var(--ink);
  line-height: 1.6;
  background-color: var(--bg);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

/* ---------- 共通コンテナ ---------- */
.container {
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}

/* ---------- ヘッダー ---------- */
.header {
  padding: 15px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo-box {
  width: 65px;
  height: 35px;
  background: linear-gradient(135deg, var(--main), var(--main-deep));
  margin-right: 10px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ミニマルなLPデザインを表現 */
.logo-box::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
}

/* ランディングページのコンテンツを表現 */
.logo-box::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 10px;
  width: 25px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
      0 6px 0 rgba(255, 255, 255, 0.5),
      0 12px 0 rgba(255, 255, 255, 0.3);
}

.logo-text {
  font-weight: bold;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.1;
}

.logo-subtext {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* ---------- ヒーロー ---------- */
.main-content {
  background: linear-gradient(135deg, var(--main), var(--main-deep));
  padding: 28px 20px 0;
  position: relative;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.main-content::before,
.main-content::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.main-content::before {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -50px;
}

.main-content::after {
  width: 150px;
  height: 150px;
  bottom: 50px;
  left: -50px;
}

.eyebrow {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

h1.main-heading,
.main-heading {
  margin: 0 0 16px;
  padding: 0;
  position: relative;
  z-index: 1;
  font-size: inherit;
  font-weight: normal;
  line-height: 1.2;
}

.heading-text {
  background-color: #fff;
  padding: 10px 15px;
  font-size: 22px;
  font-weight: bold;
  color: var(--main);
  display: inline-block;
  margin: 5px 0;
  line-height: 1.3;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.subheading-text {
  background-color: var(--sub-light);
  padding: 8px 15px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  margin: 6px 0;
  line-height: 1.3;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.description {
  color: #fff;
  font-size: 14px;
  margin: 12px 0 0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.social-proof {
  text-align: center;
  margin: 14px 0 6px;
  color: #fff;
  font-weight: bold;
  font-size: 13px;
  position: relative;
  z-index: 1;
}

/* ---------- ヒーロー: マスコット枠（後入れ可） ---------- */
.mascot-slot {
  position: relative;
  z-index: 1;
  margin: 18px 0 10px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: center;
}

.mascot-placeholder {
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 11px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.75);
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.1) 0 10px,
      rgba(255, 255, 255, 0.04) 10px 20px
    );
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  line-height: 1.4;
}

.mascot-bubble {
  position: relative;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.mascot-bubble::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid #fff;
}

/* ---------- ヒーロー: 特徴chip 3点 ---------- */
.hero-chips {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 18px 0 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--main-deep);
  font-size: 12px;
  font-weight: bold;
  padding: 7px 12px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.chip-check {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  background: var(--main);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

/* ---------- セクション内マスコット吹き出し（後入れ可） ---------- */
.section-mascot {
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
}

.section-mascot-placeholder {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  color: var(--muted);
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255, 131, 64, 0.1) 0 8px,
      rgba(255, 131, 64, 0.04) 8px 16px
    );
  border: 2px dashed rgba(255, 131, 64, 0.4);
  border-radius: 50%;
  line-height: 1.4;
}

.section-mascot-bubble {
  position: relative;
  background: var(--sub-light);
  color: var(--ink);
  font-size: 13px;
  font-weight: bold;
  line-height: 1.55;
  padding: 12px 14px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(92, 46, 10, 0.12);
}

.section-mascot-bubble::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid var(--sub-light);
}

/* ---------- ヒーロー: CTA ---------- */
.hero-cta {
  position: relative;
  z-index: 1;
  margin: 6px 0 10px;
  font-size: 16px;
  padding: 16px 18px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.02em;
}

.hero-cta-note {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  text-align: center;
  line-height: 1.5;
}

/* ヒーロー画像プレースホルダ（後入れ可能） */
.people-illustration {
  width: 100%;
  margin: 16px 0 -40px;
  position: relative;
  z-index: 1;
}

.people-illustration img {
  width: 100%;
  object-fit: contain;
  display: block;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.08) 0 12px,
      rgba(255, 255, 255, 0.04) 12px 24px
    );
  border: 2px dashed rgba(255, 255, 255, 0.35);
  border-radius: 12px 12px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  padding: 12px;
}

/* オファーセクション（ヒーロー直下のピンク帯） */
.offer-section {
  background: linear-gradient(135deg, var(--sub-light), var(--sub));
  padding: 22px 20px;
  border-radius: 20px 20px 0 0;
  position: relative;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.offer-text {
  font-weight: bold;
  font-size: 15px;
  text-align: center;
  margin: 0 0 14px;
  line-height: 1.5;
  color: var(--ink);
}

.offer-highlight {
  background: linear-gradient(135deg, var(--main), var(--main-deep));
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  display: inline-block;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  font-size: 14px;
}

.offer-note {
  font-size: 10px;
  text-align: center;
  margin: 8px 0 0;
  color: #555;
}

/* ---------- 共通カードコンテナ ---------- */
.section-block {
  max-width: 400px;
  margin: 20px auto 0;
  padding: 30px 20px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.section-header {
  text-align: center;
  margin-bottom: 22px;
}

.section-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.4;
}

.section-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.section-title .accent {
  color: var(--main);
}

/* ---------- クォートボックス（問題提起・比較で使用） ---------- */
.quote-box {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(255, 131, 64, 0.08), transparent 55%),
    radial-gradient(circle at bottom right, rgba(255, 179, 71, 0.05), transparent 50%),
    #ffffff;
  border: 1px solid rgba(255, 131, 64, 0.10);
  border-radius: 22px;
  padding: 22px 20px;
  box-shadow: 0 6px 20px rgba(255, 131, 64, 0.09);
  margin-top: 18px;
  overflow: hidden;
}

.quote-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at top left, rgba(255, 131, 64, 0.18), transparent 70%);
  pointer-events: none;
}

.quote-box > * {
  position: relative;
}

.quote-box:first-of-type {
  margin-top: 0;
}

.quote-heading {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 10px;
  color: var(--ink);
}

.quote-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-2);
  margin: 0;
}

.quote-text + .quote-text {
  margin-top: 8px;
}

/* 比較用のサブカラー版 */
.quote-box.quote-pink {
  border-color: rgba(255, 179, 71, 0.22);
  box-shadow: 0 6px 20px rgba(255, 179, 71, 0.12);
}

.quote-box.quote-pink .quote-heading {
  color: var(--main-deep);
}

.quote-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  color: #fff;
  background: var(--main);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.quote-box.quote-pink .quote-kicker {
  background: var(--sub);
}

/* ---------- ダーク（リスク）セクション ---------- */
.impact-container {
  max-width: 400px;
  margin: 20px auto 0;
  padding: 30px 20px;
  background: linear-gradient(135deg, var(--dark), var(--dark-deep));
  color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.impact-container::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  top: -100px;
  right: -100px;
}

.impact-headline {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 22px;
  position: relative;
}

.message-bubble {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  padding: 14px 20px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 14px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 2px solid var(--highlight);
  position: relative;
}

.message-bubble:last-child {
  margin-bottom: 0;
}

.highlight {
  color: var(--highlight);
  font-weight: bold;
}

/* ---------- 解決策（青紺背景内に白ボックス＋CTA） ---------- */
.future-container {
  max-width: 400px;
  margin: 20px auto 0;
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--main-deep), var(--main-darker));
  color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.future-container::before,
.future-container::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
}

.future-container::before {
  top: 10%;
  right: -50px;
  width: 200px;
  height: 200px;
}

.future-container::after {
  bottom: 20%;
  left: -50px;
  width: 150px;
  height: 150px;
}

.future-content {
  position: relative;
  z-index: 1;
}

.future-headline {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 16px;
}

.future-highlight {
  color: var(--sub-light);
  font-weight: bold;
}

.future-text-content {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 22px;
}

.future-white-box {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 20px;
  color: var(--ink);
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.future-box-text {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 16px;
}

.future-blue-text {
  color: var(--main);
  font-weight: bold;
}

/* ---------- CTAボタン（サンライズオレンジ） ---------- */
.cta-button {
  display: block;
  background: linear-gradient(135deg, var(--main), var(--main-deep));
  color: #fff;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 17px;
  margin: 18px 0 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
  width: 100%;
  font-family: inherit;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 6px 0 0;
}

/* LINEボタン（緑維持） */
.line-button {
  background: linear-gradient(180deg, #1fe36e 0%, var(--line-green) 100%);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.32);
  padding: 16px 18px;
}

.line-button:hover {
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
}

.line-button .line-icon {
  display: inline-block;
  background: #fff;
  color: var(--line-green);
  font-size: 11px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 8px;
  vertical-align: middle;
}

/* ---------- メリット3カード ---------- */
.benefit-card {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(255, 131, 64, 0.08), transparent 55%),
    radial-gradient(circle at bottom right, rgba(255, 179, 71, 0.05), transparent 50%),
    #ffffff;
  border: 1px solid rgba(255, 131, 64, 0.10);
  border-radius: 22px;
  padding: 22px 20px;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(255, 131, 64, 0.09);
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at top left, rgba(255, 131, 64, 0.18), transparent 70%);
  pointer-events: none;
}

.benefit-card:last-child {
  margin-bottom: 0;
}

.benefit-card > * {
  position: relative;
}

.benefit-number {
  background: linear-gradient(135deg, var(--main), var(--main-deep));
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-right: 14px;
  flex-shrink: 0;
  font-size: 14px;
}

.benefit-content {
  flex-grow: 1;
}

.benefit-title {
  font-size: 16px;
  font-weight: bold;
  color: var(--main);
  margin: 0 0 6px;
}

.benefit-description {
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.6;
  margin: 0;
}

/* ---------- フローSTEP ---------- */
.flow-steps {
  position: relative;
  padding-left: 30px;
}

.flow-steps::before {
  content: '';
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 15px;
  width: 2px;
  background: linear-gradient(to bottom, var(--main), var(--sub));
}

.flow-step {
  position: relative;
  margin-bottom: 26px;
}

.flow-step:last-child {
  margin-bottom: 0;
}

.flow-step::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 0;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--main), var(--main-deep));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-size: 13px;
  z-index: 2;
  text-align: center;
  line-height: 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.flow-step:nth-child(1)::before { content: '1'; }
.flow-step:nth-child(2)::before { content: '2'; }
.flow-step:nth-child(3)::before { content: '3'; }

.flow-step-title {
  font-size: 16px;
  font-weight: bold;
  color: var(--main);
  margin: 0 0 6px;
}

.flow-step-description {
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.6;
  margin: 0;
}

/* ---------- FAQ ---------- */
.faq-item {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(255, 131, 64, 0.08), transparent 55%),
    radial-gradient(circle at bottom right, rgba(255, 179, 71, 0.05), transparent 50%),
    #ffffff;
  border: 1px solid rgba(255, 131, 64, 0.10);
  border-radius: 22px;
  padding: 0;
  margin-bottom: 14px;
  box-shadow: 0 6px 20px rgba(255, 131, 64, 0.09);
  overflow: hidden;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 44px 18px 64px;
  font-weight: bold;
  font-size: 14px;
  color: var(--ink);
  position: relative;
  line-height: 1.5;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Qバッジ（左の丸） */
.faq-item summary::before {
  content: 'Q';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--main), var(--main-deep));
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 3px 8px rgba(255, 131, 64, 0.3);
}

/* 開閉アイコン */
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--main);
  font-weight: bold;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px 64px;
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.7;
}

/* ---------- 最終CTA（サンライズ＋白ボックス） ---------- */
.entry-container {
  max-width: 400px;
  margin: 20px auto 0;
  padding: 30px 20px;
  background: linear-gradient(135deg, var(--sub), var(--main));
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.entry-container::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -60px;
  right: -60px;
}

.entry-white-box {
  background: #fff;
  border-radius: 15px;
  padding: 24px 20px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.entry-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  color: var(--main-deep);
  background: var(--sub-light);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.entry-title {
  font-size: 19px;
  font-weight: bold;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.4;
}

.entry-text {
  font-size: 13px;
  color: var(--muted-2);
  margin: 0 0 18px;
  line-height: 1.6;
}

.entry-small {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
}

/* ---------- フッター ---------- */
.site-footer {
  background: linear-gradient(135deg, var(--main-deep), var(--main-darker));
  color: #ffffff;
  padding: 18px 10px;
  margin-top: 20px;
}

.footer-container {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 11px;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Sticky下部CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  z-index: 60;
  width: min(calc(100vw - 24px), 380px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(232, 96, 10, 0.18);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(92, 46, 10, 0.18);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(14px);
}

.sticky-cta-text {
  flex: 1;
  font-size: 11px;
  font-weight: bold;
  color: var(--ink);
  line-height: 1.4;
}

.sticky-cta a,
.sticky-cta button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #1fe36e 0%, var(--line-green) 100%);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.32);
  transition: transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.sticky-cta a:hover,
.sticky-cta button:hover {
  transform: translateY(-1px);
}

/* ---------- 診断モーダル ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 16px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: #fff;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
  padding: 24px 22px;
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  z-index: 10;
  border: none;
  color: var(--ink);
}

.modal-header {
  text-align: center;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee;
}

.modal-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--main);
  margin-bottom: 4px;
}

.modal-subtitle {
  font-size: 13px;
  color: var(--muted);
}

.question-container {
  display: none;
}

.question-container.active {
  display: block;
}

.question-number {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: bold;
}

.question-text {
  font-size: 16px;
  font-weight: bold;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.5;
}

.answer-options {
  margin-bottom: 18px;
}

.answer-option {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted-2);
}

.answer-option:hover {
  background-color: #FFF3E0;
  border-color: var(--main);
}

.answer-option.selected {
  background-color: var(--main);
  color: #fff;
  border-color: var(--main);
}

.progress-container {
  background-color: #f0f0f0;
  border-radius: 10px;
  height: 8px;
  margin: 14px 0 18px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(to right, var(--main), var(--sub));
  width: 20%;
  transition: width 0.3s ease;
}

.question-nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.nav-button {
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
  border: none;
  font-family: inherit;
}

.nav-button.prev {
  background-color: #f0f0f0;
  color: var(--ink);
}

.nav-button.next {
  background-color: var(--main);
  color: #fff;
}

.nav-button.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.nav-button:hover:not(.disabled) {
  transform: translateY(-2px);
}

.result-container {
  display: none;
  text-align: center;
}

.result-container.active {
  display: block;
}

.result-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--main);
  margin-bottom: 12px;
}

.result-message {
  font-size: 14px;
  color: var(--muted-2);
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}

.result-message strong {
  color: var(--main);
}

.result-locked {
  background: var(--bg);
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
  text-align: left;
}

.result-locked-title {
  font-weight: bold;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 8px;
}

.result-locked-list {
  margin: 0;
  padding-left: 18px;
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.7;
}

/* ---------- スクロール出現アニメ ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .cta-button,
  .sticky-cta a,
  .nav-button {
    transition: none;
  }
}

/* ---------- 480px以下の微調整 ---------- */
@media (max-width: 420px) {
  .heading-text { font-size: 20px; }
  .subheading-text { font-size: 14px; }
  .section-title { font-size: 18px; }
  .future-headline { font-size: 20px; }
  .impact-headline { font-size: 18px; }
}
