@charset "UTF-8";
/* =========================================================
   AFTY オーナー向けLP (v6) — WordPress / My Snow Monkey 用
   すべてのルールを .afty-lp 配下へスコープ済み。
   html / body へのグローバル指定は行わない。
   画像URLは --afty-img-* カスタムプロパティ経由でPHPから注入する。
   ========================================================= */

/* アンカー着地位置の調整(html への scroll-padding-top を使わないスコープ版) */
.afty-lp [id] { scroll-margin-top: 64px; }

/* スムーススクロールは、LPを含むページに限って有効化する(:has 未対応環境では通常ジャンプ) */
@supports selector(html:has(.afty-lp)) {
  html:has(.afty-lp) { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html:has(.afty-lp) { scroll-behavior: auto; }
  }
}


/* =========================================================
   AFTY 賃貸管理LP V6 デザイントークンとレイアウト
   コンセプト: 朝の光/白/生成り/墨黒/暖色でスクロールに温度変化を持たせる
   ========================================================= */

.afty-lp {
  --white: #ffffff;
  --morning: #fbf1e1;        /* 朝の光 */
  --kinari: #f3ead8;         /* 生成り */
  --paper: #f8f6f2;          /* 温かみのある淡地 */
  --line: #e4ded4;
  --line-warm: #e6d9bd;
  --ink: #23211d;            /* 墨色(見出し・本文) */
  --ink-soft: #5d574d;
  --sumi: #15130f;           /* 墨黒(反転セクション) */
  --cream-text: #cfc9bd;
  --orange: #e9900a;         /* AFTYブランド色(暗色背景上のアクセントのみ) */
  --orange-deep: #c16e08;    /* 装飾(枠線・チップ境界)専用。文字色には使わない */
  --orange-text: #8f4f05;    /* 明るい背景上の文字色。WCAG AA(4.5:1)確保 */
  --btn-bg: #a85c07;         /* ボタン背景(白文字とのコントラストAA確保) */

  --font-serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --font-sans: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "Yu Gothic", "Noto Sans JP", sans-serif;

  /* ---- 共通グリッド: 全セクションで単一の幅・左右余白を使用 ---- */
  --content-max: 1040px;
  --gutter: 48px;
  --measure: 32em; /* 段落の可読行長を、コンテナ幅とは別に制御する */

  /* ---- タイポグラフィ・ロール: Hero見出し以外はここで統一 ---- */
  --heading-size: clamp(22px, 5.6vw, 32px);
  --heading-line: 1.7;
  --body-size: 14px;
  --note-size: 13px;
}


.afty-lp, .afty-lp *, .afty-lp *::before, .afty-lp *::after { margin: 0; padding: 0; box-sizing: border-box; }



@media (prefers-reduced-motion: reduce) {
  
}


.afty-lp {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.9;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px; /* SP追従CTAぶん */
}


.afty-lp .container { width: min(100% - var(--gutter), var(--content-max)); margin-inline: auto; }


.afty-lp .pc-only { display: none; }

.afty-lp .sp-only { display: inline; }


.afty-lp a { color: var(--orange-text); }


/* 開発プレビュー専用の装飾(.todo / .dev-ribbon / .preview-only)は
   WordPress版では該当要素を持たないため、CSSごと削除している。 */

/* ---------- ヘッダー ---------- */
.afty-lp .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 20px;
}


.afty-lp .brand {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--ink);
}


.afty-lp .brand-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin-left: 4px;
  vertical-align: 2px;
}


.afty-lp .header-actions { display: flex; align-items: center; gap: 12px; }


.afty-lp .header-tel { display: none; text-decoration: none; text-align: right; line-height: 1.4; }

.afty-lp .header-tel .tel-label { display: block; font-size: 10px; color: var(--ink-soft); letter-spacing: 0.06em; }

.afty-lp .header-tel .tel-number { font-family: var(--font-serif); font-size: 18px; color: var(--ink); letter-spacing: 0.04em; }


.afty-lp .header-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--white);
  background: var(--btn-bg);
  padding: 10px 16px;
  border-radius: 2px;
}


/* ---------- ボタン ---------- */
.afty-lp .btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding: 18px 28px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s;
}


/* 375〜390px幅でCTA文言が2行に折り返すのを防ぐ */
@media (max-width: 400px) {

  .afty-lp .btn { padding-left: 14px; padding-right: 14px; letter-spacing: 0.02em; }


}


