/* ============================================================
   Fumi LP Builder — フロントエンド共通スタイル
============================================================ */

.fmlpb-lp-page {
    margin: 0;
    padding: 0;
}
.fmlpb-lp-wrapper {
    max-width: 100%;
    overflow-x: hidden;
}

/* 共通インナー */
.fmlpb-hero__inner,
.fmlpb-empathy__inner,
.fmlpb-gift__inner,
.fmlpb-form-embed__inner,
.fmlpb-profile__inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 24px;
}

/* ============================================================
   fmlpb/hero — ヒーローコンテンツ
============================================================ */
.fmlpb-hero {
    text-align: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}
.fmlpb-hero--shape {
    padding-bottom: 80px;
}
.fmlpb-hero__bottom-shape {
    position: absolute;
    bottom: -1px; /* サブピクセル隙間を防ぐ */
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}
.fmlpb-hero__bottom-shape svg {
    display: block; /* inline だと下に1px空く */
    width: 100%;
    height: 80px;
}
.fmlpb-hero__catchcopy {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 900;
    line-height: 1.4;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
}
.fmlpb-hero__subcopy {
    font-size: clamp(15px, 2.5vw, 18px);
    line-height: 1.8;
    margin: 0 0 36px;
    opacity: 0.88;
}
.fmlpb-hero__cta {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.fmlpb-hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}

/* エディタ内プレビュー */
.fmlpb-hero--editor .fmlpb-hero__cta--preview {
    cursor: default;
    pointer-events: none;
}

/* ============================================================
   fmlpb/empathy — 共感文
============================================================ */
.fmlpb-empathy__title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 900;
    margin: 0 0 20px;
    text-align: center;
}
.fmlpb-empathy__intro {
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 24px;
    text-align: center;
    color: #555;
}
.fmlpb-empathy__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.fmlpb-empathy__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    background: rgba(255,255,255,0.7);
    padding: 14px 18px;
    border-radius: 10px;
}
.fmlpb-empathy__icon {
    font-size: 18px;
    flex-shrink: 0;
    line-height: 1.6;
}
.fmlpb-empathy__text {
    flex: 1;
}

/* ============================================================
   fmlpb/gift — プレゼント紹介
============================================================ */
.fmlpb-gift__section-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 900;
    margin: 0 0 32px;
    text-align: center;
}
.fmlpb-gift__body {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.fmlpb-gift__image {
    flex-shrink: 0;
    width: 200px;
}
.fmlpb-gift__image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.fmlpb-gift__content {
    flex: 1;
}
.fmlpb-gift__title {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.4;
}
.fmlpb-gift__desc {
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 20px;
    color: #555;
}
.fmlpb-gift__benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fmlpb-gift__benefit {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}
.fmlpb-gift__benefit-icon {
    flex-shrink: 0;
    font-size: 16px;
}

@media ( max-width: 600px ) {
    .fmlpb-gift__body {
        flex-direction: column;
    }
    .fmlpb-gift__image {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* ============================================================
   fmlpb/form-embed — 登録フォーム埋め込み
============================================================ */
.fmlpb-form-embed {
    text-align: center;
}
.fmlpb-form-embed__title {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 900;
    margin: 0 0 28px;
    line-height: 1.4;
}
.fmlpb-form-embed__form {
    max-width: 480px;
    margin: 0 auto;
}
/* エディタ内プレースホルダー */
.fmlpb-form-embed__placeholder {
    border: 2px dashed rgba(255,255,255,0.4);
    border-radius: 10px;
    padding: 24px;
    text-align: center;
}

/* ============================================================
   fmlpb/profile — 自己紹介
============================================================ */
.fmlpb-profile__section-title {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 900;
    margin: 0 0 32px;
    text-align: center;
}
.fmlpb-profile__body {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.fmlpb-profile__photo-wrap {
    flex-shrink: 0;
}
.fmlpb-profile__photo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.fmlpb-profile__content {
    flex: 1;
}
.fmlpb-profile__name {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 4px;
}
.fmlpb-profile__job {
    font-size: 14px;
    color: #777;
    margin: 0 0 16px;
}
.fmlpb-profile__bio {
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    color: #444;
}

@media ( max-width: 600px ) {
    .fmlpb-profile__body {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
    }
}

/* ============================================================
   ヒーロー：2カラムレイアウト（split-right / split-left）
============================================================ */
.fmlpb-hero--split-right .fmlpb-hero__inner,
.fmlpb-hero--split-left  .fmlpb-hero__inner {
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    text-align: left;
    padding: 60px 40px;
}
.fmlpb-hero--split-left .fmlpb-hero__inner {
    direction: rtl;
}
.fmlpb-hero--split-left .fmlpb-hero__text,
.fmlpb-hero--split-left .fmlpb-hero__image {
    direction: ltr;
}
.fmlpb-hero--split-right .fmlpb-hero__cta,
.fmlpb-hero--split-left  .fmlpb-hero__cta {
    display: inline-block;
}
.fmlpb-hero__image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    display: block;
}
.fmlpb-hero__image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: rgba(255,255,255,0.12);
    border: 2px dashed rgba(255,255,255,0.35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0.7;
}
@media ( max-width: 680px ) {
    .fmlpb-hero--split-right .fmlpb-hero__inner,
    .fmlpb-hero--split-left  .fmlpb-hero__inner {
        grid-template-columns: 1fr;
        direction: ltr;
        text-align: center;
        padding: 40px 20px;
    }
    .fmlpb-hero--split-left .fmlpb-hero__image {
        order: -1;
    }
}

/* ============================================================
   ヒーロー：中央画像（center + imageUrl）
============================================================ */
.fmlpb-hero__center-image {
    margin: 20px auto 28px;
    max-width: 320px;
}
.fmlpb-hero__center-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* ============================================================
   ヒーロー：ミニマルレイアウト
============================================================ */
.fmlpb-hero--minimal .fmlpb-hero__inner {
    padding: 100px 24px;
}
.fmlpb-hero--minimal .fmlpb-hero__catchcopy {
    font-size: clamp(30px, 6vw, 56px);
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}
.fmlpb-hero--minimal .fmlpb-hero__eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.7;
    margin: 0 0 16px;
}

/* ============================================================
   スタイル装飾クラス（10種）
   ※ヒーローブロック内の各要素に個性を付与
============================================================ */

/* ① シンプル（フラット・直線）clean
   → タイトル超ヘビー・ボタン直角・余計な装飾なし */
.fmlpb-style--clean .fmlpb-hero__catchcopy {
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
}
.fmlpb-style--clean .fmlpb-hero__cta {
    border-radius: 4px;
    letter-spacing: 0.05em;
    font-weight: 700;
}

/* ② ソフト（丸み・ふんわり）warm
   → ボタンをピル型+影・画像に大きな角丸+影・行間ゆったり */
.fmlpb-style--warm .fmlpb-hero__catchcopy {
    font-weight: 800;
    letter-spacing: 0.02em;
}
.fmlpb-style--warm .fmlpb-hero__subcopy {
    line-height: 1.9;
}
.fmlpb-style--warm .fmlpb-hero__cta {
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    padding: 18px 48px;
}
.fmlpb-style--warm .fmlpb-hero__image img {
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

/* ③ インパクト（大文字・シャープ）bold
   → 見出しを全大文字+大サイズ・ボタンを角なし+オフセット影 */
.fmlpb-style--bold .fmlpb-hero__catchcopy {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: clamp(26px, 5.5vw, 50px);
    font-weight: 900;
    line-height: 1.05;
}
.fmlpb-style--bold .fmlpb-hero__subcopy {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    font-weight: 700;
    opacity: 0.7;
}
.fmlpb-style--bold .fmlpb-hero__cta {
    border-radius: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 13px;
    padding: 18px 52px;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.25);
    font-weight: 800;
}

/* ④ エレガント（細線・余白）mint
   → タイトル下に細い装飾線・ボタンをピル+枠線風・余白広め */
.fmlpb-style--mint .fmlpb-hero__inner {
    padding: 80px 32px;
}
.fmlpb-style--mint .fmlpb-hero__catchcopy {
    letter-spacing: 0.1em;
    font-weight: 700;
    font-size: clamp(20px, 3.5vw, 36px);
}
.fmlpb-style--mint .fmlpb-hero__catchcopy::after {
    content: '';
    display: block;
    width: 48px;
    height: 1px;
    background: currentColor;
    margin: 18px auto;
    opacity: 0.4;
}
.fmlpb-style--mint .fmlpb-hero__subcopy {
    letter-spacing: 0.05em;
    line-height: 1.9;
}
.fmlpb-style--mint .fmlpb-hero__cta {
    border-radius: 50px;
    padding: 16px 52px;
    box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.5);
    letter-spacing: 0.08em;
}

/* ⑤ ガーリー（丸み・かわいい）sakura
   → 画像をブロブ形+カラー影・ボタンをピル+ふんわり影 */
.fmlpb-style--sakura .fmlpb-hero__catchcopy {
    font-weight: 800;
    letter-spacing: 0.04em;
}
.fmlpb-style--sakura .fmlpb-hero__subcopy {
    line-height: 1.85;
}
.fmlpb-style--sakura .fmlpb-hero__cta {
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    padding: 16px 48px;
}
.fmlpb-style--sakura .fmlpb-hero__image img {
    border-radius: 42% 58% 55% 45% / 45% 42% 58% 55%;
    box-shadow: 0 12px 40px rgba(219,39,119,0.25);
}

/* ⑥ フォーマル（線・プロ仕様）navy
   → タイトル下に下線・ボタンに枠線風・サブコピーの行間広め */
.fmlpb-style--navy .fmlpb-hero__catchcopy {
    letter-spacing: 0.04em;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    display: inline-block;
}
.fmlpb-style--navy .fmlpb-hero__subcopy {
    letter-spacing: 0.04em;
    line-height: 1.85;
}
.fmlpb-style--navy .fmlpb-hero__cta {
    border-radius: 4px;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.35);
    letter-spacing: 0.05em;
    font-weight: 700;
}

