/* ============================================
   Components: Flow, Plans, Bonus, FAQ, Footer
   Animations, Mobile sticky bar
============================================ */

/* =====================================
   Flow / steps (Section 4)
===================================== */
.flow {
  margin-top: 24px;
  position: relative;
}
.flow-grid {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr 48px 1fr;
  gap: 12px;
  align-items: stretch;
}
.flow-step {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 24px 16px 22px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-height: 130px;
}
.flow-step .flow-num {
  display: inline-block;
  font-size: 18px;
  font-weight: 900;
  color: var(--blue-deep);
  letter-spacing: 0.1em;
  padding-bottom: 6px;
  border-bottom: 3px solid var(--blue-tint);
  margin: 0 auto;
  min-width: 60px;
}
.flow-arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  color: transparent;
  font-size: 0;
}
/* 太い矢印を CSS で描く: 横棒 + 矢じり */
.flow-arrow::before {
  /* 横棒(矢じりに少し被せて隙間をなくす) */
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  right: 10px;
  height: 10px;
  background: var(--blue-deep);
  transform: translateY(-50%);
}
.flow-arrow::after {
  /* 矢じり(右向き三角形) */
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  width: 0;
  height: 0;
  border-left: 14px solid var(--blue-deep);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  transform: translateY(-50%);
}

/* 2行目: STEP05/06/07 の3個。1行目とカラム幅を完全に揃える */
.flow-grid--row2 {
  /* 1行目と同じ 7列構造を維持し、4個目以降を空セルにする */
  grid-template-columns: 1fr 48px 1fr 48px 1fr 48px 1fr;
  margin-top: 12px;
}
.flow-grid--row2 > *:nth-child(1) { grid-column: 1; }
.flow-grid--row2 > *:nth-child(2) { grid-column: 2; }
.flow-grid--row2 > *:nth-child(3) { grid-column: 3; }
.flow-grid--row2 > *:nth-child(4) { grid-column: 4; }
.flow-grid--row2 > *:nth-child(5) { grid-column: 5; }
.flow-grid--row2::after {
  /* 7列分のグリッド幅を維持するため、6列目と7列目に透明要素を仕込む */
  content: "";
  grid-column: 6 / 8;
  visibility: hidden;
}

@media (max-width: 820px) {
  .flow-grid { grid-template-columns: 1fr; gap: 18px; }
  .flow-grid--row2 { grid-template-columns: 1fr; gap: 18px; margin-top: 18px; }
  .flow-grid--row2 > *:nth-child(n) { grid-column: auto; }
  .flow-grid--row2::after { display: none; }
  .flow-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
    min-height: 36px;
  }
  .flow-step { min-height: auto; padding: 18px 14px; }
}

/* =====================================
   Asset block (Section 4 sub-section)
===================================== */
.asset-block {
  margin-top: 40px;
  padding: 40px 36px;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.asset-block::before {
  content: "POINT";
  position: absolute;
  top: -14px; left: 32px;
  background: var(--ink);
  color: #fff;
  padding: 4px 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.12em;
  border-radius: 4px;
}
.asset-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.5;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.asset-title mark {
  background: linear-gradient(transparent 60%, var(--ocher-tint) 60%);
  padding: 0 6px;
}

.asset-vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  margin: 24px 0 32px;
}
.asset-vs-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.asset-vs-card.bad { opacity: 0.85; }
.asset-vs-card.good {
  background: var(--blue-tint);
  border-color: var(--ink);
}
.asset-vs-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.asset-vs-card.bad .asset-vs-label {
  background: var(--gray-100);
  color: var(--muted);
}
.asset-vs-card.good .asset-vs-label {
  background: var(--blue-deep);
  color: #fff;
}
.asset-vs-card h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 8px;
}
.asset-vs-card p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.75;
}
.asset-vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--ink);
  font-size: 24px;
}

