/* ============================================================
   メルティア サイト集約CSS（SWELL→TTF子テーマ移行版）
   構成: 0.リセット / [custom_css 183 共通] / [TOP swell_meta] /
         [商品 swell_meta] / 90.SWELL静的ブロック互換 / 95.ブログ
   ※ 本ファイルはビルド連結で生成（migration/build-css/* + source/*）
   ============================================================ */

/* ============================================================
   0. TwentyTwentyFive ブロックテーマ用リセット
   ============================================================ */
html, body {
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: none !important;
}
body {
  --wp--style--root--padding-top: 0 !important;
  --wp--style--root--padding-right: 0 !important;
  --wp--style--root--padding-bottom: 0 !important;
  --wp--style--root--padding-left: 0 !important;
  font-family: var(--m-font);
  background-color: #ffffff;
  color: var(--m-ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* { box-sizing: border-box; }
img { max-width: 100%; height: auto; }
.wp-site-blocks { margin: 0 !important; padding: 0 !important; max-width: none !important; }
.wp-site-blocks > * { margin-block-start: 0 !important; margin-block-end: 0 !important; max-width: none !important; }
.is-layout-flow, .is-layout-constrained,
.is-layout-flow > *, .is-layout-constrained > * { max-width: none !important; }
.entry-content, .wp-block-post-content { max-width: none !important; margin: 0 !important; padding: 0 !important; }
.m-main { display: block; }

/* custom_css */
/* =========================================
   結婚相談所LP - 全ページ共通CSS
   =========================================
   配置場所：カスタマイズ > 追加CSS
   適用範囲：全ページに作用
   最終更新：2026年2月
   ========================================= */

/* =========================================
   1. 基本設定・リセット
   ========================================= */

/* テーブルの枠線を非表示 */
:root {
    --color_border--table: #FFFFFF;
}

/* パンくずリストを非表示 */
#breadcrumb {
    display: none;
}

/* アイキャッチ画像エリアを非表示 */
#top_title_area {
    display: none;
}

/* =========================================
   2. Swellデフォルトヘッダー非表示
   ========================================= */

/* Swellのヘッダーを完全非表示 */
.l-header,
#header,
.p-header {
    display: none !important;
}

/* ヘッダー非表示に伴うコンテンツ位置調整 */
body {
    padding-top: 0 !important;
}

.l-content {
    margin-top: 0 !important;
}

/* =========================================
   3. カスタムヘッダー
   ========================================= */

/* 全体のレイアウト設定 */
.meltia-custom-header-wrapper {
    width: 100%;
    padding: 10px 0;
    box-sizing: border-box;
    font-family: 'Zen Maru Gothic', sans-serif;
    position: fixed;  /* sticky → fixed に変更 */
    top: 0;
    left: 0;          /* 追加 */
    z-index: 999;
    background-color: #fff;
}

/* 角丸四角のヘッダー本体 */
.meltia-slim-rounded-header {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 2px solid #dd3333;
    border-radius: 50px;
    padding: 8px 25px;
    display: flex;
    align-items: center;
    z-index: 99999;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 左側：ロゴとナビのグループ */
.m-header-left-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* ロゴのサイズ */
.m-logo-img {
    height: 55px;
    width: auto;
    display: block;
}

/* ナビゲーションリスト */
.m-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
}

.m-nav-list li a {
    position: relative;
    display: block;
    padding: 8px 5px;
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.m-nav-list li a:hover {
    color: #dd3333;
}

/* ぷっくりした赤い豆ホバー */
.m-nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 20px;
    height: 6px;
    background-color: #dd3333;
    border-radius: 10px;
    transform: translateX(-50%) scale(0);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.4), opacity 0.2s ease;
}

.m-nav-list li a:hover::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

/* 右側：CTA */
.m-header-cta-area {
    flex-shrink: 0;
    min-width: 380px;
    display: flex;
    justify-content: flex-end;
}
/* ヘッダーラッパー自体は透過 */
.meltia-custom-header-wrapper {
    background-color: transparent !important;
}
/* レスポンシブ - スマホでは追従なし */
@media (max-width: 1280px) {
    .meltia-custom-header-wrapper {
        position: relative;
    }
    
    .m-header-nav {
        display: none;
    }
    
    .m-header-cta-area {
        min-width: auto;
        transform: scale(0.8);
        transform-origin: right center;
    }
    
    .m-logo-img {
        height: 45px;
    }
    
    .meltia-slim-rounded-header {
        padding: 5px 15px;
    }
}

/* =========================================
   4. コンテンツエリア調整
   ========================================= */

/* ヘッダーとコンテンツの間の余白を非表示 */
@media screen and (min-width: 768px) {
    .l-content,
    .l-mainContent,
    .l-mainContent__inner {
        margin-top: 0;
        padding-top: 0;
    }
}

/* メインビジュアル直後の余白を詰める */
@media only screen and (max-width: 767px) {
    .p-mainVisual__slideLink {
        display: block;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    #content,
    .l-content.l-container {
        margin-top: 0;
        padding-top: 0;
    }

    .l-mainContent__inner,
    .post_content {
        margin-top: 0;
        padding-top: 0;
    }
}

/* =========================================
   5. 固定メニュー（スマホ下部）
   ========================================= */

@media screen and (max-width: 959px) {
    body {
        padding-bottom: 0px;
    }

    .p-fixBtnWrap {
        bottom: 5.5em;
    }

    #fixed-bottom-menu {
        display: block;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        z-index: 99;
        background-color: transparent;
        padding: .3em .3em;
        backdrop-filter: none;
    }

    #fixed-bottom-menu .swell-block-column {
        padding: .5em;
    }

    #fixed-bottom-menu .swell-block-button__link[data-has-icon] {
        padding: 1em 1em;
    }
}

@media screen and (min-width: 960px) {
    #fixed-bottom-menu, 
    #fixed-sidebar-menu {
        display: none;
    }
}

/* =========================================
   6. Contact Form 7 スタイル
   ========================================= */

/* フォーム全体 */
#cf7-area {
    width: 100%;
    margin: 0 auto;
    font-family: "游ゴシック", "ヒラギノ角ゴ", "メイリオ", "MS Pゴシック", sans-serif;
}

/* 質問＆回答ブロック */
.cf7-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0 0 1.75em;
}

/* 質問側 */
.cf7-q {
    width: 30%;
    margin: 0 0 0 10px;
}

/* 回答側 */
.cf7-a {
    width: 60%;
}

/* セクション見出し */
.form-heading {
    width: 100%;
    background-color: #D32F2F;
    border-left: 1em solid #E57373;
    border-radius: 2px;
    color: #ffffff;
    font-weight: bold;
    padding: 1em .8em;
    margin: 0 0 2em;
}

.form-heading p {
    margin: 0;
}

/* 共通フォーム要素 */
#cf7-area label {
    font-weight: bold;
}

#cf7-area input[type="text"],
#cf7-area input[type="email"],
#cf7-area input[type="datetime-local"],
#cf7-area textarea {
    background: #FFEBEE;
    width: 500px;
    margin-left: 10px;
}

#cf7-area input[type="text"]:focus,
#cf7-area input[type="email"]:focus,
#cf7-area input[type="datetime-local"]:focus,
#cf7-area textarea:focus {
    background: #FFE4E1;
    border: 2px solid #FF1493;
    outline: 0;
}

#cf7-area textarea {
    height: 200px;
    padding: 0.625em 0.4375em;
}

.cf7-accept-check {
    text-align: center;
    margin: 50px auto;
}

.cf7-submit {
    width: 40%;
    margin: 0 auto;
    text-align: center;
}

#cf7-area input[type="submit"] {
    width: 100%;
    background-color: #D32F2F;
    color: #ffffff;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    padding: 1em 10px;
}

#cf7-area input[type="submit"]:hover {
    background-color: #ffffff;
    border: 2px solid #D32F2F;
    color: #D32F2F;
}

.cf7-btn {
    width: 40%;
    margin: 0 auto;
    text-align: center;
}

/* 必須と任意マーク */
.cf7-req {
    font-size: .8em;
    padding: 4px 6px;
    background: #eb2a2a;
    color: #ffffff;
    margin-left: 10px;
    display: inline-block;
}

.cf7-opt {
    font-size: .8em;
    padding: 4px 6px;
    background: #a9a9a9;
    color: #ffffff;
    margin-left: 10px;
    display: inline-block;
}

/* モバイル表示対応 */
@media screen and (max-width: 768px) {
    .cf7-item {
        display: block;
    }

    #cf7-area label {
        display: block;
        margin-bottom: 10px;
    }

    .cf7-q {
        width: 100%;
        margin: 0;
    }

    .cf7-a {
        width: 100%;
    }

    #cf7-area input[type="text"],
    #cf7-area input[type="email"],
    #cf7-area input[type="datetime-local"],
    #cf7-area textarea {
        width: 100%;
        margin-left: 0;
    }

    .cf7-submit {
        width: 90%;
    }
}

/* =========================================
   7. フッター余白調整
   ========================================= */

/* メインコンテンツの底の余白を削除 */
.l-mainContent__inner {
    padding-bottom: 0;
}

/* コンテンツエリア全体の底のマージンを削除 */
#content {
    margin-bottom: 0;
}

/* ウィジェットエリアが空の場合、高さをゼロに */
#before_footer_widget {
    margin: 0;
    padding: 0;
    height: 0;
    min-height: 0;
    overflow: hidden;
}

/* フッターの上側の余白をゼロに */
.l-footer {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

/* スマホ版：bodyの下部余白をゼロに */
@media screen and (max-width: 959px) {
    body {
        padding-bottom: 0;
    }
}

/* =========================================
   8. TOPページ専用バナー非表示（スマホ）
   ========================================= */

@media only screen and (max-width: 767px) {
    .hide-sp1,
    .hide-sp2,
    .hide-sp3,
    .hide-sp4 {
        display: none;
    }
}

/* スマホ：カスタムヘッダー非表示 */
@media (max-width: 768px) {
    .meltia-custom-header-wrapper {
        display: none !important;
    }
}








/* 全体のコンテナ */
.custom-header-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 5px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

/* 上部の案内テキスト */
.cta-info-text {
    font-size: 11px;
    color: #0066ad;
    font-weight: 700;
    margin-bottom: 2px;
}

/* ボタンの横並びエリア */
.cta-flex-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 共通ボタン設定（角丸四角） */
.cta-base-btn {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    border-radius: 10px;
    font-weight: 700;
    color: #fff !important;
    transition: all 0.2s ease;
    box-shadow: 0 4px 0 rgba(0,0,0,0.15);
    position: relative;
}

.cta-base-btn:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgba(0,0,0,0.15);
}

/* 左側ボタン（優しい薄ピンク） */
.btn-pink {
    background: #ff8da1; /* 柔らかい薄ピンク */
    padding: 0 20px;
    font-size: 18px;
}

.icon-mail {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-color: #fff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E") no-repeat center;
}

/* 右側ボタン（赤色） */
.btn-red {
    background: #dd3333;
    padding: 0 45px 0 55px; 
    font-size: 19px;
}

/* 丸い「かんたん1分」バッジ */
.badge-circle {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    background: #fff;
    border: 3px solid #dd3333;
    border-radius: 50%;
    color: #dd3333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    z-index: 2;
}
.badge-circle .b-top { font-size: 8px; font-weight: 700; }
.badge-circle .b-main { font-size: 20px; font-weight: 900; }
.badge-circle .b-main span { font-size: 10px; }