/* ⑦ エナジー（ダイナミック・力強い）sunset
   → 見出し超大+タイト・サブコピー太く・ボタン大きめ影 */
.fmlpb-style--sunset .fmlpb-hero__catchcopy {
    font-size: clamp(26px, 5.5vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.fmlpb-style--sunset .fmlpb-hero__subcopy {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.65;
}
.fmlpb-style--sunset .fmlpb-hero__cta {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    padding: 18px 52px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

/* ⑧ オーガニック（有機的・自然）forest
   → 画像をブロブ形・ボタンを非対称角丸 */
.fmlpb-style--forest .fmlpb-hero__catchcopy {
    font-weight: 800;
    letter-spacing: 0.03em;
}
.fmlpb-style--forest .fmlpb-hero__subcopy {
    line-height: 1.85;
}
.fmlpb-style--forest .fmlpb-hero__cta {
    border-radius: 16px 4px 16px 4px;
    padding: 16px 48px;
    font-weight: 700;
}
.fmlpb-style--forest .fmlpb-hero__image img {
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    box-shadow: 0 8px 32px rgba(21,128,61,0.25);
}

/* ⑨ テック（グロウ・デジタル）dark
   → 見出しに発光text-shadow・ボタンにグロウ枠+影・サブコピーをmonospace風 */
.fmlpb-style--dark .fmlpb-hero__catchcopy {
    text-shadow: 0 0 40px rgba(124,58,237,0.5);
    letter-spacing: 0.03em;
    font-weight: 800;
}
.fmlpb-style--dark .fmlpb-hero__subcopy {
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 0.05em;
    opacity: 0.8;
}
.fmlpb-style--dark .fmlpb-hero__cta {
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(124,58,237,0.5), inset 0 0 0 1px rgba(124,58,237,0.5);
    letter-spacing: 0.06em;
    font-weight: 700;
}

/* ⑩ ラグジュアリー（高級・上品）gold
   → タイトル前後に細い装飾線・ボタンを角なし+大文字+字間広め */
.fmlpb-style--gold .fmlpb-hero__catchcopy {
    letter-spacing: 0.1em;
    font-size: clamp(20px, 3.5vw, 34px);
    font-weight: 700;
}
.fmlpb-style--gold .fmlpb-hero__subcopy {
    letter-spacing: 0.08em;
    line-height: 2;
    font-weight: 400;
}
.fmlpb-style--gold .fmlpb-hero__cta {
    border-radius: 0;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 12px;
    padding: 18px 56px;
    font-weight: 600;
}
.fmlpb-style--gold .fmlpb-hero__inner::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background: currentColor;
    margin: 28px auto 0;
    opacity: 0.5;
}
.fmlpb-style--gold.fmlpb-hero--center .fmlpb-hero__catchcopy::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: currentColor;
    margin: 0 auto 20px;
    opacity: 0.5;
}

/* ============================================================
   Font Awesome アイコン共通サイズ調整
============================================================ */
.fmlpb-icon-fa {
    font-size: 1em;
    line-height: inherit;
    vertical-align: middle;
}
/* 共感部アイコン */
.fmlpb-empathy__icon .fmlpb-icon-fa,
.fmlpb-empathy__card-icon .fmlpb-icon-fa {
    font-size: 18px;
}
/* カードパターンのアイコンは少し大きめ */
.fmlpb-empathy--cards .fmlpb-empathy__card-icon .fmlpb-icon-fa {
    font-size: 24px;
}
/* 特典リストのアイコン */
.fmlpb-gift__benefit-icon .fmlpb-icon-fa {
    font-size: 16px;
}

/* ============================================================
   ヒーロー：オーバーレイレイアウト（overlay）
============================================================ */
.fmlpb-hero--overlay .fmlpb-hero__inner {
    padding: 100px 24px;
}
.fmlpb-hero--overlay .fmlpb-hero__catchcopy {
    font-size: clamp(26px, 5vw, 44px);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    margin-bottom: 24px;
}
.fmlpb-hero--overlay .fmlpb-hero__subcopy {
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* === 和風縦書きレイアウト（2カラム） === */
.fmlpb-hero--wafu {
    padding: 0;
}
/* 上段：2カラム（左=画像、右=縦書きテキスト） */
.fmlpb-hero__wafu-upper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 60px 40px 32px;
    max-width: 1100px;
    margin: 0 auto;
}
.fmlpb-hero__wafu-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 360px;
}
.fmlpb-hero__wafu-image-col img {
    max-width: 100%;
    display: block;
}
/* 右側：縦書きテキスト（サブキャッチ左、メインキャッチ右） */
.fmlpb-hero__wafu-right {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    justify-content: flex-end;
}
/* サブキャッチコピー（縦書き・左側） */
.fmlpb-hero__subcopy--vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.15em;
    opacity: 0.8;
    margin: 0;
}
/* メインキャッチコピー（縦書き・右側） */
.fmlpb-hero__catchcopy--vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.5;
    letter-spacing: 0.2em;
    margin: 0;
}
/* 下段：CTAボタン中央 */
.fmlpb-hero__wafu-cta-row {
    display: flex;
    justify-content: center;
    padding: 0 40px 60px;
}
/* スマホ */
@media (max-width: 767px) {
    .fmlpb-hero__wafu-upper {
        flex-direction: column-reverse;  /* テキスト上、画像下 */
        padding: 40px 24px 24px;
        gap: 32px;
    }
    .fmlpb-hero__wafu-image-col {
        max-width: 100%;
    }
    .fmlpb-hero__wafu-right {
        writing-mode: horizontal-tb;
        flex-direction: column;
        gap: 8px;
        text-align: center;
        align-items: center;
    }
    .fmlpb-hero__catchcopy--vertical,
    .fmlpb-hero__subcopy--vertical {
        writing-mode: horizontal-tb;
    }
    .fmlpb-hero__wafu-cta-row {
        padding: 0 24px 40px;
    }
}

/* === ツートンカラーレイアウト === */
.fmlpb-hero--two-tone .fmlpb-hero__inner--two-tone {
    display: flex;
    align-items: center;
    gap: 0;
    min-height: 480px;
    max-width: 100%;
    padding: 0;
}
.fmlpb-hero__two-tone-left {
    flex: 1;
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}
.fmlpb-hero__two-tone-right {
    flex: 1;
    padding: 60px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 767px) {
    .fmlpb-hero--two-tone .fmlpb-hero__inner--two-tone {
        flex-direction: column;
    }
    .fmlpb-hero--two-tone {
        background: linear-gradient(to bottom, var(--tone1, #3b82f6) 50%, var(--tone2, #f0f6ff) 50%) !important;
    }
    .fmlpb-hero__two-tone-left,
    .fmlpb-hero__two-tone-right {
        width: 100%;
        padding: 40px 24px;
    }
}

/* ============================================================
   共感部：パターン別スタイル
============================================================ */

/* ---- cards パターン ---- */
.fmlpb-empathy--cards .fmlpb-empathy__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}
.fmlpb-empathy--cards .fmlpb-empathy__card {
    background: #fff;
    border-radius: 14px;
    padding: 24px 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.fmlpb-empathy--cards .fmlpb-empathy__card-icon {
    font-size: 26px;
    line-height: 1;
}
.fmlpb-empathy--cards .fmlpb-empathy__card-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
    color: #333;
}

/* ---- numbered パターン ---- */
.fmlpb-empathy--numbered .fmlpb-empathy__numbered {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.fmlpb-empathy--numbered .fmlpb-empathy__numbered-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.85);
    border-radius: 12px;
    padding: 18px 24px;
}
.fmlpb-empathy--numbered .fmlpb-empathy__num {
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    flex-shrink: 0;
    min-width: 54px;
    font-feature-settings: "tnum";
}
.fmlpb-empathy--numbered .fmlpb-empathy__text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
}

/* ---- two-col パターン ---- */
.fmlpb-empathy--two-col .fmlpb-empathy__two-col {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.fmlpb-empathy--two-col .fmlpb-empathy__two-col .fmlpb-empathy__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    background: rgba(255,255,255,0.7);
    padding: 14px 16px;
    border-radius: 10px;
}
@media ( max-width: 600px ) {
    .fmlpb-empathy--two-col .fmlpb-empathy__two-col {
        grid-template-columns: 1fr;
    }
}