.asset-lead {
  background: var(--paper);
  border: 2px dashed var(--ink);
  border-radius: 10px;
  padding: 20px 22px;
  margin-bottom: 24px;
}
.asset-lead h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  margin: 0 0 12px;
}
.asset-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
}
.asset-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}
.asset-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--blue-deep);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.asset-grid-label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  margin: 28px 0 12px;
}
.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.asset-grid-item {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}
.asset-grid-item .gnum {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.asset-grid-item .gname {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  margin-top: 2px;
}
.asset-grid-item--plus {
  background: var(--ocher-tint);
}
.asset-channels {
  margin-top: 20px;
}
.asset-arrow {
  position: relative;
  width: 32px;
  height: 48px;
  margin: 10px auto;
  color: transparent;
  font-size: 0;
}
/* 太い下向き矢印を CSS で描く: 縦棒 + 矢じり */
.asset-arrow::before {
  /* 縦棒(矢じりに少し被せて隙間をなくす) */
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  bottom: 10px;
  width: 10px;
  background: var(--blue-deep);
  transform: translateX(-50%);
}
.asset-arrow::after {
  /* 矢じり(下向き三角形) */
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 0;
  border-top: 14px solid var(--blue-deep);
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  transform: translateX(-50%);
}
.asset-channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.asset-channel {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 14px 12px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}
.asset-slogan {
  margin-top: 28px;
  padding: 24px 28px;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  text-align: center;
}
.asset-slogan small {
  display: block;
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 6px;
  font-weight: 500;
}
.asset-slogan b {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.asset-slogan b mark {
  background: transparent;
  color: var(--ocher);
}

@media (max-width: 820px) {
  .asset-block { padding: 32px 22px; }
  .asset-vs { grid-template-columns: 1fr; }
  .asset-vs-divider { transform: rotate(90deg); }
  .asset-list { grid-template-columns: 1fr; }
  .asset-grid { grid-template-columns: 1fr 1fr; }
  .asset-channels-grid { grid-template-columns: 1fr 1fr; }
}

/* =====================================
   Plans (Section 4)
===================================== */
.plans-head {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  margin: 56px 0 18px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.plans-head::before {
  content: "";
  width: 5px;
  height: 24px;
  background: var(--blue-deep);
  display: inline-block;
}
.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.plan {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  padding: 24px 20px 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.2s;
}
.plan:hover { transform: translateY(-3px); box-shadow: 4px 8px 0 var(--ink); }
.plan-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.plan-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.plan-price small {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0;
}
.plan-desc {
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 12px;
}
.plan-target {
  font-size: 11px;
  color: var(--muted);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  padding: 8px 10px;
  line-height: 1.6;
}
.plan--featured {
  background: var(--blue-deep);
  color: #fff;
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}
.plan--featured .plan-name,
.plan--featured .plan-price,
.plan--featured .plan-desc { color: #fff; }
.plan--featured .plan-name { opacity: 0.85; }
.plan--featured .plan-price small { color: rgba(255,255,255,0.7); }
.plan--featured .plan-target {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
}
.plan-ribbon {
  position: absolute;
  top: -12px; right: 12px;
  background: var(--ocher);
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 4px 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  box-shadow: 2px 2px 0 var(--ink);
}
.plan-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  line-height: 1.8;
}

.not-fit {
  margin-top: 32px;
  padding: 22px 24px;
  background: var(--paper);
  border: 2px dashed var(--ink);
  border-radius: 10px;
}
.not-fit h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  margin: 0 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.not-fit h4::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
}
.not-fit p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-soft);
}

@media (max-width: 820px) {
  .plans { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .plans { grid-template-columns: 1fr; }
}

/* =====================================
   Activation list (Section 5)
===================================== */
.act-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.act-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 18px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.act-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  color: var(--blue-ink);
}
.act-text {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--ink-soft);
}
.act-text b {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 2px;
}

@media (max-width: 820px) {
  .act-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .act-grid { grid-template-columns: 1fr; }
}