.afty-lp .btn-primary {
  background: var(--btn-bg);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(21, 19, 15, 0.16);
}


.afty-lp .btn-primary:hover,
.afty-lp .btn-primary:focus-visible { opacity: 0.88; }


.afty-lp .btn-wide { width: 100%; }


.afty-lp :is(a,
.afty-lp button,
.afty-lp input,
.afty-lp select,
.afty-lp textarea):focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}


/* 暗色背景セクションは--inkだとほぼ視認できないため、白系アウトラインへ切り替える */
.afty-lp .hero-v3 :is(a,
.afty-lp button):focus-visible {
  outline-color: var(--white);
}


/* ---------- セクション共通 ---------- */
.afty-lp .section { padding: 72px 0; }

.afty-lp .section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--orange-text);
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
}


.afty-lp .section-title {
  font-family: var(--font-serif);
  font-size: var(--heading-size);
  font-weight: 600;
  line-height: var(--heading-line);
  margin-bottom: 24px;
}


.afty-lp .section-lead { color: var(--ink-soft); margin-bottom: 36px; }


.afty-lp .section-note {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--font-serif);
}


.afty-lp .section-cta-inline { margin-top: 40px; }

.afty-lp .section-cta-inline .btn { width: 100%; }

.afty-lp .inline-cta-heading {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 10px;
}


.afty-lp .decide-note {
  margin-top: 24px;
  font-size: var(--note-size);
  color: var(--ink-soft);
  padding-left: 14px;
  border-left: 2px solid var(--orange);
}


/* ---------- 1. 映画的ファーストビュー(確定コピー・変更禁止) ---------- */
.afty-lp .hero-v3 {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background-color: var(--sumi);
  background-image:
    linear-gradient(180deg, rgba(21,19,15,.30) 0%, rgba(21,19,15,.44) 55%, rgba(21,19,15,.82) 100%),
    var(--afty-img-hero),
    linear-gradient(160deg, #3c332a, #17150f);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0 64px;
}


.afty-lp .hero-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 8vw, 52px);
  font-weight: 600;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}


.afty-lp .hero-lead { color: #ece6d8; margin-bottom: 16px; font-size: 14px; max-width: 46em; text-shadow: 0 1px 10px rgba(0,0,0,.35); }


.afty-lp .hero-lead-list {
  list-style: none;
  margin: 12px 0 16px;
  display: grid;
  gap: 6px;
  color: #ece6d8;
  text-shadow: 0 1px 10px rgba(0,0,0,.35);
}

.afty-lp .hero-lead-list li { padding-left: 18px; position: relative; font-size: 13px; }

.afty-lp .hero-lead-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 1px;
  background: var(--orange);
}


.afty-lp .hero-cta { margin-top: 32px; }

.afty-lp .hero-cta .btn { width: 100%; }


.afty-lp .hero-cta-heading {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 10px;
  text-shadow: 0 1px 10px rgba(0,0,0,.4);
}


.afty-lp .hero-assurance {
  margin-top: 16px;
  font-size: 13px;
  color: #d8d1c1;
  padding-left: 14px;
  border-left: 2px solid var(--orange);
}


.afty-lp .hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  animation: heroScrollBounce 2.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
 .afty-lp .hero-scroll-cue { animation: none; }
 
}

@keyframes heroScrollBounce {
  0%, 100% { opacity: .5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}


/* ---------- 2. 市場は動く ---------- */
.afty-lp .market-band {
  position: relative;
  min-height: 53svh;
  display: flex;
  align-items: center;
  color: var(--white);
  background-color: var(--sumi);
  background-image:
    linear-gradient(180deg, rgba(21,19,15,.46) 0%, rgba(21,19,15,.56) 55%, rgba(21,19,15,.78) 100%),
    var(--afty-img-market),
    linear-gradient(160deg, #4a3c2c, #1c160f);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 84px 0;
}

.afty-lp .market-band .section-eyebrow { color: var(--orange); }

.afty-lp .market-band-title {
  font-family: var(--font-serif);
  font-size: var(--heading-size);
  font-weight: 600;
  line-height: var(--heading-line);
  color: var(--white);
  margin-bottom: 16px;
  max-width: var(--measure);
  text-shadow: 0 2px 14px rgba(0,0,0,.4);
}

.afty-lp .market-band-lead {
  color: #ece6d8;
  max-width: 30em;
  text-shadow: 0 1px 10px rgba(0,0,0,.35);
}


/* ---------- 共通: 一本の線でつなぐタイムライン(3・5・7・9で使用) ---------- */
.afty-lp .line-track { position: relative; padding-left: 32px; margin-top: 16px; }

.afty-lp .line-track::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line-warm);
}