/* ---- timeline パターン ---- */
.fmlpb-empathy--timeline .fmlpb-empathy__timeline {
    position: relative;
    padding-left: 36px;
}
.fmlpb-empathy--timeline .fmlpb-empathy__timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 16px;
    bottom: 16px;
    width: 2px;
    background: rgba(0,0,0,0.12);
}
.fmlpb-empathy--timeline .fmlpb-empathy__tl-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    padding: 10px 0;
}
.fmlpb-empathy--timeline .fmlpb-empathy__tl-dot {
    position: absolute;
    left: -30px;
    top: 16px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid;
    flex-shrink: 0;
}
.fmlpb-empathy--timeline .fmlpb-empathy__tl-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    background: rgba(255,255,255,0.85);
    border-radius: 8px;
    padding: 12px 16px;
    flex: 1;
}

/* ============================================================
   プレゼント紹介：パターン別スタイル
============================================================ */

/* ---- image-right パターン ---- */
.fmlpb-gift--image-right .fmlpb-gift__body--reverse {
    flex-direction: row-reverse;
}
@media ( max-width: 600px ) {
    .fmlpb-gift--image-right .fmlpb-gift__body--reverse {
        flex-direction: column;
    }
}

/* ---- image-top パターン ---- */
.fmlpb-gift--image-top .fmlpb-gift__image-top {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 32px;
}
.fmlpb-gift--image-top .fmlpb-gift__image-top img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.fmlpb-gift--image-top .fmlpb-gift__content--centered {
    text-align: center;
}
.fmlpb-gift--image-top .fmlpb-gift__benefits--centered {
    display: inline-flex;
    flex-direction: column;
    text-align: left;
}

/* ---- card パターン ---- */
.fmlpb-gift--card .fmlpb-gift__card-box {
    border: 2px solid;
    border-radius: 18px;
    padding: 48px 36px 36px;
    position: relative;
    text-align: center;
}
.fmlpb-gift--card .fmlpb-gift__card-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 6px 24px;
    border-radius: 20px;
    white-space: nowrap;
}
.fmlpb-gift--card .fmlpb-gift__image--card {
    width: 100%;
    max-width: 220px;
    margin: 12px auto 24px;
}
.fmlpb-gift--card .fmlpb-gift__image--card img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.fmlpb-gift--card .fmlpb-gift__title--center,
.fmlpb-gift--card .fmlpb-gift__desc--center {
    text-align: center;
}
.fmlpb-gift--card .fmlpb-gift__benefits--centered {
    display: inline-flex;
    flex-direction: column;
    text-align: left;
}

/* ---- ribbon パターン ---- */
.fmlpb-gift--ribbon .fmlpb-gift__ribbon-header {
    padding: 28px 24px 20px;
    text-align: center;
}
.fmlpb-gift--ribbon .fmlpb-gift__ribbon-header-inner {
    max-width: 760px;
    margin: 0 auto;
}
.fmlpb-gift--ribbon .fmlpb-gift__ribbon-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.85);
    margin-bottom: 6px;
}
.fmlpb-gift--ribbon .fmlpb-gift__ribbon-title {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 900;
    color: #fff;
    margin: 0;
}
.fmlpb-gift--ribbon .fmlpb-gift__inner {
    padding-top: 32px;
}

/* ============================================================
   フォーム埋め込み：パターン別スタイル
============================================================ */

/* ---- card パターン ---- */
.fmlpb-form-embed--card .fmlpb-form-embed__card-box {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.fmlpb-form-embed--card .fmlpb-form-embed__card-box .fmlpb-form-embed__placeholder {
    border-color: rgba(0,0,0,0.15);
}
.fmlpb-form-embed--card .fmlpb-form-embed__card-box .fmlpb-form-embed__placeholder p {
    color: #555;
    opacity: 1;
}

/* ---- minimal パターン ---- */
.fmlpb-form-embed--minimal .fmlpb-form-embed__minimal-line {
    width: 60px;
    height: 3px;
    margin: 0 auto 28px;
    border-radius: 2px;
    opacity: 0.6;
}

/* ---- split パターン ---- */
.fmlpb-form-embed--split .fmlpb-form-embed__split-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.fmlpb-form-embed--split .fmlpb-form-embed__title--left {
    text-align: left;
    margin-bottom: 16px;
}
.fmlpb-form-embed--split .fmlpb-form-embed__split-sub {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.8;
    margin: 0;
}
@media ( max-width: 680px ) {
    .fmlpb-form-embed--split .fmlpb-form-embed__split-inner {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        text-align: center;
    }
    .fmlpb-form-embed--split .fmlpb-form-embed__title--left {
        text-align: center;
    }
}

/* ---- gradient パターン ---- */
.fmlpb-form-embed--gradient {
    position: relative;
}
.fmlpb-form-embed--gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0.15) 100%);
    pointer-events: none;
}
.fmlpb-form-embed--gradient .fmlpb-form-embed__inner {
    position: relative;
    z-index: 1;
}

/* ============================================================
   自己紹介：パターン別スタイル
============================================================ */

/* ---- centered パターン ---- */
.fmlpb-profile--centered .fmlpb-profile__centered-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.fmlpb-profile--centered .fmlpb-profile__photo--centered {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin-bottom: 20px;
}

/* ---- card パターン ---- */
.fmlpb-profile--card .fmlpb-profile__card-box {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.fmlpb-profile--card .fmlpb-profile__card-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}
.fmlpb-profile--card .fmlpb-profile__photo--large {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}
.fmlpb-profile--card .fmlpb-profile__card-meta {
    flex: 1;
}

/* ---- quote パターン ---- */
.fmlpb-profile--quote .fmlpb-profile__body {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.fmlpb-profile--quote .fmlpb-profile__quote-text {
    border-left: 4px solid;
    margin: 0;
    padding: 8px 0 8px 20px;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    font-style: italic;
}
@media ( max-width: 600px ) {
    .fmlpb-profile--quote .fmlpb-profile__body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .fmlpb-profile--quote .fmlpb-profile__quote-text {
        border-left: none;
        border-top: 4px solid;
        padding: 16px 0 0;
        text-align: left;
    }
}

/* ---- banner パターン ---- */
.fmlpb-profile--banner .fmlpb-profile__banner-box {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.fmlpb-profile--banner .fmlpb-profile__banner-photo-wrap {
    flex-shrink: 0;
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.fmlpb-profile--banner .fmlpb-profile__photo--banner {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.5);
    display: block;
}
.fmlpb-profile--banner .fmlpb-profile__banner-content {
    flex: 1;
    background: #fff;
    padding: 32px;
}
@media ( max-width: 600px ) {
    .fmlpb-profile--banner .fmlpb-profile__banner-box {
        flex-direction: column;
    }
    .fmlpb-profile--banner .fmlpb-profile__banner-photo-wrap {
        width: 100%;
        padding: 28px 24px 20px;
    }
    .fmlpb-profile--banner .fmlpb-profile__banner-content {
        text-align: center;
    }
}

/* ============================================================
   エディタ内スタイル（enqueue_block_editor_assets で読み込み）
============================================================ */
.editor-styles-wrapper .fmlpb-hero,
.editor-styles-wrapper .fmlpb-empathy,
.editor-styles-wrapper .fmlpb-gift,
.editor-styles-wrapper .fmlpb-form-embed,
.editor-styles-wrapper .fmlpb-profile {
    margin: 0;
}

/* ============================================================
   fmlpb/header — ヘッダーブロック
============================================================ */
.fmlpb-header {
    width: 100%;
    z-index: 1000;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.fmlpb-header--sticky {
    /* position:fixed は frontend.js で適用（テーマのoverflow:hidden対策） */
    width: 100%;
}
.fmlpb-header__spacer {
    /* JS で高さを動的にセット */
    display: block;
}
.fmlpb-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 24px;
    gap: 16px;
}
.fmlpb-header__logo {
    flex-shrink: 0;
}
.fmlpb-header__logo img {
    display: block;
}
.fmlpb-header__logo-text {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.02em;
}
.fmlpb-header__nav {
    flex: 1;
}
.fmlpb-header__menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.fmlpb-header__menu a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.2s;
}
.fmlpb-header__menu a:hover {
    opacity: 0.7;
}
.fmlpb-header__cta-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
    flex-shrink: 0;
}
.fmlpb-header__cta-btn:hover {
    opacity: 0.85;
}
/* ハンバーガーボタン */
.fmlpb-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}
.fmlpb-header__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: all 0.3s ease;
    border-radius: 2px;
}
/* open状態 */
.fmlpb-header__hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.fmlpb-header__hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.fmlpb-header__hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
/* モバイルメニュー */
.fmlpb-header__mobile-menu {
    display: none;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}
