/* ============================================================
   freepage.css — フリーページ全共通CSS（F01〜F12 オールインワン）
   全フリーページで読み込む1本のCSS。カラーミーのフリーページには
   CSS欄が無いためFTPアップロードしたこのファイルを<link>で読み込む。
   ※ F11_ニュースの本文固有CSSのみ、キャッシュ分離のため
     freepage_f11_news.css に分けて読み込む。

   【重要】F01/F02/F09・F05〜F08 は h1/h2/nt-inner 等の同じクラス名を
   ページごとに別の値で使っている。1本のCSSにそのまま連結すると
   CSSの「後勝ち」でどれか1ページの値が全ページに適用されてしまう
   ため、各ページのルート要素に pg-f1〜pg-f9 等のスコープクラスを
   付与し、ページ固有CSSは必ずそのクラスで始まるセレクタにしている。
   （例：F01_会社概要.html の <div class="nt-page pg-f1"> ）
   ※ スコープクラス名は pg-f1 のように小文字のまま（CSSクラス命名の
     慣習に合わせるため）。ファイル名の F01 表記とは対応するが一致しない。
   共通コンポーネント（下記 A〜D）はページ間で値の衝突がないもの
   のみを置いているためスコープなしで問題ない。

   構成：
   共通コンポーネント
     A. nt- 系 共通基盤（F01_会社概要 / F02_利用規約 / F09_プライバシーポリシー）
     B. nt- 系 文書コンポーネント（F02_利用規約 / F09_プライバシーポリシー）
     C. fc- 系 共通基盤（F03_はじめての方へ / F05〜F08_C01〜C04）
     D. cp-howto 系 共通基盤（F05〜F08_C01〜C04）
   ページ固有CSS（pg-f1〜pg-f9 でスコープ。f3/f4/f10/f12 は他ページと
   重複クラスがないためスコープ不要。f11の固有CSSは別ファイル）
     F01_会社概要(.pg-f1) / F02_利用規約(.pg-f2) / F03_はじめての方へ /
     F04_ご利用ガイド（fg-系） / F05_C01_セルフプレイ(.pg-f5) /
     F06_C02_幸せホルモン(.pg-f6) / F07_C03_快感慣れ(.pg-f7) /
     F08_C04_はじめてのローター(.pg-f8) / F09_プライバシーポリシー(.pg-f9) /
     F10_お問い合わせ / F12_お問い合わせ（fcf-系） / F11_ニュース共通基盤

   更新方法：このファイルを編集 → FTPで
   https://file001.shop-pro.jp/PA01522/084/css/freepage.css に差し替えアップ
   → 変更したページHTML内の ?v=YYYYMMDD を更新。
   ============================================================ */

/* ============================================================
   共通コンポーネント
   ============================================================ */

/* ============================================================
   A. nt- 系 共通基盤（F01 / F02 / F09）
   ============================================================ */

.nt-page { padding-bottom: 60px; }