/* =====================================
   Pre-contract deliverables (Section 5)
===================================== */
.pre-deliver {
  margin-top: 36px;
  padding: 28px 32px;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
}
.pre-deliver-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ocher);
  margin-bottom: 14px;
}
.pre-deliver-label::before, .pre-deliver-label::after {
  content: "";
  width: 18px; height: 1.5px;
  background: var(--ocher);
}
.pre-deliver-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  margin: 0 0 18px;
  line-height: 1.5;
}
.pre-deliver-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pre-deliver-grid > div {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
}
.pre-deliver-grid > div b {
  display: block;
  color: var(--ocher);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

@media (max-width: 820px) {
  .pre-deliver-grid { grid-template-columns: 1fr; }
  .pre-deliver { padding: 24px; }
}

/* =====================================
   Stats / Categories (Section 6)
===================================== */
.big-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.big-stat {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.big-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: var(--blue-deep);
  letter-spacing: -0.03em;
}
.big-stat-num small { font-size: 22px; color: var(--ink); }
.big-stat-label {
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-soft);
}

.cat-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.cat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.cat-row .pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
}
.cat-row .pill .pill-icon {
  width: 28px; height: 28px;
  background: var(--blue-tint);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.disclosure {
  margin-top: 20px;
  padding: 16px 20px;
  border: 2px dashed var(--ink);
  border-radius: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.75;
  background: var(--gray-50);
}
.disclosure::before {
  content: "i";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 11px;
  margin-right: 8px;
  font-style: italic;
  vertical-align: middle;
}

.checklist-six {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.checklist-six > div {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  box-shadow: var(--shadow-sm);
}
.checklist-six > div::before {
  content: counter(cl, decimal-leading-zero);
  counter-increment: cl;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--blue-deep);
  letter-spacing: 0.02em;
}
.checklist-six { counter-reset: cl; }

@media (max-width: 820px) {
  .big-stats, .cat-thumbs, .cat-row, .checklist-six { grid-template-columns: 1fr 1fr; }
  .big-stat-num { font-size: 44px; }
}
@media (max-width: 560px) {
  .big-stats, .cat-thumbs, .cat-row, .checklist-six { grid-template-columns: 1fr; }
}

/* =====================================
   Section 7 — our story
===================================== */
.story-lead {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  padding: 28px 32px;
  box-shadow: var(--shadow-md);
  margin-top: 24px;
}
.story-lead-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  color: var(--blue-deep);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.story-lead h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  margin: 0 0 16px;
  line-height: 1.5;
}
.story-lead p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.95;
}
.story-lead p + p { margin-top: 12px; }

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.story-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.story-card .story-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--blue-tint);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  color: var(--blue-ink);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.story-card h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 12px;
}
.story-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin: 0 0 12px;
}
.story-card .story-pin {
  display: inline-block;
  background: var(--ocher-tint);
  border: 1.5px solid var(--ink);
  padding: 4px 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  border-radius: 4px;
}

.do-dont {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.do-dont > div {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 22px 24px;
}
.do-dont .label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.do-dont .dont .label { color: var(--muted); }
.do-dont .do .label { color: var(--blue-deep); }
.do-dont p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink-soft);
}
.do-dont .do {
  background: var(--blue-tint);
  border-color: var(--ink);
}

.shoots-label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  margin: 40px 0 14px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.shoots-label::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  background: var(--ocher);
}
.shoots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.cap-grid > div {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  line-height: 1.45;
}

@media (max-width: 820px) {
  .story-grid { grid-template-columns: 1fr; }
  .do-dont { grid-template-columns: 1fr; }
  .shoots, .cap-grid { grid-template-columns: 1fr 1fr; }
}