.afty-lp .line-track-item { position: relative; padding-bottom: 40px; }

.afty-lp .line-track-item:last-child { padding-bottom: 0; }

.afty-lp .line-track-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange-deep);
}

.afty-lp .line-track-item h3 { font-family: var(--font-serif); font-size: 18px; margin-bottom: 8px; }

.afty-lp .line-track-item p { font-size: var(--body-size); color: var(--ink-soft); line-height: 1.85; max-width: var(--measure); }


/* ---------- 3. AFTYの考え方 ---------- */
.afty-lp .thinking { background: var(--morning); }

.afty-lp .thinking .section-title,
.afty-lp .thinking .section-lead,
.afty-lp .thinking-origin { max-width: var(--measure); }

.afty-lp .thinking .section-title { font-size: clamp(25px, 6.3vw, 37px); }

.afty-lp .thinking .section-lead { margin-bottom: 0; }


.afty-lp .thinking-origin {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line-warm);
}

.afty-lp .thinking-origin .section-eyebrow { margin-bottom: 18px; }


.afty-lp .statement-quote {
  font-family: var(--font-serif);
  font-size: var(--heading-size);
  font-weight: 600;
  line-height: var(--heading-line);
  color: var(--ink);
  margin-bottom: 28px;
}

/* 「いるなら。」が行の途中で分断されないようにする(語中分断防止) */
.afty-lp .statement-quote .keep-together { white-space: nowrap; }


.afty-lp .statement-body p { color: var(--ink-soft); margin-bottom: 16px; font-size: var(--body-size); max-width: var(--measure); line-height: 1.9; }

.afty-lp .statement-body p:last-child { margin-bottom: 0; }


.afty-lp .statement-link {
  display: inline-block;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 1px solid var(--orange-deep);
  padding-bottom: 4px;
  transition: opacity 0.2s;
}

.afty-lp .statement-link:hover,
.afty-lp .statement-link:focus-visible { opacity: 0.7; }


/* ---------- 3. 短い共感(文字のみ。カード・写真・装飾線は持たない) ---------- */
.afty-lp .reality { background: var(--white); }


.afty-lp .worry-list {
  list-style: none;
  display: grid;
  gap: 20px;
  margin-top: 36px;
  max-width: var(--measure);
}

.afty-lp .worry-list li {
  font-family: var(--font-serif);
  font-size: clamp(18px, 3.2vw, 22px);
  font-weight: 600;
  line-height: 1.6;
  color: var(--ink);
}


/* 短い共感 → その約束は、3つです への接続(意味のある線のみ) */
.afty-lp .section-connector .container { display: flex; justify-content: flex-start; }

.afty-lp .section-connector span {
  display: block;
  width: 1px;
  height: 56px;
  background: var(--line-warm);
}


/* ---------- 4. その約束は、3つです(タイトルを宣言として主役にする) ---------- */
.afty-lp .promises { background: var(--kinari); }

.afty-lp .promises .line-track-item h3 { font-size: 22px; margin-bottom: 14px; }

.afty-lp .promises .line-track-item p { font-size: 12.5px; }


/* ---------- 5. 募集前に決めるのは、家賃だけではありません ---------- */
.afty-lp .decide { background: var(--white); }

.afty-lp .decide-summary { display: none; }

.afty-lp .decide-summary .line-track-item h3 { font-size: 15px; color: var(--ink-soft); font-weight: 600; }


/* ---------- 6. ウィクレポ(実在物件の実データ。ダッシュボードとして数字→判断を提示) ---------- */
.afty-lp .weekly { background: var(--paper); }
.afty-lp .section.weekly { padding: 64px 0; }

.afty-lp .weekly-period-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  border: 1px solid var(--line-warm);
  border-radius: 999px;
  padding: 3px 12px;
  margin-bottom: 28px;
}

/* カード共通(KPI・スパークライン・Week別)の質感: 白地・細罫線・淡い影 */
.afty-lp .weekly-kpi-card,
.afty-lp .weekly-sparkline-card,
.afty-lp .weekly-week-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(35, 33, 29, 0.03), 0 10px 24px -20px rgba(35, 33, 29, 0.18);
}

