/* ============================================================
   /for-therapists セラピスト向けLP 専用追加分
   デザイン正典 = /lp2（public/lp2/styles.css を併読して同トーンを再利用）。
   本ファイルは ft- プレフィックスの新規クラスのみ（lp2/styles.css は変更しない）。
   ============================================================ */

/* ---- HERO 実画面コラージュ（公開プロフィール + 管理画面フロート） ---- */
.ft-hero-visual { position: relative; display: flex; justify-content: center; padding-bottom: 56px; }
.ft-hero-phone {
  width: min(300px, 74%);
  border: 6px solid var(--plum);
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.ft-hero-phone img { width: 100%; height: auto; display: block; }
.ft-hero-float {
  position: absolute;
  left: -18px;
  bottom: 0;
  width: min(420px, 82%);
  z-index: 3;
}
.ft-hero-float .shot-browser { margin-top: 0; }
@media (max-width: 480px) {
  .ft-hero-float { left: -4px; }
}

/* ---- SNS + NAVI の 2 カラム比較チェーン ---- */
.ft-cols { display: grid; grid-template-columns: 1fr 1.2fr; gap: 18px; margin-top: 48px; align-items: start; }
@media (max-width: 760px) { .ft-cols { grid-template-columns: 1fr; } }
.ft-chain { list-style: none; margin-top: 18px; }
.ft-chain li {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 14px;
  font-weight: 700;
  font-size: 13.5px;
  text-align: center;
  line-height: 1.6;
}
.ft-chain li + li { margin-top: 28px; }
.ft-chain li + li::before {
  content: "↓";
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--rose);
  font-weight: 900;
  font-size: 14px;
}
.ft-chain li.is-strong { background: var(--rose-tint); border-color: var(--rose); color: var(--rose-deep); }

/* ---- 実画面 6 枚グリッド（BUILD YOUR PRESENCE） ---- */
.ft-grid6 { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 22px; }
@media (max-width: 900px) {
  .ft-grid6 {
    display: flex; overflow-x: auto; gap: 16px;
    padding: 4px 4px 16px; margin-inline: -4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .ft-grid6 .shot-phone { flex: 0 0 62vw; max-width: 250px; scroll-snap-align: center; }
}

/* ---- 2 カラム（テキスト + 実画面 1 枚） ---- */
.ft-duo { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 4.5vw, 56px); align-items: center; margin-top: 48px; }
@media (max-width: 860px) { .ft-duo { grid-template-columns: 1fr; gap: 34px; } }
.ft-duo .shot-phone { max-width: 300px; margin-inline: auto; }
.ft-points { list-style: none; display: grid; gap: 12px; margin-top: 22px; }
.ft-points li { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; font-weight: 700; }
.ft-points li .ck { color: var(--rose); font-weight: 900; flex: none; }
.ft-points li small { display: block; font-weight: 500; color: var(--ink-soft); font-size: 12.5px; margin-top: 2px; }

/* ---- FAQ カテゴリ見出し ---- */
.ft-faq-cat {
  font-family: var(--gothic); font-weight: 900; font-size: 15.5px; color: var(--ink);
  max-width: 820px; margin: 36px auto 0;
  display: flex; align-items: center; gap: 10px;
}
.ft-faq-cat::before { content: ""; width: 16px; height: 3px; border-radius: 2px; background: var(--rose); flex: none; }
.ftlp .ft-faq-group { margin-top: 14px; }