/* 右側の矢印アイコン */
.arrow-icon {
    position: absolute;
    right: 15px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.arrow-icon::after {
    content: '';
    width: 6px;
    height: 6px;
    border-top: 2px solid #dd3333;
    border-right: 2px solid #dd3333;
    transform: rotate(45deg);
    margin-left: -2px;
}

/* スマホ表示での調整 */
@media (max-width: 768px) {
    .cta-flex-box {
        gap: 10px;
    }
    .btn-pink { font-size: 15px; padding: 0 12px; height: 46px; }
    .btn-red { font-size: 16px; padding: 0 35px 0 45px; height: 46px; }
    .badge-circle { width: 50px; height: 50px; left: -8px; }
}
@media (max-width: 768px) {
    .meltea-cta-section .cta-white-box {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 99999;
        border-radius: 0;
        margin: 0;
        padding: 10px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    }

    .meltea-cta-section .cta-blogparts-area {
        transform: none;
        padding: 0;
    }

    .meltea-cta-section .cta-info-text {
        display: none;
    }
}
@media (max-width: 768px) {
    .l-footer,
    .l-footer__inner,
    .l-footer__foot,
    #before_footer_widget,
    .l-footer__foot * {
        position: static !important;
        z-index: auto !important;
    }
}

/* TOP */
/* =========================================
   kLP - TOPy[W CSS

   ========================================= */

/* =========================================
   OtHgǂݍ
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;body.page-top 500;700;900&family=Great+Vibes&family=Oswald:wght@700&display=swap');

/* =========================================
   CSSϐ`
   ========================================= */
:root {
    /* J[ */
    --lp-red: #D32F2F;
    --lp-pink: #FFF5F7;
    --lp-blue: #1976D2;
    --lp-gold: #C5A059;
    --lp-text: #333;
    --lp-text-light: #555;
    --lp-text-muted: #888;
    --lp-bg-white: #fff;
    --lp-bg-gray: #f5f5f5;
    --lp-bg-dark-gray: #eee;
    --lp-bg-pink: #FFF0F5;
    
    /* tHg */
    --lp-font-main: "Zen Maru Gothic", sans-serif;
    --lp-font-script: 'Great Vibes', cursive;
    --lp-font-oswald: 'Oswald', sans-serif;
    
    /* Xy[VO */
    --lp-section-padding: 100px 20px;
    --lp-container-max: 1100px;
}

/* =========================================
   ʊ{ݒ
   ========================================= */
body.page-top .lp-solve-section, body.page-top .lp-reason-section, body.page-top .lp-price-section, body.page-top .lp-cheap-reason-section, body.page-top .lp-promise-section, body.page-top .lp-compare-section, body.page-top .lp-num-section, body.page-top .lp-voice-section, body.page-top .lp-flow-section {
    font-family: var(--lp-font-main);
    color: var(--lp-text);
    line-height: 1.6;
    box-sizing: border-box;
}

/* oZbg */
body.page-top .lp-solve-section h1, body.page-top .lp-solve-section h2, body.page-top .lp-solve-section h3, body.page-top .lp-reason-section h1, body.page-top .lp-reason-section h2, body.page-top .lp-reason-section h3, body.page-top .lp-price-section h1, body.page-top .lp-price-section h2, body.page-top .lp-price-section h3, body.page-top .lp-cheap-reason-section h1, body.page-top .lp-cheap-reason-section h2, body.page-top .lp-cheap-reason-section h3, body.page-top .lp-promise-section h1, body.page-top .lp-promise-section h2, body.page-top .lp-promise-section h3, body.page-top .lp-compare-section h1, body.page-top .lp-compare-section h2, body.page-top .lp-compare-section h3, body.page-top .lp-num-section h1, body.page-top .lp-num-section h2, body.page-top .lp-num-section h3, body.page-top .lp-voice-section h1, body.page-top .lp-voice-section h2, body.page-top .lp-voice-section h3, body.page-top .lp-flow-section h1, body.page-top .lp-flow-section h2, body.page-top .lp-flow-section h3 {
    all: unset;
    display: block;
    font-family: var(--lp-font-main);
    box-sizing: border-box;
}
/* ʃRei */
body.page-top .lp-container {
    max-width: var(--lp-container-max);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* 摜X|Vu */
body.page-top .lp-img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* NX */
body.page-top .lp-bold { 
    font-weight: 800; 
    color: var(--lp-text); 
}

body.page-top .lp-red-text { 
    color: var(--lp-red); 
    font-weight: 700; 
}

body.page-top .lp-black-bold { 
    color: var(--lp-text); 
    font-weight: 900; 
}

/* PC/SP摜؂ւ */
body.page-top .lp-pc-img { display: block; }
body.page-top .lp-sp-img { display: none; }

/* =========================================
   ʃAj[V
   ========================================= */
@keyframes lpFadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes drawString {
    to { stroke-dashoffset: 0; }
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateCircleReverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes lpFloat {
    0%, 100% { transform: translateY(0) translateX(-50%); }
    50% { transform: translateY(-5px) translateX(-50%); }
}

@keyframes lpFloatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes lpImgStepSwitch {
    0% { opacity: 0; }
    0.1% { opacity: 1; }
    49.9% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes drawSolveThread {
    0% { stroke-dasharray: 0 1000; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 1000 0; stroke-dashoffset: 0; }
    100% { stroke-dasharray: 0 1000; stroke-dashoffset: -1000; }
}

@keyframes drawReasonThread {
    to { stroke-dashoffset: 0; }
}

@keyframes quoteAppearLeft {
    0% { top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0); opacity: 0; }
    100% { top: 0; left: 10px; transform: translate(0, 0) scale(1); opacity: 1; }
}

@keyframes quoteAppearRight {
    0% { bottom: 50%; right: 50%; transform: translate(50%, 50%) rotate(180deg) scale(0); opacity: 0; }
    100% { bottom: 0; right: 10px; transform: rotate(180deg) scale(1); opacity: 1; }
}
body.page-top {
    overflow-x: hidden;
}
/* tF[hCAj[VpNX */
body.page-top .js-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

body.page-top .js-fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}
  body.page-top .uni-wrapper {
    position: relative;
    width: 100%;
    overflow: visible;
    background-color: transparent;
    font-family: 'Noto Sans JP', sans-serif;
  }
  
  body.page-top .uni-font-maru {
    font-family: 'Zen Maru Gothic', sans-serif;
  }

  /* --- 1. ŒwiGAiFV`ABOUTpj --- */
  body.page-top .uni-fixed-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1; /* Ԕw */
    pointer-events: none;
  }

  /* ȐAj[V */
  body.page-top .uni-curve-svg {
    position: absolute;
    fill: none !important;
    stroke-linecap: round;
    stroke-linejoin: round;
    mix-blend-mode: multiply;
  }
  @keyframes uniDrawLine {
    0% { stroke-dashoffset: 2000; }
    100% { stroke-dashoffset: 0; }
  }
  body.page-top .uni-curve-svg path {
    stroke-dasharray: 2000; 
    stroke-dashoffset: 2000; 
    animation: uniDrawLine 3.0s ease-out forwards;
  }
  body.page-top .uni-curve-pink { top: -10%; right: -10%; width: 75vw; max-width: 900px; transform: rotate(5deg); opacity: 0.3; z-index: 1; }
  body.page-top .uni-curve-pink path { stroke: #FF80AB; stroke-width: 60px; animation-delay: 0.2s; }
  body.page-top .uni-curve-red { top: 15%; right: -20%; width: 90vw; max-width: 1200px; z-index: 2; }
  body.page-top .uni-curve-red path { stroke: #D32F2F; stroke-width: 70px; animation-delay: 0.5s; }
  body.page-top .uni-curve-gray { bottom: -15%; right: -10%; width: 80vw; opacity: 0.5; z-index: 1; }
  body.page-top .uni-curve-gray path { stroke: #BDBDBD; stroke-width: 86px; animation-delay: 0s; }

  /* wi摜QiPCTCYj */
  body.page-top .uni-static-img { position: absolute; border-radius: 6px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); opacity: 0; animation: uniFadeIn 1.5s ease-out both; }
  @keyframes uniFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  body.page-top .u-img-1 { top: 12%; right: 20%; width: 420px; max-width: 40vw; z-index: 2; animation-delay: 0.8s; }
  body.page-top .u-img-2 { top: 45%; right: 5%; width: 280px; max-width: 25vw; z-index: 3; animation-delay: 1.0s; }
  body.page-top .u-img-3 { bottom: 12%; right: 35%; width: 380px; max-width: 35vw; z-index: 4; animation-delay: 1.2s; }

  /* --- 2. FVGA --- */
  body.page-top .uni-fv-area {
    position: relative;
    z-index: 10; /* ŒwiO */
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center; 
    padding-left: 15%; 
  }
  body.page-top .uni-fv-content-wrapper {
    width: 100%; max-width: 620px; display: flex; flex-direction: column; gap: 15px; 
    transform: translateY(-5vh); align-items: center; text-align: center;
  }
  body.page-top .uni-copy-img { width: 100%; animation: uniFadeIn 1s ease-out both 0.5s; }
  body.page-top .uni-fv-sub-copy { font-size: 18px; line-height: 1.6; color: #333; font-weight: 500; animation: uniFadeIn 1s ease-out both 0.8s; }
  body.page-top .uni-badge-img { width: 100%; animation: uniFadeIn 1s ease-out both 1.0s; }
  body.page-top .uni-annotation { font-size: 12px; line-height: 1.5; color: #C4A86F; text-align: left; animation: uniFadeIn 1s ease-out both 1.2s; }

  /* --- 3. ABOUTGA --- */
  body.page-top .uni-about-wrapper {
    position: relative;
    z-index: 10; /* ŒwiO */
    padding-bottom: 150px;
  }
  body.page-top .uni-about-card {
    background-color: #fff; width: 90%; max-width: 1200px; margin: 0 auto; padding: 100px 80px;
    border-radius: 8px; box-shadow: 0 10px 60px rgba(0,0,0,0.05);
  }
  body.page-top .uni-row-2col { display: flex; gap: 60px; }
  body.page-top .uni-col-left { width: 45%; display: flex; flex-direction: column; gap: 30px; }
  /* yCzxԂ */
  body.page-top .uni-label-text { color: var(--lp-red); font-weight: bold; letter-spacing: 0.1em; font-size: 14px; }
  body.page-top .uni-catch-text { font-size: 26px; font-weight: 700; line-height: 1.8; color: #333; }
  body.page-top .uni-col-right { width: 55%; font-size: 16px; color: #555; }
  body.page-top .uni-col-right p { margin-bottom: 1.5em; line-height: 1.8; }

  /* --- 4. Y݃ZNViŒwiBj --- */
  body.page-top .lp-worry-section {
    position: relative;
    z-index: 20; /* ABOUT(10)荂邱ƂŁAXN[ɌŒwi(1)hԂ */
    width: 100%;
    background-color: var(--lp-pink) !important;
    padding: 120px 0;
    text-align: center;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }
  body.page-top .lp-worry-content { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
  body.page-top .lp-worry-title { 
    all: unset; display: block; font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 32px; font-weight: 700; margin-bottom: 25px; color: #333; line-height: 1.5; 
  }
  /* yCz_ƎOpԂɕύX */
  body.page-top .lp-worry-bubble-line-container { display: flex; align-items: center; justify-content: center; width: 100%; height: 20px; margin: 0 auto 40px; max-width: 500px; }
  body.page-top .lp-worry-dot-line { flex: 1; height: 0; border-bottom: 4px dotted var(--lp-red); opacity: 0.8; }
  body.page-top .lp-worry-triangle-svg { width: 24px; height: 18px; margin: 0 10px; fill: var(--lp-red); }
  
  body.page-top .lp-img-responsive { max-width: 100%; display: block; margin: 0 auto; }
  body.page-top .lp-worry-img { width: 100%; }
  body.page-top .lp-pc-img { display: block; }
  body.page-top .lp-sp-img { display: none; }

  body.page-top .js-fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
  body.page-top .js-fade-in.is-visible { opacity: 1; transform: translateY(0); }

  /* --- X}z\ (Ԃɕ)  --- */
  @media (max-width: 768px) {
    /* Ȑ */
    body.page-top .uni-curve-pink { width: 120%; right: -30%; top: 5%; }
    body.page-top .uni-curve-red { width: 160%; top: 35%; right: -60%; }
    body.page-top .uni-curve-gray { width: 150%; right: -30%; bottom: 0; }
    
    /* wi摜Ĕzu */
    body.page-top .u-img-1 { width: 100px; top: 8%; left: 5%; right: auto; }
    body.page-top .u-img-2 { width: 90px; top: 38%; right: 2%; } 
    body.page-top .u-img-3 { width: 140px; bottom: 15%; left: 8%; right: auto; }

    /* FVGA */
    body.page-top .uni-fv-area { padding-left: 20px; padding-right: 20px; justify-content: center; }
    body.page-top .uni-fv-content-wrapper { max-width: 100%; transform: translateY(-30px); gap: 12px; }
    body.page-top .uni-copy-img { width: 88%; margin: 0 auto; }
    body.page-top .uni-fv-sub-copy { font-size: 15px; }
    body.page-top .uni-badge-img { width: 85%; max-width: 300px; margin: 0 auto; }
    body.page-top .uni-annotation { font-size: 10px; line-height: 1.4; margin-top: 8px; }
    
    /* ABOUT */
    body.page-top .uni-about-card { width: 92%; padding: 60px 20px; border-radius: 8px; }
    body.page-top .uni-row-2col { flex-direction: column; gap: 30px; }
    body.page-top .uni-col-left, body.page-top .uni-col-right { width: 100%; }
    body.page-top .uni-catch-text { font-size: 22px; }
    body.page-top .uni-col-right { font-size: 15px; }
    
    /* Y݃ZNV */
    body.page-top .lp-worry-section { padding: 80px 0; border-top-left-radius: 40px; border-top-right-radius: 40px; }
    body.page-top .lp-worry-title { font-size: 24px; padding: 0 10px; }
    body.page-top .lp-pc-img { display: none; }
    body.page-top .lp-sp-img { display: block; }
  }



/* =========================================
   ZNV
   ========================================= */
body.page-top .lp-solve-section {
    position: relative;
    background-color: var(--lp-red) !important;
    padding: 100px 20px 0;
    margin-bottom: 0;
    text-align: center;
    z-index: 2;
    overflow: hidden;
    color: var(--lp-bg-white);
}

body.page-top .lp-solve-arrow-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 40px 0 40px;
    border-color: var(--lp-bg-white) transparent transparent transparent;
    z-index: 5;
}

/* wi */
body.page-top .lp-circle-svg {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

body.page-top .lp-circle-path {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 10 15;
}

body.page-top .lp-solve-bg-svg path, body.page-top .lp-solve-bg-svg .lp-circle-path {
    stroke: rgba(255, 255, 255, 0.2);
}

body.page-top .lp-sbg-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    left: 5%;
    animation: rotateCircle 50s linear infinite;
}

body.page-top .lp-sbg-2 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 5%;
    animation: rotateCircleReverse 60s linear infinite;
}

body.page-top .lp-sbg-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 15%;
    animation: rotateCircle 45s linear infinite;
}

body.page-top .lp-sbg-4 {
    width: 100px;
    height: 100px;
    bottom: 40%;
    left: 10%;
    animation: rotateCircleReverse 40s linear infinite;
}

body.page-top .lp-solve-thread-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

body.page-top .lp-solve-thread-path {
    fill: none;
    stroke: #ffcdd2;
    stroke-width: 1.5;
    opacity: 0.6;
    animation: drawSolveThread 6s ease-in-out infinite;
}

body.page-top .lp-solve-content {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 2;
    padding-bottom: 40px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

body.page-top .lp-solve-quote {
    position: absolute;
    font-family: serif;
    font-size: 8rem;
    color: var(--lp-bg-white);
    opacity: 1;
    line-height: 1;
    z-index: 10;
}

body.page-top .lp-quote-left {
    animation: quoteAppearLeft 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

body.page-top .lp-quote-right {
    animation: quoteAppearRight 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

body.page-top .lp-solve-text {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: var(--lp-bg-white) !important;
    margin: 0 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

body.page-top .lp-solve-img-wrapper {
    background: var(--lp-bg-white);
    padding: 20px 40px;
    border-radius: 50px;
}

body.page-top .lp-solve-img {
    width: 300px;
    max-width: 100%;
    display: block;
}

/* =========================================
   I΂闝RZNV
   ========================================= */
body.page-top .lp-reason-section {
    background-color: var(--lp-red) !important;
    padding: 120px 20px;
    margin-top: -1px;
    position: relative;
    z-index: 1;
}

body.page-top .lp-reason-bg-thread-sp {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
}

body.page-top .lp-reason-bg-thread-path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 4000;
    stroke-dashoffset: 4000;
    animation: drawReasonThread 4s ease-out forwards;
}

body.page-top .lp-reason-container {
    max-width: var(--lp-container-max);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

body.page-top .lp-reason-left {
    width: 30%;
    position: -webkit-sticky;
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    height: fit-content;
    text-align: left;
    padding-right: 20px;
}

body.page-top .lp-reason-head-text {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--lp-bg-white) !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
    display: block !important;
    opacity: 0.9;
}

body.page-top .lp-reason-title {
    font-size: 2.4rem !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    color: var(--lp-bg-white) !important;
    position: relative !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.page-top .lp-reason-right {
    width: 65%;
}

body.page-top .lp-reason-card {
    background: var(--lp-bg-white);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: visible;
    z-index: 1;
    color: var(--lp-text);
}

body.page-top .lp-card-num-wrapper {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.page-top .lp-num-circle-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotateCircle 15s linear infinite;
}

body.page-top .lp-num-circle-path {
    fill: none;
    stroke: var(--lp-red);
    stroke-width: 2;
    stroke-dasharray: 6 8;
}

body.page-top .lp-card-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--lp-red);
    line-height: 1;
    font-family: sans-serif;
    position: relative;
    z-index: 1;
}

body.page-top .lp-card-title {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: var(--lp-red) !important;
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: center !important;
    border-left: 6px solid var(--lp-red) !important;
    padding-left: 15px !important;
    background: none !important;
}

body.page-top .lp-card-title::before {
    display: none !important;
}

body.page-top .lp-card-desc {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.8;
}

body.page-top .lp-card-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
/* =========================================
   ZNV
   ========================================= */
body.page-top .lp-price-section {
    padding: 100px 0;
    background-color: var(--lp-bg-white) !important;
    text-align: center;
    position: relative;
}

body.page-top .lp-price-thread-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

body.page-top .lp-price-thread-path {
    fill: none;
    stroke: rgba(211, 47, 47, 0.1);
    stroke-width: 2;
    stroke-dasharray: 20 10;
}

body.page-top .lp-price-content {
    position: relative;
    z-index: 1;
}

body.page-top .lp-price-catch {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-red);
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    line-height: 1;
}

body.page-top .lp-price-catch::before, body.page-top .lp-price-catch::after {
    content: '';
    display: block;
    width: 15px;
    height: 2px;
    background: var(--lp-red);
}

body.page-top .lp-price-catch::before {
    transform: rotate(60deg);
}

body.page-top .lp-price-catch::after {
    transform: rotate(-60deg);
}

body.page-top .lp-price-title {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    margin-top: 5px !important;
    margin-bottom: 60px !important;
    line-height: 1.2 !important;
    color: var(--lp-text) !important;
}

body.page-top .lp-price-card {
    background: var(--lp-bg-white);
    border: 3px solid var(--lp-red);
    border-radius: 30px;
    padding: 80px 30px 50px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

body.page-top .lp-price-badge-combined {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-red);
    color: var(--lp-bg-white);
    padding: 12px 40px;
    border-radius: 60px;
    text-align: center;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body.page-top .lp-badge-main {
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.9;
    margin-bottom: 2px;
    white-space: nowrap;
}

body.page-top .lp-badge-sub {
    font-size: 1.2rem;
    font-weight: 900;
    white-space: nowrap;
    line-height: 1.1;
}

body.page-top .lp-main-price-box {
    margin: 10px 0 40px;
    display: inline-block;
    width: 100%;
}

body.page-top .lp-price-label {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
    color: #666;
    margin-bottom: 5px;
}

body.page-top .lp-price-amount {
    font-size: 5rem;
    font-weight: 900;
    color: var(--lp-red);
    line-height: 1;
    font-family: sans-serif;
    letter-spacing: -2px;
}

body.page-top .lp-price-unit {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lp-text);
}

body.page-top .lp-price-tax {
    font-size: 1rem;
    color: var(--lp-text-muted);
}

body.page-top .lp-sub-price-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

body.page-top .lp-sub-price-item {
    background: var(--lp-bg-gray);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

body.page-top .lp-sub-circle-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotateCircle 20s linear infinite;
    pointer-events: none;
}

body.page-top .lp-sub-circle-path {
    fill: none;
    stroke: var(--lp-red);
    stroke-width: 2;
    stroke-dasharray: 6 6;
}

body.page-top .lp-sub-label {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--lp-text-light);
    position: relative;
    z-index: 1;
}

body.page-top .lp-sub-amount {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--lp-text);
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

body.page-top .lp-sub-tax {
    font-size: 0.8rem;
    font-weight: normal;
    display: block;
    position: relative;
    z-index: 1;
}

body.page-top .lp-price-check-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    text-align: left;
    display: inline-block;
}

body.page-top .lp-price-check-item {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    padding-left: 35px;
    line-height: 1.5;
}

body.page-top .lp-price-check-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    background-color: var(--lp-red);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

/* =========================================
   RZNV
   ========================================= */
body.page-top .lp-cheap-reason-section {
    padding: 100px 0 120px;
    background-color: var(--lp-bg-gray) !important;
    position: relative;
    overflow: hidden;
    margin-bottom: 0 !important;
}

body.page-top .lp-cheap-reason-title-area {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

body.page-top .lp-cheap-reason-title-main {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    display: inline-block !important;
    margin-bottom: 20px !important;
    position: relative !important;
    padding-bottom: 15px !important;
    border: none !important;
    color: var(--lp-text) !important;
}

body.page-top .lp-cheap-reason-title-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background-color: var(--lp-red);
    border-radius: 5px;
}

body.page-top .lp-cheap-reason-sub {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--lp-text-light);
}

body.page-top .lp-cheap-reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 0;
    position: relative;
    z-index: 2;
    align-items: stretch;
    max-width: 1000px;
    margin: 40px auto 0;
}

body.page-top .lp-cheap-reason-box {
    background: var(--lp-bg-white) !important;
    padding: 50px 25px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
    vertical-align: top;
}

body.page-top .lp-cheap-reason-box:first-child {
    margin-top: 0 !important;
}

body.page-top .lp-cheap-reason-icon-bg {
    width: 80px;
    height: 80px;
    background: var(--lp-red);
    border-radius: 15px;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.page-top .lp-cheap-reason-icon-inner {
    transform: rotate(-45deg);
    width: 40px;
    height: 40px;
}

body.page-top .lp-cheap-reason-icon-inner .lp-icon-svg {
    width: 100%;
    height: 100%;
    fill: var(--lp-bg-white);
}

body.page-top .lp-cheap-reason-head {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: var(--lp-text) !important;
    margin-top: 20px !important;
    margin-bottom: 15px !important;
    padding: 0 0 10px 0 !important;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    display: block !important;
    width: 100% !important;
    line-height: 1.4 !important;
    min-height: 3.2em;
}

body.page-top .lp-cheap-reason-head::before, body.page-top .lp-cheap-reason-head::after {
    content: none !important;
    display: none !important;
}

body.page-top .lp-cheap-reason-desc {
    font-size: 0.95rem;
    text-align: left;
    color: #666;
    flex: 1;
}

/* =========================================
   񑩃ZNV
   ========================================= */
body.page-top .lp-promise-section {
    padding: 100px 0;
    background-color: var(--lp-bg-white) !important;
    position: relative;
    text-align: center;
    margin-top: 0 !important;
}

body.page-top .lp-promise-img {
    width: 130px;
    height: auto;
    margin: 0 auto 30px;
    opacity: 0.6;
}

body.page-top .lp-promise-main {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 60px;
    line-height: 1.8;
}

body.page-top .lp-promise-highlight {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--lp-red);
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

body.page-top .lp-promise-thread {
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 200%;
    height: 15px;
}

body.page-top .lp-promise-thread path {
    fill: none;
    stroke: var(--lp-red);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawString 2s ease-out forwards;
    animation-delay: 1.0s;
}

/* =========================================
   rZNV
   ========================================= */
body.page-top .lp-compare-section {
    padding: 80px 0 0 !important;
    background-color: var(--lp-bg-pink) !important;
    position: relative;
    margin-bottom: 0 !important;
}

body.page-top .lp-compare-header-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: left;
}

body.page-top .lp-compare-header-text {
    flex: 1;
}

body.page-top .lp-compare-title {
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    display: inline-block !important;
    color: var(--lp-text) !important;
}

body.page-top .lp-compare-header-img {
    width: 120px;
    height: auto;
    border-radius: 10px;
}

body.page-top .lp-compare-table {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

body.page-top .lp-compare-col {
    flex: 1;
    background: var(--lp-bg-white);
    border-radius: 15px;
    padding: 0 0 20px;
    text-align: center;
    border: 1px solid #eee;
}

body.page-top .lp-col-main {
    flex: 1.2;
    background: var(--lp-bg-white);
    border: 3px solid var(--lp-red);
    border-radius: 15px;
    transform: scale(1.05);
    z-index: 2;
    position: relative;
    overflow: visible;
}

body.page-top .lp-col-head {
    padding: 20px 5px;
    font-weight: 700;
    border-radius: 12px 12px 0 0;
    font-size: 1.1rem;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
}

body.page-top .lp-col-main .lp-col-head {
    background: var(--lp-red);
    color: var(--lp-bg-white);
    font-size: 1.4rem;
    width: 100%;
    border-radius: 10px 10px 0 0;
}

body.page-top .lp-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: var(--lp-text);
    padding: 8px 30px;
    border-radius: 30px;
    font-weight: 900;
    border: 2px solid var(--lp-bg-white);
    animation: lpFloat 2s ease-in-out infinite;
    z-index: 10;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

body.page-top .lp-badge::before {
    content: '';
    display: block;
    width: 3px;
    height: 14px;
    background: var(--lp-text);
    transform: skewX(20deg);
}

body.page-top .lp-badge::after {
    content: '';
    display: block;
    width: 3px;
    height: 14px;
    background: var(--lp-text);
    transform: skewX(-20deg);
}

body.page-top .lp-row {
    padding: 20px 10px;
    border-bottom: 1px dashed #ddd;
}

body.page-top .lp-row:last-child {
    border-bottom: none;
}

body.page-top .lp-row-label {
    display: block;
    font-size: 0.8rem;
    color: var(--lp-text-muted);
    margin-bottom: 5px;
}

body.page-top .lp-row-val {
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
}

body.page-top .lp-highlight-val {
    color: var(--lp-text);
    font-size: 1.4rem;
    font-weight: 900;
}

body.page-top .lp-compare-summary-box {
    margin-top: 60px;
    margin-bottom: 0 !important;
    text-align: center;
    position: relative;
    padding: 0 10px 40px;
}

body.page-top .lp-summary-bg {
    background: var(--lp-bg-white);
    display: inline-block;
    padding: 40px 50px;
    border-radius: 60px 0 60px 0;
    position: relative;
}

body.page-top .lp-summary-content {
    position: relative;
    z-index: 1;
}

body.page-top .lp-summary-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 900;
    line-height: 1.2;
}

body.page-top .lp-summary-red-big {
    font-size: 1.8rem;
    color: var(--lp-red);
    letter-spacing: -1px;
}

body.page-top .lp-summary-x {
    font-size: 1.6rem;
    color: #ccc;
    font-weight: 300;
    margin: 0 5px;
}

body.page-top .lp-summary-bottom {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--lp-text);
    line-height: 1.6;
}

body.page-top .lp-text-highlight-black {
    display: inline-block;
    position: relative;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--lp-text);
    line-height: 1.2;
    margin-top: 10px;
    padding-bottom: 25px;
    z-index: 1;
}

