/* ===== ワンバズ LP / style.css ===== */
/* デザイントークン(ブリーフv2 §2)— 色は据え置き */
:root{
  --bg: #FFFFFF;
  --bg-alt: #F5F7FA;
  --brand: #3B6FB5;
  --brand-dark: #2C5690;
  --brand-soft: #EAF1FA;
  --accent: #2BA672;        /* CTA */
  --accent-dark: #218a5f;
  --accent-soft: #E2F4EC;
  --text: #333333;
  --text-sub: #666666;
  --line: #E3E8EF;
  --radius: 14px;
  --radius-lg: 20px;
  --maxw: 560px;
  --shadow: 0 6px 20px rgba(44,86,144,.08);
  --shadow-sm: 0 2px 10px rgba(44,86,144,.06);
  --font: "Hiragino Kaku Gothic ProN","Noto Sans JP",system-ui,sans-serif;
}

*{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  background: var(--bg);
  padding-bottom: 96px;
  counter-reset: sec; /* セクション番号バッジ用 */
}

img{ max-width: 100%; display: block; }
a{ color: var(--brand); }

.wrap{
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== 共通エンファシス ===== */
strong{ font-weight: 700; }
/* 太字へのやわらかいマーカー(派手な色文字ではなく背景ハイライト) */
.body strong,
.box .body strong{
  background: linear-gradient(transparent 62%, rgba(43,166,114,.22) 62%);
  padding: 0 .05em;
}
.mark{
  background: linear-gradient(transparent 60%, rgba(59,111,181,.22) 60%);
  font-weight: 700;
  padding: 0 .08em;
}

/* ===== 見出し / 本文共通 ===== */
h1,h2{ line-height: 1.5; font-weight: 700; }

.sec{ padding: 56px 0; background: var(--bg); position: relative; }
.sec-alt{ background: var(--bg-alt); }

/* セクション番号バッジ + 下線(参考LP構成) */
.sec:not(.no-num){ counter-increment: sec; }
.sec h2{
  font-size: 23px;
  text-align: center;
  margin: 0 0 28px;
  color: var(--brand-dark);
  position: relative;
  padding-top: 44px;
}
.sec:not(.no-num) > .wrap > h2::before{
  content: counter(sec, decimal-leading-zero);
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; letter-spacing: .02em;
  color: #fff; background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(59,111,181,.35);
}
.sec h2::after{
  content: ""; display: block;
  width: 44px; height: 3px; border-radius: 2px;
  background: var(--accent);
  margin: 12px auto 0;
}
.no-num h2{ padding-top: 0; }

.body{ font-size: 16px; margin: 0 0 16px; }
.lead-center{ text-align: center; font-size: 17px; margin: 0 0 20px; }
.lead-after{ text-align: center; margin-top: 24px; font-weight: 600; }

/* ===== ① ファーストビュー ===== */
.fv{
  background:
    radial-gradient(120% 80% at 50% 0%, #EEF4FB 0%, var(--bg) 60%);
  padding: 0 0 46px; /* スマホファースト:上padding 0で全幅ヒーロー */
}
.sec-img{
  width: 100%; height: auto;
  border-radius: var(--radius-lg);
  margin: 0 0 22px;
  background: var(--bg-alt);
  box-shadow: var(--shadow-sm);
}

/* ===== FVヒーロー(参考LP型:背景写真 + 左に訴求) ===== */
.fv-hero{
  position: relative;
  overflow: hidden;
  margin: 0 auto;            /* デスクトップは他セクションと同幅で中央寄せ */
  max-width: var(--maxw);    /* スマホ(幅<560px)は全幅 */
  min-height: 500px;         /* 縦長画像を活かしつつ、特徴〜青帯の間延びを抑える */
  display: flex;
}
.fv-hero-bg{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 72% center;
  z-index: 0;
}
/* 左を明るくして文字を載せ、写真は右に見せる */
.fv-hero-inner{
  position: relative; z-index: 1;
  width: 100%;
  /* 上はヘッダー(52px)+ゆとりを確保してバッジが窮屈にならないように */
  padding: 112px 22px 40px;
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: flex-start;
  background: linear-gradient(to right,
    rgba(245,247,250,.97) 0%,
    rgba(245,247,250,.93) 40%,
    rgba(245,247,250,.55) 66%,
    rgba(245,247,250,0) 100%);
}
.fv-badge{
  display: inline-block;
  background: var(--brand-dark); color: #fff;
  font-weight: 800; font-size: 15px; letter-spacing: .02em;
  padding: 7px 18px; border-radius: 8px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
}
.fv-kicker{ margin: 0 0 6px; font-size: 17px; font-weight: 800; color: var(--text); }
/* ブランドの読み(ふりがな)ラベル:めっちゃ小さく */
.fv-brand-read{
  margin: 0 0 -2px; padding-left: 3px;
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  color: var(--brand);
}
.fv-brand{
  margin: 0 0 20px;
  font-size: 50px; font-weight: 800; line-height: 1.04;
  color: var(--brand-dark); letter-spacing: .03em;
}
.fv-feats{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.fv-feats li{ display: flex; align-items: center; gap: 10px; }
.ft-ic{
  flex: none; width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff; border-radius: 50%;
  box-shadow: 0 3px 8px rgba(43,166,114,.3);
}
.ft-ic svg{ width: 21px; height: 21px; }
.ft-tx{
  display: flex; flex-direction: column;
  background: rgba(255,255,255,.88); border-radius: 8px; padding: 6px 14px;
}
.ft-cap{ font-size: 11px; font-weight: 700; color: var(--text-sub); line-height: 1.3; }
.ft-main{ font-size: 17px; font-weight: 700; color: var(--text); line-height: 1.2; }
.ft-main b{ color: var(--accent-dark); font-size: 19px; }

/* 青帯(斜線つきコピー + CTA を内包) */
.fv-band{
  max-width: var(--maxw); margin: 0 auto;  /* ヒーローと同幅 */
  background: var(--brand-dark); color: #fff;
  text-align: center;
  padding: 16px 22px 20px;
}
.fv-band-text{ margin: 0 0 12px; font-weight: 800; font-size: 16px; }
.fv-band-text span{ position: relative; display: inline-block; }
.fv-band-text span::before, .fv-band-text span::after{
  content: ""; position: absolute; top: 50%;
  width: 2px; height: 18px; background: rgba(255,255,255,.55);
  box-shadow: 6px 0 rgba(255,255,255,.55);
}
.fv-band-text span::before{ left: -26px; transform: translateY(-50%) rotate(-20deg); }
.fv-band-text span::after{ right: -20px; transform: translateY(-50%) rotate(20deg); }
/* 帯内CTA:跳ねは無し・光沢(::before)は維持(specificityで.ctaに勝たせる) */
.cta.cta-band{ animation: none; top: 0; }

.fv .wrap{ text-align: center; padding-top: 18px; }
/* 帯の直下CTA(参考LP型) */
.fv-wrap > .cta{ margin-bottom: 22px; }

@media (min-width: 600px){
  .fv-brand{ font-size: 58px; }
}

/* チェックリスト */
.checklist{ list-style: none; margin: 0; padding: 0; text-align: left; }
.checklist li{
  position: relative;
  padding: 9px 0 9px 32px;
  border-bottom: 1px dashed var(--line);
  font-weight: 600;
}
.checklist li:last-child{ border-bottom: none; }
.checklist li::before{
  content: "";
  position: absolute; left: 3px; top: 15px;
  width: 16px; height: 9px;
  border-left: 2.6px solid var(--accent);
  border-bottom: 2.6px solid var(--accent);
  transform: rotate(-45deg);
}
.fv-checks{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 20px;
  margin: 0 0 22px;
  box-shadow: var(--shadow-sm);
}

.note-block{
  font-size: 14px; color: var(--text-sub);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 10px;
  padding: 14px 16px; margin: 0 0 24px;
  text-align: left;
}
/* 補足の細い注記(箱・引用なし、小さく目立たせない) */
.note-fine{
  font-size: 12px; line-height: 1.7; color: var(--text-sub);
  text-align: left; margin: 4px 2px 0;
}

/* ===== CTA ===== */
.cta{
  display: flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 58px;
  padding: 12px 18px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  font-size: 17px; font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(43,166,114,.32);
  text-align: center; line-height: 1.4;
  position: relative;
  overflow: hidden; /* 光沢スイープをボタン内にクリップ */
  top: 0;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  /* 控えめな「ぽんぽん」跳ね(top を使い、ホバーの transform と衝突させない) */
  animation: cta-bounce 2.6s ease-in-out infinite;
}
/* 光の反射スイープ(=控えめなキラキラ)。胡散臭ければこの ::before ごと削除可 */
.cta::before{
  content: "";
  position: absolute; top: 0; left: -70%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.38) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: cta-shine 5s ease-in-out infinite;
  pointer-events: none;
}
.cta::after{
  content: "›";
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 700; opacity: .85;
}
.cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(43,166,114,.42);
  filter: brightness(1.04);
}
.cta:active{ transform: translateY(1px); box-shadow: 0 3px 10px rgba(43,166,114,.3); }

@keyframes cta-bounce{
  0%, 30%, 100% { top: 0; }
  12% { top: -6px; }
  21% { top: -2px; }
}
@keyframes cta-shine{
  0%, 55% { left: -70%; }
  80%, 100% { left: 140%; }
}
.cta-ic{ width: 22px; height: 22px; flex: none; border-radius: 6px; background: #fff; position: relative; }
.cta-ic::after{
  content: "LINE"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 7px; font-weight: 800; color: var(--accent-dark); letter-spacing: -.02em;
}
.cta-final{ min-height: 62px; font-size: 18px; }

/* CTAを引き立てる小さな前置き */
.cta-lead{ text-align: center; font-weight: 700; color: var(--brand-dark); margin: 4px 0 12px; }

/* ===== ② こんな方に ===== */
.reasons{ list-style: none; margin: 0; padding: 0; }
.reasons li{
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.r-ic{
  flex: none; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-soft); color: var(--brand);
  border-radius: 12px;
}
.r-ic svg{ width: 24px; height: 24px; }

/* ===== ③ 3ステップ ===== */
.steps3{
  list-style: none; margin: 0 0 22px; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.step-card{
  display: flex; align-items: center; gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-card:not(:last-child)::after{
  content: ""; position: absolute; left: 33px; bottom: -14px;
  width: 2px; height: 14px; background: var(--line);
}
.step-num{
  flex: none; width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg,var(--brand),var(--brand-dark));
  color: #fff; border-radius: 50%; font-weight: 800; font-size: 16px;
}
.step-ic{ flex: none; width: 30px; height: 30px; color: var(--brand); }
.step-ic svg{ width: 100%; height: 100%; }
.step-txt{ font-weight: 700; }

/* ボックス */
.box{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin: 0 0 22px;
  box-shadow: var(--shadow-sm);
}
.box-title{
  font-weight: 800; text-align: center; margin: 0 0 16px;
  color: var(--brand-dark);
  position: relative;
  white-space: nowrap;  /* サイドバーが折り返さないように */
}
.box-title::before, .box-title::after{
  content: ""; display: inline-block;
  width: 14px; height: 1.5px; background: var(--brand);
  vertical-align: middle; margin: 0 8px;
}
.box-plain{ background: var(--bg-alt); box-shadow: none; }
.sec-alt .box-plain{ background: #fff; box-shadow: var(--shadow-sm); }

/* ✕リスト */
.xlist{ list-style: none; margin: 0; padding: 0; }
.xlist li{
  position: relative; padding: 9px 0 9px 34px;
  border-bottom: 1px dashed var(--line); font-weight: 600;
}
.xlist li:last-child{ border-bottom: none; }
.xlist li::before{
  content: "✕";
  position: absolute; left: 0; top: 8px;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #fbe9e4; color: #c0563f; font-weight: 700; font-size: 12px;
}

/* 点リスト */
.dotlist{ margin: 0 0 16px; padding-left: 1.2em; }
.dotlist li{ margin-bottom: 8px; }

/* ===== ④ アプリモック ===== */
.mock-row{
  display: flex; gap: 12px; overflow-x: auto;
  padding: 8px 2px 16px; margin: 8px 0 24px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.phone{ flex: none; width: 150px; margin: 0; text-align: center; scroll-snap-align: center; }
.phone figcaption{ font-size: 13px; color: var(--text-sub); margin-top: 8px; font-weight: 600; }
.phone-screen{
  width: 150px; height: 300px;
  border: 6px solid #2a3340; border-radius: 24px;
  background: #fff; overflow: hidden;
  display: flex; flex-direction: column; padding: 10px;
  box-shadow: var(--shadow);
}
.m-bar{ font-size: 12px; font-weight: 700; color: var(--brand-dark); padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.m-ring{ position: relative; margin: 14px auto; width: 90px; height: 90px; border-radius: 50%;
  background: conic-gradient(var(--brand) 70%, #E1E7EF 0);
  display: flex; align-items: center; justify-content: center; }
.m-ring::before{ content:""; position:absolute; width:66px; height:66px; background:#fff; border-radius:50%; }
.m-ring-num{ position: relative; font-weight: 800; font-size: 18px; color: var(--brand-dark); }
.m-ring-num small{ font-size: 11px; }
.m-list{ list-style: none; margin: 0; padding: 0; font-size: 11px; }
.m-list li{ display: flex; justify-content: space-between; padding: 4px 0; border-bottom: 1px solid var(--line); }
.m-video{ margin: 12px 0; height: 80px; border-radius: 8px; background: #1f2733; display: flex; align-items: center; justify-content: center; }
.m-play{ width:0;height:0;border-left:16px solid #fff;border-top:10px solid transparent;border-bottom:10px solid transparent; }
.m-timeline{ display: flex; gap: 4px; margin-bottom: 10px; }
.m-seg{ flex: 1; height: 10px; border-radius: 3px; background: #E1E7EF; }
.m-seg.sel{ background: var(--accent); }
.m-cap{ font-size: 11px; color: var(--text-sub); margin: 0 0 10px; text-align: center; }
.m-btn{ margin-top: auto; font-size: 11px; font-weight: 700; color: #fff; background: var(--brand); border-radius: 8px; padding: 8px; text-align: center; }
.mock-clip .m-btn{ background: var(--accent); }
.mock-more{ align-items: center; justify-content: center; gap: 10px; background: var(--bg-alt); border-style: dashed; border-color: #b9c4d1; }
.m-plus{ font-size: 40px; color: var(--brand); font-weight: 300; }

/* ===== ⑤ 報酬フロー ===== */
.flow{
  display: flex; align-items: stretch; justify-content: center;
  flex-wrap: nowrap; gap: 6px; margin: 8px 0 28px;
}
.flow-step{
  flex: 1 1 0; min-width: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 6px; text-align: center; font-size: 12.5px; font-weight: 700;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  box-shadow: var(--shadow-sm);
}
.flow-ic{ width: 30px; height: 30px; color: var(--brand);
  background: var(--brand-soft); border-radius: 10px; padding: 5px; }
.flow-ic svg{ width: 100%; height: 100%; }
.flow-repeat{ border-color: var(--accent); }
.flow-repeat .flow-ic{ color: var(--accent); background: var(--accent-soft); }
.flow-arrow{ align-self: center; color: var(--brand); font-weight: 800; flex: none; font-size: 18px; }

/* 計算例グラフ — 金額を大型に */
.calc{
  margin: 0 0 22px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px 20px; box-shadow: var(--shadow-sm);
}
.sec-alt .calc{ background: #fff; }
.calc-title{ font-weight: 800; font-size: 15px; margin: 0 0 18px; text-align: center; color: var(--brand-dark); }
.bars{ list-style: none; margin: 0 0 16px; padding: 0; }
.bars li{ margin-bottom: 18px; }
.bar-head{ display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.bar-label{ font-size: 14px; color: var(--text-sub); font-weight: 700; }
.bar-val{ font-weight: 800; white-space: nowrap; color: var(--brand-dark); }
.bar-val .yen{ font-size: 13px; }
.bar-val .num{ font-size: 26px; line-height: 1; margin: 0 1px; }
.bars li.hl .bar-val{ color: var(--accent-dark); }
.bar-track{ display: block; height: 16px; background: #E6EBF1; border-radius: 8px; overflow: hidden; }
.bar-fill{
  display: block; height: 100%; width: var(--w);
  background: linear-gradient(90deg,var(--brand),var(--brand-dark));
  border-radius: 8px;
}
.bars li.hl .bar-fill{ background: linear-gradient(90deg,var(--accent),var(--accent-dark)); }

.disclaimer{
  font-size: 12px; color: var(--text-sub);
  line-height: 1.7; text-align: left; margin: 2px 2px 0;
}

.box-merit{ border: 1px solid var(--accent); background: var(--accent-soft); box-shadow: none; }
.box-merit .box-title{ color: var(--accent-dark); }
.box-merit .box-title::before, .box-merit .box-title::after{ background: var(--accent); }

/* 先行登録メリット(FV直下の先出しブロック) */
.presale{ padding: 34px 0 40px; }
.presale-list{ margin-bottom: 18px; }
.presale-list li{ border-bottom-color: rgba(43,166,114,.22); }
.presale-tl{ margin-bottom: 0; }

/* ===== ⑥ 使い道 ===== */
.usecases{ list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; }
.usecases li{
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px 14px 46px; position: relative; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.usecases li::before{
  content: "♡"; position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--accent); font-size: 16px;
}

/* ===== 吹き出し ===== */
.bubble{
  position: relative;
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 16px 20px; margin: 0 auto 22px;
  max-width: 92%; text-align: center; font-weight: 600; color: var(--text-sub);
  box-shadow: var(--shadow-sm);
}
.bubble::after{
  content: ""; position: absolute; left: 50%; bottom: -10px; transform: translateX(-50%);
  border-width: 10px 9px 0 9px; border-style: solid;
  border-color: #fff transparent transparent transparent;
  filter: drop-shadow(0 1px 0 var(--line));
}

/* ===== ⑧ FAQ ===== */
.faq details{
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq summary{
  cursor: pointer; list-style: none;
  padding: 16px 48px 16px 18px; font-weight: 700; position: relative;
  color: var(--brand-dark);
}
.faq summary::-webkit-details-marker{ display: none; }
.faq summary::after{
  content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  font-size: 24px; color: var(--brand); font-weight: 300; transition: transform .2s;
}
.faq details[open] summary::after{ content: "−"; }
.faq details p{ margin: 0; padding: 0 18px 18px; color: var(--text-sub); }

/* ===== ⑨ お仕事開始までの流れ(2ステップ要約) ===== */
.flow2-head{ text-align: center; font-weight: 800; color: var(--brand-dark); margin: 0 0 14px; }
.flow2{
  display: flex; align-items: stretch; justify-content: center; gap: 8px;
  margin: 0 0 12px;
}
.flow2-step{
  flex: 1 1 0; min-width: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 10px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  box-shadow: var(--shadow-sm);
}
.sec-alt .flow2-step{ background: var(--bg); }
.flow2-num{
  width: 30px; height: 30px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg,var(--brand),var(--brand-dark));
  color: #fff; border-radius: 50%; font-weight: 800; font-size: 15px;
}
.flow2-tx{ font-weight: 800; font-size: 16px; color: var(--text); line-height: 1.35; }
.flow2-tx small{ display: block; font-size: 11px; font-weight: 700; color: var(--text-sub); margin-top: 2px; }
.flow2-start{ border-color: var(--accent); background: var(--accent-soft); }
.sec-alt .flow2-start{ background: var(--accent-soft); }
.flow2-start .flow2-num{ background: linear-gradient(180deg,var(--accent),var(--accent-dark)); }
.flow2-start .flow2-tx{ color: var(--accent-dark); }
.flow2-arrow{ align-self: center; flex: none; color: var(--brand); font-weight: 800; font-size: 18px; }
.flow2-note{ font-size: 12px; line-height: 1.7; color: var(--text-sub); text-align: center; margin: 0 0 22px; }
.flow-detail-label{
  text-align: center; font-size: 13px; font-weight: 700; color: var(--text-sub);
  margin: 0 0 12px; position: relative;
}

/* ===== ⑨ 4ステップ + タイムライン ===== */
.steps4{ list-style: none; margin: 0 0 24px; padding: 0; }
.steps4 li{
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 16px; margin-bottom: 10px; box-shadow: var(--shadow-sm);
}
.s4-num{
  flex: none; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg,var(--brand),var(--brand-dark));
  color: #fff; border-radius: 50%; font-weight: 800; font-size: 15px;
}

.timeline{
  display: flex; align-items: flex-start; justify-content: space-between;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 26px 20px; margin: 0 0 24px; box-shadow: var(--shadow-sm);
}
.tl-point{ text-align: center; flex: none; position: relative; width: 90px; }
.tl-dot{ display: block; width: 18px; height: 18px; margin: 0 auto 12px; border-radius: 50%; background: #cdd6e0; }
.tl-now .tl-dot{ background: var(--accent); box-shadow: 0 0 0 6px rgba(43,166,114,.18); }
.tl-cap{ font-size: 13px; line-height: 1.5; }
.tl-now .tl-cap b{ color: var(--accent-dark); }
.tl-line{ flex: 1; height: 3px; border-radius: 2px; background: linear-gradient(90deg,var(--accent),var(--line)); margin: 8px 6px 0; }

/* ===== ⑩ 最後に ===== */
.sec-final{ text-align: center; }
.sec-final .body{ text-align: center; }
.logo{
  display: inline-block;
  font-size: 26px; font-weight: 800; color: var(--brand-dark);
  letter-spacing: .1em; margin-bottom: 18px;
  padding: 10px 26px; border: 2px solid var(--brand); border-radius: 999px;
}

/* ===== フッター ===== */
.footer{ background: #2a3340; color: #c7d0db; padding: 36px 0; text-align: center; font-size: 14px; }
.f-operator{ margin: 0 0 14px; }
.f-links{
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 6px 10px; margin-bottom: 18px;
}
.f-links a{ color: #c7d0db; text-decoration: underline; font-size: 12px; }
/* リンク間の区切り(中点) */
.f-links a:not(:last-child)::after{
  content: "・"; margin-left: 10px; color: #5b6675;
  text-decoration: none; display: inline-block;
}
.f-copy{ margin: 0; color: #8a95a3; font-size: 12px; }

/* ===== サイトヘッダー(中央ロゴ・スティッキーCTA出現で隠れる) ===== */
.sitebar{
  position: fixed; top: 0; left: 0; right: 0;
  height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  z-index: 60;
  transition: transform .3s ease, opacity .3s ease;
}
.sitebar-logo{
  font-weight: 800; font-size: 19px; letter-spacing: .08em;
  color: var(--brand-dark);
}
.sitebar.hide{ transform: translateY(-100%); opacity: 0; pointer-events: none; }

/* ===== sticky CTA ===== */
.sticky-cta{
  position: fixed; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border-top: 1px solid var(--line);
  padding: 8px 0; z-index: 50;
  box-shadow: 0 -2px 12px rgba(0,0,0,.08);
  transform: translateY(120%); transition: transform .3s ease;
}
.sticky-cta.show{ transform: translateY(0); }
.sticky-cta .cta{ min-height: 52px; box-shadow: none; }
/* スティッキーCTAのサブラベル(\ ... /) */
.sticky-label{
  margin: 0 0 6px; text-align: center;
  font-size: 12px; font-weight: 800; color: var(--brand-dark);
}
.sticky-label span{ position: relative; display: inline-block; }
.sticky-label span::before, .sticky-label span::after{
  content: ""; position: absolute; top: 50%;
  width: 2px; height: 13px; background: var(--brand);
}
.sticky-label span::before{ left: -14px; transform: translateY(-50%) rotate(-20deg); }
.sticky-label span::after{ right: -14px; transform: translateY(-50%) rotate(20deg); }

/* ===== PC ===== */
@media (min-width: 600px){
  .sec h2{ font-size: 25px; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .sticky-cta, .cta, .sitebar{ transition: none; }
  .cta{ animation: none; top: 0; }
  .cta::before{ animation: none; display: none; }
}

/* ===== 法務ページ ===== */
.legal{ padding: 40px 0 60px; }
.legal h1{ font-size: 22px; color: var(--brand-dark); margin: 0 0 8px; }
.legal .updated{ color: var(--text-sub); font-size: 13px; margin: 0 0 28px; }
.legal h2{ font-size: 17px; margin: 28px 0 8px; color: var(--text); text-align: left; padding-top: 0; }
.legal h2::after{ display: none; }
.legal p, .legal li{ font-size: 15px; }
.legal table{ width: 100%; border-collapse: collapse; margin: 8px 0 16px; }
.legal th, .legal td{ border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; font-size: 14px; }
.legal th{ background: var(--bg-alt); width: 38%; white-space: nowrap; }
.legal .todo{ color: #b06a2c; font-weight: 600; }
.back-home{ display: inline-block; margin-top: 24px; }