/* ---- KPIダッシュボード(3指標を大きな数字で) ---- */
.afty-lp .weekly-kpi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.afty-lp .weekly-kpi-card { padding: 24px 22px; }
.afty-lp .weekly-kpi-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 12px;
}
.afty-lp .weekly-kpi-value {
  font-family: var(--font-serif);
  font-size: clamp(32px, 8vw, 42px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}
.afty-lp .weekly-kpi-card--accent .weekly-kpi-value { color: var(--orange-text); }
.afty-lp .weekly-kpi-unit { font-size: 15px; font-weight: 600; color: var(--ink-soft); margin-left: 3px; }
.afty-lp .weekly-kpi-desc { margin-top: 10px; font-size: var(--note-size); color: var(--ink-soft); }

/* ---- 詳細PVの日次推移(小さなスパークライン。「分析しているレポート」らしく、平均線・最大値・Week区切りを添える) ---- */
.afty-lp .weekly-sparkline-card { padding: 20px 22px 18px; margin-bottom: 28px; }
.afty-lp .weekly-sparkline-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.afty-lp .weekly-sparkline-title { font-size: 13px; font-weight: 600; color: var(--ink); }
.afty-lp .weekly-sparkline-range { font-size: var(--note-size); color: var(--ink-soft); font-variant-numeric: tabular-nums; }

.afty-lp .weekly-sparkline-plot { position: relative; height: 56px; margin-top: 22px; }
.afty-lp .weekly-spark-avg-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--avg) * 1%);
  border-top: 1px dashed var(--line-warm);
  z-index: 0;
}
.afty-lp .weekly-spark-avg-label {
  position: absolute;
  right: 0;
  bottom: calc(var(--avg) * 1% + 5px);
  font-size: 10px;
  color: var(--ink-soft);
  white-space: nowrap;
  z-index: 0;
}

.afty-lp .weekly-sparkline { position: relative; z-index: 1; display: flex; align-items: flex-end; gap: 4px; height: 100%; }
.afty-lp .weekly-sparkline-group { display: flex; align-items: flex-end; gap: 4px; flex: 1; height: 100%; }
.afty-lp .weekly-sparkline-divider { align-self: stretch; width: 1px; background: var(--line-warm); margin: 0 8px; }

.afty-lp .weekly-spark-bar {
  position: relative;
  flex: 1;
  display: block;
  height: calc(var(--v) * 1%);
  min-height: 3px;
  background: var(--orange-deep);
  border-radius: 1px;
}
/* 14日間で最も詳細PVが多かった日を、色を変えて強調する */
.afty-lp .weekly-spark-bar--max { background: var(--btn-bg); }
.afty-lp .weekly-spark-max-tag {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
}

.afty-lp .weekly-sparkline-weeks { display: flex; margin-top: 10px; }
.afty-lp .weekly-sparkline-weeks span {
  flex: 1;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

/* ---- Week1 → 日別一覧 → AFTY判断 → Week2 → ... の順に、レポートが届く時系列で見せる ---- */
.afty-lp .weekly-week-grid { margin-top: 28px; }
.afty-lp .weekly-week-card { padding: 24px 22px; }

/* Weekカードの間: 次の週へ進む一本の線(既存の line-track と同じ作法) */
.afty-lp .weekly-week-connector { display: flex; justify-content: center; padding: 6px 0; }
.afty-lp .weekly-week-connector span { position: relative; display: block; width: 1px; height: 28px; background: var(--line-warm); }
.afty-lp .weekly-week-connector span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-deep);
}
.afty-lp .weekly-week-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  padding-bottom: 16px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
}
.afty-lp .weekly-week-name { font-family: var(--font-serif); font-size: 16px; font-weight: 600; color: var(--ink); }
.afty-lp .weekly-week-range { font-size: var(--note-size); color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.afty-lp .weekly-week-rate { font-size: 13px; color: var(--ink-soft); margin-left: auto; }
.afty-lp .weekly-week-rate span {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-left: 4px;
  font-variant-numeric: tabular-nums;
}
/* 改善した週の詳細閲覧率のみ、ブランド色で強調する */
.afty-lp .weekly-week-rate--up span { color: var(--orange-text); }

/* 日別データ: "Excel感"を避け、行間の広いダッシュボード表として見せる */
.afty-lp .weekly-table { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.afty-lp .weekly-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding: 14px 6px 10px;
  border-bottom: 1px solid var(--line);
}
.afty-lp .weekly-table th:not(:first-child), .afty-lp .weekly-table td:not(:first-child) { text-align: right; }
.afty-lp .weekly-table td {
  font-size: var(--body-size);
  color: var(--ink);
  padding: 12px 6px;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.15s;
}
.afty-lp .weekly-table tbody tr:last-child td { border-bottom: none; }
.afty-lp .weekly-table tbody tr:hover td { background: var(--paper); }

.afty-lp .weekly-week-verdict { margin-top: 20px; border-left: 2px solid var(--orange-deep); padding-left: 16px; }
.afty-lp .weekly-week-verdict-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--orange-text);
  font-weight: 600;
  margin-bottom: 8px;
}
.afty-lp .weekly-week-verdict-body {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink);
}