/* =====================================
   Section 8 — Bonus
===================================== */
.bonus-banner {
  margin-top: 24px;
  padding: 36px 36px 32px;
  background: var(--blue-tint);
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
}
.bonus-banner .bonus-tag {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  padding: 6px 16px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.1em;
  border-radius: 4px;
  margin-bottom: 12px;
}
.bonus-banner h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.4;
  margin: 0 0 12px;
}
.bonus-banner .bonus-price {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--ink-soft);
  padding: 8px 16px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 999px;
  margin-top: 8px;
}
.bonus-banner .bonus-price b {
  color: var(--blue-deep);
  margin: 0 4px;
}
.bonus-banner .bonus-price strong {
  color: var(--ocher-deep);
  font-size: 20px;
  margin-left: 4px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.bonus-card {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.bonus-card-num {
  position: absolute;
  top: -16px; left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ocher);
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 6px 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  border-radius: 6px;
  letter-spacing: 0.06em;
  box-shadow: 2px 2px 0 var(--ink);
}
.bonus-card h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  line-height: 1.55;
  margin: 12px 0 14px;
}
.bonus-card .photo {
  margin-bottom: 16px;
}
.bonus-card .b-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.bonus-card .b-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.7;
  padding: 4px 0;
  color: var(--ink-soft);
}
.bonus-card .b-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--blue-deep);
  margin-top: 9px;
  border-radius: 1px;
  transform: rotate(45deg);
}
.bonus-card .b-foot {
  background: var(--blue-tint);
  border: 1.5px solid var(--ink);
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.7;
  border-radius: 6px;
  font-weight: 500;
}

@media (max-width: 820px) {
  .bonus-grid { grid-template-columns: 1fr; }
  .bonus-banner { padding: 28px 24px 24px; }
}

/* =====================================
   FAQ (Section 9)
===================================== */
.faq {
  margin-top: 24px;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.faq-item {
  border-bottom: 1.5px solid var(--gray-100);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  text-align: left;
  background: var(--paper);
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  transition: background 0.15s;
}
.faq-q:hover { background: var(--gray-50); }
.faq-q .q-mark {
  flex-shrink: 0;
  width: 34px; height: 34px;
  background: var(--blue-deep);
  color: #fff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
}
.faq-q .q-text { flex: 1; }
.faq-q .q-toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-weight: 900;
  font-size: 16px;
  background: var(--paper);
  transition: transform 0.2s, background 0.2s;
}
.faq-q[aria-expanded="true"] .q-toggle {
  transform: rotate(45deg);
  background: var(--ink);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--gray-50);
}
.faq-a-inner {
  padding: 16px 24px 24px 74px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-soft);
}
.faq-a-inner p { margin: 0 0 12px; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner ul { margin: 8px 0; padding-left: 20px; }
.faq-a-inner ul li { margin-bottom: 4px; }

@media (max-width: 560px) {
  .faq-q { padding: 18px 18px; font-size: 14px; gap: 12px; }
  .faq-a-inner { padding: 12px 18px 20px 18px; font-size: 13.5px; }
  .faq-q .q-mark { width: 30px; height: 30px; }
}

/* =====================================
   Final CTA (Section 10)
===================================== */
.final-hero {
  margin-top: 24px;
  padding: 48px 40px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.final-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.final-hero h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.4;
  margin: 0 0 20px;
}
.final-hero h2 mark {
  background: linear-gradient(transparent 60%, var(--ocher-tint) 60%);
  padding: 0 6px;
}
.final-hero p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto;
}

.final-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.final-box {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
}
.final-box h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
}
.final-box.check ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.final-box.check ul li {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  line-height: 1.6;
}
.final-box.check ul li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-deep);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  border-radius: 999px;
}
.final-box.bonus {
  background: var(--blue-tint);
}
.final-box.bonus ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: bn;
}
.final-box.bonus ol li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
}
.final-box.bonus ol li::before {
  counter-increment: bn;
  content: counter(bn);
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--ocher);
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
}
.final-box.bonus .b-total {
  margin-top: 12px;
  text-align: right;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--ocher-deep);
  font-size: 14px;
}

@media (max-width: 820px) {
  .final-two { grid-template-columns: 1fr; }
  .final-hero { padding: 32px 22px; }
}

