/* ==========================================================================
   1. デザインシステム基本定義 & CSS変数 (from plus-bento.css)
   ========================================================================== */
:root {
    --bento-bg: #ffffff;
    /* 清潔な白背景 */
    --bento-beige: #ffffff;
    --bento-navy: #1d3b63;
    /* 既存サイトの紺 */
    --bento-midnight: #0B1221;
    --bento-accent: #cf243b;
    /* 既存カウンセリングボタンの赤に統一 */
    --bento-radius-lg: 8px;
    /* 丸すぎる角丸を上品な8pxに統一 */
    --bento-radius-md: 4px;
    --bento-gap: 1.5rem;
}

#plus2025 {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
    line-height: 1.5;
    color: #18181B;
    background-color: var(--bento-bg);
    overflow-x: hidden;
}

#plus2025 * {
    box-sizing: border-box;
}

/* ==========================================================================
   2. 基本タイポグラフィ & カラーユーティリティ (from plus-bento.css)
   ========================================================================== */
#plus2025 h1,
#plus2025 h2,
#plus2025 h3,
#plus2025 h4 {
    font-weight: 900 !important;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

#plus2025 h1 {
    font-size: 4rem;
}

#plus2025 h2 {
    font-size: 3rem;
}

#plus2025 .text-vermilion {
    color: var(--bento-accent) !important;
}

#plus2025 .bg-vermilion {
    background-color: var(--bento-accent) !important;
}

#plus2025 .text-midnight {
    color: var(--bento-midnight) !important;
}

#plus2025 .bg-midnight {
    background-color: var(--bento-midnight) !important;
}

#plus2025 .bg-bento-beige {
    background-color: var(--bento-beige) !important;
}

#plus2025 .font-weight-boldest {
    font-weight: 900 !important;
}

#plus2025 .italic {
    font-style: italic !important;
}

#plus2025 .shadow-none {
    box-shadow: none !important;
}

/* ==========================================================================
   3. Bento Card システム (from plus-bento.css)
   ========================================================================== */
.bento-card {
    background: #ffffff;
    border-radius: var(--bento-radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .bento-card {
        padding: 1.5rem;
        border-radius: var(--bento-radius-md);
    }

    #plus2025 h1 {
        font-size: 2.5rem !important;
    }

    #plus2025 h2 {
        font-size: 2rem !important;
    }

    #plus2025 h3 {
        font-size: 1.5rem !important;
    }
}

/* ==========================================================================
   4. 「4つの誤解と新常識」基本スタイル (from plus-bento.css)
   ========================================================================== */
.truth-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
}

.truth-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 0.75rem;
}

.truth-card-header .category-badge {
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--bento-navy);
    background: var(--bento-beige);
    padding: 0.35rem 0.85rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
}

.truth-card-header .card-number {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--bento-accent);
    opacity: 0.8;
    font-family: 'Outfit', sans-serif;
}

.contrast-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.block-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.block-misconception {
    position: relative;
    padding: 1.25rem;
    border-radius: 0.75rem;
    background-color: #FAF8F8;
    border: 1px dashed #CBD5E1;
    overflow: hidden;
}

.badge-misconception {
    font-size: 0.75rem;
    font-weight: 900;
    color: #64748B;
    background-color: #E2E8F0;
    padding: 0.25rem 0.65rem;
    border-radius: 0.25rem;
    position: relative;
    z-index: 2;
}

.icon-misconception {
    font-size: 1.1rem;
    color: #94A3B8;
    position: relative;
    z-index: 2;
}

.block-misconception .text {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #475569 !important;
    margin: 0.5rem 0 0 0 !important;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.quote-bg {
    position: absolute;
    right: 15px;
    bottom: -15px;
    font-size: 3.5rem;
    color: rgba(226, 232, 240, 0.35);
    pointer-events: none;
    z-index: 1;
    font-family: Georgia, serif;
}

.shift-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -0.4rem 0;
    position: relative;
    z-index: 5;
}

.shift-arrow i {
    background: var(--bento-accent);
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    box-shadow: 0 4px 10px rgba(207, 36, 59, 0.3);
    border: 2px solid #ffffff;
    animation: arrow-bounce 1.5s infinite alternate;
}

@keyframes arrow-bounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(3px);
    }
}

.block-truth {
    position: relative;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--bento-navy) 0%, var(--bento-midnight) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 5px solid var(--bento-accent);
    box-shadow: 0 10px 30px rgba(11, 18, 33, 0.15);
    overflow: hidden;
}