body.page-top .lp-thread-underline {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 30px;
    pointer-events: none;
    z-index: -1;
}

body.page-top .lp-thread-underline path {
    fill: none;
    stroke: var(--lp-red);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawString 1.5s ease-out forwards;
    animation-delay: 1.4s;
}

/* =========================================
   ŌZNV
   ========================================= */
body.page-top .lp-num-section {
    padding: 40px 0 80px !important;
    background-color: var(--lp-bg-dark-gray) !important;
    position: relative;
    overflow: hidden;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

body.page-top .lp-num-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

body.page-top .lp-header-img-box {
    width: 120px;
    height: 120px;
    position: relative;
}

body.page-top .lp-header-img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body.page-top .lp-header-img-box .lp-header-img-1 {
    animation: lpImgStepSwitch 4s infinite;
}

body.page-top .lp-header-img-box .lp-header-img-2 {
    animation: lpImgStepSwitch 4s infinite;
    animation-delay: 2s;
    opacity: 0;
}

body.page-top .lp-num-title-box {
    text-align: center;
    z-index: 2;
}

body.page-top .lp-num-title-badge {
    background-color: var(--lp-red);
    color: var(--lp-bg-white);
    font-size: 2rem;
    font-weight: 900;
    padding: 15px 50px;
    border-radius: 100px;
    display: inline-block;
    line-height: 1.2;
    margin-bottom: 20px;
}

body.page-top .lp-num-desc {
    font-weight: 700;
    color: var(--lp-text-light);
    font-size: 1.1rem;
}

body.page-top .lp-num-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto auto;
    gap: 30px;
    position: relative;
}