/* =====================================
   Footer
===================================== */
.footer {
  padding: 40px 0 20px;
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--gray-100);
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-logo {
  height: 80px;
}
.footer-logo img { height: 100%; width: auto; }
.footer-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 28px;
  border-left: 2px solid var(--gray-100);
}
.footer-phone-icon {
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-phone-icon svg { width: 22px; height: 22px; fill: var(--ink); }
.footer-phone-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--ink);
  line-height: 1;
}
.footer-phone-hours {
  font-size: 11px;
  margin-top: 4px;
  color: var(--muted);
}
/* お問い合わせ案内(電話番号の代替・全デバイス共通) */
.footer-contact {
  padding-left: 28px;
  border-left: 2px solid var(--gray-100);
}
.footer-contact-lead {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.4;
}
.footer-contact-info {
  margin: 0;
  display: flex;
  gap: 8px 22px;
  flex-wrap: wrap;
}
.footer-contact-info > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.footer-contact-info dt {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
.footer-contact-info dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--ink);
}
.footer-cta {
  margin-left: auto;
}
.footer-cta .btn {
  background: linear-gradient(180deg, #ddb357 0%, #d5a242 16%, #c98a14 58%, #b97206 100%);
  color: #fff;
}
/* Phase 14: この後読みルールが styles.css の .btn:hover(水色)を同詳細度で
   打ち消すため、フッターCTAのホバー水色化はここで明示する
   Phase 14f: 水色化はマウス端末のみに限定(スマホのタップ青化を防ぐ) */
@media (hover: hover) and (pointer: fine) {
  .footer-cta .btn:hover {
    background: var(--cta-blue-grad);
    animation: cta-pulse 0.3s ease-out;
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer-cta .btn:hover { animation: none; }
}
/* Phase 14e: タッチ端末ではホバー演出(水色化+プルルン)を無効化し金グラデに固定 */
@media (hover: none) {
  .footer-cta .btn:hover {
    background: linear-gradient(180deg, #ddb357 0%, #d5a242 16%, #c98a14 58%, #b97206 100%);
    animation: none;
  }
}
.footer-note {
  width: 100%;
  margin: 20px auto 0;
  max-width: 1400px;
  padding: 0 40px;
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--muted);
  text-align: center;
}
.footer-copy {
  margin-top: 24px;
  padding: 16px 40px 0;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--gray-100);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 820px) {
  /* 下余白は固定CTAバー(.sticky-cta 約69px)に隠れないギリギリまで圧縮 */
  .footer { padding: 32px 0 74px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; padding: 0 20px; }
  .footer-copy { padding: 16px 20px 0; }
  .footer-contact { padding-left: 0; border-left: none; }
  .footer-cta { margin-left: 0; align-self: stretch; }
  .footer-cta .btn { width: 100%; }
  .footer-note { padding: 0 20px; text-align: left; }
}

/* =====================================
   Mobile sticky CTA bar
===================================== */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--paper);
  border-top: 2px solid var(--ink);
  padding: 10px 12px;
  z-index: 80;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.1);
  gap: 8px;
  align-items: center;
}
/* 文言統一(Phase 13)で sc-tag / sc-text を撤去し、ボタン1つの全幅バーに変更 */
.sticky-cta .sc-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, #ddb357 0%, #d5a242 16%, #c98a14 58%, #b97206 100%);
  color: #fff;
  border: 2px solid var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 999px;
  line-height: 1.35;
  /* Phase 14b: 送信ボタンと同じ柔らかい立体影に統一(固いオフセット影から変更) */
  box-shadow: var(--cta-soft-shadow);
}
/* Phase 14: ホバーでロゴ水色グラデ+控えめな一回弾み(cta-pulse は styles.css 定義)
   Phase 14f: 水色化はマウス端末のみに限定。スティッキーCTAはスマホ専用バーで
   常にタッチ操作のため、(hover: hover) 配下では実質発火しない=タップ青化が消える */
@media (hover: hover) and (pointer: fine) {
  .sticky-cta .sc-btn:hover {
    background: var(--cta-blue-grad);
    animation: cta-pulse 0.3s ease-out;
    box-shadow: var(--cta-soft-shadow);
  }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta .sc-btn:hover { animation: none; }
}
/* Phase 14e: スティッキーCTAはスマホ専用で常にタッチ操作。
   ホバー演出(水色化+プルルン)がタップ時に発火するのを防ぎ金グラデに固定 */