.fmlpb-header__mobile-menu.is-open {
    max-height: 500px;
}
.fmlpb-header__mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}
.fmlpb-header__mobile-menu ul a {
    display: block;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.fmlpb-header__mobile-menu ul a:hover {
    opacity: 0.7;
}
.fmlpb-header__mobile-cta {
    display: block;
    margin: 12px 24px 20px;
    padding: 12px;
    text-align: center;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}
/* レスポンシブ */
@media ( max-width: 768px ) {
    .fmlpb-header__nav,
    .fmlpb-header__cta-btn {
        display: none;
    }
    .fmlpb-header__hamburger {
        display: flex;
    }
    .fmlpb-header__mobile-menu {
        display: block;
    }
}

/* ============================================================
   fmlpb/footer — フッターブロック
============================================================ */
.fmlpb-footer {
    width: 100%;
}
.fmlpb-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 24px;
    text-align: center;
}
.fmlpb-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    margin-bottom: 20px;
}
.fmlpb-footer__links a {
    font-size: 13px;
    text-decoration: underline;
    transition: opacity 0.2s;
}
.fmlpb-footer__links a:hover {
    opacity: 0.7;
}
.fmlpb-footer__copyright {
    font-size: 12px;
    margin: 0;
    opacity: 0.8;
}

/* ============================================================
   fmlpb/testimonials — お客様の声ブロック
============================================================ */
.fmlpb-testimonials {
    width: 100%;
    padding: 60px 0;
}
.fmlpb-testimonials__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* cards */
.fmlpb-testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}
@media (min-width: 768px) {
    .fmlpb-testimonials__grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}
.fmlpb-testimonials__card {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.fmlpb-testimonials__quote-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.fmlpb-testimonials__comment {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 12px;
}
.fmlpb-testimonials__person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}
.fmlpb-testimonials__photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.fmlpb-testimonials__role {
    font-size: 12px;
    opacity: 0.7;
}
.fmlpb-stars {
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* list */
.fmlpb-testimonials__list {
    margin-top: 40px;
}
.fmlpb-testimonials__list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
}
.fmlpb-testimonials__list-body {
    flex: 1;
}

/* speech（チャット吹き出し型） */
.fmlpb-testimonials__speech-list {
    margin-top: 40px;
    display: grid;
    gap: 28px;
}
.fmlpb-testimonials__speech-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}
/* アバター（丸いアイコン） */
.fmlpb-testimonials__speech-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    overflow: hidden;
}
.fmlpb-testimonials__speech-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 吹き出し本体 */
.fmlpb-testimonials__speech-body {
    flex: 1;
}
.fmlpb-testimonials__bubble {
    border-radius: 0 12px 12px 12px; /* 左上フラット＝チャット吹き出し */
    padding: 16px 20px;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    margin-bottom: 8px;
}
.fmlpb-testimonials__speech-name {
    font-size: 12px;
    font-weight: 700;
    padding-left: 4px;
}

/* minimal */
.fmlpb-testimonials__minimal-list {
    margin-top: 40px;
    display: grid;
    gap: 40px;
}
@media (min-width: 768px) {
    .fmlpb-testimonials__minimal-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
.fmlpb-testimonials__minimal-item {
    position: relative;
    margin: 0;
    padding: 24px 24px 24px 40px;
}
.fmlpb-testimonials__big-quote {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 5rem;
    line-height: 1;
    font-family: Georgia, serif;
    opacity: 0.3;
}
.fmlpb-testimonials__minimal-item blockquote {
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 12px;
    font-style: italic;
}
.fmlpb-testimonials__minimal-item figcaption {
    font-size: 13px;
    opacity: 0.8;
}

/* slider-preview */
.fmlpb-testimonials--slider-preview .fmlpb-testimonials__slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    margin-top: 40px;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.fmlpb-testimonials__slide-card {
    min-width: 280px;
    max-width: 320px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    scroll-snap-align: start;
}

/* ============================================================
   fmlpb/faq — よくある質問ブロック
============================================================ */
.fmlpb-faq {
    width: 100%;
    padding: 60px 0;
}
.fmlpb-faq__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* accordion */
.fmlpb-faq__accordion {
    margin-top: 40px;
}
.fmlpb-faq__details {
    padding: 4px 0;
}
.fmlpb-faq__summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 4px;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 16px;
}
.fmlpb-faq__summary::-webkit-details-marker {
    display: none;
}
.fmlpb-faq__q-text {
    flex: 1;
}
.fmlpb-faq__toggle {
    font-size: 1.4rem;
    font-weight: 400;
    transition: transform 0.2s;
}
.fmlpb-faq__details[open] .fmlpb-faq__toggle {
    transform: rotate(45deg);
}
.fmlpb-faq__answer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0 4px 20px 4px;
    font-size: 15px;
    line-height: 1.8;
}
.fmlpb-faq__answer p {
    margin: 0;
    flex: 1;
}

/* simple */
.fmlpb-faq__simple {
    margin-top: 40px;
}
.fmlpb-faq__simple-item {
    padding: 24px 0;
}
.fmlpb-faq__q {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
}
.fmlpb-faq__q-label,
.fmlpb-faq__a-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: currentColor;
    font-size: 13px;
    font-weight: 900;
    flex-shrink: 0;
    color: #ffffff;
}
.fmlpb-faq__a {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 15px;
    line-height: 1.8;
    padding-left: 4px;
}
.fmlpb-faq__a-label {
    background: #e2e8f0;
    color: #1a1a1a;
}

/* cards */
.fmlpb-faq__cards {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}
.fmlpb-faq__card {
    border-radius: 8px;
    overflow: hidden;
}
.fmlpb-faq__card-q {
    padding: 16px 20px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.fmlpb-faq__card-a {
    padding: 16px 20px;
    font-size: 15px;
    line-height: 1.8;
    background: #ffffff;
    border-radius: 0 0 8px 8px;
}

/* two-col */
.fmlpb-faq__two-col {
    margin-top: 40px;
    display: grid;
    gap: 24px;
}
@media (min-width: 768px) {
    .fmlpb-faq__two-col {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}
.fmlpb-faq__q-col,
.fmlpb-faq__a-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.fmlpb-faq__q-item {
    padding: 12px 16px;
    font-weight: 600;
    font-size: 15px;
    background: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}
.fmlpb-faq__a-item {
    padding: 12px 0;
    font-size: 15px;
    line-height: 1.8;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* numbered */
.fmlpb-faq__numbered {
    margin-top: 40px;
}
.fmlpb-faq__numbered-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 0;
}
.fmlpb-faq__num {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    flex-shrink: 0;
    min-width: 56px;
    text-align: right;
    font-family: Georgia, serif;
}
.fmlpb-faq__num-body {
    flex: 1;
}
.fmlpb-faq__q-text {
    font-size: 16px;
    margin-bottom: 8px;
}
.fmlpb-faq__a-text {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.85;
}

/* ============================================================
   fmlpb/stats — 実績・数字ブロック
============================================================ */
.fmlpb-stats {
    width: 100%;
    padding: 60px 0;
}
.fmlpb-stats__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.fmlpb-stats__number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
}
.fmlpb-stats__unit {
    font-size: 1.25rem;
    font-weight: 700;
    margin-left: 4px;
}
.fmlpb-stats__label {
    font-size: 14px;
    margin-top: 8px;
    opacity: 0.85;
}

/* cards */
.fmlpb-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
    text-align: center;
}
@media (min-width: 768px) {
    .fmlpb-stats__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 280px));
        justify-content: center;
    }
}
.fmlpb-stats__card {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 32px 20px;
}

/* horizontal */
.fmlpb-stats__horizontal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-top: 40px;
    text-align: center;
}
.fmlpb-stats__h-item {
    flex: 1 1 160px;
    padding: 24px 20px;
}

/* big-center */
.fmlpb-stats__big-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 60px;
    margin-top: 40px;
    text-align: center;
}
.fmlpb-stats__big-item {
    flex: 1 1 180px;
}
.fmlpb-stats__big-number {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
}

/* icon-top */
.fmlpb-stats__icon-top-item {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 36px 20px;
    text-align: center;
}
.fmlpb-stats__big-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

/* banner */
.fmlpb-stats__banner {
    display: flex;
    flex-wrap: wrap;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 40px;
    text-align: center;
}
.fmlpb-stats__banner-item {
    flex: 1 1 140px;
    padding: 32px 20px;
}

/* ============================================================
   fmlpb/steps — ステップ解説ブロック
============================================================ */
.fmlpb-steps {
    width: 100%;
    padding: 60px 0;
}
.fmlpb-steps__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.fmlpb-steps__circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 900;
    flex-shrink: 0;
}

/* vertical */
.fmlpb-steps__vertical {
    margin-top: 40px;
}
.fmlpb-steps__v-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    min-height: 80px;
}
.fmlpb-steps__v-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.fmlpb-steps__v-line {
    width: 3px;
    flex: 1;
    min-height: 40px;
    margin: 4px 0;
    border-radius: 2px;
}
.fmlpb-steps__v-body {
    flex: 1;
    padding-bottom: 32px;
}
.fmlpb-steps__v-body h3 {
    margin: 6px 0 8px;
    font-size: 1.1rem;
}
.fmlpb-steps__v-body p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.85;
}

/* horizontal */
.fmlpb-steps__horizontal {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: flex-start;
}
.fmlpb-steps__h-item {
    display: flex;
    align-items: center;
    flex: 1 1 160px;
}
.fmlpb-steps__h-card {
    flex: 1;
    background: rgba(255,255,255,0.6);
    border-radius: 8px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.fmlpb-steps__h-card .fmlpb-steps__circle {
    margin: 0 auto 12px;
}
.fmlpb-steps__h-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}
.fmlpb-steps__h-card p {
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.85;
}
.fmlpb-steps__arrow {
    font-size: 1.8rem;
    padding: 0 8px;
    flex-shrink: 0;
}