.afty-lp .weekly-note {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: var(--note-size);
  color: var(--ink-soft);
}

/* ---- ウィクレポ内CTA(セクション内では最後の1回のみ) ---- */
.afty-lp .weekly-cta { margin-top: 44px; }
.afty-lp .weekly-cta-lead {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
}


/* ---------- 7. 判断事例 ---------- */
.afty-lp .judgment { background: var(--kinari); }


.afty-lp .judgment-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--orange-text);
  font-weight: 700;
  border: 1px solid var(--orange-text);
  border-radius: 999px;
  padding: 3px 12px;
  margin-bottom: 14px;
}


.afty-lp .judgment-disclaimer {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-soft);
  background: transparent;
  border: none;
  border-left: 2px solid var(--line-warm);
  border-radius: 0;
  padding: 2px 0 2px 14px;
  margin: -4px 0 28px;
  line-height: 1.7;
}


.afty-lp .judgment-event dl { display: grid; gap: 10px; margin-top: 4px; }

.afty-lp .judgment-event dt {
  font-size: 10px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.afty-lp .judgment-event dd { font-size: var(--body-size); color: var(--ink); }

/* 反響とは別種のご相談を、罫線+余白で分離する(既存.thinking-originと同じ間隔) */
.afty-lp .judgment-other { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--line-warm); }


/* ---------- 8. オーナーの声 ---------- */
.afty-lp .voice { background: var(--white); }

.afty-lp .section.voice { padding: 120px 0; }

/* 困っていたこと(h3)に続く「共有したもの→一緒に判断→結果」の3段(既存.judgment-event dlと同一の値) */
.afty-lp .voice-flow { display: grid; gap: 10px; margin-top: 4px; }
.afty-lp .voice-flow dt {
  font-size: 10px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.afty-lp .voice-flow dd { font-size: var(--body-size); color: var(--ink-soft); line-height: 1.85; max-width: var(--measure); }



/* ---------- 9. 信頼(任せられる理由の図解) ---------- */
.afty-lp .trust { background: var(--morning); }


.afty-lp .trust-diagram { margin-top: 8px; }


.afty-lp .trust-diagram-list-wrap { position: relative; }

.afty-lp .trust-diagram-list { list-style: none; }

.afty-lp .trust-diagram-item { position: relative; padding-bottom: 36px; }

.afty-lp .trust-diagram-item:last-child { padding-bottom: 0; }


.afty-lp .trust-diagram-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.afty-lp .trust-diagram-item h3 { font-family: var(--font-serif); font-size: 17px; margin-bottom: 8px; }

.afty-lp .trust-diagram-item p { font-size: var(--body-size); color: var(--ink-soft); line-height: 1.85; max-width: var(--measure); margin-bottom: 12px; }


.afty-lp .trust-diagram-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--orange-text);
  border: 1px solid var(--orange-text);
  border-radius: 999px;
  padding: 3px 12px;
}


/* 収束点: PCでのみ表示する一本線+ドット(モバイルは縦の接続コネクタを使用) */
.afty-lp .trust-diagram-convergence-dot { display: none; }


.afty-lp .trust-diagram-connector { display: flex; justify-content: center; padding: 4px 0 8px; }

.afty-lp .trust-diagram-connector span {
  position: relative;
  display: block;
  width: 1px;
  height: 40px;
  background: var(--line-warm);
}