.badge-truth {
    font-size: 0.75rem;
    font-weight: 900;
    color: #ffffff;
    background-color: var(--bento-accent);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    box-shadow: 0 2px 8px rgba(207, 36, 59, 0.4);
    position: relative;
    z-index: 2;
}

.icon-truth {
    font-size: 1.25rem;
    color: #FBBF24;
    position: relative;
    z-index: 2;
    animation: pulse-glow 2s infinite alternate;
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 2px rgba(251, 191, 36, 0.4));
        opacity: 0.8;
    }

    100% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.8));
        opacity: 1;
    }
}

.block-truth .text {
    position: relative;
    display: inline-block;
    font-size: 1.15rem !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    margin: 0.6rem 0 0.5rem 0 !important;
    line-height: 1.4;
    z-index: 2;
}

.highlight-line {
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 6px;
    background: rgba(251, 191, 36, 0.3);
    z-index: -1;
    border-radius: 2px;
}

.block-truth .desc {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 !important;
    position: relative;
    z-index: 2;
}

.check-bg {
    position: absolute;
    right: 15px;
    bottom: -20px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: 1;
}

/* ==========================================================================
   5. 新常識・シンプルプレミアム（引き算）上書き差分デザイン (from plus-renewal.css)
   ========================================================================== */

/* 1. 新常識ブロックのグラデーションを廃止し、ブランド主要ネイビーのソリッド背景に統一 */
#plus2025 .block-truth {
    background: var(--bento-navy) !important;
}

/* 2. アイコン・透かし背景・蛍光マーカー線は完全に非表示（上品な引き算） */
#plus2025 .icon-misconception,
#plus2025 .icon-truth,
#plus2025 .quote-bg,
#plus2025 .check-bg,
#plus2025 .highlight-line {
    display: none !important;
}

/* 3. 接続矢印のバウンスアニメーションを停止し、静的な表示にして公式HPとしての安定感と品格を確保 */
#plus2025 .shift-arrow i {
    animation: none !important;
    box-shadow: none !important;
}

/* 4. レスポンシブ調整（スマホで一画面に2枚カードが収まるすっきりした余白設計） */
@media (max-width: 768px) {
    #plus2025 .truth-card {
        padding: 1.25rem !important;
        margin-bottom: 1rem !important;
    }

    #plus2025 .contrast-container {
        gap: 0.6rem !important;
    }

    #plus2025 .block-misconception {
        padding: 1rem !important;
    }

    #plus2025 .block-truth {
        padding: 1.25rem !important;
    }
}

/* ==========================================================================
   6. 世界大学ランキング比較表 & レスポンシブ調整 (from plus-bento.css & plus-renewal.css)
   ========================================================================== */
.qs-ranking-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

@media (max-width: 768px) {
    #plus2025 .table-responsive {
        overflow-x: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    #plus2025 .qs-ranking-table {
        min-width: auto !important;
        width: 100% !important;
        table-layout: fixed !important;
        font-size: 0.78rem !important;
    }

    #plus2025 .qs-ranking-table th,
    #plus2025 .qs-ranking-table td {
        padding: 0.5rem 0.25rem !important;
        font-size: 0.78rem !important;
        line-height: 1.25 !important;
        letter-spacing: -0.04em !important;
        word-break: break-all !important;
        word-wrap: break-word !important;
        vertical-align: middle !important;
    }

    #plus2025 .qs-ranking-table th:nth-child(1),
    #plus2025 .qs-ranking-table td:nth-child(1) {
        width: 20% !important;
    }

    #plus2025 .qs-ranking-table th:nth-child(2),
    #plus2025 .qs-ranking-table td:nth-child(2) {
        width: 46% !important;
    }

    #plus2025 .qs-ranking-table th:nth-child(3),
    #plus2025 .qs-ranking-table td:nth-child(3) {
        width: 34% !important;
    }
}

/* ==========================================================================
   7. バリュー比較表（日本vs海外）のスマホ最適化 (from plus-bento.css)
   ========================================================================== */
.bento-comparison-table {
    min-width: 600px;
}