/* numbered-big */
.fmlpb-steps__numbered-big {
    margin-top: 40px;
}
.fmlpb-steps__nb-item {
    position: relative;
    padding: 24px 0;
    overflow: hidden;
}
.fmlpb-steps__bg-num {
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.fmlpb-steps__nb-body {
    position: relative;
    padding-left: 20px;
}
.fmlpb-steps__nb-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 4px;
    font-family: Georgia, serif;
}
.fmlpb-steps__nb-body h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
}
.fmlpb-steps__nb-body p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.85;
}

/* icons */
.fmlpb-steps__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}
@media (min-width: 768px) {
    .fmlpb-steps__grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}
.fmlpb-steps__icon-item {
    padding: 28px 20px;
    border-radius: 8px;
    text-align: center;
    background: rgba(255,255,255,0.6);
}
.fmlpb-steps__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}
.fmlpb-steps__icon-item h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}
.fmlpb-steps__icon-item p {
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.85;
}

/* timeline */
.fmlpb-steps__timeline {
    margin-top: 40px;
}
.fmlpb-steps__tl-item {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
}
.fmlpb-steps__tl-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 20px;
    min-height: 100%;
}
.fmlpb-steps__tl-card {
    flex: 1;
    border-radius: 8px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.6);
}
.fmlpb-steps__tl-card h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}
.fmlpb-steps__tl-card p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.85;
}

/* ============================================================
   fmlpb/cta-banner — CTAバナーブロック
============================================================ */
.fmlpb-cta-banner {
    width: 100%;
}
.fmlpb-cta-banner__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px;
}
.fmlpb-cta-banner__inner--center {
    text-align: center;
}
.fmlpb-cta-banner__inner--split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.fmlpb-cta-banner__headline {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 900;
    margin: 0 0 12px;
    line-height: 1.3;
}
.fmlpb-cta-banner__sub {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 24px;
    opacity: 0.85;
}
.fmlpb-cta-banner__btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    margin-top: 8px;
}
.fmlpb-cta-banner__btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}
.fmlpb-cta-banner__text {
    flex: 1 1 260px;
}
.fmlpb-cta-banner__action {
    flex-shrink: 0;
}
.fmlpb-cta-banner__bordered-box {
    max-width: 680px;
    margin: 0 auto;
    border-radius: 12px;
    padding: 48px 40px;
}
.fmlpb-cta-banner__gradient {
    border-radius: 12px;
}
.fmlpb-cta-banner__badge {
    display: inline-block;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

/* Shared section title */
.fmlpb-section-title {
    text-align: center;
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 900;
    margin: 0 0 8px;
    line-height: 1.3;
}

/* ============================================================
   追加ブロック CSS
============================================================ */

/* fmlpb/heading */
.fmlpb-heading { margin: 0 0 24px; padding: 24px 28px; background: transparent; box-sizing: border-box; }
.fmlpb-heading > div { max-width: 1100px; margin-left: auto; margin-right: auto; }
.fmlpb-heading__line-left { border-left: 5px solid; padding-left: 16px; }
.fmlpb-heading__line-left .fmlpb-heading__text { margin: 0 0 4px; font-size: clamp(1.2rem,3vw,1.8rem); font-weight: 800; line-height: 1.3; }
.fmlpb-heading__line-center { text-align: center; }
.fmlpb-heading__line-center .fmlpb-heading__text { margin: 0; font-size: clamp(1.2rem,3vw,1.8rem); font-weight: 800; line-height: 1.3; }
.fmlpb-heading__underline { display: block; width: 48px; height: 4px; border-radius: 2px; margin: 10px auto 8px; }
.fmlpb-heading__bg-band { padding: 16px 24px; border-radius: 4px; }
.fmlpb-heading__bg-band .fmlpb-heading__text { margin: 0 0 4px; font-size: clamp(1.1rem,2.5vw,1.6rem); font-weight: 800; }
.fmlpb-heading__badge-wrap { text-align: center; }
.fmlpb-heading__badge { display: inline-block; padding: 8px 28px; border-radius: 50px; font-size: clamp(1rem,2.5vw,1.4rem); font-weight: 800; margin-bottom: 6px; }
.fmlpb-heading__number-wrap { display: flex; align-items: center; gap: 12px; }
.fmlpb-heading__num { font-size: clamp(3rem,8vw,6rem); font-weight: 900; line-height: 1; letter-spacing: -0.04em; flex-shrink: 0; }
.fmlpb-heading__number-text .fmlpb-heading__text { margin: 0 0 4px; font-size: clamp(1.1rem,2.5vw,1.6rem); font-weight: 800; }
.fmlpb-heading__icon-wrap { display: flex; align-items: flex-start; gap: 14px; }
.fmlpb-heading__icon-mark { font-size: 1.8rem; margin-top: 2px; flex-shrink: 0; }
.fmlpb-heading__icon-wrap .fmlpb-heading__text { margin: 0 0 4px; font-size: clamp(1.1rem,2.5vw,1.6rem); font-weight: 800; }
.fmlpb-heading__diagonal { padding: 14px 24px 14px 32px; clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%); display: inline-block; min-width: 60%; }
.fmlpb-heading__diagonal .fmlpb-heading__text { margin: 0 0 4px; font-size: clamp(1.1rem,2.5vw,1.6rem); font-weight: 800; }
.fmlpb-heading__ribbon-wrap { position: relative; }
.fmlpb-heading__ribbon { display: inline-block; padding: 8px 20px 8px 28px; position: relative; font-size: clamp(1rem,2.5vw,1.4rem); font-weight: 800; margin-bottom: 6px; }
.fmlpb-heading__ribbon::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 18px; background: inherit; filter: brightness(0.75); clip-path: polygon(0 0, 100% 0, 0 100%); }
.fmlpb-heading__ribbon::after  { content: ""; position: absolute; right: -12px; top: 0; bottom: 0; width: 12px; background: inherit; clip-path: polygon(0 0, 0 100%, 100% 50%); }
.fmlpb-heading__bracket { display: flex; align-items: stretch; gap: 16px; text-align: center; justify-content: center; }
.fmlpb-heading__bracket-l, .fmlpb-heading__bracket-r { display: block; width: 14px; border-top: 3px solid; border-bottom: 3px solid; flex-shrink: 0; }
.fmlpb-heading__bracket-l { border-left: 3px solid; border-radius: 2px 0 0 2px; }
.fmlpb-heading__bracket-r { border-right: 3px solid; border-radius: 0 2px 2px 0; }
.fmlpb-heading__bracket-inner { padding: 8px 0; }
.fmlpb-heading__bracket-inner .fmlpb-heading__text { margin: 0 0 4px; font-size: clamp(1.1rem,2.5vw,1.6rem); font-weight: 800; }
.fmlpb-heading__neon { text-align: center; }
.fmlpb-heading__text--neon { font-size: clamp(1.2rem,3vw,1.8rem); font-weight: 800; margin: 0 0 4px; }
.fmlpb-heading__sub { font-size: 0.9rem; margin: 0; line-height: 1.6; opacity: 0.75; }
/* heading patterns 11-20 */
.fmlpb-heading__dbl { text-align:center; border-top:2px solid; border-bottom:2px solid; padding:12px 0; }
.fmlpb-heading__dbl .fmlpb-heading__text { margin:0 0 4px; font-size:clamp(1.2rem,3vw,1.8rem); font-weight:800; line-height:1.3; }
.fmlpb-heading__marker-wrap .fmlpb-heading__text { display:inline; font-size:clamp(1.3rem,3vw,2rem); font-weight:800; margin:0 0 6px; line-height:1.8; padding:0 4px; }
.fmlpb-heading__grad-wrap { text-align:center; }
.fmlpb-heading__text--grad { background-clip:text; -webkit-background-clip:text; color:transparent !important; display:inline-block; font-size:clamp(1.3rem,3.5vw,2.2rem); font-weight:900; margin:0 0 6px; line-height:1.3; }
.fmlpb-heading__label-top { display:inline-block; font-size:.7rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; border:1.5px solid; border-radius:3px; padding:2px 10px; margin-bottom:8px; }
.fmlpb-heading__label-top-wrap .fmlpb-heading__text { display:block; font-size:clamp(1.2rem,3vw,1.8rem); font-weight:800; margin:0; line-height:1.3; }
.fmlpb-heading__overline-wrap { text-align:center; border-top:3px solid; padding-top:16px; }
.fmlpb-heading__overline-wrap .fmlpb-heading__text { margin:0 0 6px; font-size:clamp(1.2rem,3vw,1.8rem); font-weight:800; }
.fmlpb-heading__pillar { border-left:4px solid; border-right:4px solid; padding:10px 24px; text-align:center; }
.fmlpb-heading__pillar .fmlpb-heading__text { margin:0 0 4px; font-size:clamp(1.2rem,3vw,1.8rem); font-weight:800; }
.fmlpb-heading__strip { border-left:8px solid; border-radius:0 6px 6px 0; padding:14px 20px; }
.fmlpb-heading__strip .fmlpb-heading__text { margin:0 0 4px; font-size:clamp(1.2rem,3vw,1.8rem); font-weight:800; }
.fmlpb-heading__wave-wrap { text-align:center; }
.fmlpb-heading__wave-wrap .fmlpb-heading__text { text-decoration-line:underline; text-decoration-style:wavy; text-decoration-thickness:2px; text-underline-offset:8px; margin:0 0 10px; font-size:clamp(1.2rem,3vw,1.8rem); font-weight:800; }
.fmlpb-heading__corner-wrap { position:relative; padding:16px 20px; }
.fmlpb-heading__corner-tl, .fmlpb-heading__corner-br { position:absolute; width:16px; height:16px; display:block; }
.fmlpb-heading__corner-tl { top:0; left:0; border-top:3px solid; border-left:3px solid; }
.fmlpb-heading__corner-br { bottom:0; right:0; border-bottom:3px solid; border-right:3px solid; }
.fmlpb-heading__corner-wrap .fmlpb-heading__text { margin:0 0 4px; font-size:clamp(1.2rem,3vw,1.8rem); font-weight:800; }
.fmlpb-heading__sticky-wrap { text-align:center; }
.fmlpb-heading__sticky { display:inline-block; min-width:240px; max-width:640px; padding:24px 32px; border-top:4px solid; border-radius:2px; box-shadow:2px 4px 16px rgba(0,0,0,.12),0 1px 3px rgba(0,0,0,.08); text-align:left; }
.fmlpb-heading__sticky .fmlpb-heading__text { margin:0 0 6px; font-size:clamp(1.1rem,2.5vw,1.6rem); font-weight:800; }