.afty-lp .trust-diagram-connector span::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange-deep);
}


.afty-lp .trust-diagram-conclusion { text-align: center; }

.afty-lp .trust-diagram-conclusion-lead { font-size: var(--note-size); color: var(--ink-soft); margin-bottom: 12px; }

.afty-lp .trust-diagram-conclusion-main {
  font-family: var(--font-serif);
  font-size: clamp(22px, 5.6vw, 30px);
  font-weight: 600;
  line-height: var(--heading-line);
  color: var(--ink);
}


.afty-lp .trust-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line-warm);
  margin-bottom: 0;
}

.afty-lp .trust-facts li {
  font-size: var(--note-size);
  color: var(--ink);
  font-weight: 600;
}


/* ---------- 10. 最終CTA + フォーム ---------- */
.afty-lp .consult { background: var(--kinari); }


.afty-lp .consult-grid { display: grid; gap: 52px; }


.afty-lp .consult-message .section-title { margin-bottom: 20px; }


.afty-lp .consult-lead {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  line-height: 1.9;
}


.afty-lp .consult-materials { margin-bottom: 28px; }

.afty-lp .consult-materials .line-track-item { padding-bottom: 48px; }


.afty-lp .consult-assurance {
  font-size: var(--note-size);
  color: var(--ink-soft);
  padding-left: 14px;
  border-left: 2px solid var(--orange);
  margin-bottom: 28px;
}


.afty-lp .flow-area-note {
  font-size: var(--note-size);
  color: var(--ink-soft);
}


.afty-lp .consult-note {
  margin-top: 20px;
  font-size: var(--note-size);
  color: var(--ink-soft);
  padding-left: 14px;
  border-left: 2px solid var(--orange);
}

/* 一社専任の方針。申込みの直前ではなくフォームの後ろに置く */
.afty-lp .consult-note--after {
  margin-top: 20px;
  padding-left: 14px;
  border-left: 2px solid var(--line-warm);
  font-size: 12px;
  line-height: 1.85;
}


.afty-lp .consult-fact {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
}


.afty-lp .form-lead { color: var(--ink-soft); font-size: 13.5px; margin-bottom: 8px; }

.afty-lp .form-hint { color: var(--ink-soft); font-size: 12px; margin-bottom: 28px; }


.afty-lp .contact-form {
  background: var(--white);
  border: 1px solid var(--line-warm);
  padding: 28px 22px;
  display: grid;
  gap: 18px;
}


.afty-lp .contact-form[hidden] { display: none; }


.afty-lp .form-row { display: grid; gap: 6px; }

.afty-lp .form-row label { font-size: 13px; font-weight: 600; }


.afty-lp .req {
  font-size: 10px;
  color: var(--white);
  background: var(--btn-bg);
  padding: 1px 6px;
  margin-left: 8px;
  border-radius: 2px;
  letter-spacing: 0.06em;
  vertical-align: 2px;
}

/* 任意項目: 必須(.req)の塗りバッジと視覚的に区別できる、控えめな文字ラベル */
.afty-lp .opt {
  font-size: 10px;
  color: var(--ink-soft);
  margin-left: 8px;
  letter-spacing: 0.06em;
  vertical-align: 2px;
}


.afty-lp .form-row input[type="text"],
.afty-lp .form-row input[type="email"],
.afty-lp .form-row input[type="tel"],
.afty-lp .form-row select {
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 13px 14px;
  border: 1px solid #c9c2b6;
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  width: 100%;
}


.afty-lp .form-consent { justify-items: start; }

.afty-lp .consent-label { display: flex; gap: 10px; align-items: center; font-size: 13px; cursor: pointer; padding: 10px 0; min-height: 44px; }

.afty-lp .consent-label input { width: 22px; height: 22px; flex-shrink: 0; accent-color: var(--orange-deep); }