@media (max-width: 768px) {
    #plus2025 .bento-comparison-table {
        min-width: auto !important;
        width: 100% !important;
        table-layout: fixed !important;
        font-size: 0.78rem !important;
    }

    #plus2025 .bento-comparison-table th,
    #plus2025 .bento-comparison-table td {
        padding: 0.5rem 0.25rem !important;
        font-size: 0.78rem !important;
        line-height: 1.25 !important;
        letter-spacing: -0.04em !important;
        word-break: break-all !important;
        word-wrap: break-word !important;
        vertical-align: middle !important;
    }

    #plus2025 .bento-comparison-table th:nth-child(1),
    #plus2025 .bento-comparison-table td:nth-child(1) {
        width: 25% !important;
    }

    #plus2025 .bento-comparison-table th:nth-child(2),
    #plus2025 .bento-comparison-table td:nth-child(2) {
        width: 35% !important;
    }

    #plus2025 .bento-comparison-table th:nth-child(3),
    #plus2025 .bento-comparison-table td:nth-child(3) {
        width: 40% !important;
    }
}

/* ==========================================================================
   8. 上品なタイポグラフィ調整 & クイックナビゲーションカード (from plus-renewal.css)
   ========================================================================== */
#plus2025 h2 {
    font-size: 1.55rem !important;
    letter-spacing: 0.03em !important;
}

#plus2025 h3 {
    font-size: 1.25rem !important;
}

#plus2025 .cta-message-main {
    font-size: 1.55rem !important;
    color: #cf243b;
    line-height: 1.45 !important;
    margin: 0 0 1rem 0 !important;
    font-weight: bold !important;
}

#plus2025 .cta-message-sub {
    font-size: 1.55rem !important;
    color: #2e2624;
    line-height: 1.45 !important;
    margin: 0 !important;
    font-weight: bold !important;
}

@media (max-width: 768px) {
    #plus2025 h2 {
        font-size: 1.25rem !important;
    }

    #plus2025 h3 {
        font-size: 1.05rem !important;
    }

    #plus2025 h1.catch-copy {
        font-size: 1.35rem !important;
    }

    #plus2025 .cta-message-main {
        font-size: 1.25rem !important;
    }

    #plus2025 .cta-message-sub {
        font-size: 1.25rem !important;
    }
}

#plus2025 .quick-nav-card {
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 8px !important;
    background-color: #ffffff !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

#plus2025 .quick-nav-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
}

#plus2025 .quick-nav-img-placeholder {
    background-color: #f5f5f5 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    aspect-ratio: 16 / 9 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px !important;
    color: #777 !important;
    position: relative !important;
}

#plus2025 .quick-nav-img-placeholder i {
    font-size: 24px !important;
}

#plus2025 .quick-nav-img-placeholder .text-bold {
    font-size: 13px !important;
    font-weight: bold !important;
    color: #5a5a5a !important;
}

#plus2025 .quick-nav-img-placeholder .text-sub {
    font-size: 11px !important;
    color: #999 !important;
}

#plus2025 .quick-nav-card .btn_BLine {
    display: block !important;
    text-align: center !important;
    padding: 10px 0 !important;
    font-size: 13.5px !important;
    font-weight: bold !important;
    color: #ffffff !important;
    background-color: #1d3b63 !important;
    border: 1px solid #1d3b63 !important;
    border-radius: 4px !important;
    box-shadow: 0 2px 6px rgba(29, 59, 99, 0.15) !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
    margin-top: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

#plus2025 .quick-nav-card .btn_BLine:hover {
    background-color: #cf243b !important;
    border-color: #cf243b !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(207, 36, 59, 0.25) !important;
    text-decoration: none !important;
}

@media (max-width: 768px) {
    #plus2025 .quick-nav-card {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
        margin-bottom: 15px !important;
        min-height: 290px !important;
        height: auto !important;
    }

    #plus2025 .quick-nav-card .card-content {
        padding: 15px 15px 12px 15px !important;
    }

    #plus2025 .quick-nav-card .subtext {
        display: block !important;
        font-size: 11.5px !important;
        line-height: 1.45 !important;
        color: #666 !important;
        margin-bottom: 12px !important;
        text-align: left !important;
    }

    #plus2025 .quick-nav-card h3 {
        font-size: 15.5px !important;
        min-height: auto !important;
        margin-bottom: 6px !important;
        line-height: 1.35 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    #plus2025 .quick-nav-card .badge-tag {
        font-size: 12px !important;
        margin-bottom: 4px !important;
    }

    #plus2025 .quick-nav-card .btn_BLine {
        padding: 9px 0 !important;
        font-size: 13px !important;
        background-color: #1d3b63 !important;
        color: #ffffff !important;
        border: none !important;
        box-shadow: 0 2px 6px rgba(29, 59, 99, 0.15) !important;
        margin-top: auto !important;
    }

    #plus2025 .quick-nav-img-placeholder {
        padding: 10px 15px !important;
        aspect-ratio: auto !important;
        height: 100px !important;
    }

    #plus2025 .quick-nav-img-placeholder i {
        font-size: 18px !important;
        margin-bottom: 2px !important;
    }

    #plus2025 .quick-nav-img-placeholder .text-bold {
        font-size: 11.5px !important;
    }

    #plus2025 .quick-nav-img-placeholder .text-sub {
        display: none !important;
    }
}