@media (hover: none) {
  .sticky-cta .sc-btn:hover {
    background: linear-gradient(180deg, #ddb357 0%, #d5a242 16%, #c98a14 58%, #b97206 100%);
    animation: none;
    box-shadow: var(--cta-soft-shadow);
  }
}

@media (max-width: 820px) {
  .sticky-cta { display: flex; }
}

/* =====================================
   Scroll reveal
===================================== */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.js [data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* =====================================
   Utilities
===================================== */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }

/* Inline marks */
.hl-ocher {
  background: linear-gradient(transparent 60%, var(--ocher-tint) 60%);
  padding: 0 4px;
}
.hl-blue {
  color: var(--blue-deep);
  font-weight: 900;
}

/* sp-only line break — show only on mobile */
br.sp-only { display: none; }
@media (max-width: 820px) {
  br.sp-only { display: inline; }
}

/* =====================================================
   TABLET FONT-SIZE OVERRIDES (641px - 1024px)
   Tablet 専用フォントサイズ拡大ブロック。
   モバイル分岐の値を約 +15〜20% で上書き。
   ≤640px と ≥1025px には影響しない。
   ===================================================== */
@media (min-width: 641px) and (max-width: 1024px) {
  /* Section eyebrow / titles / leads (Section 5, 6, 7 など) */
  .eyebrow { font-size: 14px; letter-spacing: 0.18em; }
  .section-eyebrow { font-size: 14px; letter-spacing: 0.18em; }
  .section-title { font-size: clamp(26px, 3.6vw, 38px); }
  .section-lead { font-size: 18px; line-height: 1.85; }

  /* Big stat (Section 2 / 3 など) */
  .big-stat-num { font-size: 52px; }
  .big-stat-num small { font-size: 24px; }
  .big-stat-label { font-size: 16px; }

  /* Reason cards (Section 5) */
  .reason-card h3 { font-size: 22px; }
  .reason-card p { font-size: 16px; line-height: 1.85; }
  .reason-meta { font-size: 14px; }

  /* Deliverable list */
  .deliverable-item h4 { font-size: 19px; }
  .deliverable-item p { font-size: 16px; }

  /* Bonus banner (Section 8 など) */
  .bonus-banner h3 { font-size: clamp(24px, 3.5vw, 32px); }
  .bonus-banner p { font-size: 18px; line-height: 1.8; }
  .bonus-grid h4 { font-size: 18px; }
  .bonus-grid p { font-size: 16px; }
  .bonus-price { font-size: 16px; }
  .bonus-price b { font-size: 24px; }

  /* FAQ (Section 9) */
  .faq-q { font-size: 17px; padding: 22px 24px; gap: 16px; }
  .faq-q .q-mark { font-size: 17px; width: 36px; height: 36px; }
  .faq-q .q-toggle { font-size: 18px; width: 30px; height: 30px; }
  .faq-a-inner { font-size: 16px; padding: 18px 26px 26px 80px; line-height: 1.9; }

  /* Final CTA (Section 10) */
  .final-eyebrow { font-size: 15px; }
  .final-hero h2 { font-size: clamp(28px, 4.2vw, 42px); line-height: 1.4; }
  .final-hero p { font-size: 18px; line-height: 1.9; }
  .final-box h4 { font-size: 19px; }
  .final-box.check ul li { font-size: 16px; }
  .final-box.check ul li::before { font-size: 13px; width: 24px; height: 24px; }
  .final-box.bonus .b-total { font-size: 16px; }

  /* Footer */
  .footer-phone-num { font-size: 30px; }
  .footer-phone-hours { font-size: 13px; }
  .footer-copy { font-size: 13px; }

  /* Sticky mobile CTA bar — 821-1024 では出さない方が自然だが、
     820 以下で表示されるためタブレット下限〜820px のみ font 拡大 */
  .sticky-cta .sc-btn { font-size: 16px; padding: 14px 20px; }
}