body.page-top .lp-deco-changer {
    position: absolute;
    z-index: 20;
    pointer-events: none;
    width: 130px;
    height: 130px;
}

body.page-top .lp-deco-changer img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

body.page-top .lp-deco-changer .lp-deco-img-1 {
    animation: lpImgStepSwitch 4s infinite;
}

body.page-top .lp-deco-changer .lp-deco-img-2 {
    animation: lpImgStepSwitch 4s infinite;
    animation-delay: 2s;
    opacity: 0;
}

body.page-top .lp-deco-pos-1 {
    top: 22%;
    right: -40px;
    transform: rotate(15deg);
}

body.page-top .lp-deco-pos-2 {
    top: 38%;
    left: 28%;
    transform: rotate(-10deg);
}

body.page-top .lp-deco-pos-3 {
    bottom: -50px;
    right: 5%;
    transform: rotate(5deg);
}

body.page-top .lp-num-card {
    background: var(--lp-bg-white) !important;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: visible;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

body.page-top .lp-num-card h3, body.page-top .lp-num-card .lp-num-label-text {
    border: none !important;
    background: none !important;
    padding-bottom: 0 !important;
}

body.page-top .lp-num-card h3::before, body.page-top .lp-num-card h3::after, body.page-top .lp-num-card p::before, body.page-top .lp-num-card p::after {
    content: none !important;
    display: none !important;
}

body.page-top .lp-num-card div, body.page-top .lp-num-card p, body.page-top .lp-num-card span {
    border-bottom: none !important;
    background-image: none !important;
    box-shadow: none !important;
}

body.page-top .lp-card-members {
    grid-column: span 2;
    grid-row: span 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

body.page-top .lp-card-members-left {
    flex: 1;
}

body.page-top .lp-card-members-right {
    flex: 1;
    padding-left: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    border-left: 1px solid #eee;
    border-bottom: none !important;
    background: none !important;
}

body.page-top .lp-card-new {
    grid-column: span 1;
    grid-row: span 1;
}

body.page-top .lp-card-period {
    grid-column: span 1;
    grid-row: span 1;
}

body.page-top .lp-card-income {
    grid-column: span 2;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body.page-top .lp-card-gender {
    grid-column: span 3;
    grid-row: span 1;
}

body.page-top .lp-card-age {
    grid-column: span 3;
    grid-row: span 1;
}

body.page-top .lp-icon-diamond-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

body.page-top .lp-icon-diamond-wrap.lp-center {
    justify-content: center;
}

body.page-top .lp-icon-diamond-bg {
    width: 56px;
    height: 56px;
    background: var(--lp-red);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    flex-shrink: 0;
}

body.page-top .lp-icon-diamond-bg.is-blue {
    background: var(--lp-blue);
}

body.page-top .lp-icon-inner {
    width: 32px;
    height: 32px;
    fill: #ffffff !important;
    stroke: none !important;
}

body.page-top .lp-icon-diamond-bg svg, body.page-top .lp-icon-diamond-bg svg path {
    fill: #ffffff !important;
}

body.page-top .lp-num-big {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--lp-red);
    line-height: 1;
    letter-spacing: -2px;
    opacity: 0;
    transition: opacity 0.5s;
}

body.page-top .lp-num-big.is-blue {
    color: var(--lp-blue);
}

body.page-top .lp-num-big.is-visible {
    opacity: 1;
}

body.page-top .lp-num-label-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lp-text-light);
}

body.page-top .lp-num-label-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

body.page-top .lp-num-note-inline {
    font-size: 0.8rem;
    font-weight: normal;
    color: var(--lp-text-muted);
}

body.page-top .lp-num-unit {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lp-text);
    margin-left: 5px;
}

body.page-top .lp-num-value-row {
    margin: 5px 0;
}

body.page-top .lp-num-note {
    font-size: 0.8rem;
    color: var(--lp-text-muted);
    margin-top: 5px;
}

body.page-top .lp-num-card-center {
    text-align: center;
}

body.page-top .lp-no1-badge {
    background: #FFD700;
    color: var(--lp-text);
    font-weight: 900;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 5px;
    font-size: 1rem;
    transform: rotate(-2deg);
}

body.page-top .lp-circle-chart-box {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto;
    flex-shrink: 0;
}

body.page-top .lp-circle-chart-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

body.page-top .lp-circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 8;
}

body.page-top .lp-circle-val {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 251;
    stroke-dashoffset: 251;
    transition: stroke-dashoffset 2s ease-out;
}

body.page-top .lp-circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-weight: 900;
    line-height: 1;
}

body.page-top .lp-circle-num {
    font-size: 1.6rem;
    color: var(--lp-red);
    display: block;
}

body.page-top .lp-circle-num.is-blue {
    color: var(--lp-blue);
}

body.page-top .lp-circle-decimal {
    font-size: 0.9rem;
}

body.page-top .lp-circle-unit {
    font-size: 0.8rem;
    color: var(--lp-text);
}

body.page-top .lp-period-highlight {
    font-size: 0.9rem;
    color: var(--lp-red);
    font-weight: 700;
    margin-top: 10px;
    background: #fff0f5;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 10px;
}

body.page-top .lp-income-body {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    margin-top: 15px;
}

body.page-top .lp-income-text {
    text-align: left;
}

body.page-top .lp-income-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

body.page-top .lp-blue-big {
    color: var(--lp-blue);
    font-weight: 900;
    font-size: 1.6rem;
}

body.page-top .lp-gender-visual {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 40px;
    margin: 30px 0 10px;
}

body.page-top .lp-gender-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body.page-top .lp-gender-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    opacity: 1 !important;
}

body.page-top .lp-icon-woman {
    fill: var(--lp-red) !important;
}

body.page-top .lp-icon-man {
    fill: var(--lp-blue) !important;
}

body.page-top .lp-gender-percent {
    font-weight: 700;
    font-size: 1.2rem;
}

body.page-top .lp-gender-percent.is-red {
    color: var(--lp-red);
}

body.page-top .lp-gender-percent.is-blue {
    color: var(--lp-blue);
}

body.page-top .lp-gender-bar-area {
    flex: 1;
    margin: 0 20px;
}

body.page-top .lp-gender-bar-wrap {
    width: 100%;
    height: 36px;
    background: #ddd;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
}