/* パンくず */
.nt-bread { padding: 10px 0; }
.nt-bread-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nt-bread-item {
  font-size: 12px;
  color: var(--c-sub, #888);
  display: flex;
  align-items: center;
}
.nt-bread-item::after {
  content: "\203A";
  margin: 0 6px;
  color: var(--c-sub, #888);
}
.nt-bread-item:last-child::after { display: none; }
.nt-bread-item a {
  color: var(--c-accent, #e60028);
  text-decoration: none;
  transition: opacity .15s;
}
.nt-bread-item a:hover { opacity: .7; }
.nt-bread-item.is-current { color: var(--c-text, #333); }

/* u-wrap がフリーページ親に無い場合のフォールバック */
.nt-page .u-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .nt-page { padding-bottom: 80px; }
}

/* ============================================================
   B. nt- 系 文書コンポーネント（F02 / F09）
   nt-inner / nt-title は F01 と値が異なるため、ページ固有セクション
   （.pg-f1 / .pg-f2 / .pg-f9）に個別に置いている。ここには F02・F09
   で値が完全一致する章立てコンポーネントのみを置く。
   ============================================================ */

/* 章見出し（自動連番） */
.nt-chapter {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  color: var(--c-text, #333);
  margin: 32px 0 12px;
  padding-left: 34px;
  line-height: 1.5;
}
.nt-chapter::before {
  counter-increment: chapter;
  content: counter(chapter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-accent, #e60028);
  font-weight: bold;
}

/* 本文 */
.nt-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--c-text, #333);
  margin: 0 0 12px;
}

/* リスト */
.nt-list {
  margin: 8px 0 16px;
  padding-left: 22px;
}
.nt-list li {
  font-size: 14px;
  line-height: 1.9;
  color: var(--c-text, #333);
  margin-bottom: 4px;
  list-style: disc;
}

/* 制定日 */
.nt-date {
  margin-top: 40px;
  font-size: 13px;
  color: var(--c-sub, #888);
  text-align: right;
}

@media (min-width: 768px) {
  .nt-chapter {
    font-size: 18px;
    margin: 40px 0 14px;
    padding-left: 38px;
  }
  .nt-text { font-size: 15px; }
  .nt-list li { font-size: 15px; }
}

/* ============================================================
   C. fc- 系 共通基盤（F03 / F05〜F08）
   ============================================================ */

.fc-bread { padding: 10px 0; }
.fc-bread-list {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0;
  list-style: none; margin: 0; padding: 0;
}
.fc-bread-item { font-size: 12px; color: #888; display: flex; align-items: center; }
.fc-bread-item::after { content: "\203A"; margin: 0 6px; color: #888; }
.fc-bread-item:last-child::after { display: none; }
.fc-bread-item a { color: #ff4549; text-decoration: none; transition: opacity .15s; }
.fc-bread-item a:hover { opacity: .7; }
.fc-bread-item.is-current { color: #333; }

/* wrap（デフォルト1200px） */
.fc-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* cp-page（F05〜F08）は本文980px・パンくずは1200px幅で統一 */
.cp-page .fc-bread .fc-wrap { max-width: 1200px; }
.cp-page .fc-wrap { max-width: 980px; }

/* ============================================================
   D. cp-howto 系 共通基盤（F05〜F08）
   ============================================================ */

.cp-page { padding-bottom: 60px; overflow-x: hidden; color: #333; }

.cp-howto { padding-top: 20px; }
.cp-howto p { font-size: 16px; line-height: 2; margin-top: 50px; }
.cp-howto figure { margin: 0; }
.cp-howto figure img { display: block; max-width: 100%; height: auto; margin: 30px auto 0; }

@media (max-width: 768px) {
  .cp-howto { padding-top: 12px; }
  .cp-howto p { font-size: 14px; line-height: 1.9; margin-top: 30px; }
}

/* ============================================================
   ページ固有CSS
   ============================================================ */

/* ============================================================
   F01_会社概要（.pg-f1 でスコープ）
   ============================================================ */

.pg-f1 .nt-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 24px 0 0;
}
.pg-f1 .nt-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--c-text, #333);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--c-accent, #e60028);
  margin-bottom: 0;
}
.pg-f1 .nt-table { width: 100%; }
.pg-f1 .nt-row {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--c-border, #ddd);
  padding: 16px 0;
  gap: 6px;
}
.pg-f1 .nt-row:last-child { border-bottom: 1px solid var(--c-border, #ddd); }
.pg-f1 .nt-th {
  font-size: 14px;
  font-weight: bold;
  color: var(--c-text, #333);
}
.pg-f1 .nt-td {
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-text, #333);
}
@media (min-width: 768px) {
  .pg-f1 .nt-inner { padding: 32px 0 0; }
  .pg-f1 .nt-title { font-size: 26px; }
  .pg-f1 .nt-row {
    flex-direction: row;
    align-items: flex-start;
    padding: 24px 0;
    gap: 0;
  }
  .pg-f1 .nt-th {
    width: 220px;
    flex-shrink: 0;
    text-align: right;
    padding-right: 32px;
    border-right: 1px solid var(--c-border, #ddd);
    font-size: 13px;
    color: var(--c-sub, #888);
    line-height: 1.7;
  }
  .pg-f1 .nt-td {
    flex: 1;
    padding-left: 32px;
  }
}

/* ============================================================
   F02_利用規約（.pg-f2 でスコープ）
   ============================================================ */

.pg-f2 .nt-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 24px 0 0;
  counter-reset: chapter;
}
.pg-f2 .nt-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--c-text, #333);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--c-accent, #e60028);
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  .pg-f2 .nt-inner { padding: 32px 0 0; }
  .pg-f2 .nt-title { font-size: 26px; margin-bottom: 32px; }
}

/* ============================================================
   F03_はじめての方へ（スコープ不要。fc-page系の独自クラスは他ページと重複なし）
   配色：赤 #ff4549 / 黄 #FDF995 / 緑 #C1FACF
   ============================================================ */

.fc-page { padding-bottom: 60px; overflow-x: hidden; }

/* ---- 区切り（破線+矢印）／.fc-page直下なので width:100% で全幅 ---- */
.fc-divider {
  display: block;
  position: relative;
  height: 5px;
  border: 0;
  overflow: visible;
  width: 100%;
  margin: 60px 0;
  background-image: radial-gradient(circle, #ff4549 2.5px, transparent 2.5px);
  background-position: center;
  background-repeat: repeat-x;
  background-size: 27px 5px;
}
.fc-divider::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  z-index: 1;
  width: 0; height: 0;
  border-style: solid;
  border-width: 35px 35px 0 35px;
  border-color: #ff4549 transparent transparent;
  transform: translate(-50%, 100%);
}
.fc-divider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100px;
  height: 5px;
  background: #fff;
  transform: translateX(-50%);
}
.fc-divider:first-of-type::before,
.fc-divider:first-of-type::after { display: none; }

/* ---- ヒーロー ---- */
.fc-hero {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  padding-top: 24px;
}
.fc-hero-img { width: 100%; max-width: 540px; }
.fc-hero-img img { width: 100%; height: auto; display: block; }
.fc-hero-logo { width: 180px; }
.fc-hero-logo img { width: 100%; height: auto; display: block; }
.fc-hero-ttl {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 30px;
  margin-bottom: 0;
  font-size: 18px; line-height: 1; font-weight: bold;
  color: #fff; background: #ff4549;
  text-align: center;
  padding: 14px 24px;
  box-sizing: border-box;
}

.fc-lead {
  max-width: 750px; margin: 32px auto 0;
}
.fc-lead p {
  font-size: 14px; line-height: 1.8; margin-top: 1em;
}
.fc-lead p:first-child { margin-top: 0; }

/* ---- セクション共通 ---- */
.fc-section {
  padding: 60px 0;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.fc-section .fc-wrap { padding: 0 16px; }

.fc-section--yellow { background: #FDF995; }
.fc-section--green { background: #C1FACF; }

/* ---- 見出し ---- */
.fc-h2 {
  position: relative;
  font-size: 22px; line-height: 1.4; font-weight: bold;
  color: #ff4549; text-align: center;
  padding: 28px 24px;
  margin: 0 auto;
  max-width: 720px;
  background: #fff;
}
.fc-h2::before {
  content: ""; position: absolute;
  top: -6px; left: -6px;
  width: 100%; height: 100%;
  border: 3px solid #ff4549;
  pointer-events: none;
}
.fc-h2--yellow { background: #FDF995; }

.fc-sub-lead {
  max-width: 600px; margin: 32px auto 0;
}
.fc-sub-lead p {
  font-size: 14px; line-height: 1.9; text-align: center;
}

/* ---- 安心ポイント ---- */
.fc-points {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: 1fr; gap: 30px;
  max-width: 980px; margin: 50px auto 0;
}
.fc-point {
  background: #fff;
  border: 1px solid #ff4549;
  border-radius: 10px;
  padding: 28px 22px;
  box-shadow: 6px 6px 0 0 #fdf995;
}
.fc-point-fig {
  width: 130px; margin: 0 auto 18px;
}
.fc-point-fig img { width: 100%; height: auto; display: block; }
.fc-point-h3 {
  font-size: 18px; line-height: 1.2; font-weight: bold;
  text-align: center; margin: 0 auto 18px;
  display: table;
  padding: 0 8px 4px;
  background: linear-gradient(transparent 55%, #fdf995 55%);
}
.fc-list { list-style: disc; margin: 0; padding-left: 20px; }
.fc-list li {
  font-size: 14px; line-height: 1.5; font-weight: bold;
  margin: 12px 0 4px;
}
.fc-list p, .fc-point > p {
  font-size: 13px; line-height: 1.7;
  margin: 4px 0;
}
.fc-txt-red {
  color: #ff4549; font-size: 12px; line-height: 1.5;
  margin-top: 6px !important;
}
.fc-txt-bold {
  text-align: center; font-weight: bold; margin-bottom: 8px !important;
}

/* ---- STEP ---- */
.fc-steps { padding: 0; margin: 40px auto 0; max-width: 680px; }
.fc-step {
  background: #fff;
  border: 2px solid #ff4549;
  border-radius: 8px;
  padding: 16px 20px;
  display: flex; align-items: center; gap: 16px;
  box-sizing: border-box;
}
.fc-step-icon { flex: 0 0 52px; }
.fc-step-icon img { width: 52px; height: auto; display: block; }
.fc-step-meta { flex: 1; }
.fc-step-label { font-size: 11px; font-weight: bold; color: #ff4549; letter-spacing: .08em; margin: 0 0 2px; }
.fc-step-title { font-size: 15px; font-weight: bold; color: #ff4549; margin: 0 0 6px; }
.fc-step-desc { font-size: 13px; line-height: 1.7; color: #333; margin: 0; }
.fc-step-arrow { text-align: center; color: #ff4549; font-size: 22px; line-height: 1; padding: 6px 0; margin: 0 auto; max-width: 680px; }

/* ---- 特典 ---- */
.fc-perks {
  list-style: none; padding: 0; margin: 70px auto 0;
  max-width: 980px;
  display: grid; grid-template-columns: 1fr; gap: 80px 30px;
}
.fc-perk {
  position: relative;
  background: #fff;
  border: 1px solid #ff4549;
  border-radius: 10px;
  padding: 28px 22px;
  box-shadow: 6px 6px 0 0 #fdf995;
}
.fc-perk-no {
  position: absolute;
  top: -55px; left: 50%; transform: translateX(-50%);
  font-size: 18px; line-height: 1;
  font-weight: bold; color: #fff;
  background: #ff4549;
  width: 110px; height: 55px;
  border-radius: 55px 55px 0 0;
  padding-top: 18px;
  text-align: center;
  box-sizing: border-box;
}
.fc-perk-no span { font-size: 22px; }
.fc-perk-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.fc-perk-fig { width: 70px; flex: 0 0 70px; }
.fc-perk-fig img { width: 100%; height: auto; display: block; }
.fc-perk-h4 {
  font-size: 16px; line-height: 1.3;
  font-weight: bold; color: #ff4549;
  font-feature-settings: "palt";
}
.fc-perk p { font-size: 13px; line-height: 1.8; margin-top: 8px; }
.fc-perk p:first-of-type { margin-top: 0; }

/* ---- CTAボタン ---- */
.fc-cta {
  display: flex; justify-content: center;
  margin: 50px auto 0;
}
.fc-cta a {
  display: inline-block;
  font-size: 14px; font-weight: bold;
  color: #fff;
  background: #ff4549;
  border: 2px solid #ff4549;
  border-radius: 60px;
  padding: 18px 30px;
  min-width: 280px;
  text-align: center;
  text-decoration: none;
  transition: all .2s;
}
.fc-cta a:hover { background: #fff; color: #ff4549; }

.fc-link { color: #ff4549; text-decoration: underline; }

@media (min-width: 768px) {
  .fc-page { padding-bottom: 80px; }
  .fc-divider { margin: 80px 0; }
  .fc-hero {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 840px;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 30px;
    position: relative;
  }
  .fc-hero-img {
    max-width: 540px; flex: 0 1 540px;
    position: relative; z-index: 2;
  }
  .fc-hero-side {
    flex: 0 1 280px;
    text-align: center;
    margin-bottom: 10%;
    margin-left: -100px;
    position: relative; z-index: 2;
  }
  .fc-hero-logo { width: 200px; margin: 0 auto; }
  .fc-hero-ttl {
    position: absolute;
    left: 0;
    bottom: 30%;
    z-index: 1;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    font-size: 20px;
    padding: 18px calc(50vw - 50%) 18px calc(50vw - 50% + 65% - 50px);
    text-align: center;
    box-sizing: border-box;
  }
  .fc-lead p { font-size: 16px; }
  .fc-section { padding: 100px 0; }
  .fc-h2 {
    font-size: 30px;
    padding: 40px 40px;
    max-width: 740px;
  }
  .fc-h2::before { top: -7px; left: -7px; }
  .fc-sub-lead p { font-size: 15px; }
  .fc-points {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .fc-point { padding: 32px 24px; }
  .fc-point-fig { width: 150px; }
  .fc-point-h3 { font-size: 20px; }
  .fc-step { padding: 20px 24px; gap: 20px; }
  .fc-step-icon { flex: 0 0 60px; }
  .fc-step-icon img { width: 60px; }
  .fc-step-title { font-size: 16px; }
  .fc-step-desc { font-size: 14px; }
  .fc-perks {
    grid-template-columns: repeat(2, 1fr);
    gap: 100px 40px;
    margin-top: 100px;
  }
  .fc-perk { padding: 32px 28px; }
  .fc-perk-no {
    top: -65px;
    width: 130px; height: 65px;
    border-radius: 65px 65px 0 0;
    padding-top: 22px;
    font-size: 20px;
  }
  .fc-perk-no span { font-size: 26px; }
  .fc-perk-fig { width: 100px; flex: 0 0 100px; }
  .fc-perk-h4 { font-size: 20px; }
  .fc-perk p { font-size: 14px; }
  .fc-cta a {
    font-size: 15px;
    min-width: 340px;
    padding: 20px 30px;
  }
}

/* ============================================================
   F04_ご利用ガイド（スコープ不要。fg- 系は他ページと重複クラスなし）
   ============================================================ */

.fg-page{padding-bottom:60px;overflow-x:hidden;color:#333}
.fg-page *,.fg-page *::before,.fg-page *::after{box-sizing:border-box}
.fg-bread{padding:10px 0}
.fg-bread-list{display:flex;flex-wrap:wrap;align-items:center;gap:0;list-style:none;margin:0;padding:0}
.fg-bread-item{font-size:12px;color:#888;display:flex;align-items:center}
.fg-bread-item::after{content:"\203A";margin:0 6px;color:#888}
.fg-bread-item:last-child::after{display:none}
.fg-bread-item a{color:#ff4549;text-decoration:none;transition:opacity .15s}
.fg-bread-item a:hover{opacity:.7}
.fg-bread-item.is-current{color:#333}
.fg-page .fg-wrap{width:100%;max-width:1200px;margin:0 auto;padding:0 16px}
.fg-title{text-align:center;margin:30px auto 0;padding:0 16px}
.fg-title h1{display:inline-block;font-size:22px;font-weight:bold;color:#ff4549;padding:0 12px 4px;border-bottom:3px solid #ff4549;margin:0;letter-spacing:.02em}
.fg-toc{max-width:900px;margin:30px auto 0;padding:22px 20px;background:#fff7f7;border:1px solid #ffd0d2;border-radius:8px}
.fg-toc-h{text-align:center;font-size:14px;color:#ff4549;font-weight:bold;margin:0 0 14px;letter-spacing:.04em}
.fg-toc-list{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:1fr;gap:6px}
.fg-toc-list li a{display:block;padding:10px 14px 10px 28px;font-size:13px;color:#333;background:#fff;border:1px solid #ffe0e1;border-radius:4px;text-decoration:none;position:relative;transition:all .15s}
.fg-toc-list li a::before{content:"";position:absolute;left:12px;top:50%;width:6px;height:6px;border-top:2px solid #ff4549;border-right:2px solid #ff4549;transform:translateY(-50%) rotate(45deg)}
.fg-toc-list li a:hover{background:#ff4549;color:#fff}
.fg-toc-list li a:hover::before{border-color:#fff}
.fg-page [id]{scroll-margin-top:76px}
.fg-section{margin-top:50px}
.fg-section+.fg-section{margin-top:60px}
.fg-cat-h2{position:relative;font-size:18px;font-weight:bold;color:#ff4549;margin:0 0 16px;padding:14px 16px 14px 22px}
.fg-cat-h2::before{content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);width:5px;height:1.5em;background:#ff4549;border-radius:2px}
.fg-faq{margin:0 0 8px;background:#fff;border:1px solid #f0d0d2;border-radius:6px;overflow:hidden}
.fg-faq[open]{border-color:#ff4549}
.fg-faq-q{list-style:none;cursor:pointer;padding:16px 50px 16px 20px;font-size:14px;font-weight:bold;color:#333;position:relative;background:#fff;transition:background .15s}
.fg-faq-q::-webkit-details-marker{display:none}
.fg-faq-q:hover{background:#fff7f7}
.fg-faq-q::after{content:"";position:absolute;right:20px;top:50%;width:14px;height:14px;transform:translateY(-50%);background-image:linear-gradient(#ff4549,#ff4549),linear-gradient(#ff4549,#ff4549);background-position:center;background-repeat:no-repeat;background-size:14px 2px,2px 14px;transition:transform .2s}
.fg-faq[open] .fg-faq-q::after{background-size:14px 2px,0 0;transform:translateY(-50%) rotate(180deg)}
.fg-faq-a{padding:4px 20px 20px;font-size:13px;line-height:1.8;color:#333;border-top:1px dashed #ffd0d2}
.fg-faq-a>*{margin-top:0}
.fg-faq-a p{margin:12px 0 0}
.fg-faq-a p:first-child{margin-top:12px}
.fg-faq-a strong,.fg-faq-a .fg-bold{font-weight:bold}
.fg-faq-a .fg-note-red{color:#ff4549;font-size:12px;line-height:1.7;padding-left:1em;text-indent:-1em}
.fg-faq-a .fg-sub-h{font-weight:bold;margin:18px 0 8px;color:#333;font-size:14px}
.fg-faq-a .fg-step{counter-reset:fg-step-count;list-style:none;margin:14px 0 0;padding:0}
.fg-faq-a .fg-step>li{counter-increment:fg-step-count;padding-left:36px;position:relative;margin-top:10px}
.fg-faq-a .fg-step>li::before{content:counter(fg-step-count);position:absolute;left:0;top:0;width:26px;height:26px;background:#ff4549;color:#fff;font-size:13px;font-weight:bold;border-radius:50%;display:flex;align-items:center;justify-content:center}
.fg-faq-a ul.fg-list{list-style:none;margin:12px 0 0;padding:0}
.fg-faq-a ul.fg-list>li{padding-left:1em;text-indent:-1em;margin:6px 0}
.fg-img-box{display:flex;flex-direction:column;gap:12px;margin:14px 0;padding:14px;background:#fafafa;border-radius:6px}
.fg-img-box img{max-width:100%;height:auto;display:block;margin:0 auto}
.fg-img-box .fg-img-txt{font-size:13px;line-height:1.8}
.fg-img-box .fg-img-txt p{margin:8px 0 0}
.fg-img-box .fg-img-txt p:first-child{margin-top:0}
.fg-faq-a a,.fg-link{color:#ff4549;text-decoration:underline}
.fg-faq-a a:hover{opacity:.7}
.fg-example{background:#fff7f7;border:1px solid #ffd0d2;border-radius:6px;padding:14px 16px;margin:12px 0}
.fg-example h4{font-size:13px;color:#ff4549;margin:0 0 6px;font-weight:bold}
.fg-example p{margin:0;font-size:13px;line-height:1.7}
.fg-table{width:100%;border-collapse:collapse;margin:12px 0;font-size:13px}
.fg-table th,.fg-table td{border:1px solid #ffd0d2;padding:8px 10px;text-align:left;vertical-align:top}
.fg-table th{background:#ffeded;color:#ff4549;font-weight:bold}
.fg-table td.fg-cell-pink{background:#ffeded;font-weight:bold}
.fg-link-list{list-style:none;margin:12px 0 0;padding:0;display:flex;flex-wrap:wrap;gap:8px}
.fg-link-list li a{display:inline-block;padding:8px 14px;font-size:12px;background:#fff;border:1px solid #ff4549;color:#ff4549;border-radius:4px;text-decoration:none;transition:all .15s}
.fg-link-list li a:hover{background:#ff4549;color:#fff}
.fg-placeholder{display:flex;align-items:center;justify-content:center;min-height:120px;background:repeating-linear-gradient(45deg,#f4f4f4,#f4f4f4 10px,#ececec 10px,#ececec 20px);border:1px dashed #bbb;border-radius:6px;color:#999;font-size:12px;margin:14px 0;padding:20px;text-align:center}
.fg-faq-card{display:grid;grid-template-columns:1fr;gap:8px;margin:0}
.fg-faq-card a{display:block;padding:14px 36px 14px 20px;background:#fff;border:1px solid #f0d0d2;border-radius:6px;font-size:14px;font-weight:bold;color:#333;text-decoration:none;position:relative;transition:all .15s}
.fg-faq-card a:hover{border-color:#ff4549;background:#fff7f7}
.fg-faq-card a::after{content:"";position:absolute;right:18px;top:50%;width:8px;height:8px;border-top:2px solid #ff4549;border-right:2px solid #ff4549;transform:translateY(-50%) rotate(45deg)}
.fg-visual{background:#fafafa;padding:30px 16px;border-radius:8px;margin-top:30px}
.fg-visual-h{font-size:18px;font-weight:bold;color:#ff4549;text-align:center;margin:0 0 16px;padding-bottom:10px;border-bottom:2px solid #ff4549}
.fg-visual-grid{display:grid;grid-template-columns:1fr;gap:20px}
.fg-visual-card{background:#fff;border:1px solid #e8e8e8;border-radius:6px;padding:16px}
.fg-visual-card h4{font-size:14px;color:#ff4549;font-weight:bold;margin:0 0 10px}
.fg-visual-card p{font-size:13px;line-height:1.7;margin:6px 0 0}
.fg-visual-card p:first-child{margin-top:0}
.fg-pay-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:14px}
.fg-pay-card{background:#fff;border:1px solid #ffd0d2;border-radius:6px;padding:14px;text-align:center}
.fg-pay-card h5{font-size:13px;color:#ff4549;font-weight:bold;margin:0 0 8px}
.fg-pay-card p{font-size:12px;line-height:1.6;margin:0}
.fg-totop{display:block;width:200px;margin:40px auto 0;padding:12px 16px;text-align:center;background:#fff;border:1px solid #ff4549;color:#ff4549;border-radius:30px;text-decoration:none;font-size:13px;transition:all .15s}
.fg-totop:hover{background:#ff4549;color:#fff}
@media(min-width:768px){.fg-page{padding-bottom:80px}
.fg-title{margin-top:40px}
.fg-title h1{font-size:26px}
.fg-toc{padding:28px 32px}
.fg-toc-list{grid-template-columns:repeat(2,1fr);gap:10px 16px}
.fg-toc-list li a{font-size:14px}
.fg-page [id]{scroll-margin-top:120px}
.fg-section{margin-top:70px}
.fg-section+.fg-section{margin-top:80px}
.fg-cat-h2{font-size:22px;padding:18px 20px;margin-bottom:20px}
.fg-faq-q{font-size:15px;padding:18px 56px 18px 24px}
.fg-faq-a{padding:6px 24px 24px;font-size:14px}
.fg-img-box{flex-direction:row;align-items:flex-start;gap:20px}
.fg-img-box img{max-width:280px;flex:0 0 auto}
.fg-img-box .fg-img-txt{flex:1}
.fg-visual{padding:40px 32px}
.fg-visual-h{font-size:20px}
.fg-visual-grid{grid-template-columns:repeat(2,1fr);gap:24px}
.fg-pay-grid{grid-template-columns:repeat(4,1fr)}
.fg-faq-card{grid-template-columns:repeat(2,1fr);gap:10px}}
@media(min-width:1024px){.fg-toc-list{grid-template-columns:repeat(3,1fr)}}

/* ============================================================
   F05_C01_セルフプレイ（.pg-f5 でスコープ）
   ベース：元 selfplay.css / howto.css のhowtoデザイン踏襲
   配色：水色 #03A9F4（h1）／赤 #ff4549（h2・アクセント）／緑 #4CAF50（goods）／橙 #ff5722（warm）
   ============================================================ */

.pg-f5 .cp-howto h1 {
  position: relative;
  padding: 20px 24px;
  border-top: solid 1px #03A9F4;
  border-bottom: solid 1px #03A9F4;
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  color: #03A9F4;
  font-weight: 400;
  display: block;
  box-sizing: border-box;
  max-width: 600px;
  text-align: center;
  margin: 0 auto 24px;
  line-height: 1.4;
}
.pg-f5 .cp-howto h1::before,
.pg-f5 .cp-howto h1::after {
  content: '';
  position: absolute;
  top: -8px;
  width: 1px;
  height: calc(100% + 16px);
  background: #03A9F4;
}
.pg-f5 .cp-howto h1::before { left: 8px; }
.pg-f5 .cp-howto h1::after { right: 8px; }

.pg-f5 .cp-howto h2 {
  position: relative;
  padding: 16px 24px;
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #ff4549;
  font-weight: bold;
  display: block;
  box-sizing: border-box;
  max-width: 500px;
  text-align: center;
  margin: 100px auto 0;
  line-height: 1.5;
}
.pg-f5 .cp-howto h2::before,
.pg-f5 .cp-howto h2::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
}
.pg-f5 .cp-howto h2::before {
  border-left: solid 1px #ff4549;
  border-top: solid 1px #ff4549;
  top: 0; left: 0;
}
.pg-f5 .cp-howto h2::after {
  border-right: solid 1px #ff4549;
  border-bottom: solid 1px #ff4549;
  bottom: 0; right: 0;
}
.pg-f5 .cp-howto h2 span::before,
.pg-f5 .cp-howto h2 span::after {
  content: '';
  position: absolute;
  width: 46px;
  height: 46px;
  transform: rotate(45deg);
  pointer-events: none;
}
.pg-f5 .cp-howto h2 span::before {
  border-left: solid 1px #ff4549;
  top: 2px; left: 2px;
}
.pg-f5 .cp-howto h2 span::after {
  border-right: solid 1px #ff4549;
  bottom: 2px; right: 2px;
}

.pg-f5 .cp-howto h3 {
  position: relative;
  padding: 16px 24px;
  outline: 1px solid #ff7f56;
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #ff7f56;
  font-weight: 400;
  display: block;
  box-sizing: border-box;
  margin: 24px auto;
  z-index: 1;
  background: #fff;
}
.pg-f5 .cp-howto h3::before {
  content: "";
  position: absolute;
  top: 4px; left: 6px;
  width: 100%; height: 100%;
  background-color: #fff1ec;
  z-index: -1;
}
.pg-f5 .cp-howto h3.goods { outline-color: #4CAF50; color: #4CAF50; }
.pg-f5 .cp-howto h3.goods::before { background-color: #f6f9d5; }
.pg-f5 .cp-howto h3.warm { outline-color: #ff5722; color: #ff5722; }
.pg-f5 .cp-howto h3.warm::before { background-color: #fdece7; }
.pg-f5 .cp-howto h3.cool { outline-color: #03A9F4; color: #03A9F4; }
.pg-f5 .cp-howto h3.cool::before { background-color: #f0f8ff; }

.pg-f5 .cp-howto .selfplay_point {
  list-style: none;
  counter-reset: sp-num 0;
  padding: 0;
  margin: 50px 0 0;
}
.pg-f5 .cp-howto .selfplay_point > li {
  position: relative;
  padding: 30px 30px 20px 80px;
  margin-top: 30px;
  border: 1px solid #ff4549;
  border-radius: 8px;
  background: #fff;
}
.pg-f5 .cp-howto .selfplay_point > li::before {
  counter-increment: sp-num 1;
  content: counter(sp-num);
  position: absolute;
  top: 24px;
  left: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ff4549;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.pg-f5 .cp-howto .selfplay_point > li h3 {
  outline: none;
  background: transparent;
  color: #ff4549;
  padding: 0;
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: bold;
}
.pg-f5 .cp-howto .selfplay_point > li h3::before { display: none; }
.pg-f5 .cp-howto .selfplay_point > li p { margin-top: 10px; line-height: 1.8; font-size: 15px; }

.pg-f5 .cp-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 16px 4px 24px;
  -webkit-overflow-scrolling: touch;
  margin: 0 -4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.pg-f5 .cp-slider.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.pg-f5 .cp-slider::-webkit-scrollbar { display: none; }
.pg-f5 .cp-slider .cp-slider-card { cursor: grab; }
.pg-f5 .cp-slider.is-dragging .cp-slider-card { cursor: grabbing; }
.pg-f5 .cp-slider img { -webkit-user-drag: none; pointer-events: none; }
.pg-f5 .cp-slider-card {
  flex: 0 0 calc((100% - 48px) / 5.3);
  scroll-snap-align: start;
  display: block;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  color: #333;
  padding: 10px;
  box-sizing: border-box;
  transition: box-shadow .15s, transform .15s;
}
.pg-f5 .cp-slider-card:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.pg-f5 .cp-slider-card .card_img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f4f4f4;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 11px;
}
.pg-f5 .cp-slider-card .item_name {
  font-size: 13px;
  line-height: 1.5;
  margin: 10px 0 0;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pg-f5 .cp-slider-card .item_price {
  font-size: 14px;
  font-weight: bold;
  color: #ff4549;
  margin: 6px 0 0;
}

.pg-f5 .cp-preview {
  display: flex;
  align-items: flex-start;
  background-image: radial-gradient(circle, #03A9F4 1.5px, transparent 1.5px);
  background-position: left 0 top 0;
  background-repeat: repeat-x;
  background-size: 8px 2px;
  margin: 80px auto 40px;
  padding: 20px 0 0;
  gap: 20px;
}
.pg-f5 .cp-preview .next_preview {
  flex: 0 0 200px;
  height: 50px;
  font-size: 22px;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  background-color: #03A9F4;
  letter-spacing: 8px;
  text-align: center;
  box-sizing: border-box;
}
.pg-f5 .cp-preview .txt_preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}
.pg-f5 .cp-preview .txt_preview p { margin: 0; font-size: 16px; line-height: 1.6; }
.pg-f5 .cp-preview .tit_preview { font-size: 18px; font-weight: bold; text-align: end; flex: 0 0 auto; }
.pg-f5 .cp-preview .tit_preview a {
  color: #03A9F4;
  text-decoration: none;
  line-height: 1.5;
}
.pg-f5 .cp-preview .tit_preview a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .pg-f5 .cp-howto h1 {
    font-size: 22px;
    padding: 16px 18px;
    margin: 0 12px 20px;
    letter-spacing: 0.05em;
  }
  .pg-f5 .cp-howto h2 {
    font-size: 17px;
    margin-top: 70px;
    padding: 14px 20px;
    letter-spacing: 0.05em;
  }
  .pg-f5 .cp-howto h2 span::before,
  .pg-f5 .cp-howto h2 span::after { display: none; }
  .pg-f5 .cp-howto h3 {
    font-size: 16px;
    padding: 12px 16px;
    margin: 20px auto;
  }
  .pg-f5 .cp-howto .selfplay_point > li {
    padding: 24px 18px 16px 68px;
  }
  .pg-f5 .cp-howto .selfplay_point > li::before {
    top: 20px; left: 16px;
    width: 32px; height: 32px;
    font-size: 16px;
  }
  .pg-f5 .cp-howto .selfplay_point > li h3 { font-size: 16px; }
  .pg-f5 .cp-slider-card {
    flex: 0 0 calc((100% - 24px) / 3.3);
  }
  .pg-f5 .cp-preview {
    flex-direction: column;
    padding-top: 16px;
  }
  .pg-f5 .cp-preview .next_preview {
    flex: 0 0 auto;
    width: 160px;
    font-size: 18px;
    height: auto;
    padding: 8px 16px;
    letter-spacing: 4px;
  }
  .pg-f5 .cp-preview .txt_preview {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .pg-f5 .cp-preview .tit_preview {
    text-align: start;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .pg-f5 .cp-slider-card { flex: 0 0 calc((100% - 12px) / 2.3); }
}

/* ============================================================
   F06_C02_幸せホルモン（.pg-f6 でスコープ）
   ベース：元 happiness.css / howto.css のhowtoデザイン踏襲
   配色：水色 #03A9F4（h1・next）／赤 #ff4549（h2）／黄 #fffbdd（reference_box）
   ============================================================ */

.pg-f6 .cp-howto h1 {
  position: relative;
  padding: 20px 24px;
  border-top: solid 1px #03A9F4;
  border-bottom: solid 1px #03A9F4;
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  color: #03A9F4;
  font-weight: 400;
  display: block;
  box-sizing: border-box;
  max-width: 650px;
  text-align: center;
  margin: 0 auto 24px;
  line-height: 1.4;
}
.pg-f6 .cp-howto h1::before,
.pg-f6 .cp-howto h1::after {
  content: '';
  position: absolute;
  top: -8px;
  width: 1px;
  height: calc(100% + 16px);
  background: #03A9F4;
}
.pg-f6 .cp-howto h1::before { left: 8px; }
.pg-f6 .cp-howto h1::after { right: 8px; }

.pg-f6 .cp-howto h2 {
  position: relative;
  padding: 16px 24px;
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #ff4549;
  font-weight: bold;
  display: block;
  box-sizing: border-box;
  max-width: 500px;
  text-align: center;
  margin: 100px auto 0;
  line-height: 1.5;
}
.pg-f6 .cp-howto h2.max_w70p { max-width: 70%; }
.pg-f6 .cp-howto h2.max_w90p { max-width: 90%; }
.pg-f6 .cp-howto h2::before,
.pg-f6 .cp-howto h2::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
}
.pg-f6 .cp-howto h2::before {
  border-left: solid 1px #ff4549;
  border-top: solid 1px #ff4549;
  top: 0; left: 0;
}
.pg-f6 .cp-howto h2::after {
  border-right: solid 1px #ff4549;
  border-bottom: solid 1px #ff4549;
  bottom: 0; right: 0;
}
.pg-f6 .cp-howto h2 span::before,
.pg-f6 .cp-howto h2 span::after {
  content: '';
  position: absolute;
  width: 46px;
  height: 46px;
  transform: rotate(45deg);
  pointer-events: none;
}
.pg-f6 .cp-howto h2 span::before {
  border-left: solid 1px #ff4549;
  top: 2px; left: 2px;
}
.pg-f6 .cp-howto h2 span::after {
  border-right: solid 1px #ff4549;
  bottom: 2px; right: 2px;
}

.pg-f6 .cp-howto .reference_box {
  list-style: none;
  margin: 30px 0;
  background-color: #fffbdd;
  padding: 30px 40px;
  border-radius: 20px;
  margin-top: 20px;
}
.pg-f6 .cp-howto .reference_box > li {
  margin-bottom: 20px;
}
.pg-f6 .cp-howto .reference_box > li:last-child {
  margin-bottom: 0;
}
.pg-f6 .cp-howto .reference_box dl { margin: 0; }
.pg-f6 .cp-howto .reference_box dt {
  font-size: 16px;
  font-weight: bold;
  padding-left: 1em;
  position: relative;
  margin-bottom: 10px;
}
.pg-f6 .cp-howto .reference_box dt::before {
  position: absolute;
  top: 45%;
  left: 0;
  transform: translateY(-48%);
  background-color: #545454;
  width: 0.5em;
  height: 0.5em;
  content: "";
}
.pg-f6 .cp-howto .reference_box dd {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.pg-f6 .cp-howto .happiness_goods {
  margin: 20px 0 0;
}
.pg-f6 .cp-howto .reference_box > li:not(:last-child) .happiness_goods {
  margin-bottom: 30px;
}

.pg-f6 .cp-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 16px 4px 24px;
  -webkit-overflow-scrolling: touch;
  margin: 0 -4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.pg-f6 .cp-slider.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.pg-f6 .cp-slider::-webkit-scrollbar { display: none; }
.pg-f6 .cp-slider .cp-slider-card { cursor: grab; }
.pg-f6 .cp-slider.is-dragging .cp-slider-card { cursor: grabbing; }
.pg-f6 .cp-slider img { -webkit-user-drag: none; pointer-events: none; }
.pg-f6 .cp-slider-card {
  flex: 0 0 calc((100% - 48px) / 5.3);
  scroll-snap-align: start;
  display: block;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  color: #333;
  padding: 10px;
  box-sizing: border-box;
  transition: box-shadow .15s, transform .15s;
}
.pg-f6 .cp-slider-card:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.pg-f6 .cp-slider-card .card_img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f4f4f4;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 11px;
}
.pg-f6 .cp-slider-card .item_name {
  font-size: 13px;
  line-height: 1.5;
  margin: 10px 0 0;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pg-f6 .cp-slider-card .item_price {
  font-size: 14px;
  font-weight: bold;
  color: #ff4549;
  margin: 6px 0 0;
}

.pg-f6 .cp-preview {
  display: flex;
  align-items: flex-start;
  background-image: radial-gradient(circle, #03A9F4 1.5px, transparent 1.5px);
  background-position: left 0 top 0;
  background-repeat: repeat-x;
  background-size: 8px 2px;
  margin: 80px auto 40px;
  padding: 20px 0 0;
  gap: 20px;
}
.pg-f6 .cp-preview .next_preview {
  flex: 0 0 200px;
  height: 50px;
  font-size: 22px;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  background-color: #03A9F4;
  letter-spacing: 8px;
  text-align: center;
  box-sizing: border-box;
}
.pg-f6 .cp-preview .txt_preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}
.pg-f6 .cp-preview .txt_preview p { margin: 0; font-size: 16px; line-height: 1.6; }
.pg-f6 .cp-preview .tit_preview { font-size: 18px; font-weight: bold; text-align: end; flex: 0 0 auto; }
.pg-f6 .cp-preview .tit_preview a {
  color: #03A9F4;
  text-decoration: none;
  line-height: 1.5;
}
.pg-f6 .cp-preview .tit_preview a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .pg-f6 .cp-howto h1 {
    font-size: 22px;
    padding: 16px 18px;
    margin: 0 12px 20px;
    letter-spacing: 0.05em;
  }
  .pg-f6 .cp-howto h2 {
    font-size: 17px;
    margin-top: 70px;
    padding: 14px 20px;
    letter-spacing: 0.05em;
  }
  .pg-f6 .cp-howto h2.max_w70p,
  .pg-f6 .cp-howto h2.max_w90p { max-width: 100%; }
  .pg-f6 .cp-howto h2 span::before,
  .pg-f6 .cp-howto h2 span::after { display: none; }
  .pg-f6 .cp-howto .reference_box { padding: 20px 18px; border-radius: 14px; }
  .pg-f6 .cp-howto .reference_box dt { font-size: 15px; }
  .pg-f6 .cp-howto .reference_box dd { font-size: 14px; }
  .pg-f6 .cp-slider-card { flex: 0 0 calc((100% - 24px) / 3.3); }
  .pg-f6 .cp-preview {
    flex-direction: column;
    padding-top: 16px;
  }
  .pg-f6 .cp-preview .next_preview {
    flex: 0 0 auto;
    width: 160px;
    font-size: 18px;
    height: auto;
    padding: 8px 16px;
    letter-spacing: 4px;
  }
  .pg-f6 .cp-preview .txt_preview {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .pg-f6 .cp-preview .tit_preview {
    text-align: start;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .pg-f6 .cp-slider-card { flex: 0 0 calc((100% - 12px) / 2.3); }
}

/* ============================================================
   F07_C03_快感慣れ（.pg-f7 でスコープ）
   ベース：元 desensitized.css / howto.css のhowtoデザイン踏襲
   配色：水色 #03A9F4（h1・next）／赤 #ff4549（h2）／緑 #4CAF50（goods h3）／橙 #ff7f56（基本h3）
   ============================================================ */

.pg-f7 .cp-howto h1 {
  position: relative;
  padding: 20px 24px;
  border-top: solid 1px #03A9F4;
  border-bottom: solid 1px #03A9F4;
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  color: #03A9F4;
  font-weight: 400;
  display: block;
  box-sizing: border-box;
  max-width: 600px;
  text-align: center;
  margin: 0 auto 24px;
  line-height: 1.4;
}
.pg-f7 .cp-howto h1::before,
.pg-f7 .cp-howto h1::after {
  content: '';
  position: absolute;
  top: -8px;
  width: 1px;
  height: calc(100% + 16px);
  background: #03A9F4;
}
.pg-f7 .cp-howto h1::before { left: 8px; }
.pg-f7 .cp-howto h1::after { right: 8px; }

.pg-f7 .cp-howto h2 {
  position: relative;
  padding: 16px 24px;
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #ff4549;
  font-weight: bold;
  display: block;
  box-sizing: border-box;
  max-width: 500px;
  text-align: center;
  margin: 100px auto 0;
  line-height: 1.5;
}
.pg-f7 .cp-howto h2.max_w60p { max-width: 60%; }
.pg-f7 .cp-howto h2.max_w70p { max-width: 70%; }
.pg-f7 .cp-howto h2.max_w90p { max-width: 90%; }
.pg-f7 .cp-howto h2::before,
.pg-f7 .cp-howto h2::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
}
.pg-f7 .cp-howto h2::before {
  border-left: solid 1px #ff4549;
  border-top: solid 1px #ff4549;
  top: 0; left: 0;
}
.pg-f7 .cp-howto h2::after {
  border-right: solid 1px #ff4549;
  border-bottom: solid 1px #ff4549;
  bottom: 0; right: 0;
}
.pg-f7 .cp-howto h2 span::before,
.pg-f7 .cp-howto h2 span::after {
  content: '';
  position: absolute;
  width: 46px;
  height: 46px;
  transform: rotate(45deg);
  pointer-events: none;
}
.pg-f7 .cp-howto h2 span::before {
  border-left: solid 1px #ff4549;
  top: 2px; left: 2px;
}
.pg-f7 .cp-howto h2 span::after {
  border-right: solid 1px #ff4549;
  bottom: 2px; right: 2px;
}

.pg-f7 .cp-howto h3 {
  position: relative;
  padding: 16px 24px;
  outline: 1px solid #ff7f56;
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #ff7f56;
  font-weight: 400;
  display: block;
  box-sizing: border-box;
  margin: 24px auto;
  z-index: 1;
  background: #fff;
}
.pg-f7 .cp-howto h3::before {
  content: "";
  position: absolute;
  top: 4px; left: 6px;
  width: 100%; height: 100%;
  background-color: #fff1ec;
  z-index: -1;
}
.pg-f7 .cp-howto h3.goods { outline-color: #4CAF50; color: #4CAF50; }
.pg-f7 .cp-howto h3.goods::before { background-color: #f6f9d5; }

.pg-f7 .cp-howto .desensitized_point {
  list-style: none;
  counter-reset: ds-num 0;
  padding: 0;
  margin: 50px 0 0;
}
.pg-f7 .cp-howto .desensitized_point > li {
  position: relative;
  padding: 30px 30px 20px 80px;
  margin-top: 30px;
  border: 1px solid #ff4549;
  border-radius: 8px;
  background: #fff;
}
.pg-f7 .cp-howto .desensitized_point > li::before {
  counter-increment: ds-num 1;
  content: counter(ds-num);
  position: absolute;
  top: 24px;
  left: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ff4549;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.pg-f7 .cp-howto .desensitized_point > li h3 {
  outline: none;
  background: transparent;
  color: #4CAF50;
  padding: 0;
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: bold;
}
.pg-f7 .cp-howto .desensitized_point > li h3::before { display: none; }
.pg-f7 .cp-howto .desensitized_point > li p { margin-top: 14px !important; line-height: 1.8; font-size: 15px; }

.pg-f7 .cp-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 16px 4px 24px;
  -webkit-overflow-scrolling: touch;
  margin: 0 -4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.pg-f7 .cp-slider.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.pg-f7 .cp-slider::-webkit-scrollbar { display: none; }
.pg-f7 .cp-slider .cp-slider-card { cursor: grab; }
.pg-f7 .cp-slider.is-dragging .cp-slider-card { cursor: grabbing; }
.pg-f7 .cp-slider img { -webkit-user-drag: none; pointer-events: none; }
.pg-f7 .cp-slider-card {
  flex: 0 0 calc((100% - 48px) / 5.3);
  scroll-snap-align: start;
  display: block;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  color: #333;
  padding: 10px;
  box-sizing: border-box;
  transition: box-shadow .15s, transform .15s;
}
.pg-f7 .cp-slider-card:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.pg-f7 .cp-slider-card .card_img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f4f4f4;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 11px;
}
.pg-f7 .cp-slider-card .item_name {
  font-size: 13px;
  line-height: 1.5;
  margin: 10px 0 0;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pg-f7 .cp-slider-card .item_price {
  font-size: 14px;
  font-weight: bold;
  color: #ff4549;
  margin: 6px 0 0;
}

.pg-f7 .cp-backtop {
  display: flex;
  justify-content: flex-end;
  background-image: radial-gradient(circle, #03A9F4 1.5px, transparent 1.5px);
  background-position: left 0 top 0;
  background-repeat: repeat-x;
  background-size: 8px 2px;
  margin: 80px auto 40px;
  padding: 20px 0 0;
}
.pg-f7 .cp-backtop a {
  font-size: 18px;
  font-weight: bold;
  color: #03A9F4;
  text-decoration: none;
  padding: 8px 16px;
  transition: opacity .15s;
}
.pg-f7 .cp-backtop a:hover { opacity: .7; text-decoration: underline; }

@media (max-width: 768px) {
  .pg-f7 .cp-howto h1 {
    font-size: 22px;
    padding: 16px 18px;
    margin: 0 12px 20px;
    letter-spacing: 0.05em;
  }
  .pg-f7 .cp-howto h2 {
    font-size: 17px;
    margin-top: 70px;
    padding: 14px 20px;
    letter-spacing: 0.05em;
  }
  .pg-f7 .cp-howto h2.max_w60p,
  .pg-f7 .cp-howto h2.max_w70p,
  .pg-f7 .cp-howto h2.max_w90p { max-width: 100%; }
  .pg-f7 .cp-howto h2 span::before,
  .pg-f7 .cp-howto h2 span::after { display: none; }
  .pg-f7 .cp-howto h3 {
    font-size: 16px;
    padding: 12px 16px;
    margin: 20px auto;
  }
  .pg-f7 .cp-howto .desensitized_point > li {
    padding: 24px 18px 16px 68px;
  }
  .pg-f7 .cp-howto .desensitized_point > li::before {
    top: 20px; left: 16px;
    width: 32px; height: 32px;
    font-size: 16px;
  }
  .pg-f7 .cp-howto .desensitized_point > li h3 { font-size: 16px; }
  .pg-f7 .cp-slider-card { flex: 0 0 calc((100% - 24px) / 3.3); }
}

@media (max-width: 480px) {
  .pg-f7 .cp-slider-card { flex: 0 0 calc((100% - 12px) / 2.3); }
}

/* ============================================================
   F08_C04_はじめてのローター（.pg-f8 でスコープ）
   ベース：元 beginner_rotor.css / howto.css のhowtoデザイン踏襲
   配色：水色 #03A9F4（h1・next・cool）／赤 #ff4549（h2）／緑 #4CAF50（goods h3）／橙 #ff7f56（基本h3）
   ============================================================ */

.pg-f8 .cp-howto h1 {
  position: relative;
  padding: 20px 24px;
  border-top: solid 1px #03A9F4;
  border-bottom: solid 1px #03A9F4;
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  color: #03A9F4;
  font-weight: 400;
  display: block;
  box-sizing: border-box;
  max-width: 600px;
  text-align: center;
  margin: 0 auto 24px;
  line-height: 1.4;
}
.pg-f8 .cp-howto h1::before,
.pg-f8 .cp-howto h1::after {
  content: '';
  position: absolute;
  top: -8px;
  width: 1px;
  height: calc(100% + 16px);
  background: #03A9F4;
}
.pg-f8 .cp-howto h1::before { left: 8px; }
.pg-f8 .cp-howto h1::after { right: 8px; }

.pg-f8 .cp-howto h2 {
  position: relative;
  padding: 16px 32px;
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: #ff4549;
  font-weight: bold;
  display: block;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  white-space: nowrap;
  margin: 100px auto 0;
  line-height: 1.5;
}
.pg-f8 .cp-howto h2::before,
.pg-f8 .cp-howto h2::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
}
.pg-f8 .cp-howto h2::before {
  border-left: solid 1px #ff4549;
  border-top: solid 1px #ff4549;
  top: 0; left: 0;
}
.pg-f8 .cp-howto h2::after {
  border-right: solid 1px #ff4549;
  border-bottom: solid 1px #ff4549;
  bottom: 0; right: 0;
}
.pg-f8 .cp-howto h2 span::before,
.pg-f8 .cp-howto h2 span::after {
  content: '';
  position: absolute;
  width: 46px;
  height: 46px;
  transform: rotate(45deg);
  pointer-events: none;
}
.pg-f8 .cp-howto h2 span::before {
  border-left: solid 1px #ff4549;
  top: 2px; left: 2px;
}
.pg-f8 .cp-howto h2 span::after {
  border-right: solid 1px #ff4549;
  bottom: 2px; right: 2px;
}

.pg-f8 .cp-howto h3 {
  position: relative;
  padding: 16px 24px;
  outline: 1px solid #ff7f56;
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #ff7f56;
  font-weight: 400;
  display: block;
  box-sizing: border-box;
  margin: 24px auto;
  z-index: 1;
  background: #fff;
}
.pg-f8 .cp-howto h3::before {
  content: "";
  position: absolute;
  top: 4px; left: 6px;
  width: 100%; height: 100%;
  background-color: #fff1ec;
  z-index: -1;
}
.pg-f8 .cp-howto h3.goods { outline-color: #4CAF50; color: #4CAF50; }
.pg-f8 .cp-howto h3.goods::before { background-color: #f6f9d5; }
.pg-f8 .cp-howto h3.cool { outline-color: #03A9F4; color: #03A9F4; }
.pg-f8 .cp-howto h3.cool::before { background-color: #f0f8ff; }

.pg-f8 .cp-howto .beginner_rotor_point {
  list-style: none;
  padding: 0;
  margin: 50px 0 0;
}
.pg-f8 .cp-howto .beginner_rotor_point > li {
  margin-top: 30px;
}
.pg-f8 .cp-howto .beginner_rotor_point > li figure img { margin: 16px auto; max-width: 720px; }
.pg-f8 .cp-howto .beginner_rotor_point > li p { margin-top: 24px !important; line-height: 1.9; font-size: 15px; }

.pg-f8 .cp-howto .howto_point {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}
.pg-f8 .cp-howto .howto_point > li {
  border: 1px solid #999;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  margin-top: 20px;
  gap: 24px;
}
.pg-f8 .cp-howto .howto_point > li figure { flex: 0 0 18%; margin: 0; }
.pg-f8 .cp-howto .howto_point > li figure img { margin: 0; width: 100%; }
.pg-f8 .cp-howto .howto_point .howto_point_txt { flex: 1 1 auto; }
.pg-f8 .cp-howto .howto_point .howto_point_txt h3 {
  all: revert;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: bold;
  color: #ff4549;
  margin: 0 0 6px;
  padding: 0;
  background: none;
  outline: none;
  border: none;
  letter-spacing: 0.05em;
}
.pg-f8 .cp-howto .howto_point .howto_point_txt h3::before { display: none; }
.pg-f8 .cp-howto .howto_point .howto_point_txt p { margin: 0; line-height: 1.8; font-size: 15px; }

.pg-f8 .cp-howto .col2_img30 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4%;
  margin-top: 16px;
}
.pg-f8 .cp-howto .col2_img30 figure { flex: 0 1 30%; margin: 0; }
.pg-f8 .cp-howto .col2_img30 figure img { margin: 0 !important; width: 100%; }
.pg-f8 .cp-howto .col2_img30 p { flex: 0 1 66%; margin: 0; font-size: 15px; line-height: 1.9; }

.pg-f8 .cp-slider {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 16px 4px 24px;
  -webkit-overflow-scrolling: touch;
  margin: 30px -4px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.pg-f8 .cp-slider.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.pg-f8 .cp-slider::-webkit-scrollbar { display: none; }
.pg-f8 .cp-slider .cp-slider-card { cursor: grab; }
.pg-f8 .cp-slider.is-dragging .cp-slider-card { cursor: grabbing; }
.pg-f8 .cp-slider img { -webkit-user-drag: none; pointer-events: none; }
.pg-f8 .cp-slider-card {
  flex: 0 0 calc((100% - 48px) / 5.3);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #333;
  transition: opacity .15s, transform .15s;
}
.pg-f8 .cp-slider-card:hover { opacity: .85; transform: translateY(-2px); }
.pg-f8 .cp-slider-card .poem_img {
  height: 160px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 14px;
}
.pg-f8 .cp-slider-card .poem_img img {
  max-height: 155px;
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
}
.pg-f8 .cp-slider-card .swiper-slide-box {
  border: 1px solid #eee;
  padding: 8px 8px 10px;
  border-radius: 10px;
  background: #fff;
  flex-grow: 1;
}
.pg-f8 .cp-slider-card .card_img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f4f4f4;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 10px;
}
.pg-f8 .cp-slider-card .item_name {
  font-size: 11px;
  line-height: 1.45;
  margin: 8px 0 0;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pg-f8 .cp-slider-card .item_price {
  font-size: 13px;
  font-weight: bold;
  color: #ff4549;
  margin: 4px 0 0;
}

.pg-f8 .cp-btn-area {
  margin: 80px auto 40px;
  text-align: right;
}
.pg-f8 .cp-btn-next {
  font-size: 20px;
  color: #fff !important;
  font-weight: bold;
  padding: 14px 60px 14px 32px;
  background-color: #03A9F4;
  text-align: center;
  display: inline-block;
  position: relative;
  text-decoration: none;
  transition: opacity .15s;
}
.pg-f8 .cp-btn-next:hover { opacity: .85; }
.pg-f8 .cp-btn-next::after {
  content: "";
  width: 14px;
  height: 14px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  margin-top: -7px;
  right: 24px;
}

@media (max-width: 768px) {
  .pg-f8 .cp-howto h1 {
    font-size: 22px;
    padding: 16px 18px;
    margin: 0 12px 20px;
    letter-spacing: 0.05em;
  }
  .pg-f8 .cp-howto h2 {
    font-size: 16px;
    margin-top: 70px;
    padding: 14px 24px;
    letter-spacing: 0.04em;
    white-space: normal;
    max-width: 100%;
  }
  .pg-f8 .cp-howto h2 span::before,
  .pg-f8 .cp-howto h2 span::after { display: none; }
  .pg-f8 .cp-howto h3 {
    font-size: 16px;
    padding: 12px 16px;
    margin: 20px auto;
  }
  .pg-f8 .cp-howto .beginner_rotor_point > li figure img { max-width: 100%; }
  .pg-f8 .cp-howto .howto_point > li {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 18px;
    gap: 12px;
  }
  .pg-f8 .cp-howto .howto_point > li figure { flex: 0 0 auto; width: 80px; }
  .pg-f8 .cp-howto .col2_img30 { flex-direction: column; align-items: stretch; gap: 16px; }
  .pg-f8 .cp-howto .col2_img30 figure { flex: 0 0 auto; max-width: 60%; margin: 0 auto !important; }
  .pg-f8 .cp-howto .col2_img30 p { flex: 0 0 auto; }
  .pg-f8 .cp-slider-card { flex: 0 0 calc((100% - 24px) / 3.3); }
  .pg-f8 .cp-slider-card .poem_img { height: 120px; }
  .pg-f8 .cp-slider-card .poem_img img { max-height: 115px; max-width: 100%; }
  .pg-f8 .cp-btn-area { text-align: center; }
  .pg-f8 .cp-btn-next { font-size: 17px; padding: 12px 48px 12px 24px; }
}

@media (max-width: 480px) {
  .pg-f8 .cp-slider-card { flex: 0 0 calc((100% - 12px) / 2.3); }
  .pg-f8 .cp-slider-card .poem_img { height: 100px; }
  .pg-f8 .cp-slider-card .poem_img img { max-height: 95px; }
}

/* ============================================================
   F09_プライバシーポリシー（.pg-f9 でスコープ）
   ============================================================ */

.pg-f9 .nt-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 24px 0 0;
  counter-reset: chapter;
}
.pg-f9 .nt-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--c-text, #333);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--c-accent, #e60028);
  margin: 0 0 24px;
}
.pg-f9 .nt-ol {
  margin: 8px 0 16px;
  padding-left: 22px;
}
.pg-f9 .nt-ol li {
  font-size: 14px;
  line-height: 1.9;
  color: var(--c-text, #333);
  margin-bottom: 6px;
  list-style: decimal;
}
.pg-f9 .nt-ol li ol {
  list-style: lower-alpha;
  margin-top: 4px;
  padding-left: 20px;
}
.pg-f9 .nt-ol li ol li {
  margin-bottom: 4px;
}
.pg-f9 .nt-toc {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 16px 20px;
  margin: 0 0 32px;
}
.pg-f9 .nt-toc-title {
  font-size: 13px;
  font-weight: bold;
  color: var(--c-sub, #888);
  letter-spacing: .08em;
  margin: 0 0 10px;
}
.pg-f9 .nt-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  gap: 2px;
}
@media (max-width: 480px) {
  .pg-f9 .nt-toc-list { columns: 1; }
}
.pg-f9 .nt-toc-list li {
  font-size: 13px;
  line-height: 1.9;
  break-inside: avoid;
}
.pg-f9 .nt-toc-list a {
  color: var(--c-accent, #e60028);
  text-decoration: none;
}
.pg-f9 .nt-toc-list a:hover { text-decoration: underline; }
.pg-f9 .nt-lead {
  font-size: 14px;
  line-height: 1.9;
  color: var(--c-text, #333);
  background: #fafafa;
  border-left: 3px solid #ccc;
  padding: 14px 18px;
  margin: 0 0 32px;
}
.pg-f9 .nt-lead a {
  color: var(--c-accent, #e60028);
}
.pg-f9 .nt-notice {
  background: #fff8f5;
  border: 1px solid #f5d5c5;
  border-radius: 4px;
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--c-text, #333);
  margin: 12px 0 16px;
}
.pg-f9 .nt-notice strong {
  display: block;
  margin-bottom: 4px;
  color: var(--c-text, #1a1a1a);
}
.pg-f9 .nt-notice a {
  color: var(--c-accent, #e60028);
}
.pg-f9 .nt-contact {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 20px 24px;
  font-size: 14px;
  line-height: 2;
  color: var(--c-text, #333);
  margin: 12px 0 0;
}
.pg-f9 .nt-contact p { margin: 0; }
.pg-f9 .nt-contact a { color: var(--c-accent, #e60028); }

@media (min-width: 768px) {
  .pg-f9 .nt-inner { padding: 32px 0 0; }
  .pg-f9 .nt-title { font-size: 26px; margin-bottom: 32px; }
  .pg-f9 .nt-ol li { font-size: 15px; }
}

/* ============================================================
   F10/F12_お問い合わせ（スコープ不要。fcf- 系は他ページと重複クラスなし）
   ============================================================ */

.fcf-page{padding-bottom:60px;overflow-x:hidden;color:#333}
.fcf-page *,.fcf-page *::before,.fcf-page *::after{box-sizing:border-box}
.fcf-bread{padding:10px 0}
.fcf-bread-wrap{width:100%;max-width:1200px;margin:0 auto;padding:0 16px}
.fcf-bread-list{display:flex;flex-wrap:wrap;align-items:center;list-style:none;margin:0;padding:0}
.fcf-bread-item{font-size:12px;color:#888;display:flex;align-items:center}
.fcf-bread-item::after{content:"\203A";margin:0 6px;color:#888}
.fcf-bread-item:last-child::after{display:none}
.fcf-bread-item a{color:#ff4549;text-decoration:none;transition:opacity .15s}
.fcf-bread-item a:hover{opacity:.7}
.fcf-bread-item.is-current{color:#333}
.fcf-page .fcf-wrap{width:100%;max-width:800px;margin:0 auto;padding:0 16px}
.fcf-title{text-align:center;margin:36px auto 0}
.fcf-title h1{display:inline-block;font-size:22px;font-weight:bold;color:#ff4549;padding:0 12px 4px;border-bottom:3px solid #ff4549;margin:0;letter-spacing:.02em}
.fcf-title-sub{text-align:center;font-size:11px;letter-spacing:.15em;color:#aaa;margin:8px 0 0;text-transform:uppercase}
.fcf-notice{margin:32px 0 0;padding:16px 20px;background:#fff7f7;border:1px solid #ffd0d2;border-radius:6px;font-size:13px;line-height:1.8}
.fcf-notice a{color:#ff4549;text-decoration:underline}
.fcf-notice strong{color:#ff4549}
.fcf-form{margin-top:36px}
.fcf-row{margin-bottom:24px}
.fcf-label{display:block;font-size:13px;font-weight:bold;margin-bottom:8px;color:#333}
.fcf-field-note{margin:-2px 0 8px;font-size:12px;line-height:1.6;color:#555}
.fcf-required{display:inline-block;font-size:10px;font-weight:normal;color:#fff;background:#ff4549;border-radius:3px;padding:1px 6px;margin-left:6px;vertical-align:middle;line-height:1.6}
.fcf-optional{display:inline-block;font-size:10px;font-weight:normal;color:#999;border:1px solid #ddd;border-radius:3px;padding:1px 6px;margin-left:6px;vertical-align:middle;line-height:1.6}
.fcf-input,.fcf-textarea{width:100%;border:1px solid #ddd;border-radius:4px;padding:11px 14px;font-size:14px;font-family:inherit;color:#333;background:#fff;appearance:none;-webkit-appearance:none;outline:none;transition:border-color .15s}
.fcf-input{height:46px}
.fcf-input:focus,.fcf-textarea:focus{border-color:#ff4549;box-shadow:0 0 0 2px rgba(255,69,73,.08)}
.fcf-textarea{height:160px;resize:vertical;line-height:1.7}
.fcf-select-wrap{position:relative}
.fcf-select{position:absolute;inset:0;width:100%;height:100%;opacity:0;cursor:pointer;z-index:2;margin:0;padding:0}
.fcf-select-display{display:flex;align-items:center;justify-content:space-between;width:100%;border:1px solid #ddd;border-radius:4px;padding:11px 14px;font-size:14px;font-family:inherit;color:#aaa;background:#fff;cursor:pointer;transition:border-color .15s;line-height:1.5;min-height:46px}
.fcf-select-display.is-selected{color:#333}
.fcf-select-display.is-focused{border-color:#ff4549;box-shadow:0 0 0 2px rgba(255,69,73,.08)}
.fcf-select-arrow{flex-shrink:0;margin-left:8px}
.fcf-recaptcha-wrap{margin-bottom:0;text-align:center}
.fcf-recaptcha-wrap .g-recaptcha{display:inline-block}
.fcf-recaptcha-error{display:none;margin:8px 0 0;font-size:12px;color:#cc2222;text-align:center}
@media (max-width:359px){
  .fcf-recaptcha-wrap .g-recaptcha{transform:scale(.9);transform-origin:0 0}
  .fcf-recaptcha-wrap{height:71px}
}
.fcf-submit-wrap{display:flex;justify-content:center;margin-top:40px}
.fcf-submit{display:flex;align-items:center;justify-content:center;width:min(500px,100%);padding:22px 20px;background:#ff4549;color:#fff;border:none;border-radius:50px;font-size:16px;font-weight:700;font-family:inherit;letter-spacing:.05em;cursor:pointer;transition:opacity .15s,transform .1s}
.fcf-submit:hover{opacity:.7}
.fcf-submit:active{transform:translateY(1px)}
.fcf-submit:disabled{opacity:.4;cursor:not-allowed}
.fcf-error{display:none;margin-bottom:20px;padding:12px 16px;background:#fff0f0;border:1px solid #ffb3b5;border-radius:4px;font-size:13px;color:#cc2222}
.fcf-success{display:none;text-align:center;padding:60px 20px}
.fcf-success__icon{display:flex;justify-content:center;margin-bottom:20px}
.fcf-success__title{font-size:20px;font-weight:bold;color:#ff4549;margin:0 0 16px}
.fcf-success__text{font-size:13px;line-height:1.9;color:#555}
@media screen and (max-width:767px){
  .fcf-title h1{font-size:18px}
}