.afty-lp .form-error { color: #a03030; font-size: 13px; font-weight: 600; }

.afty-lp .field-error { color: #a03030; font-size: 12px; font-weight: 600; }


.afty-lp .form-row input[aria-invalid="true"],
.afty-lp .form-row select[aria-invalid="true"] { border-color: #a03030; }


.afty-lp .btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }


.afty-lp .form-note { font-size: 11px; color: var(--ink-soft); text-align: center; }


.afty-lp .form-done {
  background: var(--white);
  border: 1px solid var(--ink);
  padding: 36px 24px;
  text-align: center;
}

.afty-lp .form-done h3 { font-family: var(--font-serif); font-size: 19px; margin-bottom: 14px; }

.afty-lp .form-done p { font-size: 14px; }

.afty-lp .done-note { margin-top: 16px; font-size: 12.5px; color: var(--ink-soft); }


/* ---------- 11. 思想コピー ---------- */
.afty-lp .closing-thought { background: var(--white); text-align: center; }

.afty-lp .section.closing-thought { padding: 120px 0; }

.afty-lp .closing-thought-quote {
  font-family: var(--font-serif);
  font-size: var(--heading-size);
  font-weight: 600;
  line-height: var(--heading-line);
  color: var(--ink);
  margin: 0 auto 24px;
  max-width: var(--measure);
}

.afty-lp .closing-thought-brand {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--ink-soft);
}


/* ---------- フッター ---------- */
.afty-lp .site-footer {
  background: var(--sumi);
  color: var(--white);
  text-align: center;
  padding: 44px 24px 40px;
}

.afty-lp .site-footer .brand { color: var(--white); margin-bottom: 12px; }

.afty-lp .footer-company { font-size: 12px; color: #b3ac9f; margin-bottom: 12px; line-height: 1.8; }

.afty-lp .footer-links { font-size: 12px; margin-bottom: 16px; }

.afty-lp .footer-links a { color: #e6e0d4; }

.afty-lp .footer-note { font-size: 11px; color: #8a8375; letter-spacing: 0.06em; }


/* ---------- SP追従CTA ---------- */
.afty-lp .sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--line);
  transition: transform 0.25s;
}

.afty-lp .sticky-cta.is-hidden { transform: translateY(110%); }

.afty-lp .sticky-cta .btn { padding: 14px 20px; font-size: 14.5px; }

@media (prefers-reduced-motion: reduce) {
 .afty-lp .sticky-cta { transition: none; }
 
}


/* ---------- PCレイアウト ---------- */
@media (min-width: 760px) {

  .afty-lp { font-size: 16px; padding-bottom: 0; }


  .afty-lp .pc-only { display: inline; }

  .afty-lp .sp-only { display: none; }


  .afty-lp .site-header { padding: 12px 32px; }

  .afty-lp .header-tel { display: block; }


  .afty-lp .section { padding: 100px 0; }


  .afty-lp .hero-v3 { padding: 160px 0 80px; }

  .afty-lp .hero-cta .btn { width: auto; min-width: 420px; }

  .afty-lp .section-cta-inline .btn { width: auto; min-width: 420px; }


  .afty-lp .decide-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }

  .afty-lp .decide-summary { display: block; padding-top: 8px; }


  .afty-lp .weekly-kpi-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .afty-lp .weekly-kpi-card { padding: 28px 26px; }
  .afty-lp .weekly-sparkline-plot { height: 64px; }
  .afty-lp .weekly-week-card { max-width: 640px; margin-inline: auto; padding: 30px 28px; }


  .afty-lp .consult-grid { grid-template-columns: 1fr 1fr; align-items: start; }


  .afty-lp .contact-form { padding: 40px 40px; }


  .afty-lp .sticky-cta { display: none; }


  /* 信頼: 5つの仕組みが一本の線で収束し、結論へつながる構造 */
  .afty-lp .trust-diagram { display: grid; grid-template-columns: 1fr 300px; column-gap: 56px; align-items: center; }

  .afty-lp .trust-diagram-list-wrap { padding-right: 40px; }

  .afty-lp .trust-diagram-list-wrap::after {
    content: "";
    position: absolute;
    top: 6px;
    bottom: 6px;
    right: 0;
    width: 1px;
    background: var(--line-warm);
  }

  .afty-lp .trust-diagram-convergence-dot {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--orange-deep);
  }

  .afty-lp .trust-diagram-connector { display: none; }

  .afty-lp .trust-diagram-conclusion {
    position: relative;
    text-align: left;
    padding-left: 40px;
  }

  .afty-lp .trust-diagram-conclusion::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--orange-deep);
    transform: translateY(-50%);
  }


}


/* =========================================================
   Contact Form 7 用の上書き
   CF7が生成するマークアップへ、LPのフォーム意匠を適用する。
   すべて .afty-lp 配下にスコープ済み。
   ========================================================= */

.afty-lp .afty-form-area .wpcf7 { margin: 0; }