/* ==========================================================================
   9. 無料個別相談メリットカード・同系色グラデーション（階調リズム）
   ========================================================================== */
#plus2025 .benefit-card-01 {
    border-top: 4px solid #1d3b63 !important;
}

#plus2025 .benefit-num-01 {
    font-size: 28px;
    color: #1d3b63;
    display: block;
    margin-bottom: 10px;
    font-weight: 900;
}

#plus2025 .benefit-card-02 {
    border-top: 4px solid #3b628f !important;
}

#plus2025 .benefit-num-02 {
    font-size: 28px;
    color: #3b628f;
    display: block;
    margin-bottom: 10px;
    font-weight: 900;
}

#plus2025 .benefit-card-03 {
    border-top: 4px solid #5e83ad !important;
}

#plus2025 .benefit-num-03 {
    font-size: 28px;
    color: #5e83ad;
    display: block;
    margin-bottom: 10px;
    font-weight: 900;
}

/* ==========================================================================
   10. アコーディオンFAQスタイル (Accordion FAQ)
   ========================================================================== */
#plus2025 .faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#plus2025 .faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
    color: #cf243b;
    font-weight: bold;
}

#plus2025 .faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: #2e2624;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   11. 合格実績テーブル ＆ 体験談プレミアムカード
   ========================================================================== */
#plus2025 .tb01 {
    width: 100% !important;
    border-collapse: collapse !important;
    background-color: #ffffff !important;
}

#plus2025 .tb01 tr.head th {
    background-color: #1d3b63 !important;
    color: #ffffff !important;
    font-weight: bold !important;
    padding: 12px 15px !important;
    font-size: 14px !important;
    border: none !important;
}

#plus2025 .tb01 td,
#plus2025 .tb01 th {
    padding: 12px 15px !important;
    font-size: 13.5px !important;
    color: #2e2624 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

#plus2025 .tb01 tr:nth-child(even) {
    background-color: #f9f9f9 !important;
}

#plus2025 .voice_link {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    text-decoration: none !important;
    background-color: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

#plus2025 .voice_link:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
}

#plus2025 .voice_link .img {
    aspect-ratio: 1.43 !important;
    overflow: hidden !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

#plus2025 .voice_link .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#plus2025 .voice_link .univname {
    font-size: 11px !important;
    font-weight: bold !important;
    color: #1d3b63 !important;
    margin: 12px 15px 4px 15px !important;
}

#plus2025 .voice_link .text {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #5a5a5a !important;
    margin: 0 15px 12px 15px !important;
    flex-grow: 1;
}

#plus2025 .voice_link .V_name {
    font-size: 11.5px !important;
    font-weight: bold !important;
    color: #777 !important;
    margin: 0 15px 15px 15px !important;
    text-align: right !important;
}

/* ==========================================================================
   12. ユーザーフィードバックに伴うインタラクション・サイズ・表示改善
   ========================================================================== */

/* FAQアコーディオンの滑らかな開閉と枠線ネイビー化 */
#plus2025 .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.4s ease, border-color 0.3s ease;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-top: 0 solid transparent !important;
    display: block !important;
    /* display: none を無効化 */
}

#plus2025 .bento-card.is-open .faq-answer {
    max-height: 500px;
    /* 十分な高さ */
    padding-top: 1rem !important;
    padding-bottom: 0 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

#plus2025 .bento-card {
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

#plus2025 .bento-card.is-open {
    border-color: #1d3b63 !important;
    background-color: #ffffff !important;
    /* 白いまま維持 */
}

#plus2025 .bento-card.is-open .faq-icon {
    transform: rotate(180deg);
    color: #1d3b63 !important;
    /* 開閉時ネイビー */
}