body.page-top .lp-gender-bar-women {
    height: 100%;
    background: var(--lp-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-bg-white);
    font-weight: 700;
    font-size: 1rem;
    width: 0;
    transition: width 1.5s ease-out;
}

body.page-top .lp-gender-bar-men {
    height: 100%;
    background: var(--lp-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-bg-white);
    font-weight: 700;
    font-size: 1rem;
    width: 0;
    transition: width 1.5s ease-out;
}

body.page-top .lp-gender-note {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 10px;
}

body.page-top .lp-age-container {
    display: flex;
    gap: 50px;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

body.page-top .lp-age-group {
    flex: 1;
    min-width: 280px;
}

body.page-top .lp-age-head {
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 3px solid #ccc;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2rem;
}

body.page-top .lp-age-head.is-blue {
    color: var(--lp-blue);
    border-color: #90CAF9;
}

body.page-top .lp-age-head.is-red {
    color: var(--lp-red);
    border-color: #EF9A9A;
}

body.page-top .lp-age-head-icon {
    width: 30px;
    height: 30px;
}

body.page-top .lp-age-head.is-blue .lp-age-head-icon {
    fill: var(--lp-blue);
}

body.page-top .lp-age-head.is-red .lp-age-head-icon {
    fill: var(--lp-red);
}

body.page-top .lp-age-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

body.page-top .lp-age-label {
    width: 75px;
    font-weight: 700;
}

body.page-top .lp-age-bar-area {
    flex: 1;
    background: #ddd;
    height: 14px;
    border-radius: 7px;
    overflow: hidden;
    margin: 0 15px;
    position: relative;
}

body.page-top .lp-age-bar-fill {
    height: 100%;
    border-radius: 7px;
    width: 0;
    transition: width 1.2s ease-out;
}

body.page-top .lp-fill-women {
    background: var(--lp-red);
    opacity: 0.9;
}

body.page-top .lp-fill-men {
    background: var(--lp-blue);
    opacity: 0.9;
}

body.page-top .lp-age-val {
    width: 45px;
    text-align: right;
    font-weight: 900;
}

body.page-top .lp-age-summary {
    text-align: center;
    margin-top: 20px;
    font-weight: 700;
}

body.page-top .lp-num-disclaimer {
    margin-top: 40px;
    color: #999;
}

/* =========================================
   ql̐ZNV
   ========================================= */
body.page-top .lp-voice-section {
    padding: 100px 0;
    background-color: var(--lp-red) !important;
    color: var(--lp-bg-white);
    position: relative;
    overflow: hidden;
    margin-top: 0 !important;
}

body.page-top .lp-voice-thread-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

body.page-top .lp-thread-path-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 2;
    stroke-dasharray: 10 5;
}

body.page-top .lp-voice-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

body.page-top .lp-voice-bubble {
    display: inline-block;
    background: var(--lp-bg-white);
    color: var(--lp-red);
    font-size: 0.9rem;
    font-weight: 900;
    padding: 6px 18px;
    border-radius: 30px;
    position: relative;
    margin-bottom: 15px;
    font-family: sans-serif;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

body.page-top .lp-voice-bubble::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: var(--lp-bg-white) transparent transparent transparent;
}

body.page-top .lp-voice-ja {
    font-size: 2.2rem !important;
    font-weight: 900 !important;
    color: var(--lp-bg-white) !important;
    margin: 0 0 15px 0 !important;
    line-height: 1.2 !important;
}

body.page-top .lp-voice-thanks {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

body.page-top .lp-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

body.page-top .lp-voice-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--lp-bg-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s, background 0.2s;
    z-index: 10;
    flex-shrink: 0;
}

body.page-top .lp-voice-btn:hover {
    transform: scale(1.1);
    background: #FFF9C4;
}

body.page-top .lp-voice-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--lp-red);
}

body.page-top .lp-voice-track-window {
    width: 100%;
    max-width: 1000px;
    overflow: hidden;
    padding: 20px 10px;
}

body.page-top .lp-voice-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    padding-left: 10px;
    padding-right: 10px;
}

body.page-top .lp-voice-track::-webkit-scrollbar {
    display: none;
}

body.page-top .lp-voice-card {
    flex: 0 0 calc((100% - 60px) / 3);
    background: var(--lp-bg-white);
    color: var(--lp-text);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    scroll-snap-align: start;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

body.page-top .lp-voice-card:hover {
    transform: translateY(-5px);
}

body.page-top .lp-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 2px solid #f5f5f5;
    padding-bottom: 10px;
}

body.page-top .lp-user-attr {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--lp-red);
    background: var(--lp-bg-pink);
    padding: 4px 12px;
    border-radius: 20px;
}

body.page-top .lp-user-icon {
    width: 50px;
    height: 50px;
    background: #eee;
    border-radius: 50%;
    overflow: hidden;
}

body.page-top .lp-user-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.page-top .lp-card-body {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #444;
    flex: 1;
    margin-bottom: 15px;
    text-align: left;
}

body.page-top .lp-period-box {
    background: var(--lp-text);
    color: var(--lp-bg-white);
    text-align: center;
    padding: 8px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* =========================================
   ܂ł̗ZNV
   ========================================= */
body.page-top .lp-flow-section {
    padding: 120px 0;
    background-color: var(--lp-bg-white) !important;
    position: relative;
    overflow: hidden;
}

body.page-top .lp-stylish-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

body.page-top .lp-header-sub {
    font-family: var(--lp-font-script);
    font-size: 3rem;
    color: var(--lp-red);
    opacity: 0.2;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    white-space: nowrap;
    z-index: 0;
}

body.page-top .lp-header-main-box {
    position: relative;
    display: inline-block;
    z-index: 1;
}

body.page-top .lp-header-title {
    font-size: 2.2rem !important;
    font-weight: 900 !important;
    color: var(--lp-red) !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    letter-spacing: 0.05em !important;
}

body.page-top .lp-header-knot-deco {
    display: block;
    width: 60px;
    height: 4px;
    background: var(--lp-red);
    margin: 15px auto 0;
    position: relative;
    border-radius: 2px;
}

body.page-top .lp-timeline-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

body.page-top .lp-step-card-wide {
    width: 100%;
    background-color: var(--lp-bg-white);
    border: 3px dashed var(--lp-red);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    box-sizing: border-box;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body.page-top .lp-step-card-wide.is-visible {
    opacity: 1;
    transform: translateY(0);
}

body.page-top .lp-step-content {
    flex: 1;
    position: relative;
    padding-top: 10px;
}

body.page-top .lp-flow-number-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

body.page-top .lp-flow-circle {
    width: 50px;
    height: 50px;
    background: var(--lp-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-bg-white);
    font-family: var(--lp-font-oswald);
    font-size: 1.5rem;
    font-weight: 700;
    transform: rotate(-10deg);
}

body.page-top .lp-flow-text-sub {
    font-family: var(--lp-font-oswald);
    font-size: 1.2rem;
    color: var(--lp-red);
    font-weight: 700;
    letter-spacing: 0.1em;
}

body.page-top .lp-step-title {
    font-size: 1.6rem !important;
    font-weight: 900 !important;
    color: var(--lp-text) !important;
    margin-bottom: 15px !important;
    line-height: 1.4 !important;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    padding-bottom: 10px !important;
    display: inline-block !important;
    width: 100% !important;
}

body.page-top .lp-step-title::before, body.page-top .lp-step-title::after {
    content: none !important;
    display: none !important;
}

body.page-top .lp-step-desc {
    font-size: 0.95rem;
    color: var(--lp-text-light);
    line-height: 1.8;
}

body.page-top .lp-step-image {
    flex: 0 0 380px;
    width: 380px;
    height: 240px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #eee;
}

body.page-top .lp-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

body.page-top .lp-step-card-wide:hover .lp-step-image img {
    transform: scale(1.05);
}

body.page-top .lp-step-connector {
    width: 4px;
    height: 50px;
    position: relative;
    margin: 0 auto;
}

body.page-top .lp-connector-line {
    width: 2px;
    height: 100%;
    margin: 0 auto;
    background: repeating-linear-gradient(
        to bottom,
        var(--lp-red) 0,
        var(--lp-red) 5px,
        transparent 5px,
        transparent 10px
    );
}

body.page-top .lp-connector-knot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--lp-bg-white);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.page-top .lp-heart-icon {
    width: 20px;
    height: 20px;
    fill: var(--lp-red) !important;
}

body.page-top .lp-connector-knot svg path {
    fill: var(--lp-red) !important;
}

body.page-top .lp-flow-goal {
    width: 100%;
    background: #fff9e6;
    border: 6px solid var(--lp-bg-white);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    margin-top: 10px;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s;
}

body.page-top .lp-flow-goal.is-visible {
    opacity: 1;
    transform: scale(1);
}

body.page-top .lp-goal-img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
    animation: lpFloatY 3s ease-in-out infinite;
}

body.page-top .lp-goal-title {
    font-size: 2rem !important;
    font-weight: 900 !important;
    color: var(--lp-text) !important;
    margin-bottom: 10px !important;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
}

body.page-top .lp-goal-title::before, body.page-top .lp-goal-title::after {
    content: none !important;
    display: none !important;
}

body.page-top .lp-goal-text {
    font-weight: 700;
    color: var(--lp-red);
}

/* =========================================
   X|VuΉ
   ========================================= */