/* fmlpb/browser */
.fmlpb-browser { border-radius: 10px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,.15); max-width: 860px; margin: 0 auto 32px; }
.fmlpb-browser__bar { display: flex; align-items: center; gap: 10px; padding: 10px 14px; }
.fmlpb-browser__dots { display: flex; gap: 6px; flex-shrink: 0; }
.fmlpb-browser__dots span { display: block; width: 12px; height: 12px; border-radius: 50%; }
.fmlpb-browser__url { flex: 1; background: rgba(255,255,255,.6); border-radius: 6px; padding: 4px 12px; font-size: 12px; color: #555; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-align: center; }
.fmlpb-browser__content { background: #fff; padding: 20px; }
.fmlpb-browser__placeholder { height: 200px; display: flex; align-items: center; justify-content: center; color: #aaa; font-size: 13px; background: #f8fafc; }

/* fmlpb/pc-mockup */
.fmlpb-pc-mockup { display: flex; flex-direction: column; align-items: center; margin: 0 auto 32px; max-width: 720px; }
.fmlpb-pc-mockup__monitor { border: 12px solid; border-radius: 12px 12px 0 0; width: 100%; aspect-ratio: 16/10; overflow: hidden; }
.fmlpb-pc-mockup__screen { width: 100%; height: 100%; overflow: hidden; background: #f1f5f9; }
.fmlpb-pc-mockup__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #aaa; font-size: 13px; }
.fmlpb-pc-mockup__stand { display: flex; flex-direction: column; align-items: center; }
.fmlpb-pc-mockup__stand-neck { width: 80px; height: 24px; clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%); }
.fmlpb-pc-mockup__stand-base { width: 180px; height: 10px; border-radius: 0 0 50px 50px; }

/* fmlpb/phone-mockup */
.fmlpb-phone-mockup { display: flex; justify-content: center; margin: 0 auto 32px; }
.fmlpb-phone-mockup__frame { width: 240px; border-width: 12px; border-style: solid; border-radius: 36px; display: flex; flex-direction: column; overflow: hidden; }
.fmlpb-phone-mockup__notch { height: 24px; width: 80px; border-radius: 0 0 16px 16px; margin: 0 auto; }
.fmlpb-phone-mockup__screen { flex: 1; aspect-ratio: 9/16; overflow: hidden; background: #fff; }
.fmlpb-phone-mockup__placeholder { width: 100%; min-height: 200px; display: flex; align-items: center; justify-content: center; color: #aaa; font-size: 11px; text-align: center; padding: 8px; background: #f8fafc; }
.fmlpb-phone-mockup__home { height: 4px; width: 48px; border-radius: 10px; margin: 8px auto; }

/* fmlpb/countdown */
.fmlpb-countdown { padding: 32px 24px; text-align: center; }
.fmlpb-countdown__label { font-size: 1rem; margin: 0 0 16px; font-weight: 600; letter-spacing: 0.05em; }
.fmlpb-countdown__timer { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.fmlpb-countdown__unit { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.fmlpb-countdown--cards .fmlpb-countdown__num { display: flex; align-items: center; justify-content: center; width: 72px; height: 72px; background: var(--cd-accent, #3b82f6); border-radius: 12px; font-size: var(--cd-num-size, 2.2rem); font-weight: 900; }
.fmlpb-countdown--simple .fmlpb-countdown__num { font-size: var(--cd-num-size, 3rem); font-weight: 900; }
.fmlpb-countdown--minimal .fmlpb-countdown__num { font-size: var(--cd-num-size, 2.5rem); font-weight: 700; opacity: .9; }
.fmlpb-countdown__unit-label { font-size: 11px; opacity: .7; letter-spacing: 0.05em; }
.fmlpb-countdown__sep { font-size: 2rem; font-weight: 900; line-height: 1; margin-bottom: 18px; opacity: .6; }
.fmlpb-countdown__expire-msg { font-size: 1.1rem; font-weight: 700; padding: 12px 24px; }
/* flip */
.fmlpb-countdown--flip .fmlpb-countdown__num { display:flex; align-items:center; justify-content:center; width:72px; height:72px; border-radius:8px; background:rgba(0,0,0,.35); font-size:var(--cd-num-size,2.5rem); font-weight:900; box-shadow:0 6px 0 rgba(0,0,0,.4),inset 0 1px 0 rgba(255,255,255,.1); border-bottom:3px solid var(--cd-accent,#3b82f6); position:relative; overflow:hidden; }
.fmlpb-countdown--flip .fmlpb-countdown__num::after { content:''; position:absolute; left:0; right:0; top:50%; height:1px; background:rgba(0,0,0,.4); }
/* outline */
.fmlpb-countdown--outline .fmlpb-countdown__num { display:flex; align-items:center; justify-content:center; width:72px; height:72px; border-radius:50%; background:transparent; border:3px solid var(--cd-accent,#3b82f6); font-size:var(--cd-num-size,2.2rem); font-weight:900; }
/* neon */
.fmlpb-countdown--neon .fmlpb-countdown__num { font-size:var(--cd-num-size,3rem); font-weight:900; text-shadow:0 0 8px var(--cd-accent,#3b82f6),0 0 20px var(--cd-accent,#3b82f6),0 0 40px var(--cd-accent,#3b82f6); }
/* banner */
.fmlpb-countdown--banner .fmlpb-countdown__timer { gap:4px 12px; }
.fmlpb-countdown--banner .fmlpb-countdown__unit { flex-direction:row; align-items:baseline; gap:4px; }
.fmlpb-countdown--banner .fmlpb-countdown__num { font-size:var(--cd-num-size,3rem); font-weight:900; }
.fmlpb-countdown--banner .fmlpb-countdown__unit-label { font-size:.85rem; opacity:.8; }
.fmlpb-countdown--banner .fmlpb-countdown__sep { margin-bottom:0; font-size:var(--cd-num-size,3rem); }
/* retro */
.fmlpb-countdown--retro .fmlpb-countdown__num { font-family:'Courier New',monospace; display:flex; align-items:center; justify-content:center; width:72px; height:72px; border-radius:4px; background:rgba(0,0,0,.6); border:2px solid var(--cd-accent,#3b82f6); font-size:var(--cd-num-size,2.2rem); font-weight:700; letter-spacing:2px; text-shadow:0 0 6px var(--cd-accent,#3b82f6); }

/* fmlpb/comparison */
.fmlpb-comparison { padding: 40px 24px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.fmlpb-comparison__title { text-align: center; font-size: clamp(1.2rem,3vw,1.8rem); font-weight: 800; margin: 0 0 24px; }
.fmlpb-comparison__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.fmlpb-comparison__table { width: 100%; border-collapse: collapse; min-width: 480px; }
.fmlpb-comparison__th, .fmlpb-comparison__th-label { padding: 12px 16px; border-bottom: 2px solid #e5e7eb; font-weight: 800; text-align: center; font-size: .9rem; }
.fmlpb-comparison__th-label { text-align: left; }
.fmlpb-comparison__th--hl { border-radius: 8px 8px 0 0; }
.fmlpb-comparison__row-label { padding: 12px 16px; border-bottom: 1px solid #f1f5f9; font-weight: 600; }
.fmlpb-comparison__cell { padding: 12px 16px; border-bottom: 1px solid #f1f5f9; text-align: center; font-size: 1.1rem; }
.fmlpb-comparison__cell[data-mark="circle"]   { color: #16a34a; font-weight: 700; }
.fmlpb-comparison__cell[data-mark="check"]    { color: #2563eb; font-weight: 700; }
.fmlpb-comparison__cell[data-mark="triangle"] { color: #f59e0b; }
.fmlpb-comparison__cell[data-mark="cross"]    { color: #ef4444; opacity: .6; }
.fmlpb-comparison__cell[data-mark="star"]     { color: #d97706; font-weight: 700; }
.fmlpb-comparison__cell[data-mark="minus"]    { color: #9ca3af; }
.fmlpb-comparison__cell .fa-solid { font-size: 1.1rem; }
/* comparison patterns */
.fmlpb-comparison--stripe .fmlpb-comparison__table tbody tr:nth-child(even) td { background: rgba(0,0,0,.025); }
.fmlpb-comparison--card .fmlpb-comparison__scroll { padding: 4px; }
.fmlpb-comparison--card .fmlpb-comparison__table { border-spacing: 0 6px; border-collapse: separate; min-width: 480px; }
.fmlpb-comparison--card .fmlpb-comparison__cell, .fmlpb-comparison--card .fmlpb-comparison__row-label { border-bottom: none; background: #fff; }
.fmlpb-comparison--card .fmlpb-comparison__table tbody tr { box-shadow: 0 1px 6px rgba(0,0,0,.08); }
.fmlpb-comparison--card .fmlpb-comparison__row-label { border-radius: 6px 0 0 6px; }
.fmlpb-comparison--card .fmlpb-comparison__cell:last-child { border-radius: 0 6px 6px 0; }
.fmlpb-comparison--minimal .fmlpb-comparison__cell, .fmlpb-comparison--minimal .fmlpb-comparison__row-label { border-bottom: none; }

/* fmlpb/checklist */
.fmlpb-checklist { padding: 40px 24px; max-width: 680px; margin: 0 auto; }
.fmlpb-checklist__title { font-size: clamp(1.1rem,2.5vw,1.5rem); font-weight: 800; margin: 0 0 24px; line-height: 1.4; }
.fmlpb-checklist__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.fmlpb-checklist__item { display: flex; align-items: center; gap: 12px; font-size: 1rem; line-height: 1.5; }
.fmlpb-checklist__box { width: 24px; height: 24px; flex-shrink: 0; border-width: 2px; border-style: solid; border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.fmlpb-checklist--circle .fmlpb-checklist__box { border-radius: 50%; }
.fmlpb-checklist--minimal .fmlpb-checklist__box { border-radius: 0; }
.fmlpb-checklist__check { font-size: 13px; line-height: 1; }

/* fmlpb/floating-cta */
.fmlpb-floating-cta { position: fixed; z-index: 9000; display: flex; align-items: center; gap: 8px; }
.fmlpb-floating-cta--bottom-center { bottom: 20px; left: 50%; transform: translateX(-50%); }
.fmlpb-floating-cta--bottom-right  { bottom: 20px; right: 20px; }
.fmlpb-floating-cta--bottom-left   { bottom: 20px; left: 20px; }
.fmlpb-floating-cta__btn { display: inline-block; padding: 14px 32px; border-radius: 50px; font-weight: 800; font-size: 1rem; text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,.25); white-space: nowrap; transition: transform .15s, box-shadow .15s; background: var(--fcta-bg, #2563eb) !important; color: var(--fcta-clr, #ffffff) !important; }
.fmlpb-floating-cta__btn:hover { transform: translateY(-2px); }
.fmlpb-floating-cta__close { background: rgba(0,0,0,.3); border: none; color: #fff; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: 12px; display: flex; align-items: center; justify-content: center; }

/* fmlpb/sticky-bar */
.fmlpb-sticky-bar { position: fixed; left: 0; right: 0; z-index: 8999; padding: 10px 20px; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; font-size: .9rem; font-weight: 600; }
.fmlpb-sticky-bar--top    { top: 0; }
.fmlpb-sticky-bar--bottom { bottom: 0; }
.fmlpb-sticky-bar__text { flex: 1; text-align: center; min-width: 160px; }
.fmlpb-sticky-bar__btn { display: inline-block; padding: 6px 20px; border-radius: 4px; text-decoration: none; font-size: .85rem; font-weight: 700; white-space: nowrap; }
.fmlpb-sticky-bar__close { background: rgba(255,255,255,.2); border: none; color: inherit; width: 24px; height: 24px; border-radius: 50%; cursor: pointer; font-size: 11px; display: flex; align-items: center; justify-content: center; }

/* fmlpb/sns-post */
.fmlpb-sns-post { max-width: 480px; margin: 0 auto 32px; }
.fmlpb-sns-post__ig { border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; font-size: 14px; background: #fff; }
.fmlpb-sns-post__ig-header { display: flex; align-items: center; gap: 10px; padding: 12px; border-bottom: 1px solid #f5f5f5; }
.fmlpb-sns-post__ig-more { margin-left: auto; font-weight: 700; color: #555; }
.fmlpb-sns-post__ig-img { width: 100%; display: block; }
.fmlpb-sns-post__ig-actions { padding: 10px 12px 4px; display: flex; gap: 16px; font-size: 13px; }
.fmlpb-sns-post__ig-body { padding: 4px 12px 8px; line-height: 1.5; font-size: 13px; }
.fmlpb-sns-post__tw { border: 1px solid #e5e7eb; border-radius: 16px; padding: 16px; background: #fff; }
.fmlpb-sns-post__tw-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.fmlpb-sns-post__tw-logo { margin-left: auto; font-size: 1.3rem; font-weight: 900; color: #111; }
.fmlpb-sns-post__tw-body { margin: 0 0 10px; font-size: 15px; line-height: 1.6; }
.fmlpb-sns-post__tw-img { width: 100%; border-radius: 12px; display: block; margin-bottom: 10px; }
.fmlpb-sns-post__tw-footer { display: flex; gap: 20px; font-size: 13px; color: #888; align-items: center; }
.fmlpb-sns-post__line { background: #fff; border-radius: 12px; border: 1px solid #e5e7eb; padding: 16px; }
.fmlpb-sns-post__line-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 14px; font-weight: 700; }
.fmlpb-sns-post__line-bubble { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 0 12px 12px 12px; padding: 12px 16px; font-size: 14px; line-height: 1.6; display: inline-block; max-width: 80%; }
.fmlpb-sns-post__line-img { width: 100%; border-radius: 8px; margin-top: 8px; display: block; }
.fmlpb-sns-post__media-img { width: 100%; display: block; }
.fmlpb-sns-post__embed-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.fmlpb-sns-post__embed-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.fmlpb-sns-post__avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.fmlpb-sns-post__avatar-placeholder { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #c084fc, #818cf8); flex-shrink: 0; }
.fmlpb-sns-post__avatar-wrap { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #f97316, #ec4899, #a855f7); padding: 2px; flex-shrink: 0; }
.fmlpb-sns-post__userinfo { display: flex; flex-direction: column; gap: 1px; }
.fmlpb-sns-post__handle { font-size: 12px; color: #888; }
.fmlpb-sns-post__verified { color: #2563eb; font-size: .8em; }
.fmlpb-sns-post__verified--tw { color: #1d9bf0; }
.fmlpb-sns-post__time { font-size: 11px; color: #aaa; margin-top: 6px; display: block; }

/* fmlpb/bubble */
.fmlpb-bubble { display: flex; align-items: flex-start; gap: 12px; padding: 8px 16px; max-width: 720px; margin: 0 auto 16px; }
.fmlpb-bubble--right { flex-direction: row-reverse; }
.fmlpb-bubble__avatar-col { display: flex; flex-direction: column; align-items: center; gap: 4px; flex-shrink: 0; }
.fmlpb-bubble__avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.fmlpb-bubble__avatar-placeholder { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, #93c5fd, #c4b5fd); }
.fmlpb-bubble__name { font-size: 11px; color: #888; text-align: center; white-space: nowrap; }
.fmlpb-bubble__body { position: relative; max-width: 70%; }
.fmlpb-bubble__text { padding: 12px 16px; border-radius: 4px 16px 16px 16px; line-height: 1.7; font-size: .95rem; word-break: break-word; }
.fmlpb-bubble--right .fmlpb-bubble__text { border-radius: 16px 4px 16px 16px; }

/* fmlpb/before-after */
.fmlpb-before-after { margin: 0 auto 32px; padding: 24px 28px; max-width: 1100px; }
/* before-after patterns */
/* frame: Afterに太いアクセントカラーのフレーム */
.fmlpb-before-after--frame .fmlpb-ba-side__item { border-width: 3px; }
.fmlpb-before-after--frame .fmlpb-ba-side__item--after { border-width: 4px; border-color: var(--ba-acc, #2563eb); }
.fmlpb-before-after--frame .fmlpb-ba-slider { border: 4px solid var(--ba-acc, #2563eb); border-radius: 8px; }
/* shadow: ボーダーなし・フローティングカード影 */
.fmlpb-before-after--shadow .fmlpb-ba-side__item { border: none; box-shadow: 0 6px 24px rgba(0,0,0,.14); border-radius: 12px; }
.fmlpb-before-after--shadow .fmlpb-ba-slider { border-radius: 12px; overflow: hidden; box-shadow: 0 6px 24px rgba(0,0,0,.14); }
/* dark: ダーク背景コンテナ */
.fmlpb-before-after--dark { background: #1e293b; border-radius: 12px; }
.fmlpb-before-after--dark .fmlpb-ba-side__item { border-color: #475569; }
.fmlpb-before-after--dark .fmlpb-ba-side__arrow { color: #94a3b8; }
.fmlpb-before-after--dark .fmlpb-ba-slider { border-radius: 8px; }
/* polaroid: 白い下余白付きポラロイド風 */
.fmlpb-before-after--polaroid .fmlpb-ba-side__item { border: none; background: #fff; padding-bottom: 28px; box-shadow: 1px 2px 10px rgba(0,0,0,.18), 0 1px 3px rgba(0,0,0,.1); border-radius: 2px; }
.fmlpb-before-after--polaroid .fmlpb-ba-side__label { background: none; color: #444; font-size: 13px; font-style: italic; bottom: 5px; left: 0; right: 0; text-align: center; padding: 0; }
.fmlpb-ba-side { display: flex; align-items: center; gap: 16px; }
@media (max-width: 600px) { .fmlpb-ba-side { flex-direction: column; } .fmlpb-ba-side__arrow { transform: rotate(90deg); } }
.fmlpb-ba-side__item { flex: 1; position: relative; border-radius: 8px; overflow: hidden; border: 2px solid #e5e7eb; }
.fmlpb-ba-side__item img { width: 100%; display: block; }
.fmlpb-ba-side__placeholder { height: 200px; background: #f1f5f9; display: flex; align-items: center; justify-content: center; color: #aaa; font-size: 13px; }
.fmlpb-ba-side__label { position: absolute; bottom: 8px; left: 8px; background: #1e293b; color: #fff; padding: 3px 12px; border-radius: 4px; font-size: 12px; font-weight: 700; }
.fmlpb-ba-side__arrow { font-size: 2rem; font-weight: 900; flex-shrink: 0; }
.fmlpb-ba-slider { position: relative; overflow: hidden; border-radius: 8px; cursor: ew-resize; user-select: none; }
.fmlpb-ba-slider__after { display: block; width: 100%; }
.fmlpb-ba-slider__after img { width: 100%; display: block; }
.fmlpb-ba-slider__before { position: absolute; top: 0; left: 0; right: 0; bottom: 0; clip-path: inset(0 50% 0 0); pointer-events: none; background-size: cover; background-position: center center; background-repeat: no-repeat; }
.fmlpb-ba-slider__label { position: absolute; bottom: 8px; padding: 3px 12px; border-radius: 4px; font-size: 12px; font-weight: 700; color: #fff; pointer-events: none; }
.fmlpb-ba-slider__label--before { left: 8px; background: #1e293b; }
.fmlpb-ba-slider__label--after  { right: 8px; }
.fmlpb-ba-slider__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 40px; margin-left: -20px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; cursor: ew-resize; z-index: 2; }
.fmlpb-ba-slider__handle::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; margin-left: -1px; background: rgba(255,255,255,.8); }
.fmlpb-ba-slider__placeholder { height: 200px; background: #f1f5f9; display: flex; align-items: center; justify-content: center; color: #aaa; font-size: 13px; }

/* fmlpb/badge — 共通 */
.fmlpb-badge { padding: 32px 24px; text-align: center; }
.fmlpb-badge__title { font-size: .9rem; font-weight: 700; margin: 0 0 20px; letter-spacing: 0.05em; }
/* pattern: cards（デフォルト） */
.fmlpb-badge--cards .fmlpb-badge__list { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.fmlpb-badge--cards .fmlpb-badge__item { display: flex; align-items: center; gap: 12px; padding: 14px 20px; background: #fff; border-radius: 12px; border: 1px solid #e5e7eb; text-align: left; min-width: 160px; }
.fmlpb-badge--cards .fmlpb-badge__icon { font-size: 2rem; flex-shrink: 0; color: var(--badge-accent, #2563eb); }
.fmlpb-badge--cards .fmlpb-badge__info { display: flex; flex-direction: column; gap: 2px; }
.fmlpb-badge--cards .fmlpb-badge__name { font-size: .85rem; font-weight: 700; display: block; color: var(--badge-accent, #2563eb); }
.fmlpb-badge--cards .fmlpb-badge__desc { font-size: .75rem; color: #888; }
/* pattern: pill（ピル/タグ形状） */
.fmlpb-badge--pill .fmlpb-badge__list { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.fmlpb-badge--pill .fmlpb-badge__item { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 100px; border: 1.5px solid var(--badge-accent, #2563eb); background: transparent; }
.fmlpb-badge--pill .fmlpb-badge__icon { font-size: 13px; color: var(--badge-accent, #2563eb); }
.fmlpb-badge--pill .fmlpb-badge__info { display: inline; }
.fmlpb-badge--pill .fmlpb-badge__name { font-size: 13px; font-weight: 600; color: var(--badge-accent, #2563eb); display: inline; }
.fmlpb-badge--pill .fmlpb-badge__desc { display: none; }
/* pattern: minimal（ミニマル2列リスト） */
.fmlpb-badge--minimal .fmlpb-badge__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 24px; max-width: 480px; margin: 0 auto; text-align: left; }
.fmlpb-badge--minimal .fmlpb-badge__item { display: flex; align-items: center; gap: 8px; padding: 4px 0; }
.fmlpb-badge--minimal .fmlpb-badge__icon { font-size: 16px; color: var(--badge-accent, #2563eb); flex-shrink: 0; }
.fmlpb-badge--minimal .fmlpb-badge__info { display: flex; flex-direction: column; gap: 2px; }
.fmlpb-badge--minimal .fmlpb-badge__name { font-size: 13px; font-weight: 600; display: block; }
.fmlpb-badge--minimal .fmlpb-badge__desc { display: none; }
/* pattern: dark（ダーク/アクセント背景） */
.fmlpb-badge--dark .fmlpb-badge__list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.fmlpb-badge--dark .fmlpb-badge__item { display: flex; flex-direction: column; align-items: center; text-align: center; background: var(--badge-accent, #2563eb); border-radius: 12px; padding: 16px 20px; min-width: 110px; color: #fff; }
.fmlpb-badge--dark .fmlpb-badge__icon { font-size: 2rem; display: block; margin-bottom: 6px; color: #fff; }
.fmlpb-badge--dark .fmlpb-badge__info { display: flex; flex-direction: column; gap: 2px; }
.fmlpb-badge--dark .fmlpb-badge__name { font-size: 12px; font-weight: 700; color: #fff; display: block; }
.fmlpb-badge--dark .fmlpb-badge__desc { font-size: 10px; opacity: 0.8; color: #fff; }
/* pattern: circle（サークルアイコン） */
.fmlpb-badge--circle .fmlpb-badge__list { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.fmlpb-badge--circle .fmlpb-badge__item { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100px; gap: 0; }
.fmlpb-badge--circle .fmlpb-badge__icon { width: 56px; height: 56px; border-radius: 50%; border: 2px solid var(--badge-accent, #2563eb); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--badge-accent, #2563eb); margin: 0 auto 8px; }
.fmlpb-badge--circle .fmlpb-badge__info { display: flex; flex-direction: column; gap: 2px; }
.fmlpb-badge--circle .fmlpb-badge__name { font-size: 11px; font-weight: 700; color: var(--badge-accent, #2563eb); display: block; }
.fmlpb-badge--circle .fmlpb-badge__desc { font-size: 10px; color: #888; }
/* 後方互換: 旧 row/grid レイアウト */
.fmlpb-badge--row .fmlpb-badge__list, .fmlpb-badge--grid .fmlpb-badge__list { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.fmlpb-badge--grid .fmlpb-badge__list { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); }
.fmlpb-badge--row .fmlpb-badge__item, .fmlpb-badge--grid .fmlpb-badge__item { display: flex; align-items: center; gap: 12px; padding: 14px 20px; background: #fff; border-radius: 12px; border: 1px solid #e5e7eb; text-align: left; }
.fmlpb-badge--row .fmlpb-badge__icon, .fmlpb-badge--grid .fmlpb-badge__icon { font-size: 2rem; flex-shrink: 0; }
.fmlpb-badge--row .fmlpb-badge__info, .fmlpb-badge--grid .fmlpb-badge__info { display: flex; flex-direction: column; gap: 2px; }
.fmlpb-badge--row .fmlpb-badge__name, .fmlpb-badge--grid .fmlpb-badge__name { font-size: .85rem; font-weight: 700; display: block; }
.fmlpb-badge--row .fmlpb-badge__desc, .fmlpb-badge--grid .fmlpb-badge__desc { font-size: .75rem; color: #888; }

/* ====== fmlpb/section — 自由フルワイドブロック ====== */
.fmlpb-section { width: 100%; position: relative; }
.fmlpb-section__inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.fmlpb-section__overlay { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
@media (max-width: 767px)  { .fmlpb-section--hide-mobile { display: none !important; } }
@media (min-width: 768px)  { .fmlpb-section--hide-pc     { display: none !important; } }

/* ====== Before/After スライダー固定高さ ====== */
.fmlpb-ba-slider--fixed-height { overflow: hidden; }
.fmlpb-ba-slider--fixed-height .fmlpb-ba-slider__after { height: 100%; }
.fmlpb-ba-slider--fixed-height .fmlpb-ba-slider__after img { height: 100%; width: 100%; object-fit: cover; display: block; }