/* 不安チェックセクションの箇条書きリスト化（プランB修正: 紙パンフレット風・知的な1列スリムボックス） */
#plus2025 .unhappiness-box {
    background-color: #f9f9f9 !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 6px !important;
    padding: 28px 40px !important;
    max-width: 600px; /* ボックス幅を絞ることで、PCでも綺麗に中央に配置されます */
    margin: 0 auto !important;
}
#plus2025 .unhappiness-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    text-align: left;
}
#plus2025 .unhappiness-item {
    font-size: 16px !important; /* 拾い読みしやすい、十分な文字サイズ */
    color: #2e2624 !important;
    font-weight: 600 !important; /* 視覚的にしっかり認識できる太さ */
    line-height: 1.5 !important;
    display: flex;
    align-items: flex-start;
    margin-bottom: 0 !important;
    padding-left: 0 !important;
}
#plus2025 .unhappiness-item::before {
    content: "" !important;
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #cf243b !important; /* ブランド赤 */
    margin-top: 10px;
    margin-right: 12px;
    flex-shrink: 0;
}
/* 下部「一つでも当てはまったら〜」の主従関係の整理（目立ちすぎ防止） */
#plus2025 .unhappiness-lead-bottom {
    font-size: 15px !important; /* 不安テキストと同等、または少し小さめに抑える */
    color: #2e2624 !important;
    font-weight: bold !important;
    margin-top: 24px !important;
    line-height: 1.5 !important;
}
@media (max-width: 768px) {
    #plus2025 .unhappiness-box {
        padding: 20px 24px !important;
        max-width: 100%;
    }
    #plus2025 .unhappiness-item {
        font-size: 14.5px !important; /* スマホでもしっかり読めるサイズ */
    }
    #plus2025 .unhappiness-lead-bottom {
        font-size: 14px !important; /* スマホでの目立ちすぎを徹底防止 */
        margin-top: 18px !important;
    }
}

/* H2/H2 span のサイズ競合対策の強化 (test.phpと同一サイズに) */
#plus2025 h2,
#plus2025 h2 span,
#plus2025 h2 .strong {
    font-size: 1.55rem !important;
    font-weight: 900 !important;
}

@media (max-width: 768px) {

    #plus2025 h2,
    #plus2025 h2 span,
    #plus2025 h2 .strong {
        font-size: 1.25rem !important;
    }
}

/* メリット・情報整理セクションのフラットなリスト形式 */
#plus2025 .flat-benefits-list {
    max-width: 700px;
    margin: 0 auto;
    list-style: none;
    padding-left: 0;
}

#plus2025 .flat-benefits-list li {
    background-color: #f9f9f9;
    border-left: 4px solid #cf243b;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 0 4px 4px 0;
}

#plus2025 .flat-benefits-list li .benefit-title {
    font-size: 1.15rem !important;
    font-weight: bold;
    color: #1d3b63;
    margin-bottom: 0.25rem;
}

#plus2025 .flat-benefits-list li .benefit-desc {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    #plus2025 .flat-benefits-list li {
        padding: 1rem;
    }

    #plus2025 .flat-benefits-list li .benefit-title {
        font-size: 1.05rem !important;
    }

    #plus2025 .flat-benefits-list li .benefit-desc {
        font-size: 0.88rem;
    }
}

/* 合格実績 (gokaku) 移植スタイル */
#plus2025 .yelow_area {
    background-color: #fcf8e3 !important;
    /* 薄い黄色背景 */
    padding: 40px 0 !important;
}

#plus2025 .gokaku .card-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

#plus2025 .gokaku .card {
    flex: 1 0 45%;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background-color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
    margin-bottom: 0 !important;
}

#plus2025 .gokaku .gokaku_title {
    color: #927c56 !important;
    font-size: 110% !important;
    font-weight: bold !important;
    margin-bottom: 0.5rem !important;
}

#plus2025 .gokaku span.gokaku_no {
    font-size: 110% !important;
    font-weight: bold !important;
    color: #927c56 !important;
}

@media (max-width: 768px) {
    #plus2025 .yelow_area {
        padding: 25px 0 !important;
    }

    #plus2025 .gokaku .card-group {
        flex-direction: column;
    }

    #plus2025 .gokaku .card {
        flex: 1 0 100%;
        margin-bottom: 15px !important;
    }

    #plus2025 .gokaku .gokaku_title {
        font-size: 100% !important;
    }

    #plus2025 .gokaku span.gokaku_no {
        font-size: 100% !important;
    }
}

/* ==========================================================================
   2026.06.08追加
   ========================================================================== */
#plus2025 #CVArea06{
    background: #fff5f6;
    padding: 20px 0;
}

.plusbtn:hover {
  opacity: 0.7; 
	transition:0.3s;
}