@media screen and (max-width: 960px) {
    body.page-top .lp-pc-img { display: none; }
    body.page-top .lp-sp-img { display: block; }
    
    body.page-top .lp-solve-arrow-top {
        border-width: 30px 40px 0 40px;
    }
    
    @keyframes quoteAppearLeft {
        0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
        100% { top: -20px; left: -10px; transform: scale(0.6); opacity: 1; }
    }
    
    @keyframes quoteAppearRight {
        0% { transform: translate(50%, 50%) rotate(180deg) scale(0); opacity: 0; }
        100% { bottom: -20px; right: -10px; transform: rotate(180deg) scale(0.6); opacity: 1; }
    }
    
    body.page-top .lp-reason-container {
        flex-direction: column;
    }
    
    body.page-top .lp-reason-left {
        width: 100%;
        position: static;
        transform: none;
        margin-bottom: 40px;
        text-align: center;
        padding-right: 0;
    }
    
    body.page-top .lp-reason-title {
        font-size: 1.8rem !important;
    }
    
    body.page-top .lp-reason-right {
        width: 100%;
    }
    
    body.page-top .lp-reason-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    body.page-top .lp-card-title {
        font-size: 1.5rem !important;
    }
    
    body.page-top .lp-card-num-wrapper {
        width: 60px;
        height: 60px;
        top: 15px;
        right: 15px;
    }
    
    body.page-top .lp-card-num {
        font-size: 2rem;
    }
    
    body.page-top .lp-reason-bg-thread-sp {
        display: block;
    }
    
    body.page-top .lp-price-title {
        font-size: 1.8rem !important;
    }
    
    body.page-top .lp-price-amount {
        font-size: 4rem;
    }
    
    body.page-top .lp-sub-price-grid {
        gap: 15px;
    }
    
    body.page-top .lp-sub-price-item {
        width: 120px;
        height: 120px;
    }
    
    body.page-top .lp-cheap-reason-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    body.page-top .lp-cheap-reason-box {
        min-height: auto;
    }
    
    body.page-top .lp-compare-header-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    body.page-top .lp-compare-header-text {
        text-align: center;
    }
    
    body.page-top .lp-compare-table {
        display: block;
        white-space: nowrap;
        overflow-x: auto;
        padding-bottom: 20px;
    }
    
    body.page-top .lp-compare-col {
        display: inline-block;
        width: 200px;
        white-space: normal;
        vertical-align: top;
        margin-right: 10px;
    }
    
    body.page-top .lp-col-main {
        transform: scale(1);
    }
    
    body.page-top .lp-badge {
        top: -15px;
        padding: 5px 20px;
        font-size: 0.9rem;
    }
    
    body.page-top .lp-summary-bg {
        padding: 30px 20px;
        border-radius: 40px 0 40px 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    body.page-top .lp-summary-top {
        gap: 5px;
        margin-bottom: 10px;
    }
    
    body.page-top .lp-summary-x {
        transform: rotate(90deg);
        margin: 5px 0;
        font-size: 1.1rem;
    }
    
    body.page-top .lp-summary-red-big {
        font-size: 1.4rem;
    }
    
    body.page-top .lp-summary-bottom {
        font-size: 1rem;
    }
    
    body.page-top .lp-text-highlight-black {
        font-size: 1.8rem;
        margin-top: 5px;
        padding-bottom: 15px;
    }
    
    body.page-top .lp-thread-underline {
        bottom: -5px;
        height: 20px;
    }
    
    body.page-top .lp-num-title-badge {
        font-size: 1.4rem;
        padding: 12px 30px;
    }
    
    body.page-top .lp-num-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    body.page-top .lp-deco-changer {
        width: 80px;
        height: 80px;
    }
    
    body.page-top .lp-deco-pos-1 {
        top: 5%;
        right: 5%;
    }
    
    body.page-top .lp-deco-pos-2 {
        top: 25%;
        left: 5%;
    }
    
    body.page-top .lp-deco-pos-3 {
        bottom: 5%;
        right: 10%;
    }
    
    body.page-top .lp-header-img-box {
        width: 80px;
        height: 80px;
    }
    
    body.page-top .lp-card-members, body.page-top .lp-card-new, body.page-top .lp-card-period, body.page-top .lp-card-income, body.page-top .lp-card-gender, body.page-top .lp-card-age {
        grid-column: span 1;
        grid-row: auto;
    }
    
    body.page-top .lp-card-members {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }
    
    body.page-top .lp-card-members-right {
        padding-left: 0;
        border-left: none;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }
    
    body.page-top .lp-card-income {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    body.page-top .lp-income-body {
        flex-direction: column;
        gap: 20px;
    }
    
    body.page-top .lp-income-text {
        text-align: center;
    }
    
    body.page-top .lp-num-big {
        font-size: 3rem;
    }
    
    body.page-top .lp-age-container {
        flex-direction: column;
        gap: 30px;
    }
    
    body.page-top .lp-gender-visual {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    body.page-top .lp-gender-icon {
        width: 60px;
        height: 60px;
    }
    
    body.page-top .lp-gender-bar-area {
        width: 100%;
        margin: 15px 0;
        order: 3;
    }
    
    body.page-top .lp-voice-header {
        margin-bottom: 30px;
    }
    
    body.page-top .lp-voice-ja {
        font-size: 1.8rem !important;
    }
    
    body.page-top .lp-slider-container {
        display: block;
        position: relative;
    }
    
    body.page-top .lp-voice-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
    }
    
    body.page-top .lp-voice-prev {
        left: -10px;
    }
    
    body.page-top .lp-voice-next {
        right: -10px;
    }
    
    body.page-top .lp-voice-card {
        flex: 0 0 260px;
    }
    
    body.page-top .lp-header-sub {
        font-size: 2.5rem;
    }
    
    body.page-top .lp-header-title {
        font-size: 1.8rem !important;
    }
    
    body.page-top .lp-step-card-wide {
        flex-direction: column-reverse;
        padding: 30px 20px;
        gap: 20px;
        align-items: center;
        border-width: 2px;
    }
    
    body.page-top .lp-step-content {
        width: 100%;
        text-align: left;
    }
    
    body.page-top .lp-step-image {
        width: 100%;
        flex: auto;
        height: 200px;
    }
    
    body.page-top .lp-flow-number-box {
        margin-bottom: 10px;
    }
    
    body.page-top .lp-flow-circle {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    body.page-top .lp-num-header {
        flex-direction: column;
        gap: 15px;
    }
    
    body.page-top .lp-header-img-box {
        display: block;
    }
}
/* =========================================
   CFz-indexKw̒
   ========================================= */
body.page-top .uni-fixed-layer {
    z-index: -1 !important;
}

body.page-top .lp-solve-section, body.page-top .lp-reason-section, body.page-top .lp-price-section, body.page-top .lp-cheap-reason-section, body.page-top .lp-promise-section, body.page-top .lp-compare-section, body.page-top .lp-num-section, body.page-top .lp-voice-section, body.page-top .lp-flow-section, body.page-top .lp-cta-section {
    position: relative;
    z-index: 1;
}

/* =========================================
   CFSwellofUCS폜
   ========================================= */
body.page-top .lp-worry-title {
    all: unset !important;
    display: block !important;
    font-family: 'Zen Maru Gothic', sans-serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    color: #333 !important;
    line-height: 1.5 !important;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

body.page-top .lp-worry-title::before, body.page-top .lp-worry-title::after {
    content: none !important;
    display: none !important;
}

/* =========================================
   ŏICFVv
   ========================================= */

/* XN[o[iŏj */
body.page-top .uni-wrapper {
    overflow: visible;
}

/* Œwi */
body.page-top .uni-fixed-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1 !important;
    pointer-events: none;
}

body.page-top .uni-about-wrapper {
    position: relative;
    z-index: 10;
    padding-bottom: 150px;
}

body.page-top .uni-about-wrapper::after {
    content: '';
    position: absolute;
    bottom: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: -1;
}

/* sNƐԂ̊Ԃ̌ԂSɏ */
body.page-top .lp-worry-section {
    position: relative;
    z-index: 20 !important;
    background-color: var(--lp-pink) !important;
    padding: 120px 0 120px 0 !important;
    margin: 0 !important;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
}

body.page-top .lp-worry-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

body.page-top .lp-solve-section {
    position: relative;
    background-color: var(--lp-red) !important;
    padding: 100px 20px 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0;
    text-align: center;
    z-index: 19;
    overflow: hidden;
    color: var(--lp-bg-white);
}

body.page-top .lp-solve-arrow-top {
    display: none !important;
}

/* SZNVԌԍ폜 */
body.page-top .lp-solve-section, body.page-top .lp-reason-section, body.page-top .lp-price-section, body.page-top .lp-cheap-reason-section, body.page-top .lp-promise-section, body.page-top .lp-compare-section, body.page-top .lp-num-section, body.page-top .lp-voice-section, body.page-top .lp-flow-section, body.page-top .lp-cta-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

body.page-top .lp-reason-section {
    margin-top: -1px !important;
}

/* ql̐XC_[ی */
body.page-top .lp-voice-track {
    overflow-x: auto !important;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

body.page-top .lp-voice-track::-webkit-scrollbar {
    display: none;
}

/* X}zΉ */
@media (max-width: 768px) {
    body.page-top .lp-worry-section {
        padding: 80px 0 80px 0 !important;
        margin: 0 !important;
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
    }
    
    body.page-top .lp-solve-section {
      padding: 80px 20px 0 !important;
    }
}

body.page-top .l-footer__foot {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
body.page-top .l-footer__foot {
    position: relative;
    z-index: 2;
    background-color: #D32F2F;
}

body.page-top #before_footer_widget {
    position: relative;
    z-index: 2;
    background-color: #D32F2F;
}

body.page-top .l-footer {
    position: relative;
    z-index: 2;
    margin-top: 0 !important;
    padding-top: 0 !important;
}
body.page-top .l-footer__inner {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body.page-top .l-mainContent, body.page-top #content {
    position: relative;
    z-index: 1;
}

body.page-top .swell-block-fullWide.u-mb-0 {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body.page-top .swell-block-fullWide + .lp-solve-section, body.page-top .swell-block-fullWide__inner + .lp-solve-section, body.page-top .uni-wrapper + .lp-solve-section {
    margin-top: -1px !important;
}

body.page-top .p-blogParts[data-partsid="4854"] {
    margin-bottom: 0 !important;
}

/* tChubN̔wiāAvfɔC */
body.page-top .swell-block-fullWide[style*="background-color:#ffffff"] {
    background-color: transparent !important;
}

/* uni-wrapper̕̌Ԃ𖄂߂ */
body.page-top .swell-block-fullWide__inner {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

body.page-top .swell-block-fullWide.u-mb-0 {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
/* FAQ/CTAރtChubÑO[wiԂ */
body.page-top .p-blogParts[data-partsid="4854"] > .swell-block-fullWide {
    background-color: #D32F2F !important;
}

/* uOp[ĉ̉] */
body.page-top .p-blogParts[data-partsid="4854"] {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* post_contentȍ~tb^[܂ł̌Ԃ */
body.page-top .post_content {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body.page-top .l-mainContent__inner {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body.page-top .l-mainContent {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body.page-top #content {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* tb^[㕔before_footer_widgetԔwi */
body.page-top #before_footer_widget {
    background-color: #D32F2F;
    position: relative;
    z-index: 2;
}

/* tb^[ */
body.page-top .l-footer {
    position: relative;
    z-index: 2;
    margin-top: 0 !important;
}

body.page-top .l-footer__inner {
    padding-top: 0 !important;
}

body.page-top .l-footer__foot {
    position: relative;
    z-index: 2;
    background-color: #D32F2F;
}
/* uOp[c̃tChubÑO[wiԂ */
body.page-top .p-blogParts[data-partsid="4854"] > .swell-block-fullWide {
    background-color: #D32F2F !important;
}

/* uOp[ĉ̗] */
body.page-top .p-blogParts[data-partsid="4854"] {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* #contentȍ~ׂĐԔwiœhԂAŒwiB */
body.page-top #content {
    position: relative;
    z-index: 1;
}

body.page-top .l-mainContent {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body.page-top .l-mainContent__inner {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body.page-top .post_content {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* CTA̐ԂtChubN̊O܂ŉ */
body.page-top .meltia-footer-full-wrapper {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body.page-top .meltea-cta-section {
    margin-bottom: 0 !important;
}

/* FAQ/CTAރtChubN̔wi */
body.page-top .post_content > .swell-block-fullWide:last-child {
    background-color: #D32F2F !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* before_footer_widget */
body.page-top #before_footer_widget {
    background-color: #D32F2F;
    position: relative;
    z-index: 2;
}

/* tb^[ */
body.page-top .l-footer {
    position: relative;
    z-index: 2;
    margin-top: 0 !important;
}

body.page-top .l-footer__inner {
    padding-top: 0 !important;
}

body.page-top .l-footer__foot {
    background-color: #D32F2F;
}
body.page-top .uni-fv-area {
    padding-top: 250px !important;
}
body.page-top .uni-fixed-layer {
    top: 80px !important;
}

@media (max-width: 768px) {
    body.page-top .uni-fixed-layer {
        top: 0 !important;
    }
}
@media (max-width: 768px) {
    body.page-top .uni-fv-area {
        padding-top: 0 !important;
        margin-top: -30px !important;
    }
}
@media (max-width: 768px) {
    body.page-top .lp-compare-table {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        overflow: visible !important;
        gap: 15px;
    }

    body.page-top .lp-compare-col {
        width: 100% !important;
        min-width: 100% !important;
        flex-shrink: 0 !important;
        display: block !important;
    }

    body.page-top .lp-col-main {
        order: -1;
    }
}

/* shop */
/* SWELLp[c\ */
body.page-shop #header, body.page-shop #header-sp, body.page-shop .l-fixHeader, body.page-shop .l-sidebar, body.page-shop .l-footer, body.page-shop .l-footer__foot, body.page-shop .p-fixBtnContents, body.page-shop #before_footer_widget, body.page-shop .w-beforeFooter { 
    display: none !important; 
}

/* y[WŜ̔wiݒ */
body.page-shop, body.page-shop, body.page-shop #wrapper, body.page-shop #content, body.page-shop .l-main, body.page-shop .l-main__inner, body.page-shop .l-container, body.page-shop .l-mainContainer {
    background-color: #050505 !important;
    background-image: none !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.page-shop #bg-canvas {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 0; pointer-events: none;
}

:root {
    --bg-color: #050505;
    --primary: #0ff;
    --secondary: #f0f;
    --text-color: #e0e0e0;
}

body.page-shop .neon-portfolio-wrapper {
    position: relative; z-index: 5; color: var(--text-color); font-family: 'Orbitron', 'Noto Sans JP', sans-serif;
}

body.page-shop .neon-portfolio-container { max-width: 1100px; margin: 0 auto; padding: 2rem; }

/* Role & Bio */
body.page-shop .site-role {
    font-size: 0.9rem; color: var(--primary); border: 1px solid var(--primary); padding: 0.4rem 1rem;
    margin-bottom: 1.5rem; display: inline-block; background: rgba(0, 255, 255, 0.1);
}

body.page-shop .site-title {
    font-weight: 900 !important; color: #fff !important;
    text-shadow: 0 0 10px var(--primary), 2px 2px 0 var(--secondary); margin: 0 !important; line-height: 1.2;
}

body.page-shop .site-bio {
    max-width: 600px; border-left: 3px solid var(--secondary); padding-left: 1.5rem;
    margin-top: 1.5rem; line-height: 1.8; color: #ccc;
}

/* M[Obh */
body.page-shop .gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }

body.page-shop .card { 
    background: rgba(15, 15, 15, 0.9); 
    border: 1px solid #333; 
    opacity: 0; transform: translateY(30px); 
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); 
    cursor: pointer; 
    position: relative;
    overflow: hidden;
}

body.page-shop .card.is-visible { opacity: 1; transform: translateY(0); }

/* zo[̎lI */
body.page-shop .card:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
    transform: translateY(-5px);
}

body.page-shop .card-img-container { aspect-ratio: 16 / 9; overflow: hidden; }
body.page-shop .card-img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: 0.6s; }
body.page-shop .card:hover .card-img { filter: grayscale(0); transform: scale(1.1); }
body.page-shop .card-info { padding: 1.2rem; }

/* iFуZ[ */
body.page-shop .price-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

body.page-shop .old-price {
    text-decoration: line-through double #ff0000;
    opacity: 0.6;
    font-size: 0.75rem;
    color: #fff;
    white-space: nowrap;
}

body.page-shop .sale-price {
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
    white-space: nowrap;
    text-shadow: 
        0 0 5px #fff,
        0 0 10px var(--secondary),
        0 0 20px var(--secondary),
        0 0 40px #ff00ff;
    padding: 2px 8px;
    background: rgba(255, 0, 255, 0.15);
    border: 1px solid var(--secondary);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.4);
}

/* ZNV^Cg */
body.page-shop .neon-section-header { margin: 10rem 0 3rem; border-bottom: 1px solid #333; padding-bottom: 1rem; }
body.page-shop .neon-section-title { font-size: 2rem !important; color: var(--primary) !important; opacity: 0; }
body.page-shop .neon-section-title .letter { display: inline-block; }

/* eLXgRec */
body.page-shop .text-content-wrapper { background: rgba(20, 20, 20, 0.8); border-left: 4px solid var(--primary); padding: 2.5rem; opacity: 0; transform: translateY(20px); transition: 0.8s; }
body.page-shop .text-content-wrapper.is-visible { opacity: 1; transform: translateY(0); }

/* N */
body.page-shop .link-list { list-style: none !important; padding: 0 !important; display: flex; justify-content: center; gap: 1.5rem; margin: 5rem 0 0; flex-wrap: wrap; }
body.page-shop .link-item a { color: #fff !important; text-decoration: none !important; border: 1px solid transparent; padding: 0.5rem 1rem; transition: 0.3s; font-size: 0.9rem; }
body.page-shop .link-item a:hover { color: var(--primary) !important; border-color: var(--primary); box-shadow: 0 0 10px var(--primary); }

/* [_ */
body.page-shop .neon-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95); z-index: 100000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: 0.3s;
}
body.page-shop .neon-modal.active { opacity: 1; visibility: visible; }
body.page-shop .modal-inner { width: 95%; max-width: 900px; background: #000; position: relative; border: 1px solid var(--secondary); }
body.page-shop .close-btn { position: absolute; top: -50px; right: 0; background:none; border:none; color:#fff; font-size:3rem; cursor:pointer; }

/* X}zXN[̔`΍ */
body.page-shop {
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
    background-color: #050505 !important;
}

body.page-shop {
    overscroll-behavior: none;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    background-color: #050505 !important;
}

body.page-shop #bg-canvas {
    background-color: #050505;
}

/* ============================================================
   90. SWELL静的ブロック互換（移行記事・full-wide ラッパー用 最小CSS）
   - blog-parts(動的)はfunctions.phpのフィルタで救済済
   - 以下は本文に静的HTMLが保存される SWELLブロック（full-wide/button/column）の最小再現
   ============================================================ */
.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.swell-block-fullWide { width: 100%; }
/* ⚠️ alignfull の全幅(100vw)を .swell-block-fullWide{width:100%} に負けさせない。
   負けると width=コンテンツ幅(スクロールバー除く)のまま margin-left:calc(50%-50vw)で
   左にずれ、右端にスクロールバー幅/2の隙間ができて固定背景が漏れる（Windowsのみ） */
.swell-block-fullWide.alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
/* contentSize:full（プレーンな __inner）は全幅。l-article 付きのみ中央寄せ制限。 */
.swell-block-fullWide__inner { width: 100%; }
.swell-block-fullWide__inner.l-article {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* SWELL py/pt ユーティリティ（記事内 full-wide の余白用・代表値のみ） */
.pc-py-0 { padding-block: 0; }
.pc-py-40 { padding-block: 40px; }
.pc-py-60 { padding-block: 60px; }
.pc-py-80 { padding-block: 80px; }
@media (max-width: 768px) {
  .sp-py-0 { padding-block: 0; }
  .sp-py-40 { padding-block: 40px; }
  .sp-py-60 { padding-block: 60px; }
}

/* ボタン */
.swell-block-button { text-align: center; margin: 1.6em 0; }
.swell-block-button__link {
  display: inline-flex; align-items: center; justify-content: center; gap: .4em;
  padding: .9em 2.2em; border-radius: 8px;
  background: var(--m-red-deep); color: #fff; text-decoration: none; font-weight: 700;
  box-shadow: 0 3px 0 rgba(0,0,0,.15); transition: opacity .2s ease, transform .2s ease;
}
.swell-block-button__link:hover { opacity: .9; transform: translateY(-1px); }
.swell-block-button.is-style-btn_line .swell-block-button__link { background: #06c755; }

/* カラム */
.swell-block-columns { display: flex; gap: 24px; flex-wrap: wrap; align-items: stretch; }
.swell-block-column { flex: 1 1 0; min-width: 240px; }
@media (max-width: 768px) {
  .swell-block-columns { flex-direction: column; gap: 16px; }
  .swell-block-column { min-width: 0; }
}

/* full（旧 full-wide 別名） */
.swell-block-full { width: 100%; }

/* 背景画像系（full-wideの -fixbg / has-bg-img）。背景画像は main.js が data-bg から付与 */
.has-bg-img { background-size: cover; background-position: center; background-repeat: no-repeat; }
.-fixbg { background-attachment: fixed; }
.pc_only { } .sp_only { }
@media (max-width: 768px) { .pc_only { display: none !important; } }
@media (min-width: 769px) { .sp_only { display: none !important; } }

/* SWELL ブロックスタイル / フォントユーティリティ（contact/confirm/thanks/privacy/特商法 の見出し用）
   ※ SWELL撤去で失われるため最小再現。本番計測値に一致させる */
.is-style-section_ttl {
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
  font-size: 1.4rem;
  margin-bottom: 2.2rem;
}
.swl-fz { line-height: 1.4; }
.u-fz-xl { font-size: 1.6em; }   /* CONTACT等の大見出し（1.4rem×1.6≈35.8px・本番一致） */
.u-fz-l  { font-size: 1.25em; }
.u-fz-s  { font-size: 0.9em; }   /* 無料相談等のサブ（≈20px・本番一致） */
.u-fz-xs { font-size: 0.78em; }
.has-small-font-size { font-size: 0.9rem; }
.has-xs-font-size { font-size: 0.78rem; }
.has-text-align-center { text-align: center; }
/* SWELL の左ボーダー見出し（privacy/特商法の条項見出し） */
.is-style-border_left { border-left: 4px solid var(--m-red-deep, #D32F2F); padding-left: .6em; font-weight: 700; }

/* CF7 お問い合わせ入力欄：custom_cssはbg/幅のみ指定でpadding/border/radius/fontはSWELL既定頼み。
   TTFではブラウザ既定(薄い)になるため、本番(SWELL)の見た目を補う（padding4px8px/border1px/radius4px/16px） */
#cf7-area input[type="text"],
#cf7-area input[type="email"],
#cf7-area input[type="datetime-local"],
#cf7-area input[type="date"],
#cf7-area input[type="tel"],
#cf7-area input[type="number"],
#cf7-area textarea,
#cf7-area select {
  padding: 6px 10px;
  border: 1px solid #e3c9cd;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.6;
  box-sizing: border-box;
}
/* 必須/任意バッジを角丸に（本番一致） */
.cf7-req, .cf7-opt { border-radius: 4px; }

/* ============================================================
   95. ブログ（single / 一覧 / アーカイブ）— メルティア赤・1カラム
   - 本文は標準Gutenbergコアブロック（heading/paragraph/list/image等）
   - 共通ヘッダーが position:fixed のため上部に余白を確保
   ============================================================ */
:root { --m-blog-max: 760px; --m-list-max: 1100px; --m-header-h: 86px; }

.m-blog-wrap {
  font-family: var(--m-font);
  color: var(--m-ink);
  padding: calc(var(--m-header-h) + 32px) 20px 80px;
  max-width: var(--m-blog-max);
  margin: 0 auto;
}
.m-blog-wrap.m-blog-list { max-width: var(--m-list-max); }

/* パンくず */
.m-breadcrumb { font-size: 13px; color: var(--m-sub); margin-bottom: 22px; }
.m-breadcrumb a { color: var(--m-red-deep); text-decoration: none; }
.m-breadcrumb a:hover { text-decoration: underline; }
.m-breadcrumb span.sep { margin: 0 8px; color: #bbb; }

/* ===== 記事ヘッダー ===== */
.m-article-head { margin-bottom: 28px; }
.m-article-cat {
  display: inline-block; background: var(--m-red-deep); color: #fff;
  font-size: 12px; font-weight: 700; padding: 5px 16px; border-radius: 100px; margin-bottom: 14px;
}
.m-article-title {
  font-size: 28px; font-weight: 900; line-height: 1.5; color: var(--m-ink); margin: 0 0 12px;
}
.m-article-meta { font-size: 13px; color: var(--m-sub); }
.m-article-eyecatch { margin: 22px 0 0; }
.m-article-eyecatch img { width: 100%; border-radius: 16px; display: block; }

/* ===== 目次（JS生成） ===== */
.m-toc {
  background: var(--m-pink-soft); border: 2px solid #FEECEF; border-radius: 16px;
  padding: 20px 24px; margin: 28px 0; display: none;
}
.m-toc.is-on { display: block; }
.m-toc-ttl { font-weight: 900; color: var(--m-red-deep); margin: 0 0 10px; font-size: 16px; }
.m-toc ul { margin: 0; padding-left: 1.1em; }
.m-toc li { margin: 6px 0; line-height: 1.5; }
.m-toc li.lv3 { margin-left: 1em; font-size: .94em; list-style: circle; }
.m-toc a { color: var(--m-ink); text-decoration: none; }
.m-toc a:hover { color: var(--m-red-deep); text-decoration: underline; }

/* ===== 本文タイポグラフィ ===== */
.m-article-body { font-size: 16.5px; line-height: 1.95; color: #2c2c2c; }
.m-article-body > * { margin-top: 0; margin-bottom: 1.4em; }
.m-article-body h2 {
  font-size: 23px; font-weight: 900; line-height: 1.45; color: var(--m-ink);
  margin: 2.2em 0 1em; padding: 14px 18px; background: var(--m-pink-soft);
  border-left: 7px solid var(--m-red-deep); border-radius: 6px;
}
.m-article-body h3 {
  font-size: 19.5px; font-weight: 800; color: var(--m-ink);
  margin: 1.9em 0 .8em; padding-bottom: 8px; border-bottom: 2px dotted #f3b8be;
}
.m-article-body h4 { font-size: 17px; font-weight: 800; margin: 1.6em 0 .6em; color: var(--m-red-deep); }
.m-article-body p { margin: 0 0 1.4em; }
.m-article-body a { color: var(--m-red-deep); text-decoration: underline; word-break: break-word; }
.m-article-body img { border-radius: 12px; }
.m-article-body figure { margin: 1.6em 0; }
.m-article-body ul, .m-article-body ol { padding-left: 1.6em; margin: 0 0 1.4em; }
.m-article-body li { margin: .5em 0; }
.m-article-body ul li::marker { color: var(--m-red-deep); }
.m-article-body blockquote {
  margin: 1.6em 0; padding: 16px 22px; background: #faf7f7;
  border-left: 5px solid #ddd; color: #555; border-radius: 6px;
}
.m-article-body hr.wp-block-separator,
.m-article-body hr { border: none; border-top: 2px dashed #f0c9cd; margin: 2.2em 0; }
.m-article-body .wp-block-table table { width: 100%; border-collapse: collapse; }
.m-article-body .wp-block-table td, .m-article-body .wp-block-table th {
  border: 1px solid #e7d7d9; padding: 10px 12px;
}
.m-article-body strong { color: var(--m-red-deep); }

/* ===== 関連記事 ===== */
.m-related { margin-top: 56px; }
.m-related-ttl {
  display: flex; align-items: center; gap: 12px; font-size: 20px; font-weight: 900;
  color: var(--m-ink); margin: 0 0 22px;
}
.m-related-ttl::before { content: ""; width: 10px; height: 28px; background: var(--m-red-deep); border-radius: 4px; }

/* ===== カードグリッド（一覧・アーカイブ・関連） ===== */
.m-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 24px; }
.m-card {
  display: flex; flex-direction: column; background: #fff; border: 2px solid #f1f1f1;
  border-radius: 18px; overflow: hidden; text-decoration: none; color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.m-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(211,47,47,.10); border-color: #f6c9ce; }
.m-card-thumb { aspect-ratio: 16 / 10; background: #f6f0f0; overflow: hidden; }
.m-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.m-card-noimg { display: flex; align-items: center; justify-content: center; color: #d8b6b9; font-weight: 900; font-size: 22px; }
.m-card-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.m-card-cat { align-self: flex-start; background: var(--m-pink-bg); color: var(--m-red-deep); font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 100px; }
.m-card-title { font-size: 16px; font-weight: 800; line-height: 1.55; margin: 0; color: var(--m-ink); }
.m-card-excerpt { font-size: 13px; color: var(--m-sub); line-height: 1.7; margin: 0; }
.m-card-date { font-size: 12px; color: #999; margin-top: auto; }

.m-blog-listtitle {
  display: flex; align-items: center; gap: 14px; font-size: 26px; font-weight: 900;
  color: var(--m-ink); margin: 0 0 30px;
}
.m-blog-listtitle::before { content: ""; width: 12px; height: 34px; background: var(--m-red-deep); border-radius: 4px; }

/* ページネーション */
.m-pager { display: flex; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.m-pager .page-numbers {
  display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px;
  padding: 0 12px; border-radius: 10px; border: 2px solid #eee; color: var(--m-ink);
  text-decoration: none; font-weight: 700; transition: .2s;
}
.m-pager .page-numbers.current { background: var(--m-red-deep); color: #fff; border-color: var(--m-red-deep); }
.m-pager .page-numbers:hover:not(.current) { border-color: var(--m-red-deep); color: var(--m-red-deep); }

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  .m-blog-wrap { padding: calc(var(--m-header-h) + 12px) 16px 60px; }
  .m-article-title { font-size: 23px; }
  .m-article-body { font-size: 16px; }
  .m-article-body h2 { font-size: 20px; }
  .m-article-body h3 { font-size: 17.5px; }
  .m-card-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 14px; }
  .m-card-title { font-size: 14px; }
  .m-card-excerpt { display: none; }
}
@media (max-width: 480px) {
  .m-card-grid { grid-template-columns: 1fr; }
  .m-card-excerpt { display: block; }
}

/* ============================================================
   96. 共通フッター（全ページ最小・著作権＋ナビ）
   ※ TOPの大型フッター（質問＋赤CTA）はTOP本文に内包。これはその下の最小フッター
   ============================================================ */
.m-site-footer {
  background: #2b2b2b; color: #fff; padding: 44px 20px;
  font-family: var(--m-font);
}
.m-site-footer__inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.m-site-footer__logo { display: inline-block; margin-bottom: 18px; }
.m-site-footer__logo img { height: 46px; width: auto; filter: brightness(0) invert(1); }
.m-site-footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; margin-bottom: 18px; }
.m-site-footer__nav a { color: rgba(255,255,255,.85); text-decoration: none; font-size: 14px; font-weight: 700; }
.m-site-footer__nav a:hover { color: #fff; text-decoration: underline; }
.m-site-footer__copy { font-size: 12px; color: rgba(255,255,255,.55); margin: 0; }

/* ============================================================
   99. レビュー反映ラウンド2（2026-06-28・TOP PC 微調整）
   ※ site.css の最後に連結（後勝ち）。ページ別はbody.page-topで限定
   ============================================================ */

/* ① FV注釈の回り込み：白いABOUTカードを少し下げて ※2行 との被りを解消 */
body.page-top .uni-about-wrapper { margin-top: 64px; }

/* ③ 横スクロール余白：width:100vw の全幅要素がスクロールバー幅(約15px)分はみ出すのを抑制。
   overflow-x:clip は scroll container を作らないので position:sticky を壊さない（hiddenはNG） */
/* PC：bodyのclipでスクロールバー幅の横はみ出しを抑制（clipはsticky非破壊）。 */
body { overflow-x: clip; }
/* SP：fixed/absolute要素がモバイルでレイアウトビューポートを広げて横スクロールを誘発するため、
   モバイル限定で html を clip（PCは>768pxで除外＝選ばれる理由のstickyを壊さない。
   モバイルはreasonが縦積みでsticky不要なので html clip でOK）。本番SWELLのラッパー封じの補填 */
@media (max-width: 768px) {
  html { overflow-x: clip; }
}
body.page-top .uni-fixed-layer { overflow: hidden; }

/* ④ 比較表「オススメ」バッジが「メルティア」文字と被るので上へ移動 */
body.page-top .lp-badge { top: -36px; }

/* ⑤ 数字セクションのフットノート（※No.1 / ※データは）を小さく */
body.page-top .lp-disclaimer { font-size: 11px; line-height: 1.6; color: #999; }

/* ⑥ フッターをCTAと同じ赤に＋CTAとフッターの間隔を詰める */
.m-site-footer { background: #D32F2F; padding-top: 20px; padding-bottom: 32px; }
.m-site-footer__nav a { color: rgba(255,255,255,.92); }
.m-site-footer__nav a:hover { color: #fff; }
.m-site-footer__copy { color: rgba(255,255,255,.7); }
body.page-top .meltea-cta-section { padding-bottom: 24px !important; }

/* Q&A：開いたときに Q と A の間に出る線（黒く見える）を消す＋フォーカス枠も消す */
body.page-top .m-faq-item.active .m-faq-a-area { border-top: none !important; }
body.page-top .m-faq-q-btn:focus,
body.page-top .m-faq-q-btn:focus-visible { outline: none !important; box-shadow: none !important; }

/* ===== SP 細部（2026-06-28 レビュー） ===== */
/* 追従CTA（cta-white-box・position:fixed z-index:99999）が ABOUT(z10)/お悩み(z20)/解決(z19) に
   覆われる根本原因＝親 .meltia-footer-full-wrapper の z-index:2 がスタッキングコンテキストを作り
   CTAを閉じ込めていたこと。footerラッパーの z-index を auto にしてコンテキストを解除し、
   CTAを最上位(root)へ解放する（高specificityで4854インラインstyleに勝つ） */
body.page-top .meltia-footer-full-wrapper,
body.page-top .meltea-cta-section .cta-inner-container { z-index: auto !important; }

@media (max-width: 768px) {
  /* フッターナビを小さく1行表示（改行させない） */
  .m-site-footer__nav { flex-wrap: nowrap; gap: 0 13px; }
  .m-site-footer__nav a { font-size: 11px; white-space: nowrap; }
  /* 追従CTA(下部固定 約80px)とフッター文字が被るので、フッター下に余白を足して上へ逃がす */
  .m-site-footer { padding-bottom: 100px; }
}

/* ===== お問い合わせ関連（contact/confirm/thanks）細部（2026-06-29） ===== */
/* プライバシーポリシー リンク：下線を消して水色(#39A0FF)に（本番一致・PC/SP両方） */
.cf7-accept-check a { color: #39A0FF !important; text-decoration: none !important; }
/* PC：見出し(CONTACT等)がヘッダーに近すぎて被るので、本文ブロック上に余白を足して下げる
   （本番は padding-top 96px＋余白でヘッダー下228px。STGも本番のゆとりに合わせる） */
@media (min-width: 769px) {
  body.page-contact .swell-block-fullWide.has-bg-img,
  body.page-confirm .swell-block-fullWide.has-bg-img,
  body.page-thanks  .swell-block-fullWide.has-bg-img { padding-top: 200px; }
}

/* ===== 97. 規約ページ（特商法 page-tokushoho / プライバシー page-policy）=====
   SWELLブロックスタイル(is-style-big_icon_point / has-border -border04)が
   TTFで無効化され全幅・無装飾化していたのを簡易整理。
   方針：読み物カラム＋素直な白カード＋赤アクセント見出し（TOP/ブログ踏襲・派手装飾なし）。
   ※ site.css 末尾に連結（後勝ち）。再ビルド時もこのファイルを最後に append する。 */

body.page-tokushoho .m-main,
body.page-policy .m-main {
  max-width: 860px;
  margin: 0 auto;
  padding: calc(var(--m-header-h) + 32px) 20px 96px;
  color: #2c2c2c;
  font-size: 16px;
  line-height: 1.95;
}

/* 先頭の巨大spacer(100px/114px)を詰める */
body.page-tokushoho .m-main .wp-block-spacer,
body.page-policy .m-main .wp-block-spacer { height: 4px !important; }

/* SWELLの囲みグループを素直な白カードに（直下のみ＝ネスト二重枠を回避） */
body.page-tokushoho .m-main > .wp-block-group,
body.page-policy .m-main > .wp-block-group {
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 32px;
  background: #fff;
  border: 1px solid #f0d9dc;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(211,47,47,.05);
}

/* 段落間隔 */
body.page-tokushoho .m-main p,
body.page-policy .m-main p { margin: 0 0 1.4em; }
body.page-tokushoho .m-main p:last-child,
body.page-policy .m-main p:last-child { margin-bottom: 0; }

/* 条文見出し（swl-fz u-fz-xl / u-fz-l のスパン）を赤アクセントで強調＝TOP/ブログ踏襲 */
body.page-tokushoho .m-main .swl-fz,
body.page-policy .m-main .swl-fz {
  display: inline-block;
  font-weight: 800;
  color: #b71c1c;
  line-height: 1.5;
  margin-top: .2em;
}

/* リンク */
body.page-tokushoho .m-main a,
body.page-policy .m-main a {
  color: #b71c1c;
  text-decoration: underline;
  word-break: break-word;
}

@media (max-width: 768px) {
  body.page-tokushoho .m-main,
  body.page-policy .m-main { padding: calc(var(--m-header-h) + 16px) 16px 72px; }
  body.page-tokushoho .m-main > .wp-block-group,
  body.page-policy .m-main > .wp-block-group { padding: 22px 18px; }
}