/* テーマの「追加CSS」(.wpcf7-form { color:#fff }) が本フォームにも継承されるため、
   LPスコープ内で文字色を上書きする。テーマ側・グローバル指定は変更しない。 */
.afty-lp .afty-form-area .wpcf7-form {
  background: var(--white);
  border: 1px solid var(--line-warm);
  padding: 28px 22px;
  display: grid;
  gap: 18px;
  color: var(--ink);
}

/* CF7は各項目を <p> で囲むため、行としての体裁を与える */
.afty-lp .afty-form-area .wpcf7-form p {
  display: grid;
  gap: 6px;
  margin: 0;
}

.afty-lp .afty-form-area label {
  font-size: 13px;
  font-weight: 600;
  display: grid;
  gap: 6px;
}

.afty-lp .afty-form-area .wpcf7-form-control-wrap { display: block; }

.afty-lp .afty-form-area input[type="text"],
.afty-lp .afty-form-area input[type="email"],
.afty-lp .afty-form-area input[type="tel"],
.afty-lp .afty-form-area select,
.afty-lp .afty-form-area textarea {
  font-family: var(--font-sans);
  font-size: 16px; /* iOSでのズーム防止 */
  padding: 13px 14px;
  border: 1px solid #c9c2b6;
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  width: 100%;
}

/* 必須バッジ: CF7側で <span class="afty-req">必須</span> をラベルに入れる運用 */
.afty-lp .afty-form-area .afty-req {
  font-size: 10px;
  color: var(--white);
  background: var(--btn-bg);
  padding: 1px 6px;
  margin-left: 8px;
  border-radius: 2px;
  letter-spacing: 0.06em;
  vertical-align: 2px;
}

/* 同意チェックボックス(タップ領域を44px確保) */
.afty-lp .afty-form-area .wpcf7-acceptance .wpcf7-list-item { margin: 0; }
.afty-lp .afty-form-area .wpcf7-acceptance label {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  cursor: pointer;
  padding: 10px 0;
  min-height: 44px;
}
.afty-lp .afty-form-area .wpcf7-acceptance input[type="checkbox"] {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  accent-color: var(--orange-deep);
}

/* 送信ボタン */
.afty-lp .afty-form-area .wpcf7-submit {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding: 18px 28px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  background: var(--btn-bg);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(21, 19, 15, 0.16);
  transition: opacity 0.2s;
}
.afty-lp .afty-form-area .wpcf7-submit:hover,
.afty-lp .afty-form-area .wpcf7-submit:focus-visible { opacity: 0.88; }
.afty-lp .afty-form-area .wpcf7-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* 項目単位のエラー表示
   テーマの「追加CSS」に .wpcf7-not-valid-tip { color:#fff !important } が存在し、
   通常の詳細度では上書きできないため、この1箇所のみ!importantを使用する。 */
.afty-lp .afty-form-area .wpcf7-not-valid-tip {
  color: #a03030 !important;
  font-size: 12px;
  font-weight: 600;
}
.afty-lp .afty-form-area .wpcf7-not-valid {
  border-color: #a03030;
}

/* フォーム全体のレスポンス表示(CF7標準の帯) */
.afty-lp .afty-form-area .wpcf7-response-output {
  margin: 4px 0 0;
  padding: 12px 14px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}
.afty-lp .afty-form-area .wpcf7-form.invalid .wpcf7-response-output,
.afty-lp .afty-form-area .wpcf7-form.unaccepted .wpcf7-response-output,
.afty-lp .afty-form-area .wpcf7-form.spam .wpcf7-response-output,
.afty-lp .afty-form-area .wpcf7-form.failed .wpcf7-response-output {
  border: 1px solid #a03030;
  color: #a03030;
  background: #fdf5f5;
}
.afty-lp .afty-form-area .wpcf7-form.sent .wpcf7-response-output {
  border: 1px solid var(--line-warm);
  color: var(--ink);
  background: var(--white);
}

/* 送信中スピナー */
.afty-lp .afty-form-area .wpcf7-spinner { margin: 0 0 0 10px; }

/* フォーム未接続時のプレースホルダー */
.afty-lp .afty-form-placeholder {
  background: var(--white);
  border: 1px dashed var(--line-warm);
  padding: 24px 22px;
  font-size: var(--note-size);
  color: var(--ink-soft);
  line-height: 1.9;
}
