        :root {
        --gold-color: #DAA520;
        --silver-color:#9b9b9b;
        --bronze-color: #B17F59;
        --cocoon-red-color: #e60033;
        }
        .red {color: var(--cocoon-red-color);}
        .marker-under {background: linear-gradient(transparent 60%, #ff9 60%);}
        img {max-width: 100%; height: auto;}
        ul {list-style-type: none;}
        body.lp-body {
            margin: 0;
            font-family: 'Noto Serif JP', serif; /* メインフォントとして明朝体を使用 */
            line-height: 1.6;
            color: #190A05; /* 全体的に暗めの文字色 */
            background-color: #f4f5f7; /* 暗めの背景色 */
            word-wrap: break-word; /* 長い単語の折り返し */
        }
       div.logo-image {display: none !important;}
        /* 見出しタグへのクラス指定をより詳細に */
        .content {margin: 0;}
        .container .lp-heading-primary,
        .container .lp-heading-secondary,
        .container .lp-heading-tertiary,
        .container .lp-heading-quaternary {
            font-family: 'Crimson Text', serif; /* 見出しに装飾的なフォントを使用 */
            color: #000;
            text-align: center;
            margin-bottom: 20px;
            word-break: break-word; /* 見出しの長い単語も折り返し */
        }

        .container .lp-heading-primary { font-size: 2.5em; }
        .container .lp-heading-secondary { font-size: 1.5em; font-weight: bold; letter-spacing: 3px;}
        .container .lp-heading-tertiary { font-size: 1.5em; }
        .container .lp-heading-quaternary { font-size: 1.2em; } /* h4のサイズを追加 */
        .lp-heading-secondary span.catchphrase {font-size: 1.3em;}
        .container .color-white {color: #fff; margin-bottom: 10px; padding-bottom: 10px;}
        .container .color-black {color: #000; margin-bottom: 10px; padding-bottom}
        /*.container .ranking-title {border-bottom: 1px solid #fff;}*/
        .ranking-title {color: #190A05 !important; text-align: center !important; margin-bottom: 5px !important;}
        .ranking-title img {text-align: left; width: 40px; vertical-align: bottom;}
        /* 段落タグへのスタイルも詳細度を上げる */
        .container p {
            margin-bottom: 5px;
            text-align: justify; /* 段落を両端揃えに */
        }
        .container {
            max-width: 960px; /* コンテンツの最大幅 */
            margin: 0 auto; /* 中央寄せ */
            padding: 0 20px; /* 左右に余白 */
            box-sizing: border-box; /* パディングを幅に含める */
        }

        .section {
            padding: 60px 0; /* セクション上下の余白 */
        }

        .section:last-child {
            border-bottom: none; /* 最後のセクションは区切り線なし */
        }

        /* ボタンのスタイルも詳細度を上げる */
        .container .btn {
            display: inline-block;
            background-color: #C20033;
            color: #fff; /* ボタンの文字色 */
            padding: 12px 55px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s ease;
            text-align: center;
            margin-top: 40px;
            word-break: break-word; /* ボタン内のテキスト折り返し */
            border: 1px solid #C20033;
            border-radius: 0;
            font-family: 'Crimson Text', serif;
            border-radius: 50px;
        }

        .container .btn-black {
            display: block;
            background-color: rgba(255,0,0,0);
            color: #190A05; /* ボタンの文字色 */
            padding: 12px 25px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s ease;
            text-align: center;
            margin-top: 40px;
            word-break: break-word; /* ボタン内のテキスト折り返し */
            border: 1px solid #190A05;
            border-radius: 0;
            margin: 40px auto auto auto;
            max-width: 250px;
            border-radius: 50px;
        }

        .container .product-btn{
            display: block;
            background-color: rgba(255,0,0,0);
            color: #000; /* ボタンの文字色 */
            padding: 12px 25px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s ease;
            text-align: center;
            margin: 0 auto 30px auto;
            word-break: break-word; /* ボタン内のテキスト折り返し */
            border: 1px solid #000;
            border-radius: 0;
            max-width: 250px;
        }

        .container .btn:hover {
            background-color: transparent;
            border: 0;
            color: #C20033;
            opacity: 1;
            border: 1px solid #C20033;
        }

        .container .btn-black:hover {
            background-color: #ff4d82; /* ホバー時の色 */
            border: 0;
            color: #fff;
        }

        /* ファーストビュー (FV) スタイル */
        .fv {
            color: #fff; /* FV内の文字色は明るく */
            text-align: center;
        }

        /*.fv .container {
            position: relative;
            display: inline-block;
        }*/

        /* FV内のH1にクラス指定を適用（詳細度を上げる） */
        .fv .container .lp-heading-primary {
            color: #fff; /* FVのH1は白 */
            margin-bottom: 10px;
        }

        /* FV内のPにスタイル適用（詳細度を上げる） */
        .fv .container p {
            font-size: 1.2em;
            margin-bottom: 30px;
        }

        /**.fv .container a.btn {position: absolute; top: 0; left: 0;}**/
        .fv .container .btn {margin: 30px auto 0 auto;}

        /* ランキングセクション スタイル */
        .ranking-list {list-style: none; padding: 0;}

        .ranking-item {
            background-color: #2a2a2a; /* ランキング項目の背景色 */
            margin-bottom: 30px;
            padding: 30px;
            border-radius: 8px;
            border: 1px solid #444;
            position: relative; /* 順位バッジ用 */
            overflow: hidden; /* バッジがはみ出さないように */
        }

        /* ランキング項目のH3にクラス指定を適用（詳細度を上げる） */
        .ranking-item .lp-heading-tertiary {
            margin-top: 0;
            margin-bottom: 10px;
            color: #e0c080; /* ゴールド系の色 */
        }

        .ranking-item .rank-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: #DAA520; /* 順位バッジの色 */
            color: #1a1a1a;
            padding: 5px 10px;
            border-radius: 5px;
            font-weight: bold;
            z-index: 1; /* 他の要素より手前に表示 */
        }
        .rank-gold .title, .rank-gold .rank-badge {color: #DAA520 !important;}
        .rank-gold .rank-badge {border: 1px solid #DAA520 !important;}
        .rank-silver .title, .rank-silver .rank-badge {color: #9b9b9b !important;}
        .rank-silver .rank-badge {border: 1px solid #9b9b9b !important;}
        .rank-bronze .title, .rank-bronze .rank-badge {color: #B17F59 !important;}
        .rank-bronze .rank-badge {border: 1px solid #B17F59 !important;}

        .ranking-item img {
            max-width: 100%;
            height: auto;
            margin-bottom: 15px;
            border-radius: 5px;
            display: block; /* 画像の下に余白ができないように */
        }

        /* PCMAX強調スタイル */
        .ranking-item.pcmax {
            background-color: #3a2a2a; /* PCMAXだけ少し異なる背景色 */
            border-color: #c0a060; /* PCMAXだけゴールド系の枠線 */
            padding: 40px; /* PCMAXだけパディングを増やす */
        }

        /* PCMAXのH3にクラス指定を適用（詳細度を上げる） */
        .ranking-item.pcmax .lp-heading-tertiary {
            color: #fff; /* PCMAXの見出しは白 */
        }

        .ranking-item.pcmax .rank-badge {
             background-color: #fff; /* PCMAXの順位バッジは白 */
             color: #c0a060; /* PCMAXの順位バッジ文字色はゴールド */
             font-size: 1.2em;
        }

.no-sidebar .content .main {margin: 0; /* width: 100%; */ background: #000; color: #fff; border-radius: 0;}
@media (min-width: 768px) {
    .fv {margin-bottom: 0px;}
    .main {padding: 0; border:0;}
    .header-in.wrap.cf {width: 100%;}
    .container {max-width: 450px; padding:0;}
    .container p {font-size: 16px;}
    .column-narrow .content-in {width: 100%;}
    .true-trust-img {margin-top: 30px;}
    .footer {margin-top:0;}
    .footer-in.wrap.cf {width: 100%;}
    .container .btn-black {margin-top: 35px;}
}

.section {margin-bottom: 0; font-family: 'Crimson Text', serif; padding: 30px 10px;}
.entry-content {margin-top: 0; margin-bottom: 0;}
.backwhite {background-color: #fff; color: #1a1a1a; background-image: url(https://wife-netori.com/site/wp-content/uploads/2025/05/marble01_800.jpg);}
.backblack {background-image: url(https://wife-netori.com/site/wp-content/uploads/2025/05/marble02_800.jpg);}
.under-border {border-bottom: 1px solid #ffffff;}
.product-area {background-color:#fff; color: #1a1a1a;}
.product-point {width: 95%; margin: auto; border: 1px solid #000;}
.point-head {text-align: center; background-color: #000; color: #fff; padding: 10px 0;}
.product-point ul {list-style-type: none;}
.one-word {margin-bottom: 20px; text-align: center;}
.product-introduction {width: 95%; margin: auto;}

/*****productの別バージョン*****/
.ranking-card {background-color: #fff; color: #190A05; max-width: 100%; margin: 20px auto 80px auto; padding-top: 10px; padding-bottom: 20px; border-radius: 10px; border-top: 5px solid #C20033; box-shadow: 0px 10px 10px -5px rgba(0,0,0,0.2);}
.ranking-card:last-of-type {margin-bottom:0;}
.ranking-header {display: flex; align-items: center; gap: 0.75rem; padding-left: 10px; margin-top: 10px;}
.rank-badge {color: #C20033; font-size: 1.25rem; font-weight: bold; border-radius: 50%; border: 1px solid #C20033; width: 2rem; height: 2rem; display: -webkit-box; align-items: center; -webkit-box-pack: center; text-align: center; -webkit-box-align: center;}
.ranking-card .title {font-size: 1.5rem; font-family: 'Playfair Display', serif; color: #C20033; font-weight: bold;}
.image {width: 100%; object-fit: cover; border-radius: 0.75rem;}
.ranking-card .catchcopy {font-size: 1rem; font-weight: 600; margin-top: 0.5rem; padding:0 5px; text-align: center; letter-spacing: 0.1em; font-family: 'Crimson Text', serif; text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);}
.catchcopy.silver-rank {text-shadow: 0px 0px 7px rgb(150 185 255);}
.catchcopy.bronze-rank {text-shadow: 0px 0px 7px rgba(177,127,89,1);}
.catchcopy.other-rank {text-shadow:none}
.features {list-style: disc; margin-left: 1rem; margin-top: 0.5rem; font-size: 0.875rem; color: #d1d5db;}
.ranking-card .cta-button {margin-top: 1rem; max-width: 90%; padding: 0.8rem 0.5rem; background-image: linear-gradient(180deg,#FF3C7C,#FC004C); border-bottom: 4px solid #C20033; color: #fff; transition: all 0.3s ease; cursor: pointer; display:block; margin: 30px auto; text-align: center; font-weight: bold;border-radius:50px;}
.gold-btn {background-image: linear-gradient(180deg,#f0bf49,#eaab47) !important; border-bottom: 4px solid #a37832 !important;}
.ranking-card h3 {display: none;}
.cautionarynote {font-size: 0.6em; padding: 0 5px; text-align: center; opacity: 0.8;  letter-spacing: 2px;}
.howtouse-head {text-align: center; font-weight: bold; margin-bottom: 16px;}
.ranking-header .silver-rank {color: #E7E6E1;}
.ranking-header .bronze-rank {color: #B17F59;}
.ranking-card .silver-btn {color: #333333; background-color: #E7E6E1; border-bottom: 4px solid #7A7976;}
.ranking-card .bronze-btn {color: #fff; background-color: #B17F59; border-bottom: 4px solid #412F21;}
.ranking-header .other-rank {color: #999999;}
.ranking-card .other-btn {color: #fff; background-color: #999999; border-bottom: 4px solid #4D4D4D;}
.ranking-card .login-now {border-radius: 30px; text-align: center; margin: 25px auto 5px; width: 95%; font-weight: bold; font-size: 0.7em; letter-spacing: 6px; color: #7d0021;}
.login-now span {margin-right: 5px;}
.login-now span:last-of-type {margin: 0 0 0 5px;}
i.fa-angle-right {animation: shake 1.5s ease-in-out infinite; right: 12px; top: 45%;}
@keyframes shake {
    0% { transform: translateY(-50%) translateX(0px); }
    25% { transform: translateY(-50%) translateX(5px); }
    75% { transform: translateY(-50%) translateX(-5px); }
    100% { transform: translateY(-50%) translateX(0px); }
}
i.fa-angle-down {animation: shakeb 1.5s ease-in-out infinite; right: 2px; top: 15%;}
@keyframes shakeb {
    0% { transform: translateY(0px) translateX(-50%); }
    25% { transform: translateY(5px) translateX(-50%); }
    75% { transform: translateY(-5px) translateX(-50%); }
    100% { transform: translateY(0px) translateX(-50%); }
}
@media (max-width: 768px) {
 .ranking-card {margin-bottom: 50px; padding-bottom: 40px;}
 .ranking-card:last-of-type {margin-bottom: 40px;}
 .ranking-card .features {padding:0; margin: 0;}
 .howtouse-head {font-size: 1.1rem; letter-spacing: 0.1em;}
 .ranking-card .cta-button {max-width: 90%; margin: 30px auto 0 auto; padding: 0.8rem 0;}
 .cautionarynote {font-size: 0.7em; text-align: center;}
}
@media (max-width: 359px) {
 .howtouse-head {font-size: 1rem;}
}
@media (min-width: 768px) {
 .ranking-card .catchcopy {font-size: 1em;}
}
/***********タイムライン****************/
.timeline-container {max-width: 600px; margin: 0 auto; padding: 0; margin: 30px 0 30px 0;}
.timeline {position: relative; padding: 10px 0;}
.timeline::before {content: ''; position: absolute; top: 0; left: 20px; width: 2px; height: 100%; background: #ccc;}
.timeline-item {margin-bottom: 75px; position: relative; padding-left: 60px;}
.timeline-icon {width: 40px; height: 40px; background-color: #42617f; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.2em; position: absolute; left: 0; top: 0; z-index: 1; box-shadow: 0 2px 5px rgba(0,0,0,0.2);}
.timeline-content {background-color: #fff; padding: 15px 20px; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);}
.timeline-content div {font-size: 1.3em; color: #f76842; font-weight:bold;}
.timeline-content p {margin-bottom: 0; font-size: 0.95em; color: #000;}
/* --- 吹き出しの共通スタイル (高級感バージョン) --- */
.timeline-bubble-money,
.timeline-bubble-time {
    color: white; /* テキストは白 */
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85em;
    font-weight: bold;
    position: absolute;
    top: calc(100% + 15px); /* コンテンツ下部からの距離を少し広げる */
    z-index: 2; /* 他の要素の上に表示 */
    white-space: nowrap;
    box-shadow: 0 4px 8px rgba(0,0,0,0.25); /* 影を強めに、奥行きを出す */
    text-align: center;
    min-width: 90px; /* 最小幅を確保 */
    border: 1px solid rgba(255,255,255,0.2); /* わずかに白いボーダー */
    /* 背景色は各バブルで定義 */
    background-image: linear-gradient(to bottom, var(--bubble-start-color), var(--bubble-end-color)); /* グラデーション */
}

/* 金額吹き出しの特定スタイル */
.timeline-bubble-money {
    --bubble-start-color: #5a7d9f; /* 落ち着いたブルーの開始色 */
    --bubble-end-color: #42617f; /* 落ち着いたブルーの終了色 */
    left: 50%;
    transform: translateX(calc(-100% - 8px)); /* 自身の幅の分と、隣の吹き出しとの間隔分左に移動 */
}

/* 所要時間吹き出しの特定スタイル */
.timeline-bubble-time {
    --bubble-start-color: #9f7e5a; /* 落ち着いたゴールドの開始色 */
    --bubble-end-color: #7f6142; /* 落ち着いたゴールドの終了色 */
    left: 50%;
    transform: translateX(8px); /* 隣の吹き出しとの間隔分右に移動 */
}

/* 共通の吹き出ししっぽスタイル */
.timeline-bubble-money::after,
.timeline-bubble-time::after {
    content: '';
    position: absolute;
    top: -10px; /* 吹き出しの上から出るように、少し長めに */
    width: 0;
    height: 0;
    border-left: 10px solid transparent; /* しっぽを少し大きく */
    border-right: 10px solid transparent;
    border-bottom: 10px solid; /* 色は各吹き出しに依存 */
    transform: translateX(-50%);
}

/* 金額吹き出しのしっぽの色 */
.timeline-bubble-money::after {
    border-bottom-color: var(--bubble-start-color); /* 開始色と合わせる */
}

/* 所要時間吹き出しのしっぽの色 */
.timeline-bubble-time::after {
    border-bottom-color: var(--bubble-start-color); /* 開始色と合わせる */
}

/* 吹き出し内のpタグのリセット */
.timeline-bubble-money p,
.timeline-bubble-time p {
    margin: 0;
    line-height: 1.2;
}
.summary-container {margin-top: 20px;}
.summary-head {text-align: center; font-size: 1.3em; font-weight: bold;}
.summary-flex {display: flex; justify-content: space-evenly;}
.monney-area {background: linear-gradient(180deg,rgba(90, 125, 159, 1) 0%, rgba(66, 97, 127, 1) 100%);}
.timerequired-area {background: linear-gradient(180deg,rgba(159, 126, 90, 1) 0%, rgba(127, 97, 66, 1) 100%);}
.monney-area,.timerequired-area{
    width: 40%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    padding: 3px;
}
.monney-title,.timerequired-title {text-align: center;}
.monney-value,.timerequired-value {font-size: 1.3em; font-weight: bold; text-align: center;}
.monney-value span,.timerequired-value span {font-size: 0.6em;}
@media (max-width: 768px) {
    .timeline-container {margin-top: 40px;}
            .timeline-item {padding-left: 50px;}
            .timeline-icon {width: 35px; height: 35px; font-size: 1.1em; left: 2px;}
            .timeline-content {padding: 12px 15px;}
            .timeline-content h2 {font-size: 1.2em;}
            .timeline-content p {font-size: 0.9em;}
            .timeline-content div {font-size: 1em;}
}
@media (min-width: 768px) {
    .timeline-bubble-time,.timeline-bubble-money {left: 73%;}
     .timeline-content div {font-size: 1.1em !important;}
     .timeline-content p {font-size: 0.8em !important;}
}
/***************口コミ・評判**********************/
/* 口コミリスト（縦に並べる） */
.review-list {display: flex; flex-direction: column; gap: 15px;}
.open2 .review-list:last-of-type {gap: 0;}
/* 個々の口コミアイテム */
.review-item.compact {background-color: #ffffff; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); padding: 15px; border-left: 5px solid #DAA520;}
.review-item.compact.silver-border {border-color: #E7E6E1;}
.review-item.compact.bronze-border {border-color: #B17F59;}
.review-summary {display: flex; align-items: center; gap: 5px;margin-bottom: 0; flex-wrap: wrap;}
.reviewer-avatar-small {width: 40px; height: 40px; object-fit: cover; flex-shrink: 0;}
.review-rating-small {display: flex; align-items: center; gap: 1px; flex-shrink: 0;}
.review-snippet {
    flex-grow: 1;
    font-size: 0.9em;
    color: #555;
    margin: 0; /* マージンをリセット */
    /*white-space: nowrap;*/ /* 強制的に1行にする */
    overflow: hidden; /* はみ出した部分を隠す */
    text-overflow: ellipsis; /* はみ出した部分を「...」で表示 */
width:100%;
}
.review-details {
    display: flex;
    justify-content: flex-end; /* 右端に寄せる */
    font-size: 0.8em;
    color: #888;
    gap: 10px;
    padding-left: 50px; /* アバターの分を考慮してインデント */
}
.reviewer-name-small {font-weight: bold;}
.reviewer-head {text-align: center; font-weight: bold;}
/***************目的別********************/
.by-purpose-title {text-align: center; font-size: 1.8em; margin-bottom: 20px; font-weight:bold; font-family: 'Crimson Text', serif;}
.by-purpose-title span {font-size: 0.6em; display: inline-block; padding: 3px 8px; background-color: #C20033; color: #fff; border-radius: 20px; margin-right: 10px;}
.by-purpose-link {text-decoration: none; color: #190A05;}
.by-purpose-box {border: 1px solid #cbcbcb; border-radius: 5px; padding: 10px; display: flex; margin-bottom: 10px; position: relative;}
.by-purpose-box .box-head {--ms-writing-mode: vertical-rl; writing-mode: vertical-rl; color:#fff; background-color:#190A05;padding: 0 5px 0 5px; text-align: center;margin-right: 5px; border-radius: 8px;}
.by-purpose-box .box-appimg {max-width: 100px; height: auto; display: block; margin-right: 7px; border-radius: 7px;}
.by-purpose-box .box-app-area {max-width: 55%;}
.box-app-area .app-name {font-weight: bold; font-size: 1.4em;}
.box-app-area .app-text {font-size: 0.9em;}
.box-app-area .app-text span {color: red; font-weight: bold;}
.box-arrow {position: absolute; top:0; right:0; width: 8%; height: 100%; background-color:#190A05; color: #fff; border-top-right-radius: 5px; border-bottom-right-radius: 5px; box-sizing: border-box; align-content: center; text-align: center;}
@media (max-width: 768px;) {

}
/***************開閉ボタン*******************/
.open-box {position: relative;}
input[type="checkbox"].on-off {position: absolute; bottom: 0; display: block; opacity: 0;}
.open-label {width: 85%; margin: 1em auto 0 auto; padding: 0.7em 0.4em; display: block; color: #c79e41; border: 1px solid #c79e41; font-weight: bold; text-align: center; position: relative; border-radius: 50px;}
.open-label::after{content:'クリックで開く';}
.on-off:checked ~ .open-label::after {content: 'クリックで閉じる';}
.open { padding: 1em; border-radius: 8px; height: 300px; overflow: hidden;
  transition: .5s; position: relative;}
.on-off:checked ~ .open{padding: 1.5em 1em; height: auto;}
.open::before {content:''; background: linear-gradient(to bottom, transparent 64%,rgba(0,0,0,1)160%); position: absolute; top:0; left:10px; right:0; bottom:0; z-index: 3;box-sizing: border-box; width: 95%; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px;}
.on-off:checked ~ .open::before{background: none; z-index: -1;}
@media (max-width: 768px) {
.open-label {max-width: 250px; margin: 1em auto 0 auto; padding: 0.5rem 0;}
.open-label::after{content:'タップで開く';}
.on-off:checked ~ .open-label::after {content: 'タップで閉じる';}
.open {height: 135px;}  
}
/************口コミ・評判用開閉ボタン*****************/
.reviewer-open-box {position: relative; padding-bottom: 10px;}
input[type="checkbox"].reviewer-on-off {position: absolute; bottom: 0; display: block; opacity: 0;}
.reviewer-open-label {width: 85%; margin: 1em auto 0 auto; padding: 0.7em 0.4em; display: block; color: #c79e41; border: 1px solid #c79e41; font-weight: bold; text-align: center; position: relative; border-radius: 50px;}
.reviewer-open-label::after{content:'クリックで開く';}
.reviewer-on-off:checked ~ .reviewer-open-label::after {content:'クリックで閉じる';}
.open2 {padding: 1em; border-radius: 8px; height: 300px; overflow: hidden;
  transition: .5s; position: relative;}
.reviewer-on-off:checked ~ .open2 {padding: 1.5em 1em; height: auto;}
.open2::before {content:''; background: linear-gradient(to bottom, transparent 64%,rgba(0,0,0,1)160%); position: absolute; top:0; left:10px; right:0; bottom:0; z-index: 3; box-sizing: border-box; width: 95%; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px;}
.reviewer-on-off:checked ~ .open2::before{background: none; z-index: -1;}
@media (max-width: 768px) {
 .reviewer-open-label {max-width: 250px; margin: 25px auto 0 auto;}
 .reviewer-open-label::after{content:'タップで開く';}
 .reviewer-on-off:checked ~ .reviewer-open-label {margin-top: 0;}
 .reviewer-on-off:checked ~ .reviewer-open-label::after {content:'タップで閉じる';}
 .open2 {height: 135px;}
 .reviewer-open-box {padding-bottom: 25px;}
}
/********画像用***********/
.section-img {margin:0;}
/*********おすすめマッチングアプリ***********/
.recommendation-area {margin-top: 50px;}
.recommendation-box {margin-bottom: 30px;}
.recommendation-area>.recommendation-box:last-of-type {margin-bottom:0;}
.recommendation-box>figure>img {display:block; margin: auto; max-width: 200px; height: auto;}
/************カルーセル*****************/
.carousel-img {margin: auto; display:block; max-width: 100% !important;}
.w-list {display: flex; justify-content: center; margin-top: 15px;}
.carousel-word {text-align: center; font-weight:bold;}
.carousel-container {border: 0;}
.carousel-container:last-of-type {border: none;}
.ranking-card .swiper-pagination-bullet {background: var(--swiper-pagination-bullet-inactive-color, #fff);}
.ranking-card .swiper-pagination-bullet-active {background: var(--swiper-pagination-color, var(--swiper-theme-color));}
.ranking-card figure {margin: 10px 10px 0 10px;}
@media (min-width: 768px){
.carousel-container .swiper-wrapper {width: 100% !important;}
.carousel-container .swiper-slide {width: 100% !important;}
}
@media (max-width: 768px) {
 .other-wrapper {width:100% !important;;}
 .other-slide {width: 100% !important;}
 .w-list {margin-top: 10px;}
 .carousel-word {margin-top: 15px;}
 .carousel-container {margin-bottom:0 !important;}
}

        /* ======================================== */
        /* レスポンシブ対応のためのメディアクエリ */
        /* ======================================== */

        /* スマートフォン向けスタイル (画面幅が768px以下の場合に適用) */
        @media (max-width: 768px) {
            .main,main.main {padding:0;}
            .container {
                padding: 0; /* 左右の余白を狭く */
            }
            .container p {font-size: 13px; margin: 5px;}
            .container .lp-heading-primary { font-size: 2em; } /* FVの見出しを小さく */
            .container .lp-heading-secondary { font-size: 2em; line-height: 1.5;} /* セクション見出しを小さく */
            .container .lp-heading-tertiary { font-size: 1.3em; } /* ランキング項目見出しを小さく */
            .container .lp-heading-quaternary { font-size: 1.1em; } /* h4を小さく */
            .true-trust-img {margin-top: 25px;}
            .fv {margin-bottom: 10px;}

            .fv .container p {
                font-size: 1em; /* FVの段落文字を小さく */
            }

            /**.fv .container a.btn {top: 85%; left:20%;}**/

            .section {
                padding: 40px 10px; /* セクション上下の余白を調整 */
            }

            .container .btn {
                padding: 15px 20px; /* ボタンのパディングを調整 */
                font-size: 0.9em; /* ボタンの文字サイズを調整 */
                margin: 20px auto; /* ボタンのマージンを調整 */
                display: block; /* ボタンをブロック要素にして幅いっぱいに */
                max-width: 250px; /* ボタンの最大幅を設定 */
            }
            .container .btn-margin {margin: 20px auto 40px auto;}
            .container .btn-margin:last-of-type {margin-bottom:0;}

             .site-detail .btn {
                 margin: 20px auto 0; /* 詳細セクション内のボタンマージン */
             }

            footer {
                padding: 30px 0; /* フッターのパディングを調整 */
                display: none;
            }

   /* スマホでの吹き出しの調整 */
    .timeline-bubble-money,
    .timeline-bubble-time {
        font-size: 0.75em;
        padding: 6px 10px;
        min-width: 80px;
        top: calc(100% + 4px); /* スマホでの位置をさらに下げる */
        left: calc(70% + 5px);
    }

    .timeline-bubble-money {
        transform: translateX(calc(-100% - 5px)); /* スマホ用間隔調整 */
    }
    .timeline-bubble-time {
        transform: translateX(5px); /* スマホ用間隔調整 */
    }

    .timeline-bubble-money::after,
    .timeline-bubble-time::after {
        top: -8px;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid;
    }
    /* 金額吹き出しのしっぽの色 */
    .timeline-bubble-money::after {
        border-bottom-color: var(--bubble-start-color); /* 開始色と合わせる */
    }
    /* 所要時間吹き出しのしっぽの色 */
    .timeline-bubble-time::after {
        border-bottom-color: var(--bubble-start-color); /* 開始色と合わせる */
    }
    /* 所要時間吹き出しのしっぽの色 */
     .timeline-bubble-time::after {
     border-bottom-color: var(--bubble-start-color); /* 開始色と合わせる */
    }
    /*******タイムライン********/
    .timeline-item {margin-bottom: 40px;}

    /******************口コミ**********************/
        .review-item.compact {padding: 10px;}
        .review-summary {flex-wrap: wrap; gap: 5px; align-items: flex-start; margin-bottom:0;}
    .reviewer-avatar-small {width: 35px; height: 35px;}
    .review-rating-small .material-icons {font-size: 16px;}
    .review-snippet {white-space: normal; -webkit-line-clamp: 2; display: -webkit-box;
        -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; font-size: 0.85em;}
    .review-details {padding-left: 40px; font-size: 0.75em;}
    .reviewer-head {font-size: 1.3rem; margin: 35px auto 10px auto;}
}
        /* タブレット向けスタイル (画面幅が769pxから1024pxの場合に適用) */
        @media (min-width: 769px) and (max-width: 1024px) {
            .container {
                padding: 0 30px; /* 左右の余白を調整 */
            }
            .container .lp-heading-primary { font-size: 2.2em; }
            .container .lp-heading-secondary { font-size: 1.9em; }
            .container .lp-heading-tertiary { font-size: 1.4em; }

            .fv {
                padding: 90px 0;
            }

            .section {
                padding: 50px 0;
            }
        }

/*******test-area*******/
.test-area {width: 100%; overflow: hidden; position: relative;}
.carousel {width: 100%; overflow: hidden; position: relative; margin-top: 5px;}

.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth; /* ← スクロールがスムーズ */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-marker-group: after;
  padding: 0;
  margin: 15px 20px 25px 20px;
  anchor-name: --carousel;
}

@media (max-width: 768px) {
 .carousel-track {margin: 3% 10px 7% 10px;}
}
.carousel-track::scroll-marker-group {position: absolute; position-anchor: --carousel; top: calc(anchor(bottom) - -2%); justify-self: anchor-center; display: flex; justify-content: center; gap: 20px;}
li.item::scroll-marker {content:""; width: 9px; height: 9px; background-color: transparent; border: 2px solid #100004; border-radius: 50%;}
li.item::scroll-marker:target-current {background-color: #100004;}
.carousel-track::scroll-button(*){border: 0; font-size: 2rem; background: none; color: #f4f5f7; cursor: pointer; opacity: 0;}
.carousel-track::scroll-button(left) {content: "◄"; position: absolute; position-anchor: --carousel; top: 45%; left: 0;}
.carousel-track::scroll-button(right) {content: "►"; position: absolute; position-anchor: --carousel; top: 45%; right:0;}
.carousel-track::scroll-button(*):hover,
.carousel-track:scroll-button(*):focus {color: rgb(0 0 0 / 1);}
.item {list-style: none; flex: 0 0 auto; width: 230px; scroll-snap-align: start; anchor-name: --item; position: relative;}
.item-login {position: absolute; top:2%; left:2%; padding: 5px 15px; border-radius: 7px; background-color: #7d0021; color: #f4f5f7; box-sizing: border-box; opacity: 0.75;}
.item img {width: 100%; border-radius: 8px; object-fit: cover;}
.item-ex {position: absolute; bottom: 6px; left: 0; width: 100%; background-image: linear-gradient(180deg, #7d0021, 25%, #100004); color: #f4f5f7; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; box-sizing: border-box; padding: 10px 5px; opacity: 0.75; font-size: 0.8em; font-weight: bold; letter-spacing: 1.3px;}
/************/

/*******ステップ用スタイル*******/
.test-area {width: 100%; overflow: hidden; position: relative;}
.timeline-carousel {width: 100%; overflow: hidden; position: relative;}
.timeline-carousel-track {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth; /* ← スクロールがスムーズ */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-marker-group: after;
  padding: 0;
  margin: 15px 20px 25px 20px;
  anchor-name: --carousel;
}

@media (max-width: 768px) {
.timeline-carousel-track {margin: 5% 10px 8% 10px;}
}
.timeline-carousel-track::scroll-marker-group {position: absolute; position-anchor: --carousel; top: calc(anchor(bottom) - -7%); justify-self: anchor-center; display: flex; justify-content: center; gap: 20px;}
.timeline-item {list-style: none; flex: 0 0 auto; width:350px; scroll-snap-align: start; anchor-name: --item; position: relative; padding:10px; margin:0; border: 2px solid #C20033; border-radius: 5px; background: #fff;}
li.timeline-item::scroll-marker {content:""; width: 9px; height: 9px; background-color: transparent; border: 2px solid #C20033; border-radius: 50%;}
li.timeline-item::scroll-marker:target-current {background-color: #C20033;}
.timeline-carousel-track::scroll-button(*){border: 0; font-size: 2rem; background: none; color: #f4f5f7; cursor: pointer; opacity: 0;}
.timeline-carousel-track::scroll-button(right) {content: "►"; position: absolute; position-anchor: --carousel; top: 45%; right:0;}
.timeline-carousel-track::scroll-button(*):hover,
.timeline-carousel-track:scroll-button(*):focus {color: rgb(0 0 0 / 1);}
.timeline-item img {width: 100%; border-radius: 8px; object-fit: cover;}
.timeline-title {font-size: 1.15rem; color: #C20033; font-weight: bold; margin: 0 auto 5px auto; display: flex; align-items: center;}
.timeline-title span {background-color:#C20033; color: #fff; font-size: 0.85rem; font-weight:bold; border-radius: 50%; border: 1px solid #C20033; width: 1.25rem; height: 1.25rem; display: -webkit-box; align-items: center; -webkit-box-pack: center; text-align: center; margin-right: 10px;}
.timeline-text {font-size: 0.8em; color:#0f1419;}

/*******レビュー用スタイル********/
.review-carousel {width: 100%; overflow: hidden; position: relative;}

.review-carousel-track {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth; /* ← スクロールがスムーズ */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-marker-group: after;
  padding: 0;
  margin: 15px 20px 25px 20px;
  anchor-name: --carousel;
}

@media (max-width: 768px) {
.review-carousel-track {margin: 5% 10px 8% 10px;}
}
.review-carousel-track::scroll-marker-group {position: absolute; position-anchor: --carousel; top: calc(anchor(bottom) - -5%); justify-self: anchor-center; display: flex; justify-content: center; gap: 20px;}
.review-item {list-style: none; flex: 0 0 auto; width:350px; scroll-snap-align: start; anchor-name: --item; position: relative; padding:15px 10px 15px 10px; margin:0; border: 2px solid #c79e41; border-radius: 5px; background: #fff;}
li.review-item::scroll-marker {content:""; width: 9px; height: 9px; background-color: transparent; border: 2px solid #c79e41; border-radius: 50%;}
li.review-item::scroll-marker:target-current {background-color: #c79e41;}
.review-carousel-track::scroll-button(*){border: 0; font-size: 2rem; background: none; color: #f4f5f7; cursor: pointer; opacity: 0;}
.review-carousel-track::scroll-button(right) {content: "►"; position: absolute; position-anchor: --carousel; top: 45%; right:0;}
.review-carousel-track::scroll-button(*):hover,
.review-carousel-track:scroll-button(*):focus {color: rgb(0 0 0 / 1);}
.review-item img {width: 50px; border-radius: 50%; object-fit: cover; margin-right: 5%;}
.review-title {font-size: 0.9em; color: #4b4b4b; font-weight: bold; margin: 0 auto 0 auto; display: flex; align-items: center;}
.review-title div span {color:#afafaf; display: inline-block;}
.review-text {font-size: 0.8em; color:#4b4b4b;}
.review-text span {font-size: 0.65rem; color: #afafaf;}
.review-star {border-bottom: 1px solid #dddddd; margin-bottom: 5px; color:#ff8400;}