@charset "utf-8";
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);

/* Google FontsからPoppinsを追加読み込み */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Poppins:wght@700&display=swap');

/* ==========================================================================
   新ヘッダーレイアウト (1段構成・Figmaデザイン対応)
   ========================================================================== */

/* ヘッダー全体の設定 */
header.new-header {
    background-color: #ffffff !important;
    width: 100% !important;
    border-bottom: 1px solid #e5e5e5 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 9999 !important;
}

/* ヘッダーの中身（横並びFlexbox） */
.new-header__inner {
    display: flex !important;
    /* ▼両端の要素（ロゴとボタン）を画面の端に合わせる */
    justify-content: space-between !important;
    align-items: center !important;

    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 10px 30px !important;
    height: 80px !important;
    box-sizing: border-box !important;
}

/* 1. 左：ロゴエリア */
.new-header__logo {
    flex-shrink: 0 !important;
    /* ▼ 基本はFigma通り80px。画面が狭い時だけ最小20pxまで縮む */
    margin-right: clamp(10px, 3vw, 50px) !important;
}
.new-header__logo img {
    height: 40px !important;
    width: auto !important;
    display: block !important;
    margin: 0 !important;
}

/* 2. 中央：メニューエリア */
.new-header__nav {
    display: flex !important;
    justify-content: flex-start !important;

    /* メニュー全体を柔軟に配置 */
    flex-grow: 1 !important;

    /* 会社概要とボタンの間の余白　基本40px、狭い時は15pxまで縮む */
    margin-right: clamp(15px, 3vw, 40px) !important;
}

/* 1階層目のリスト（横並び） */
.new-header__nav > ul {
    display: flex !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;

    /* 基本はFigma通り30px。画面が狭い時だけ最小10pxまで縮む */
    gap: clamp(10px, 2vw, 30px) !important;

    justify-content: flex-start !important;
    align-items: center !important;
    width: auto !important;
    max-width: 100% !important;
}

/* 全階層のメニューアイテム */
.new-header__nav ul li {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    position: relative !important;
    width: auto !important;
    /* 文字は縮ませない・折り返させない */
    flex: 0 0 auto !important;
}
.new-header__nav ul li::before,
.new-header__nav ul li::after {
    display: none !important;
    content: none !important;
}

/* メニューの文字 */
.new-header__nav ul li a {
    text-decoration: none !important;
    font-family: 'Noto Sans JP', sans-serif !important;
    color: #333333 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    transition:
        color 0.2s ease,
        background-color 0.2s ease !important;
    border: none !important;
    padding: 10px 0 !important;
    display: block !important;
    width: max-content !important;
}
.new-header__nav ul li a::before,
.new-header__nav ul li a::after {
    display: none !important;
    content: none !important;
}
.new-header__nav ul li a:hover {
    color: #009fdb !important;
}

/* ==========================================================
   サブメニュー（ドロップダウン）の設定：プライバシーポリシー等
   ========================================================== */
.new-header__nav ul ul {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background-color: #ffffff !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 4px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    min-width: 200px !important;
    padding: 10px 0 !important;
    z-index: 100 !important;
    flex-direction: column !important;
    gap: 0 !important;
}
.new-header__nav ul li:hover > ul {
    display: flex !important;
}
.new-header__nav ul ul li {
    width: 100% !important;
}
.new-header__nav ul ul li a {
    padding: 10px 20px !important;
    font-size: 13px !important;
}
.new-header__nav ul ul li a:hover {
    background-color: #f0faff !important;
}

/* 3. 右：ボタンエリア */
.new-header__actions {
    display: flex !important;
    align-items: center !important;

    /* 基本はFigma通り15px。画面が狭い時は8pxまで縮む */
    gap: clamp(8px, 1.5vw, 15px) !important;

    /* ボタン群自体は画面からはみ出さないよう縮ませない */
    flex-shrink: 0 !important;
    margin: 0 !important;
}

/* ボタン共通設定 */
.new-header__actions .header-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 54px !important;
    border-radius: 50px !important;
    font-family: 'Noto Sans JP', sans-serif !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    gap: 10px !important;
    box-sizing: border-box !important;
}

/* ダウンロードボタン（白背景＋青枠） */
.new-header__actions .btn-dl {
    background-color: #ffffff !important;
    color: #333333 !important;
    border: 2px solid #009fdb !important;
    font-weight: 500 !important;
    padding: 0 24px !important;
}
.new-header__actions .btn-dl .material-icons {
    color: #333333 !important;
}
.new-header__actions .btn-dl:hover {
    background-color: #f0faff !important;
}

/* お問い合わせボタン（青背景） */
.new-header__actions .btn-contact {
    background-color: #009fdb !important;
    color: #ffffff !important;
    border: 2px solid #009fdb !important;
    font-weight: 700 !important;
    padding: 0 32px !important;
}
.new-header__actions .btn-contact .material-icons {
    color: #ffffff !important;
}
.new-header__actions .btn-contact:hover {
    background-color: #0088bb !important;
}

/* ==========================================================
   スマホ版ヘッダーの調整 (768px以下)
   ========================================================== */
@media screen and (max-width: 768px) {
    /* 1. ヘッダー全体の高さと配置 */
    html body .new-header__inner {
        height: 50px !important; /* Figma: H 50 */
        padding: 0 16px !important; /* 画面両端の余白 */
        justify-content: flex-start !important; /* 一旦左寄せにリセット */
    }

    /* 2. ロゴのサイズ調整と配置 */
    html body .new-header__logo {
        /* 右側の余白を最大まで広げることで、ボタン類を右端へ押しやる */
        margin-right: auto !important;
    }
    html body .new-header__logo img {
        height: 30px !important; /* Figma: H 30 */
        width: auto !important;
    }

    /* 3. PC用メニューはスマホで確実に非表示にする */
    html body .new-header__nav {
        display: none !important;
    }

    /* 4. 右側のボタンエリアを強制表示し、メニューとの隙間を作る */
    html body .new-header__actions.pc_only {
        display: flex !important;
        margin-right: 12px !important; /* Figma: メニューとの隙間 12px */
        margin-left: 0 !important;
        gap: 0 !important;
    }

    /* 5. お問い合わせボタンはスマホでは非表示 */
    html body .new-header__actions .btn-contact {
        display: none !important;
    }

    /* 6. 資料ダウンロードボタンのサイズとデザイン */
    html body .new-header__actions .btn-dl {
        display: inline-flex !important; /* ボタン自体を確実に表示させる */
        height: 32px !important; /* Figma: H 32 */
        padding: 0 16px !important; /* 左右の余白で幅を調整 */
        font-size: 9px !important; /* Figma: 9px */
        font-weight: 500 !important; /* Figma: Medium */
        gap: 6px !important; /* アイコンと文字の隙間 */
        border: 1.5px solid #009fdb !important; /* 線の太さ */
        border-radius: 50px !important;
    }
    html body .new-header__actions .btn-dl .material-icons {
        font-size: 14px !important;
    }

    /* 7. ハンバーガーメニューのサイズと配置 */
    html body #mobile_button {
        position: static !important;
        float: none !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;

        width: 16px !important; /* Figma: W 16 */
        height: 12px !important; /* Figma: H 12 */
        margin: 0 !important;
        padding: 0 !important;
        align-self: center !important;
    }

    /* 被りの原因だった「MENU文字のSVG」と「テーマ独自の線」を完全に消去 */
    html body #mobile_button .lineswrap,
    html body #mobile_button .menutxt {
        display: none !important;
    }

    /* aタグを真ん中揃えのコンテナにする（前回のborder指定は解除） */
    html body #mobile_button a {
        display: flex !important;
        width: 16px !important;
        height: 12px !important;
        padding: 0 !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        border: none !important;
    }

    /* 1本の「角丸の線」を作り、影（box-shadow）で上下にコピーして3本線にする */
    html body #mobile_button a::before {
        content: '' !important;
        display: block !important;
        width: 16px !important;
        height: 1.5px !important;
        background-color: #333333 !important;
        border-radius: 10px !important; /* 線の両端を綺麗な丸にする */

        /* 上に -5px、下に 5px の位置へ、全く同じ「角丸の線」をコピーする */
        box-shadow:
            0 -5px 0 0 #333333,
            0 5px 0 0 #333333 !important;
    }
}

/*-------------------------*/
/* 会社概要                */
/*-------------------------*/
section.company .partner-logo {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

section.company .partner-logo img {
    width: 30%;
}

@media (max-width: 767px) {
    section.company p.message {
        margin-top: -20px;
    }

    section.company .partner-logo {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    section.company .partner-logo img {
        width: 45%;
    }
}

/*-------------------------*/
/* ブログ                  */
/*-------------------------*/
section.no-margin p {
    margin: 0;
}

/*-------------------------*/
/* 特定商取引法に関する表記  */
/*-------------------------*/
.specified-commercial-transaction-law {
    width: 100%;
    font-size: 14px;
    border: 1px solid #e3e3e3;
    color: #333;
}

.specified-commercial-transaction-law td {
    border: 1px solid #e3e3e3;
}

.specified-commercial-transaction-law td:first-child {
    background-color: #f3f3f3;
    width: 30%;
    vertical-align: middle;
}

/*-------------------------*/
/* ブログカード            */
/*-------------------------*/
.goodoro-blog-card-contents {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.goodoro-blog-card {
    background: #ffffff;
    border: 2px solid #00a2de;
    word-wrap: break-word;
    max-width: 31%;
    min-width: 31%;
    margin: 10px;
    /* sp用 ※4 */
}

@media (max-width: 767px) {
    .goodoro-blog-card-contents {
        flex-direction: column;
        padding: 0 20px;
    }

    .goodoro-blog-card {
        max-width: 100%;
    }
}

.goodoro-blog-card a {
    text-decoration: none;
}

.goodoro-blog-card-title {
    color: #ffffff;
    background-color: #00a2de;
    padding: 15px 5px;
    font-size: 100%;
    font-weight: bold;
    line-height: 1em;
    text-align: center;
}

.goodoro-blog-card-thumbnail {
    margin: 0 auto;
}

.goodoro-blog-card-thumbnail img {
    width: 100%;
    height: 140px;
    display: block;
    padding: 0;
    object-fit: cover;
}

.goodoro-blog-card-thumbnail-free img {
    width: 100%;
    height: 100px;
    display: block;
    padding: 0;
    object-fit: cover;
    margin: 20px 0;
}

.goodoro-blog-card-content {
    line-height: 120%;
    height: 100px;
}

.goodoro-blog-card-description {
    color: #333;
    padding: 15px 10px;
    font-size: 90%;
}

.goodoro-blog-card-footer {
    text-align: center;
    padding: 10px 10px 20px 10px;
}

.goodoro-blog-card-button {
    width: 200px;
    color: #fff;
    background-color: #00a2de;
    font-size: 100%;
    position: relative;
    padding: 5px;
    border-radius: 100vh;
    border: none;
    cursor: pointer;
}

.goodoro-blog-card-button:hover {
    background-color: #0088bb;
}

.goodoro-blog-card-button i.fa {
    margin-right: 1rem;
}

/*-------------------------*/
/* フッター                */
/*-------------------------*/
/* フッターのお問い合わせブロックを中央寄せにする */
.responsedevise .cb_contact.flex {
    justify-content: center !important;
}

/* ==========================================================================
   新フッターレイアウト (PC版 / Figma完全準拠・1200x240固定版)
   ========================================================================== */
.new-footer {
    background-color: #ffffff !important;
    width: 100% !important;
    color: #333333 !important;
    font-family: 'Noto Sans JP', sans-serif !important;
    /* ▼ 元テーマの干渉を断ち切り、強制的にブロックにする */
    display: block !important;
    clear: both !important;
}

/* 1200pxの箱を作り、画面の中央に配置 */
.new-footer__inner {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    /* ▼ 修正：画面が小さいノートPC等で見ても、左右に必ず40pxの余白を確保する保護設定 */
    padding: 120px 40px 40px !important;
    box-sizing: border-box !important;
}

/* 1200pxの箱の中で、コンテンツをどう並べるか */
.new-footer__main {
    display: flex !important;
    /* ▼ 修正：両端に引き裂くのをやめ、全体を中央（center）にキュッとまとめる */
    justify-content: center !important;
    /* ▼ Figma完全再現：ロゴとメニューの「間隔 100」 */
    gap: 200px !important;

    align-items: flex-start !important;
    width: 100% !important;
    height: 240px !important;
    margin-bottom: 40px !important;
}

/* 左側：ロゴとSNS */
.new-footer__left {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important; /* ▼ 240pxの箱の中で、上端(ロゴ)と下端(SNS)に自動で振り分ける魔法 */
    height: 100% !important; /* 親の240pxを継承 */
}

.new-footer__logo img {
    width: 200px !important;
    height: auto !important;
    display: block !important;
}

.new-footer__sns {
    display: flex !important;
    gap: 16px !important;
    margin: 0 !important;
}

.new-footer__sns img {
    width: 35px !important;
    height: 35px !important;
    transition: opacity 0.3s ease !important;
}
.new-footer__sns a:hover img {
    opacity: 0.6 !important;
}

/* 右側：メニュー */
.new-footer__right {
    width: auto !important;
}

/* メニューのGridマッピング設定（変更なし：2・3・2・1配置） */
.footer-menu-list {
    display: grid !important;
    grid-template-columns: auto auto auto auto !important;
    grid-template-rows: auto auto auto !important;
    column-gap: 56px !important;
    row-gap: 20px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-menu-list li a {
    color: #333333 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    display: inline-block !important;
    white-space: nowrap !important;
    transition:
        color 0.3s ease,
        opacity 0.3s ease !important;
}
.footer-menu-list li a:hover {
    color: #009fdb !important;
    opacity: 0.8 !important;
}

.footer-menu-list li:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}
.footer-menu-list li:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}
.footer-menu-list li:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
}
.footer-menu-list li:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}
.footer-menu-list li:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
}
.footer-menu-list li:nth-child(6) {
    grid-column: 3;
    grid-row: 1;
}
.footer-menu-list li:nth-child(7) {
    grid-column: 3;
    grid-row: 2;
}
.footer-menu-list li:nth-child(8) {
    grid-column: 4;
    grid-row: 1;
}

/* 区切り線 */
.new-footer__divider {
    width: 100% !important;
    height: 1px !important;
    background-color: #d9d9d9 !important;
    margin-bottom: 40px !important;
}

/* コピーライト */
.new-footer__copyright p {
    margin: 0 !important;
    text-align: center !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #333333 !important;
    line-height: 28px !important;
}

/* ==========================================================================
   スマホ版フッターレイアウト (Figma完全準拠 / 768px以下)
   ========================================================================== */
@media screen and (max-width: 768px) {
    /* 1. フッター全体と余白 */
    .new-footer__inner {
        width: 100% !important;
        /* Figma: 上下40px、左右16px */
        padding: 40px 16px !important;
    }

    /* 2. メインコンテナ：縦並びにして、中身全体を「中央」に配置する */
    .new-footer__main {
        height: auto !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important; /* ← 全体を中央寄せに変更 */

        /* Figma: ロゴ、メニュー、SNSのグループ間の隙間 60px */
        gap: 0 !important;
        margin-bottom: 40px !important;
    }

    /* 左ブロックの枠を解除 */
    .new-footer__left {
        display: contents !important;
    }

    /* 1番目：ロゴ */
    .new-footer__logo {
        order: 1 !important;
        /* ▼修正：ロゴとメニューの間隔(60px)をここで設定 */
        margin: 0 0 60px 0 !important;
        width: 200px !important;
        display: flex !important;
        justify-content: flex-start !important;
    }

    /* 2番目：メニュー */
    .new-footer__right {
        order: 2 !important;
        width: 208px !important;
        /* ▼修正：メニューとSNSアイコンの間隔(28px)をここで設定 */
        margin-bottom: 28px !important;
    }

    .footer-menu-list {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important; /* メニュー文字は左揃え */
        row-gap: 5px !important;
    }

    .footer-menu-list li a {
        white-space: normal !important;
    }

    /* ▼ Figma完全再現：特定のメニュー項目の下に「追加の余白（ピンクのブロック）」を作る */
    /* 2番目(料金)、5番目(セミナー)、7番目(プライバシー) の下を広げる */
    .footer-menu-list li:nth-child(2),
    .footer-menu-list li:nth-child(5),
    .footer-menu-list li:nth-child(7) {
        margin-bottom: 28px !important; /* gap(28px) + margin(28px) = 56px の余白になる */
    }

    /* 3番目：SNSアイコン */
    .new-footer__sns {
        order: 3 !important;
        margin-top: 0 !important;
        /* SNSアイコンもメニューと同じ幅の箱に入れ、左揃えにする */
        width: 208px !important;
        justify-content: flex-start !important;
    }

    /* 区切り線とコピーライトの余白 */
    .new-footer__divider {
        margin-bottom: 40px !important;
    }
}

/* ==========================================================================
   新・スマホ用固定フロートボタン (HTMLシンプル版 / Figma完全準拠)
   ========================================================================== */

/* 1. 全体の配置とアニメーション設定 */
#fix_footer {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;

    /* 初期状態は非表示（下からふわっと出てくる準備） */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        visibility 0.4s ease !important;
}

/* PCでは絶対に表示させない保護 */
@media screen and (min-width: 769px) {
    #fix_footer {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    /* JavaScriptで「.fixed」が付与されたらフワッと表示 */
    #fix_footer.fixed {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }

    /* 一番下まで行ったらフワッと消える */
    #fix_footer.fadeout {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    /* 2. 背景とリストコンテナの余白 */
    #fix_footer.new-fix-footer {
        padding: 12px 30px !important; /* Figma: 縦12px、横30px */
        box-sizing: border-box !important;
        background-color: rgba(255, 255, 255, 0.7) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
    }

    #fix_footer.new-fix-footer ul {
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important; /* Figma: ボタン間の隙間 8px */
    }

    #fix_footer.new-fix-footer li {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        /* ▼追加：元のテーマの黄色い背景や線を完全に消し去る */
        background: transparent !important;
        border: none !important;
    }

    /* 3. ボタンの共通ベース設定 */
    #fix_footer.new-fix-footer a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        height: 40px !important;
        border-radius: 50px !important;
        text-decoration: none !important;
        font-family: 'Noto Sans JP', sans-serif !important;
        font-size: 15px !important;
        position: relative !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
        transition: transform 0.2s ease !important;
    }
    #fix_footer.new-fix-footer a:active {
        transform: scale(0.98) !important; /* タップした時の凹みアクション */
    }

    /* =========================================
       上段：資料ダウンロード のデザイン
       ========================================= */
    .fix_dlbtn a {
        background-color: #ffffff !important;
        border: 2px solid #009fdb !important;
        color: #333333 !important;
        font-weight: 500 !important; /* Figma: Medium */
    }

    /* 左側の「ダウンロード」アイコン (CSSでマスクして描画) */
    .fix_dlbtn a::before {
        content: '';
        display: block;
        width: 20px;
        height: 20px;
        margin-right: 8px;
        background-color: #333333; /* アイコンの色：黒 */
        -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3e%3cpolyline points='7 10 12 15 17 10'/%3e%3cline x1='12' y1='15' x2='12' y2='3'/%3e%3c/svg%3e");
        mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3e%3cpolyline points='7 10 12 15 17 10'/%3e%3cline x1='12' y1='15' x2='12' y2='3'/%3e%3c/svg%3e");
        -webkit-mask-size: contain;
        mask-size: contain;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
    }

    /* 右側の「黒丸＋白矢印」アイコン */
    .fix_dlbtn a::after {
        content: '';
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background-color: #333333; /* 黒丸 */
        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='9 18 15 12 9 6'/%3e%3c/svg%3e"); /* 白矢印 */
        background-size: 14px 14px;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* =========================================
       下段：お問い合わせ のデザイン
       ========================================= */
    .fix_mailbtn a {
        background-color: #009fdb !important;
        border: 2px solid #009fdb !important;
        color: #ffffff !important;
        font-weight: 700 !important; /* Figma: Bold */
    }

    /* 左側の「メール」アイコン (CSSでマスクして描画) */
    .fix_mailbtn a::before {
        content: '';
        display: block;
        width: 20px;
        height: 20px;
        margin-right: 8px;
        background-color: #ffffff; /* アイコンの色：白 */
        -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3e%3cpolyline points='22,6 12,13 2,6'/%3e%3c/svg%3e");
        mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3e%3cpolyline points='22,6 12,13 2,6'/%3e%3c/svg%3e");
        -webkit-mask-size: contain;
        mask-size: contain;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
    }

    /* 右側の「白丸＋黒矢印」アイコン */
    .fix_mailbtn a::after {
        content: '';
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background-color: #ffffff; /* 白丸 */
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='9 18 15 12 9 6'/%3e%3c/svg%3e"); /* 黒矢印 */
        background-size: 14px 14px;
        background-position: center;
        background-repeat: no-repeat;
    }
}

/*-------------------------*/
/* kintoneプラグイン        */
/*-------------------------*/
section.goodoro-kintone-plugin {
    padding-bottom: 2rem;
}

section.goodoro-kintone-plugin .container {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
}

section.goodoro-kintone-plugin .inner {
    width: 100%;
    margin: 0 auto;
}

section.goodoro-kintone-plugin h2:before {
    content: none !important;
}

section.goodoro-kintone-plugin .h2_title img {
    display: block;
    width: 100%;
    padding-bottom: 1rem;
}

section.goodoro-kintone-plugin .catch_p {
    font-size: 1.4rem;
    line-height: 1.8em;
    font-weight: bold;
    text-align: center;
}

section.goodoro-kintone-plugin .points img {
    display: block;
    width: calc(862% / 15);
    margin: 0 auto;
    padding-bottom: 2rem;
}

section.goodoro-kintone-plugin .points img:nth-of-type(2n + 1) {
    padding-bottom: 2rem;
}

section.goodoro-kintone-plugin .points img:nth-of-type(3n) {
    padding-bottom: 0;
    width: 68%;
    margin-left: 21.4%;
}

section.goodoro-kintone-plugin .functions {
    padding-bottom: 4rem;
}

section.goodoro-kintone-plugin .function_area {
    display: inline-block;
    width: 32.5%;
    margin-right: 0.8%;
    position: relative;
}

section.goodoro-kintone-plugin .function_area:nth-of-type(3) {
    margin-right: 0;
}

section.goodoro-kintone-plugin .function_img {
    display: block;
    width: 100%;
}

section.goodoro-kintone-plugin .function_p {
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 87%;
    width: 100%;
}

section.goodoro-kintone-plugin .function_trial_btn {
    display: inline-block;
    width: 100%;
}

section.goodoro-kintone-plugin .function_trial_btn img {
    display: block;
    width: 100%;
}

section.goodoro-kintone-plugin .howtouse_img {
    display: inline-block;
    width: 24.2%;
    margin-right: calc(3.2% / 3);
}

section.goodoro-kintone-plugin .howtouse_img:nth-of-type(4) {
    margin-right: 0;
}

section.goodoro-kintone-plugin .casestudies_img {
    display: inline-block;
    width: 24.2%;
    margin-right: calc(3.2% / 3);
}

section.goodoro-kintone-plugin .casestudies_img:nth-of-type(4) {
    margin-right: 0;
}

section.goodoro-kintone-plugin .flow_img {
    display: block;
    width: 100%;
    margin: 0 auto;
}

section.goodoro-kintone-plugin .price_img {
    display: block;
    width: 100%;
}

section.goodoro-kintone-plugin .trial_p {
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: center;
    padding-bottom: 1em;
}

section.goodoro-kintone-plugin label,
input,
textarea {
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: bold;
}

section.goodoro-kintone-plugin .main_label,
.type_label,
.checkbox {
    padding-top: 0.6em;
    display: inline-block;
}

section.goodoro-kintone-plugin .main_label {
    width: 17.6%;
}

section.goodoro-kintone-plugin .main_label span {
    font-size: 70%;
    line-height: 1.2;
    color: white;
    background-color: #3c81a2;
    vertical-align: middle;
    margin-left: 0.8em;
    padding: 0 0.2em 0.1em;
    border-radius: 0.3em;
}

section.goodoro-kintone-plugin .wide_input {
    display: inline-block;
    width: 82.4%;
    box-sizing: border-box;
    vertical-align: top;
    padding: 0.6em;
}

section.goodoro-kintone-plugin .type_label {
    padding-left: 0.3em;
    padding-right: 3em;
}

section.goodoro-kintone-plugin .button_area {
    text-align: center;
    padding-top: 4rem;
}

section.goodoro-kintone-plugin button {
    padding: 0;
    border: none;
    background-color: transparent;
    display: inline-block;
    width: calc(1186% / 17);
}

section.goodoro-kintone-plugin button img {
    display: block;
    width: 100%;
}

section.goodoro-kintone-plugin .plugin_img {
    display: inline-block;
    width: 48.5%;
    margin-right: 1%;
}

section.goodoro-kintone-plugin .plugin_img:nth-of-type(2) {
    margin-right: 0;
}

/* 20240124 スプレッドシートプラグイン販売画面追記*/
/*
section.goodoro-kintone-plugin img {
    width: 100%;
}
*/

/*
.app_case .spreadsheetplugin-icon img {
    width: 200px;
}
*/

/*　20240124　追記終了*/

@media (max-width: 767px) {
    section.goodoro-kintone-plugin {
        padding-bottom: 0;
    }

    section.goodoro-kintone-plugin .inner {
        width: 90%;
    }

    section.goodoro-kintone-plugin #catch_wrapper {
        padding-bottom: 4rem;
    }

    section.goodoro-kintone-plugin .catch_p {
        width: 100%;
        font-size: 1rem;
        line-height: 2.2;
    }

    section.goodoro-kintone-plugin .points img {
        width: 100%;
    }

    /*
    section.goodoro-kintone-plugin .points img:nth-of-type(2n+1) {
        padding-bottom: 4rem;
    }
    */

    section.goodoro-kintone-plugin .points img:nth-of-type(3n) {
        padding-bottom: 0;
        width: 100%;
        margin-left: 0;
        padding-bottom: 4rem;
    }

    section.goodoro-kintone-plugin .functions {
        padding-bottom: 1rem;
    }

    section.goodoro-kintone-plugin .function_area {
        display: block;
        width: 92%;
        margin: 0 auto !important;
        padding-bottom: 5rem;
    }

    section.goodoro-kintone-plugin .function_p {
        font-size: 1.1rem;
        line-height: 1;
        top: 70%;
    }

    section.goodoro-kintone-plugin .howtouse_img {
        width: 47.5%;
        margin-right: 5%;
        margin-bottom: 1.5rem;
    }

    section.goodoro-kintone-plugin .howtouse_img:nth-of-type(2n) {
        margin-right: 0;
    }

    section.goodoro-kintone-plugin .casestudies_img {
        width: 47.5%;
        margin-right: 5%;
        margin-bottom: 1.5rem;
    }

    section.goodoro-kintone-plugin .casestudies_img:nth-of-type(2n) {
        margin-right: 0;
    }

    section.goodoro-kintone-plugin .flow_img {
        width: 75%;
    }

    section.goodoro-kintone-plugin .trial_p {
        font-size: 1rem;
        line-height: 2.2;
        padding-bottom: 3em;
    }

    section.goodoro-kintone-plugin label,
    input,
    textarea {
        font-size: 1.7rem;
    }

    section.goodoro-kintone-plugin .main_label {
        width: 100%;
        padding-bottom: 0.8em;
    }

    section.goodoro-kintone-plugin .wide_input {
        width: 100%;
    }

    section.goodoro-kintone-plugin .type_label {
        box-sizing: border-box;
        width: 93%;
    }

    section.goodoro-kintone-plugin button {
        width: 110%;
        margin-left: -5%;
    }

    section.goodoro-kintone-plugin .plugin_img {
        width: 100%;
        margin-right: 0;
    }

    section.goodoro-kintone-plugin .plugin_img:nth-of-type(2) {
        margin-top: 2.5rem;
    }

    section.goodoro-kintone-plugin iframe {
        height: 1050px !important;
    }
}

section.goodoro-kintone-plugin .sp_only {
    display: none !important;
}

@media (max-width: 767px) {
    section.goodoro-kintone-plugin .pc_only {
        display: none !important;
    }

    section.goodoro-kintone-plugin .sp_only {
        display: block !important;
    }
}

/*-------------------------*/
/* リリースノート           */
/*-------------------------*/
section.release-notes .release-date {
    color: #666;
    margin-top: -28px;
    margin-bottom: 20px;
}

section.release-notes p {
    margin-bottom: 6px !important;
}

section.release-notes #download_link h3 {
    border-bottom: none !important;
    font-size: initial !important;
    font-weight: initial !important;
    letter-spacing: initial !important;
    padding: initial !important;
    margin: initial !important;
}

section.release-notes #download_link a.wpdm-download-link {
    padding-right: 25px;
    background-color: #00a2de;
}

section.release-notes #download_link a.wpdm-download-link::hover {
    background-color: #00a2de;
}

section.release-notes #download_link a.wpdm-download-link::after {
    font-family: 'Material Icons';
    content: '\f090';
    position: absolute;
    top: 29px;
}

section.release-notes table.release-notes-history {
    border-width: 1px;
    font-size: 16px;
}

section.release-notes table.release-notes-history td:nth-of-type(1),
section.release-notes table.release-notes-history td:nth-of-type(2) {
    min-width: 105px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    section.release-notes table.release-notes-history {
        width: 99%;
        margin: 0 auto;
        border: none;
    }

    section.release-notes table.release-notes-history thead {
        display: none;
    }

    section.release-notes table.release-notes-history tr,
    section.release-notes table.release-notes-history td {
        display: block;
        width: 100%;
        position: relative;
    }

    section.release-notes table.release-notes-history td:nth-of-type(1) {
        background-color: #dcf2fa;
    }

    section.release-notes table.release-notes-history td:nth-of-type(2)::before {
        content: 'ver.';
    }

    section.release-notes table.release-notes-history tr {
        margin-bottom: 20px;
    }
}

/*-------------------------*/
/* Spreadsheetプラグイン    */
/*-------------------------*/
section.goodoro-spreadsheet-plugin {
    padding-bottom: 2rem;
}

section.goodoro-spreadsheet-plugin .container {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
}

section.goodoro-spreadsheet-plugin .catch_p {
    font-size: 1.4rem;
    line-height: 1.8em;
    font-weight: bold;
    text-align: center;
}

section.goodoro-spreadsheet-plugin .howtouse_img {
    display: inline-block;
    width: 24.2%;
    margin-right: calc(3.2% / 3);
}

section.goodoro-spreadsheet-plugin .howtouse_img:nth-of-type(4) {
    margin-right: 0;
}

section.goodoro-spreadsheet-plugin .casestudies {
    text-align: center;
}

section.goodoro-spreadsheet-plugin .casestudies_img {
    display: inline-block;
    width: 30%;
    margin-top: 1%;
    margin-left: 1%;
    margin-right: 1%;
}

section.goodoro-spreadsheet-plugin .casestudies_img:nth-of-type(4) {
    margin-right: 0;
}

@media (max-width: 767px) {
    section.goodoro-spreadsheet-plugin {
        padding-bottom: 0;
    }

    section.goodoro-spreadsheet-plugin #catch_wrapper {
        padding-bottom: 4rem;
    }

    section.goodoro-spreadsheet-plugin .catch_p {
        width: 100%;
        font-size: 1rem;
        line-height: 2.2;
    }

    section.goodoro-spreadsheet-plugin .howtouse_img {
        width: 47.5%;
        margin-right: 5%;
        margin-bottom: 1.5rem;
    }

    section.goodoro-spreadsheet-plugin .howtouse_img:nth-of-type(2n) {
        margin-right: 0;
    }

    section.goodoro-spreadsheet-plugin .casestudies_img {
        width: 90%;
        margin-bottom: 1.5rem;
    }

    section.goodoro-spreadsheet-plugin .casestudies_img:nth-of-type(2n) {
        margin-right: 0;
    }

    section.goodoro-spreadsheet-plugin iframe {
        height: 1050px !important;
    }
}

/*------------------------------------*/
/* Kマッププラグイン PC                 */
/*------------------------------------*/

/* Noto Sans JPフォントをGoogle Fontsから読み込み */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

/* Kマッププラグインページ全体にフォントを適用 */
.kmap-main {
    font-family: 'Noto Sans JP', sans-serif !important;
}

/* PC/SP テキスト・画像 表示切り替え設定 */
.sp-only {
    display: none !important;
}
.pc-only {
    /* PCでは通常通り表示されるため、特別な指定は不要 */
}

/* デフォルト（PC表示）ではSP用テキスト・画像を非表示にする */
.sp-text,
.sp-image {
    display: none;
}

/* デフォルト（PC表示）ではPC用テキストを表示する（スタイルの上書き防止用） */
.pc-text {
    display: inline; /* li要素内などを想定 */
}
h1.hero-catchphrase > .pc-text {
    display: block; /* h1直下ではブロック要素として扱う */
}

/* Kマッププラグインページ共通のセクションタイトルスタイル */
.about-section .section-title, /* 製品概要 */
.features-section .section-title, /* 主な機能 */
.use-cases-section .section-title, /* 利用シーン */
.points-section .section-title,    /* 利用ポイント */
.video-explanation-section .section-title, /* 動画 */
.case-studies-section .section-title, /* 導入事例 */
.pricing-section .section-title,    /* ご利用料金 */
.support-info-section .section-title, /* サポート情報 */
.contact-section .section-title {
    /* お問い合わせ */
    color: #000000 !important;
    font-weight: bold !important;
    font-size: 28px !important;
    text-align: center !important;
    margin-top: 0;
    margin-bottom: 25px !important;
    padding: 0;
    /* 念のため他のテーマスタイルを打ち消す設定を追加 */
    border: none !important;
    background: none !important;
    text-shadow: none !important;
    line-height: 1.3 !important;
}

/* Kマッププラグインページ共通のセクションタイトルの ::before 装飾を無効化 */
.hero-section .section-title::before,
.about-section .section-title::before,
.cta-section .section-title::before,
.features-section .section-title::before,
.use-cases-section .section-title::before,
.points-section .section-title::before,
.video-explanation-section .section-title::before,
.case-studies-section .section-title::before,
.pricing-section .section-title::before,
.support-info-section .section-title::before,
.contact-section .section-title::before {
    display: none !important;
    content: '' !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
}

/*------------------------------------*/
/* メインビジュアルセクション           */
/*------------------------------------*/

/* セクション全体 */
body .site-main.kmap-main section#hero.hero-section {
    /* 個別のプロパティをリセット・設定 */
    margin: 0 !important;
    padding: 60px 40px !important;
    border: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    font-family: 'Noto Sans JP', sans-serif !important;

    /* デザインの適用 */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #ffc400 !important;
    position: relative !important;
    min-height: 550px !important;
    overflow: hidden !important;
}

/* ------------------------------------ */
/* 各セクションタイトルの上部に余白を追加  */
/* （メインビジュアルは除く）             */
/* ------------------------------------ */

.kmap-main > section:not(#hero) .section-title {
    margin-top: 60px !important; /* タイトル上の追加余白（PC） */
    display: block;
}

/* メインビジュアル背景 */
body .site-main.kmap-main section#hero.hero-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    /* 背景画像をURLで指定 */
    background-image: url('https://goodoro.co.jp/wp-content/themes/standard_black_cmspro/img/fv_bg_pc.webp') !important;
    background-size: cover !important; /* セクション全体をカバーするように表示 */
    background-position: center !important; /* 画像を中央に配置 */
    background-repeat: no-repeat !important; /* 画像を繰り返さない */
    z-index: 1 !important;
}

/* コンテンツコンテナ */
body .site-main.kmap-main section#hero.hero-section .hero-container {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important; /* ★修正: 左右の隙間を狭く */
    width: 100% !important;
    max-width: 1200px !important;
    position: relative !important;
    z-index: 2 !important;
    overflow: visible !important; /* 子要素のはみ出しを許可 */
}

/* 左側・右側コンテンツの基本設定 */
body .site-main.kmap-main section#hero.hero-section .hero-content-left,
body .site-main.kmap-main section#hero.hero-section .hero-content-right {
    flex: 1 1 50% !important;
}

/* 左側コンテンツの調整 */
body .site-main.kmap-main section#hero.hero-section .hero-content-left {
    flex: 1 1 40% !important; /* ★修正: 左側をさらに狭く */
    padding-left: 30px !important; /* テキスト全体を右に寄せる */
    overflow: visible !important; /* ボタンのはみ出しを許可 */
}

/* 右側コンテンツの調整 */
body .site-main.kmap-main section#hero.hero-section .hero-content-right {
    flex: 1 1 60% !important; /* ★修正: 右側をさらに広く */
    text-align: center !important;
}

/* キャッチコピー h1 */
body .site-main.kmap-main section#hero.hero-section h1.hero-catchphrase {
    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 1.6 !important;
    color: #fff !important;
    margin: 0 0 30px 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    text-align: left !important;
    letter-spacing: -0.05em; /* ★修正: 文字間を詰める */
}

/* プラグイン名 */
body .site-main.kmap-main section#hero.hero-section .hero-plugin-name {
    display: block !important;
    font-size: 1.5em !important;
    font-weight: 700 !important;
    color: #fff !important;
    letter-spacing: -0.05em; /* ★修正: 文字間を詰める */
}

/* 特徴リスト ul */
body .site-main.kmap-main section#hero.hero-section ul.hero-features {
    list-style: none !important;
    margin: 0 0 40px 0 !important;
    padding: 0 !important;
}

body .site-main.kmap-main section#hero.hero-section .hero-features li {
    display: flex !important;
    align-items: center !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #fff !important;
    padding-bottom: 5px !important;
    background: none !important;
    position: relative !important;
}

/* 最後の項目以外に白い下線を追加 */
body .site-main.kmap-main section#hero.hero-section .hero-features li:not(:last-child) {
    margin-bottom: 10px !important;
    border-bottom: none !important;
}

/* 疑似要素で短い線を作成 */
body .site-main.kmap-main section#hero.hero-section .hero-features li:not(:last-child)::after {
    content: '' !important;
    position: absolute !important;
    bottom: -5px !important;
    left: 43px !important; /* アイコン(28px) + 右マージン(15px) */
    width: calc(100% - 110px) !important;
    height: 0.5px !important;
    background-color: #fff !important;
}

/* アイコンのスタイル */
body .site-main.kmap-main section#hero.hero-section .icon-check {
    display: inline-block !important;
    width: 28px !important;
    height: 28px !important;
    margin-right: 15px !important;
    position: relative !important;
    flex-shrink: 0 !important;

    /* アイコンの背景色を透明に */
    background-color: transparent !important;
    border-radius: 0 !important;

    /* SVGのfillをオレンジ(#FF7B13)に変更し、内側を塗りつぶす */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3e%3cpath d='M50,95 C50,95 10,75 10,50 C10,22.39 27.91,5 50,5 C72.09,5 90,22.39 90,50 C90,75 50,95 50,95 Z' fill='%23FF7B13' stroke='%23ffffff' stroke-width='12'/%3e%3c/svg%3e") !important;
    background-size: 100% 100% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* ::afterは不要になったため空にする */
body .site-main.kmap-main section#hero.hero-section .icon-check::after {
    content: none !important;
}

/* CTAボタン a */
body .site-main.kmap-main section#hero.hero-section a.hero-cta-button {
    display: inline-flex !important;
    align-items: center !important;
    background-color: #00a3df !important;
    color: #fff !important;
    padding: 15px 25px !important;
    border-radius: 12px !important;
    border: 4px solid #fff !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2) !important;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease !important; /* ★修正: opacityを追加 */
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
    text-decoration: none !important;
}

body .site-main.kmap-main section#hero.hero-section a.hero-cta-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
    opacity: 0.7 !important;
}

/* ボタン内アイコン画像 */
body .site-main.kmap-main section#hero.hero-section .cta-icon-image {
    width: 100px !important;
    height: auto !important;
    margin-right: 20px !important;
    border: 2px solid #fff !important;
    border-radius: 4px !important;
}

/* ボタン内テキスト */
body .site-main.kmap-main section#hero.hero-section .cta-text {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-right: auto !important;
    white-space: nowrap !important;
}

/* kintoneイメージ画像 */
body .site-main.kmap-main section#hero.hero-section .hero-main-image {
    max-width: 90% !important;
    height: auto !important;
    box-shadow: none !important;
    margin-left: -20px;
}

/*------------------------------------*/
/* 製品概要セクション                 */
/*------------------------------------*/
.about-section {
    background-color: #fff; /* 背景色 */
    padding: 80px 20px;
}

.about-section .container {
    max-width: 960px;
    margin: 0 auto;
}

/* タイトルと内容の間の余白調整 */
.about-section .section-title {
    margin-bottom: 60px !important;
}

/* 画像とテキストを横並びにするためのコンテナ */
.about-content {
    display: flex;
    align-items: center; /* 垂直方向中央揃え */
    gap: 50px; /* 画像とテキストの間のスペース */
}

/* 画像のラッパー */
.about-image-wrapper {
    flex: 1; /* 比率1 */
    text-align: center; /* 画像を中央に */
}

.about-image {
    max-width: 100%;
    height: auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* 影を追加 */
}

/* テキストのラッパー */
.about-text-wrapper {
    flex: 1; /* 比率1 */
}

.about-text-wrapper p {
    font-size: 0.9em;
    line-height: 1.9;
    color: #333;
    margin: 0;
}

/*------------------------------------*/
/* CTAセクション                      */
/*------------------------------------*/
.cta-section {
    padding: 50px 20px;
    background: linear-gradient(to bottom, #fe7b12, #ffd700);
    text-align: center;
}

.cta-area-content {
    padding: 0;
}

/* 画像とプライマリCTAボタンを囲むラッパー */
.primary-cta-wrapper {
    position: relative;
    padding-top: 80px; /* 画像を配置するための上部スペースを確保 */
    margin-bottom: 30px;
    display: inline-block; /* 中央揃えのために変更 */
    vertical-align: top;
}

/* ホバー効果 */
.primary-cta-wrapper:hover .cta-banner,
.primary-cta-wrapper:hover .thumbnail-wrapper {
    opacity: 0.7;
}

/* 画像を囲むラッパー（ここで枠線と配置を制御）*/
.thumbnail-wrapper {
    position: absolute;
    top: 20px;
    left: 30px;
    transform: none;
    width: 170px;
    z-index: 10;
    background-color: #fff;
    padding: 4px;
    border-radius: 8px;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
    box-shadow: none;
}

/* 画像自体のスタイル */
.cta-banner-thumbnail {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 4px; /* 内側の角丸 */
    object-fit: contain; /* 画像全体が表示されるように変更 */
}

/* 上部バナーエリア（青い背景の部分） */
a.cta-banner.primary-cta {
    background-color: #00a3df;
    border-radius: 25px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center; /* テキストとアイコンを中央揃え */
    color: #fff;
    border: 5px solid #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    max-width: 780px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.cta-banner-text {
    text-align: center;
}

.cta-banner-leadtext {
    margin-top: 0;
    margin-bottom: 5px !important;
    font-size: 1em;
    font-weight: normal;
    line-height: 1.4;
    color: #fff;
}

.cta-banner-maintext {
    color: #fff;
    font-size: 1.4em;
    font-weight: bold;
    line-height: 1.4;
}

.cta-banner-maintext .sp-text {
    display: none;
}

/* 下部ボタンエリア（無料お試し・デモ申し込み） */
.cta-buttons-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cta-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-subtext {
    font-size: 0.9em;
    color: #fff;
    font-weight: bold;
    margin-bottom: 5px !important;
}

/* 共通ボタン スタイル (基本) */
.cta-button {
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.05em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        background-color 0.3s ease,
        opacity 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    min-width: 280px;
    box-sizing: border-box;
}

/* 無料お試し・デモ (セカンダリCTA) */
.cta-button.secondary-cta {
    background-color: #fff;
    color: #00a3df;
    border: 4px solid #00a3df;
}

.cta-button.secondary-cta:hover {
    background-color: #e6f7ff;
}

/*------------------------------------*/
/* 主な機能セクション                 */
/*------------------------------------*/
.features-section {
    padding: 80px 20px;
    background-color: #fff;
}

/* 主な機能セクション内のはみ出し許可（総合対策） */
.features-section,
.features-section .container,
.sample-cta-section,
.sample-cta-content {
    overflow: visible !important;
}

.features-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.features-section .section-subtitle {
    max-width: 100%;
    text-align: center;
    margin-bottom: 80px !important;
    font-size: 14px;
    line-height: 1.8;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative; /* 数字を配置する基準点を変更 */
}

/* 最後のアイテム以外に下余白を設定 */
.features-list > .feature-item:not(:last-of-type) {
    margin-bottom: 100px;
}

/* 偶数番目のアイテムのレイアウトを反転 */
.feature-item-reverse {
    flex-direction: row-reverse;
}

.feature-text-content {
    flex: 4;
    position: relative;
    padding-left: 60px;
    z-index: 2; /* ★修正: 重なり順を2に設定 */
}

/* 偶数番目の反転レイアウトでは、テキストの余白を左右に設定 */
.feature-item-reverse .feature-text-content {
    padding-left: 40px;
    padding-right: 60px;
}

/* 反転レイアウト時の数字のスタイル */
.feature-item-reverse .feature-number {
    left: 40px;
    right: auto;
    transform: translateX(-100%);
}

.feature-image-wrapper {
    flex: 6;
    text-align: center;
    position: relative; /* ★追加 */
    z-index: 1; /* ★追加: 重なり順を1に設定 */
}

.feature-image-wrapper img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-number {
    position: absolute;
    top: 0;
    left: 0.45em;
    font-family: 'Poppins', sans-serif;
    font-size: 4em;
    font-weight: 1000;
    color: #dfdfdf;
    line-height: 1;
    user-select: none;
    z-index: 1;
}

/* 反転レイアウト時の数字のスタイル */
.feature-item-reverse .feature-number {
    left: 0; /* 左端を基準に配置 */
    right: auto; /* right指定をリセット */
    transform: translateX(-0%); /* 要素の幅の60%分、左に移動して配置 */
}

/* 「03スマホ利用」の画像サイズを調整 */
.features-list > .feature-item:nth-of-type(3) .feature-image-wrapper img {
    width: auto; /* 幅の指定をリセット */
    max-width: 350px; /* 大きくなりすぎないように最大幅を指定 */
    height: auto;
}

/* 機能タイトル */
.features-section h3.feature-title {
    font-size: 1.3em !important;
    font-weight: bold !important;
    margin: 30px 0 30px 0 !important;
    color: #ff7b13 !important;
    position: relative;
    z-index: 2; /* 数字より手前に表示 */

    /* テーマのスタイルをリセット */
    border: none !important;
    padding: 0 !important;
    letter-spacing: normal !important;
    text-align: left !important;
    background: none !important;
    clear: none !important;
}

.feature-text-content p {
    font-size: 0.8em;
    line-height: 1.8;
    color: #333;
    text-align: left;
    position: relative;
    z-index: 2; /* ★★★ 追加: 数字より手前に表示 */
}

/* 画像が2つあるアイテム用のスタイル */
.feature-image-multiple {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.feature-image-multiple img {
    width: calc(50% - 10px);
}

/* 「サンプルをさわってみる」ボタン */
.sample-cta-section {
    margin-top: 100px;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    overflow: visible !important;
}

.sample-cta-description {
    font-weight: bold;
    font-size: 1.1em;
    margin: 0 0 25px 0;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ラッパー: 左側にパディングを追加して画像のスペースを確保 */
.sample-cta-wrapper {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding-top: 40px;
    padding-left: 160px; /* ★修正: 画像が配置されるスペースを確保 */
}

/* 画像: ラッパーの左端(パディングエリア)に絶対配置 */
.sample-thumbnail-wrapper {
    position: absolute;
    top: 40px;
    left: 0; /* ★修正: ラッパーの左端に配置 */
    width: 260px;
    z-index: 10;
    transition: opacity 0.3s ease;
}

/* 画像自体のスタイル */
.sample-login-thumbnail {
    width: 90%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* ボタン: 幅を調整し、内部をFlexboxで制御 */
a.sample-cta-button.cta-button {
    display: inline-flex; /* ★修正: 内部要素をFlexboxで制御 */
    align-items: center;
    background-color: #fff;
    border: 4px solid #ff7b13;
    color: #ff7b13;
    padding: 20px 30px; /* ★修正: 内部の余白を調整 */
    width: 480px; /* ★修正: ボタンの幅を固定 */
    min-width: auto; /* min-widthをリセット */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
    margin-left: 0; /* ★修正: 左マージンをリセット */
    box-sizing: border-box;
}

/* ボタン内テキスト: 右マージンをautoにして矢印を右端に追いやる */
.sample-cta-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: auto; /* この要素を左に寄せ、後続の要素(矢印)を右に押す */
    margin-left: 50px;
}

.sample-cta-maintext {
    font-size: 1.3em;
    font-weight: bold;
}

.sample-cta-subtext {
    font-size: 1em;
    font-weight: bold;
    margin-top: 8px;
}

/* ホバー効果 */
.sample-cta-wrapper:hover .sample-cta-button,
.sample-cta-wrapper:hover .sample-thumbnail-wrapper {
    opacity: 0.7;
}

/* サンプルボタン内の矢印の色を指定 */
.sample-cta-button .icon-arrow-right {
    border-color: #ff7b13;
    color: #ff7b13;
}

/* 矢印アイコン: 位置を再調整 */
a.sample-cta-button.cta-button .icon-arrow-right {
    border-color: #ff7b13;
    color: #ff7b13;
    margin-left: 15px; /* ★修正: テキストとの間のマージン */
    margin-right: 0; /* ★修正: 右マージンをリセット */
    flex-shrink: 0; /* ★追加: アイコンが縮むのを防ぐ */
}

/*------------------------------------*/
/* 主な利用シーンセクション             */
/*------------------------------------*/
.use-cases-section {
    padding: 80px 20px;
    background-color: #fff;
}

.use-cases-section .container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* セクション上部の中央線 */
.use-cases-section .container::before {
    content: '';
    display: block;
    width: 95%;
    height: 2px;
    background-color: #e0e0e0;
    margin: 0 auto 80px; /* 下にスペースを取り、左右中央揃え */
}

.use-cases-section .section-subtitle {
    max-width: 800px;
    margin: 0 auto 60px auto !important;
    font-size: 14px;
    line-height: 1.8;
}

/* カードリストのコンテナ */
.use-cases-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px; /* カード間の隙間 */
    list-style: none; /* ulのデフォルトスタイルをリセット */
    padding: 0;
    margin: 0;
}

/* 各カードアイテム */
.use-case-item {
    flex-basis: calc(25% - 25px); /* 4列レイアウトを基本とする */
    min-width: 220px; /* 最小幅 */
    display: flex;
    flex-direction: column;
    border: 2px solid #fe7b12; /* オレンジの枠線 */
    border-radius: 12px;
    background-color: #fff;
    overflow: hidden; /* 角丸を適用するため */
    text-align: center;
}

/* カードのヘッダー（オレンジ部分） */
.use-case-header {
    background-color: #fe7b12;
    color: #fff;
    padding: 15px 10px;
    font-weight: bold;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-case-header p {
    margin: 0 !important;
    font-size: 0.9em;
    line-height: 1.5;
}

/* カードのボディ（アイコン部分） */
.use-case-icon-wrapper {
    flex-grow: 1;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px; /* アイコン拡大に伴い高さを調整 */
}

/* 画像アイコンのサイズ */
.use-case-icon {
    width: 130px;
    height: 130px;
    object-fit: contain; /* 画像の比率を維持 */
}

/*------------------------------------*/
/* プラグインのポイントセクション         */
/*------------------------------------*/
.points-section {
    padding: 60px 20px 80px; /* 線のスペースを考慮してpadding-topを調整 */
    background-color: #fff;
}

/* セクション上部の中央線 */
.points-section .container::before {
    content: '';
    display: block;
    width: 95%;
    height: 2px;
    background-color: #e0e0e0;
    margin: 0 auto 80px; /* 下にスペースを取り、左右中央揃え */
}

.points-section .container {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.points-section .section-subtitle {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 70px !important;
    font-size: 14px;
    line-height: 1.8;
}

.points-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 均等な3つのカラムを作成 */
    gap: 40px;
    align-items: stretch;
}

.point-item {
    flex: 1; /* 各アイテムが均等な幅を持つように設定 */
    display: flex; /* Flexboxを適用して内部要素を制御 */
    flex-direction: column; /* 縦方向に並べる */
}

.point-image-wrapper {
    margin-bottom: 30px;
    height: 90px; /* ★追加: 画像エリアの高さを固定 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.point-image-wrapper img {
    max-height: 100%; /* 高さを親要素に合わせる */
    width: auto;
}

.point-text-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* このコンテナが利用可能な高さいっぱいに伸びる */
}

/* h3タグの汎用スタイルを上書きするための詳細なセレクタ */
.points-section h3.point-title {
    font-weight: bold !important;
    line-height: 1.6 !important;
    color: #333 !important;
    margin: 0 0 20px 0 !important;
    height: 4.8em; /* 高さを微調整 */

    /* 他のCSSからの影響をリセット */
    border: none !important;
    padding: 0 !important;
    letter-spacing: normal !important;
    text-align: center !important;
    background: none !important;
    clear: none !important;
}

/* ハイライトカラーは既存のクラスを流用 */
.point-title .text-highlight {
    color: #ff7b13;
}

.point-description {
    font-size: 0.9em;
    line-height: 1.8;
    color: #555;
    text-align: left; /* デザインに合わせて説明文は左揃え */
    margin-top: 0;
}

/*------------------------------------*/
/* 動画セクション                     */
/*------------------------------------*/
.video-explanation-section {
    padding: 100px 20px;
    background-color: #f5f5f7; /* ご指定の背景色 */
}

.video-explanation-section .section-subtitle {
    text-align: center;
    font-size: 14px;
    margin-bottom: 80px !important; /* サブタイトルと動画の間の余白 */
}

.video-player-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px; /* 動画の最大幅 */
    margin: 0 auto 40px auto; /* 中央揃え */
    margin-bottom: 100px !important; /* 動画の下の余白 */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;

    /* 最新の比率固定指定（これで余白バグが直ります） */
    aspect-ratio: 16 / 9;
    height: auto;
    padding-bottom: 0;
}

.video-player-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-contents-summary {
    text-align: center;
    max-width: 900px; /* コンテンツの最大幅 */
    margin: 0 auto;
}

.video-contents-summary > p {
    margin-bottom: 25px !important; /* 強制的に下マージンを調整 */
}

.summary-items-container {
    display: flex;
    justify-content: center; /* アイテムを中央に寄せる */
    flex-wrap: wrap; /* 折り返しを許可 */
    gap: 25px; /* アイテム間の隙間 */
}

.summary-item {
    flex-basis: 200px; /* PC表示での各アイテムの基本幅 */
    text-align: center;
}

.summary-item img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.summary-item p {
    font-size: 0.9em;
    color: #333;
    margin-bottom: 0 !important; /* 強制的に下マージンを0に */
}

/* ------------------------------------ */
/* 導入事例セクション（カルーセル対応版） */
/* ------------------------------------ */
.case-studies-section {
    padding: 80px 80px;
}

.case-studies-section .container {
    max-width: 85% !important;
    margin: 0 auto;
    background-color: transparent;
    padding: 0 20px;
}

.case-studies-list.swiper {
    /* 上部：カードが浮き上がるためのスペース確保 */
    padding-top: 50px !important;
    margin-top: -30px !important;

    /* 下部：ページネーション用のスペース確保 */
    padding-bottom: 70px !important;

    overflow: hidden;
}

/* ページネーションの位置 */
.swiper-pagination {
    bottom: 10px !important; /* 下端からの位置 */
}

.case-studies-section .section-subtitle {
    margin-bottom: 50px !important;
    font-size: 14px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Swiperコンテナの調整 */
.case-study-link-wrapper {
    display: flex;
    flex-direction: column; /* 縦並び */
    text-decoration: none;
    color: inherit;
    width: 100%; /* 幅いっぱい */
    height: 100%; /* 親(swiper-slide)の高さいっぱいに伸ばす */
}

/* スライド内のリンク設定 */
.case-study-link-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%; /* カードの高さを揃える */
}

/* カード自体のスタイル */
.case-study-item {
    background-color: #f8f8f8 !important;
    border-radius: 8px;
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

    /* 親要素いっぱいに広げる＝一番高いカードに揃う */
    flex-grow: 1;
    height: 100%;

    position: relative !important;
}

.swiper-slide {
    height: auto !important; /* Swiperの自動計算に合わせる */
    display: flex; /* 子要素を伸ばす */
    justify-content: center;
}

/* ホバー時の挙動 */
.case-study-link-wrapper:hover .case-study-item {
    opacity: 1; /* Swiper内のため透明度は変更せず */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* ページネーションの色変更（任意：オレンジに合わせる） */
.swiper-pagination-bullet-active {
    background-color: #ff7b13 !important;
}

/* 画像エリア */
.case-study-image-wrapper img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

/* コンテンツエリア */
.case-study-content {
    padding: 20px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* カテゴリラベル */
.case-study-category {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    z-index: 10 !important; /* 画像より手前に表示 */

    display: inline-block;
    background-color: #fff !important; /* 白背景 */
    color: #333 !important; /* 黒文字 */
    font-size: 13px !important;
    font-weight: bold;
    padding: 6px 14px !important;
    border-radius: 20px !important; /* 角丸 */
    margin: 0 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 視認性を高めるための影 */
    align-self: flex-start; /* 元のFlex配置の影響をリセット */
}

/* 会社名 */
.case-studies-section h3.case-study-company {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
    margin: 15px 0 20px 0 !important;
    text-align: center !important;
    width: 100%;

    /* 下線や装飾を強力にリセット */
    border: none !important;
    border-bottom: none !important;
    text-decoration: none !important;
    background: none !important;
    outline: none !important;
}

/* リンク自体の下線も念のため消去 */
.case-study-link-wrapper:hover {
    text-decoration: none !important;
}

/* ヘッドライン */
.case-study-headline {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    line-height: 1.6;
    margin: 0 0 15px 0;

    /* 白背景のボックスにする */
    background-color: #fff;
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); /* 軽く影をつける */
}

.case-study-headline .text-highlight {
    color: #ff7b13;
}

/* 説明文 */
.case-study-description {
    font-size: 12px;
    color: #333;
    line-height: 1.9;
    margin: 0 0 10px 0;
    flex-grow: 1;
    padding: 0 5px;
}

/* アイコン共通スタイル (円形矢印に統一) */
.icon-arrow-right {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid;
    border-radius: 50%;
    position: relative;
    vertical-align: middle;
    margin-left: 12px;
    color: currentColor;
    flex-shrink: 0; /* ボタンが縮んだ時にアイコンが潰れるのを防ぐ */
}

/* 拡大率に依存しないSVGアイコンに変更 */
.icon-arrow-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: currentColor; /* アイコンの色を親要素から継承 */
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='4' y1='12' x2='20' y2='12'/%3e%3cpolyline points='14 6 20 12 14 18'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='4' y1='12' x2='20' y2='12'/%3e%3cpolyline points='14 6 20 12 14 18'/%3e%3c/svg%3e");
    -webkit-mask-size: 60% 60%;
    mask-size: 60% 60%;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

/* ::afterは不要になったため空にする */
.icon-arrow-right::after {
    content: none;
}

/* 導入事例カード内の矢印のスタイルと配置 */
.case-study-content .icon-arrow-right {
    border-color: #333;
    color: #333;
    align-self: flex-end; /* 右下に配置 */
    margin-top: auto; /* 上の要素を押し上げて一番下に配置 */
    margin-left: 0;
}

/* ホバー時の挙動 */
.case-study-link-wrapper:hover .case-study-item {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* PCではスマホ用矢印を非表示とする */
.case-study-swiper .swiper-button-prev,
.case-study-swiper .swiper-button-next {
    display: none;
}

/*------------------------------------*/
/* ご利用料金セクション               */
/*------------------------------------*/
.pricing-section {
    padding: 60px 20px;
    background-color: #fff; /* 背景色は白を想定 */
    text-align: center;
}

/* タイトルの下線を削除（PC・モバイル共通） */
.pricing-section .plan-name {
    font-size: 1.5em !important;
    border-bottom: none !important;
}

.pricing-section .container {
    max-width: 900px; /* コンテンツの最大幅 */
    margin: 0 auto;
}

.pricing-section .section-subtitle {
    margin-bottom: 50px !important; /* タイトル下の余白 */
    font-size: 14px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

.pricing-plan-wrapper {
    /* border: 3px solid #ff8c00; */
    /* border-radius: 10px; */
    padding: 30px 50px 100px 50px;
    margin: 0 auto;
    background-color: #fff;
}

.pricing-plan {
    display: flex;
    align-items: flex-start; /* 上揃え */
    text-align: left; /* テキストは左揃え */
}

.pricing-plan-image-area {
    margin-right: 30px; /* 画像とテキストの間隔 */
    flex-shrink: 0; /* 画像が縮まないように */
}

.pricing-plan-image-area img {
    width: 150px;
    height: auto;
    margin: 70px 30px 0px 40px;
}

.pricing-plan-details-area {
    flex-grow: 1;
}

.pricing-plan-details-area .plan-name {
    font-size: 1.8em; /* 「年間12万円のサブスク」の文字サイズ */
    font-weight: bold;
    color: #333;
    margin-top: 0;
    margin-bottom: 10px !important;
    border-bottom: none !important; /* 青い下線を無効化 */
}

.pricing-plan-details-area .plan-name .price-emphasis {
    font-size: 1.5em; /* 「12」の部分をさらに大きく */
    color: #ff8c00; /* 強調する数字の色（オレンジ） */
}

.pricing-plan-details-area .plan-name .no-initial-fee {
    font-size: 0.7em;
    font-weight: normal;
}

.pc-pricing-details .plan-features {
    margin-bottom: 10px; /* リスト下の余白を詰める */
    list-style: none; /* スタイルをリセット */
    padding-left: 0; /* 左の余白をリセット */
}

.pc-pricing-details .plan-features li {
    margin-bottom: 30px; /* リスト項目間の余白 */
    padding-left: 1.2em; /* 「・」用のスペースを確保 */
    position: relative;
}

/*「・」が表示されるようにスタイルを明示的に追加 */
.pc-pricing-details .plan-features li::before {
    content: '・';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #333;
}

.pricing-plan-details-area .plan-api-info {
    margin-bottom: 15px;
    font-size: 0.9em;
    font-weight: bold;
}

.pricing-plan-details-area .plan-api-info p {
    margin-bottom: 0 !important;
}

.pricing-plan-details-area .api-details-list {
    list-style: none;
    margin-bottom: 10px;
}

.pricing-plan-details-area .api-details-list li {
    margin-bottom: 5px;
    font-size: 0.95em;
}

.pricing-plan-details-area .plan-note {
    font-size: 0.85em;
    line-height: 1.5;
    margin-bottom: 0 !important; /* 強制的に下マージンを0に */
}

.pc-pricing-details .price-emphasis {
    color: #ff8c00; /* 「12」の文字色をオレンジに */
}

.pc-pricing-details .no-initial-fee {
    font-size: 0.6em; /* 「(初期費用なし)」の文字サイズを小さく */
    vertical-align: middle; /* 垂直位置を調整 */
}

.pc-pricing-details .plan-features {
    margin-bottom: 10px; /* リスト下の余白を詰める */
}

.pc-pricing-details .plan-features li {
    margin-bottom: 10px; /* リスト項目間の余白を詰める */
}

.pc-pricing-details .plan-api-info {
    margin-bottom: 10px; /* API情報ブロック下の余白を詰める */
}

.pc-pricing-details .plan-api-info p {
    margin-bottom: 5px !important; /* 「各API〜」と「→地図表示」の間を詰める */
}

.pc-pricing-details .plan-note {
    font-size: 0.9em;
    line-height: 1.6; /* 注釈の行間を詰める */
}

/* ご利用料金セクションのモバイル用テキストをPCで非表示にする */
.sp-pricing-details {
    display: none;
}

/*----------------------------------------------------------------*/
/* ご利用料金セクション リニューアル用追加CSS                        */
/*----------------------------------------------------------------*/

/* 新プラン告知エリア */
.pricing-renewal-content {
    margin-top: 50px;
    padding-top: 40px;
    text-align: center;
}

/* 告知エリア自体に上下の線をつける */
.pricing-announcement {
    margin: 0 auto 80px auto !important;
    border-top: 1.5px solid #000000ff; /* 上の線 */
    border-bottom: 1.5px solid #000000ff; /* 下の線 */
    padding: 30px 0; /* 線とテキストの間の余白 */
    margin: 0 auto 60px auto; /* 中央寄せと下の余白 */
    max-width: 100%;
    position: relative; /* 線と丸の配置基準とするため追加 */
    box-sizing: border-box;
}

/* 下線から伸びる垂直線 */
.pricing-announcement::after {
    content: '';
    position: absolute;
    top: 100%; /* 下線の直下から開始 */
    left: calc(50% - 280px); /* 中央より左寄り */
    transform: translateX(-50%); /* 線の中心を基準点に合わせる */
    width: 1px; /* 線の太さ */
    height: 80px;
    background-color: #000000ff;
}

/* 線の先の黒い丸 */
.pricing-announcement::before {
    content: '';
    position: absolute;
    top: calc(100% + 80px); /* 線の長さに合わせて位置調整 */
    left: calc(50% - 280px); /* 線と同じ左位置に配置 */
    transform: translateX(-50%); /* 丸の中心を基準点に合わせる */
    width: 6px; /* 丸の直径 */
    height: 6px; /* 丸の直径 */
    border-radius: 50%; /* 円形にする */
    background-color: #000000ff;
}

/* テキストのスタイル調整 */
.pricing-announcement p {
    font-size: 17px;
    line-height: 1.8;
    color: #000000ff;
    max-width: 800px;
    margin: 0 auto; /* テキスト自体のマージンはリセット */
    text-align: left; /* PC表示に合わせて左寄せ */
}

.pricing-announcement .text-highlight {
    color: #ff7b13;
    font-weight: bold;
}

/* 比較表テーブル */
.pricing-comparison-area {
    position: relative; /* ラベル配置の基準点にする */
    padding-top: 20px; /* ラベルが乗る分のスペース確保 */
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.release-date-label {
    position: absolute; /* 絶対配置 */
    top: 0;
    left: 84.5%; /* 横位置 */
    transform: translateX(-50%); /* 自身の幅の半分左に戻して中央揃え */
    width: auto;
    text-align: center;
    margin-bottom: 0 !important;
    white-space: nowrap;
    font-size: 13px;
    font-weight: bold;
    color: #333;
    display: block;
}

/* テーブル全体のスタイル */
.pricing-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 15px; /* セル間の隙間（白線） */
    margin: 0 auto;
}

.pricing-comparison-table th,
.pricing-comparison-table td {
    padding: 15px 10px;
    vertical-align: middle;
}

.pricing-comparison-table th,
.pricing-comparison-table td {
    padding: 8px 10px; /* 縦幅 */
    vertical-align: middle;
    border: none !important; /* 枠線なし */
    letter-spacing: 0.2em; /* 文字と文字の隙間を広げる */
}

/* テーブル本体とセルの枠線をなしにする */
.pricing-comparison-table,
.pricing-comparison-table th,
.pricing-comparison-table td {
    border: none !important;
}

/* ヘッダー行 */
.th-feature {
    background: transparent; /* 左上は透明 */
    border: none;
    width: 40% !important;
}

/* ヘッダー行（プラン名） */
/* セレクタを .pricing-comparison-table .th-plan として優先度を上げる */
.pricing-comparison-table .th-plan {
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    width: 30% !important;

    /* 上下の余白を増やして縦幅（行の高さ）を広くする */
    padding-top: 15px !important;
    padding-bottom: 15px !important;

    /* 念のため高さ制限を解除 */
    height: auto !important;
}

.th-plan.plan-standard {
    background-color: #ff7b13; /* スタンダード　*/
}

.th-plan.plan-premium {
    background-color: #f8aa37; /* プレミアム */
}

/* ボディ行：機能名列 */
.td-feature {
    background-color: #c4c5c4;
    color: #333;
    font-weight: bold;
    text-align: center;
    position: relative;
    font-size: 15px;
}

/* 機能名列の3～5行目（検索機能、カスタムピン、ポリゴン）の背景色と文字色を変更 */
.pricing-comparison-table tbody tr:nth-child(3) .td-feature,
.pricing-comparison-table tbody tr:nth-child(4) .td-feature,
.pricing-comparison-table tbody tr:nth-child(5) .td-feature {
    background-color: #6c6d6b !important;
    color: #ffffff !important;
}

.feature-note {
    display: block;
    font-size: 12px;
    font-weight: normal;
    margin-top: 4px;
    letter-spacing: normal;
}

/* Newバッジ */
.badge-new {
    position: absolute;
    top: -10px;
    left: -10px;
    background: linear-gradient(135deg, #f08300 0%, #e60012 100%); /* 背景グラデーション */
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    width: 34px;
    height: 34px;
    line-height: 34px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 5;
    letter-spacing: normal;
}

/* ボディ行：ステータス列 */
.td-status {
    text-align: center;
    font-size: 20px;
    color: #333;
}

/* スタンダード列の背景色 */
.pricing-comparison-table tbody tr td:nth-child(2) {
    background-color: #fdd2a8; /* 薄いオレンジ */
}

/* プレミアム列の背景色 */
.pricing-comparison-table tbody tr td:nth-child(3) {
    background-color: #ffe8b3; /* 薄いイエロー */
}

/* フッター行：価格表示 */
.price-row td {
    background-color: transparent !important; /* 背景色なし */
    vertical-align: bottom;
    letter-spacing: normal;
}

/* ラベル（無料） */
.td-price-label {
    position: relative; /* 点の配置基準 */
    display: inline-block; /* 幅をテキストに合わせる */
    text-align: center;
    font-weight: bold;
    color: #333;
    line-height: 1.3;
    margin-top: 10px; /* 点を表示するスペースを確保 */
    letter-spacing: 0.2em !important;
    font-size: 30px !important;
}

/* ラベル（初期費用） */
.td-price-label::first-line {
    letter-spacing: 0.1em !important;
    font-size: 22px !important;
    font-weight: bold;
}

/* 強調点 */
.td-price-label::before {
    content: '・・・・';
    position: absolute;
    top: -10px; /* テキストの上に配置 */
    left: 53%;
    transform: translateX(-50%); /* 中央揃え */
    color: #333;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 0.5em; /* 点の間隔を広げる */
    width: 100%;
}

/*【スタンダードプラン】価格表示 */
/* 文字部分（「年」「万円」） */
.td-price-value {
    font-size: 22px !important;
    text-align: center;
    font-weight: bold;
    color: #333;
}

/* 価格（数字）部分 */
.td-price-value .price-large {
    font-size: 32px !important;
    font-weight: bold;
    margin: 0 5px;
}

/* 【プレミアムプラン】価格表示 */
/* 文字部分（「年」「万円」） */
.pricing-comparison-table .price-premium {
    font-size: 31px !important;
    color: #f8aa37 !important;
    border-bottom: 4px solid #f8aa37 !important;
    display: inline-block;
    padding-bottom: 5px;
    line-height: 1.1;
    vertical-align: bottom;
}

/* 価格（数字）部分 */
.price-premium .price-large {
    font-size: 48px !important;
    margin: 0 2px;
}

/* オプションメニューエリア */
.pricing-options-area {
    margin-top: 60px;

    /* 画面幅いっぱいを使用する */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    /* 内部の余白 */
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.options-header {
    margin-bottom: 120px;
    text-align: center;
    /* ヘッダーも広い幅に合わせて中央揃え */
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.options-title {
    font-size: 17px !important;
    font-weight: bold !important;
    border: none !important;
    text-align: center !important;
    margin-bottom: -10px !important;
}

.options-subtitle {
    font-size: 14px;
    color: #333;
    display: block;
    text-align: center;
}

/* カードグリッドレイアウト */
.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2列 */
    gap: 30px;
    text-align: left;

    /* インビジュアル等に合わせて最大幅を広げる */
    max-width: 90%;
    margin: 0 auto;
}

.option-card {
    background-color: #f8f8f8;
    padding: 30px 20px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);

    /* Flexboxで横並びにする */
    display: flex;
    align-items: baseline; /* テキストのベースラインを揃える */
    gap: 20px; /* 名前と説明の間隔 */
}

/* おすすめバッジ本体 */
.badge-recommend {
    position: absolute;
    top: -50px;
    left: 0px;
    background-color: #ff7b13;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 30px; /* パディングを微調整 */
    z-index: 1;
}

/* 吹き出しの三角形（下向き） */
.badge-recommend::after {
    content: '';
    position: absolute;
    top: 100%; /* 本体の真下に配置 */
    left: 50%;
    transform: translateX(-50%); /* 左右中央揃え */
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 0 6px; /* 三角形のサイズ（高さ6px, 幅12px） */
    border-color: #ff7b13 transparent transparent transparent; /* 上辺のみ色付けして逆三角形を作成 */
}

/* オプション名 */
.option-name {
    font-size: 15px !important;
    font-weight: bold !important;
    color: #333;
    margin: 10px 0 15px 0 !important;
    line-height: 1.4 !important;
    border: none !important;
    letter-spacing: 0.2px !important;

    /* タイトルの左にオレンジの線をつける */
    border-left: 5px solid #ff7b13 !important;
    padding-left: 15px; /* 線と文字の間隔 */

    /* 幅調整 */
    flex-shrink: 0; /* 幅が縮まないようにする */
    width: 40%; /* 名前エリアの幅を35%に設定 */
    box-sizing: border-box;
    white-space: normal; /* 幅に合わせて適宜改行するように変更 */
}

/* 1,2番目のカードタイトルだけオレンジ */
.option-card:nth-child(1) .option-name,
.option-card:nth-child(2) .option-name {
    color: #ff7b13;
}

.option-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #333;

    /* 残りの幅を埋める（明示的に指定する場合） */
    width: 60%;
}

/* カード1枚目・2枚目の設定 --- */
/* タイトル　*/
.option-card:nth-child(1) .option-name,
.option-card:nth-child(2) .option-name {
    color: #ff7b13; /* 文字色：オレンジ */
    font-size: 15px !important;
    font-weight: bold !important;
}

/* 説明文 */
.option-card:nth-child(1) .option-desc,
.option-card:nth-child(2) .option-desc {
    color: #333;
    font-size: 14px !important;
}

/* カード3枚目・4枚目の設定 --- */
/* タイトル */
.option-card:nth-child(3) .option-name,
.option-card:nth-child(4) .option-name {
    color: #333;
    font-size: 14px !important;
    font-weight: normal !important;
}

/* 説明文 */
.option-card:nth-child(3) .option-desc,
.option-card:nth-child(4) .option-desc {
    color: #333;
    font-size: 13px !important;
}

.option-desc-head {
    margin-bottom: 5px !important;
}

.option-desc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.option-desc ul li {
    position: relative;
    padding-left: 1em;
    margin-bottom: 5px;
}

.option-desc ul li::before {
    content: '・';
    position: absolute;
    left: 0;
}

/*------------------------------------*/
/* サポート情報セクション             */
/*------------------------------------*/
.support-info-section {
    padding: 80px 20px;
    background-color: #fff;
}

.support-info-section .container {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

/* セクション上部の中央線 */
.support-info-section .container::before {
    content: '';
    display: block;
    width: 95%;
    height: 2px;
    background-color: #e0e0e0;
    margin: 0 auto 80px; /* 下にスペースを取り、左右中央揃え */
}

.support-info-section .section-subtitle {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 70px !important;
    font-size: 14px;
    line-height: 1.8;
}

.support-links-container {
    display: flex;
    justify-content: space-between; /* 両端揃えで均等なスペースを確保 */
}

.support-link-item {
    flex: 1; /* flex: 1に変更して均等な幅を確保 */
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    border-right: 0.1em solid #bebebe; /* ★ 区切り線をborderで直接指定 */
}

/* 最後のアイテムの右側の線は不要なので削除 */
.support-link-item:last-child {
    border-right: none;
}

.support-icon-wrapper {
    margin-bottom: 25px;
}

.support-icon-wrapper img {
    height: 80px;
    width: auto;
}

a.support-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333 !important;
    font-weight: bold;
    font-size: 1.1em;
    gap: 20px; /* テキストと矢印アイコンの間のスペース */
    transition: opacity 0.3s ease;
}

a.support-link:hover {
    opacity: 0.7;
}

/* サポートセクション内の矢印アイコンの色 */
.support-link .icon-arrow-right {
    border-color: #333;
    color: #333;
}

/*------------------------------------*/
/* お問い合わせフォームセクション         */
/*------------------------------------*/
.contact-section {
    padding: 60px 20px;
    text-align: center !important;
}

.contact-section .section-title {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 20px !important; /* タイトル下の余白 */
}

.contact-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-section .section-subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-left: auto;
    margin-right: auto;
}

.contact-section p,
.contact-section .section-subtitle {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* HubSpotフォームの外枠設定 */
.contact-section .hubspot-form-wrapper,
.hbspt-form {
    width: 100% !important;
    max-width: 100% !important;

    /* 上下の余白調整と、左右中央寄せ */
    margin-top: 30px !important;
    margin-bottom: 0 !important;
    margin-left: auto !important; /* 左を自動にして中央へ */
    margin-right: auto !important; /* 右を自動にして中央へ */

    display: block !important;
}

/* HubSpotが生成するiframe自体も中央寄せ */
iframe.hs-form-iframe {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* =================================== */
/* ご利用料金セクション リストスタイル (PC/SP共通) */
/* =================================== */
/* セレクタをより詳細に記述して優先度を上げる */
section#pricing.pricing-section .plan-features {
    list-style: none !important; /* 既存のスタイルをリセット */
    padding-left: 0 !important; /* 既存のスタイルをリセット */
    margin-top: 30px !important; /* 画像との間に余白を確保 */
}

section#pricing.pricing-section .plan-features li {
    padding-left: 1.2em !important; /* 「・」を表示するスペースを確保 */
    position: relative !important;
    margin-bottom: 10px !important; /* リスト項目間の余白 */
    font-size: 0.9em !important;
    line-height: 1.7 !important;
}

/* ::before擬似要素を使って「・」を表示 */
section#pricing.pricing-section .plan-features li::before {
    content: '・' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* =================================== */
/* Kマッププラグイン SP対応 (767px以下)  */
/* =================================== */
@media screen and (max-width: 767px) {
    /* SP表示のセクションタイトルサイズ調整 */
    .about-section .section-title,
    .features-section .section-title,
    .use-cases-section .section-title,
    .points-section .section-title,
    .video-explanation-section .section-title,
    .case-studies-section .section-title,
    .pricing-section .section-title,
    .support-info-section .section-title,
    .contact-section .section-title {
        font-size: 28px !important;
        margin-bottom: 40px !important;
    }

    /* 各セクションのサブタイトル */
    .features-section .section-subtitle,
    .use-cases-section .section-subtitle,
    .points-section .section-subtitle,
    .video-explanation-section .section-subtitle,
    .case-studies-section .section-subtitle,
    .pricing-section .section-subtitle,
    .support-info-section .section-subtitle,
    .contact-section .section-subtitle {
        font-size: 14px;
    }

    /* 指定されたセクション以外（:notで除外）のコンテナに共通の横余白を設定
        除外対象：メインビジュアル(#hero)、CTA(.cta-section)、導入事例(.case-studies-section)
    */
    .kmap-main > section:not(#hero):not(.cta-section):not(.case-studies-section) .container {
        padding-left: 20px !important; /* 左の余白 */
        padding-right: 20px !important; /* 右の余白 */
        width: 100% !important; /* 幅を100%に */
        box-sizing: border-box; /* パディングを含めた幅計算にする */
        max-width: 100% !important; /* 念のため最大幅も制限 */
    }

    /* =================================== */
    /* メインビジュアル SP表示             */
    /* =================================== */

    /* PC用のテキストと画像を非表示にする */
    .pc-text,
    .pc-image {
        display: none !important;
    }
    /* SP用のテキストと画像を表示する */
    .sp-text,
    .sp-image {
        display: block !important;
    }
    .hero-features .sp-text {
        display: inline !important; /* liの中ではインラインで表示 */
    }

    body .site-main.kmap-main section#hero.hero-section {
        padding: 40px 20px !important;
        background-image: url('https://goodoro.co.jp/wp-content/themes/standard_black_cmspro/img/fv_bg_sp.webp') !important;
        background-size: cover !important;
        background-position: center !important;
        min-height: auto !important;
    }

    body .site-main.kmap-main section#hero.hero-section::before {
        background-image: none !important; /* PC用の背景を非表示 */
    }

    body .site-main.kmap-main section#hero.hero-section .hero-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* 子要素を中央揃えに */
        /* 要素間の余白を詰める */
        gap: 10px !important;
    }

    /* === 構造をフラット化して順序を入れ替えられるようにする === */
    body .site-main.kmap-main section#hero.hero-section .hero-content-left,
    body .site-main.kmap-main section#hero.hero-section .hero-content-right,
    body .site-main.kmap-main section#hero.hero-section .hero-text-wrapper {
        display: contents !important;
    }

    /* === 要素の表示順を指定 === */
    /* 1. タイトル */
    body .site-main.kmap-main section#hero.hero-section h1.hero-catchphrase {
        order: 1;
    }
    /* 2. 画像 */
    body .site-main.kmap-main section#hero.hero-section .hero-main-image {
        order: 2;
    }
    /* 3. 特徴リスト */
    body .site-main.kmap-main section#hero.hero-section ul.hero-features {
        order: 3;
    }
    /* 4. CTAボタン */
    body .site-main.kmap-main section#hero.hero-section a.hero-cta-button {
        order: 4;
    }

    /* === 各要素のスタイル === */

    /* タイトルエリア */
    body .site-main.kmap-main section#hero.hero-section h1.hero-catchphrase {
        text-align: center !important;
        width: 100%;
    }
    .hero-super-title {
        font-size: 18px !important;
        font-weight: normal !important;
        color: #fff !important;
        line-height: 1.6 !important;
        display: block;
        margin-bottom: 10px;
    }
    .hero-main-title {
        font-size: 32px !important;
        font-weight: bold !important;
        color: #fff !important;
        display: block;
        letter-spacing: 0.05em;
    }

    /* メイン画像 */
    body .site-main.kmap-main section#hero.hero-section .hero-main-image {
        max-width: 100% !important;
        margin: 0 !important; /* gapで余白を制御するためリセット */
    }

    /* 特徴リスト */
    body .site-main.kmap-main section#hero.hero-section ul.hero-features {
        padding: 0 !important;
        width: 100%;
        max-width: 300px;
        /* 画像との間に少し余白を追加 */
        margin: 30px 0 0 0 !important;
    }
    body .site-main.kmap-main section#hero.hero-section .hero-features li {
        font-size: 16px !important;
        color: #fff !important;
        padding-bottom: 8px !important;
        margin-bottom: 8px !important;
        justify-content: flex-start;
        display: flex;
        align-items: center;
        position: relative !important; /* 疑似要素の基準点 */
    }
    /* PCと同様の白い下線を追加 */
    body .site-main.kmap-main section#hero.hero-section .hero-features li:not(:last-child)::after {
        content: '' !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 34px !important; /* アイコン(22px) + 右マージン(12px) */
        width: calc(100% - 34px) !important;
        height: 0.5px !important;
        background-color: #fff !important;
        display: block !important;
    }

    /* アイコン */
    body .site-main.kmap-main section#hero.hero-section .icon-check {
        width: 22px !important;
        height: 22px !important;
        margin-right: 12px !important;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3e%3cpath d='M50,95 C50,95 10,75 10,50 C10,22.39 27.91,5 50,5 C72.09,5 90,22.39 90,50 C90,75 50,95 50,95 Z' fill='%23FF7B13' stroke='%23ffffff' stroke-width='12'/%3e%3c/svg%3e") !important;
    }

    /* CTAボタン */
    body .site-main.kmap-main section#hero.hero-section a.hero-cta-button {
        width: 100% !important;
        max-width: 340px;
        padding: 12px 20px !important;
        margin: 0 !important; /* gapで余白を制御するためリセット */
    }
    body .site-main.kmap-main section#hero.hero-section .cta-icon-image {
        width: 80px !important;
        margin-right: 15px !important;
        flex-shrink: 0;
    }
    body .site-main.kmap-main section#hero.hero-section .cta-text {
        font-size: 18px !important;
        white-space: normal !important;
        line-height: 1.4 !important;
        text-align: left;
    }
    body .site-main.kmap-main section#hero.hero-section .hero-cta-button .icon-arrow-right {
        flex-shrink: 0;
        margin-left: auto; /* この指定で右端に寄る */
    }

    /* =================================== */
    /* 製品概要          SP表示             */
    /* =================================== */
    .about-section {
        padding-top: 60px !important;
        padding-bottom: 40px !important; /* 下の余白を狭くする */
    }
    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    /* =================================== */
    /* CTAエリア          SP表示            */
    /* =================================== */

    /* PC用のボタン構造を非表示 */
    .cta-section .pc-only {
        display: none !important;
    }

    /* SP用のボタンを表示し、配置を調整 */
    .cta-section .sp-only.hero-cta-button {
        display: inline-flex !important;
        margin: 0 auto 30px auto !important;
    }

    /* CTAセクション内のヒーローボタンのスタイルを定義 */
    /* (ヒーローセクションのスタイルが適用されないため、ここで再定義) */

    /* ボタン自体のスタイル */
    .cta-section .hero-cta-button {
        width: 100% !important;
        max-width: 340px;
        padding: 12px 20px !important;
        /* ヒーローセクションで適用されているスタイルを継承 */
        background-color: #00a3df !important;
        border-radius: 12px !important;
        border: 4px solid #fff !important;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2) !important;
        color: #fff !important;
        text-decoration: none !important;
        align-items: center !important;
    }

    /* ボタン内アイコン画像 */
    .cta-section .hero-cta-button .cta-icon-image {
        width: 80px !important;
        height: auto !important;
        margin-right: 15px !important;
        border: 2px solid #fff !important;
        border-radius: 4px !important;
        flex-shrink: 0;
    }

    /* ボタン内テキスト */
    .cta-section .hero-cta-button .cta-text {
        font-size: 18px !important;
        font-weight: 700 !important;
        white-space: normal !important;
        line-height: 1.4 !important;
        text-align: left;
        margin-right: auto !important;
    }

    /* ボタン内矢印アイコン */
    .cta-section .hero-cta-button .icon-arrow-right {
        flex-shrink: 0;
        margin-left: auto;
    }

    /* 下部の「無料お試し」「デモ」ボタンのスタイル */
    .cta-buttons-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    /* =================================== */
    /* 主な機能          SP表示             */
    /* =================================== */
    .feature-item,
    .feature-item-reverse {
        flex-direction: column;
        gap: 30px;
    }
    .feature-item .feature-text-content,
    .feature-item-reverse .feature-text-content {
        order: -1;
    }
    .feature-item-reverse .feature-text-content,
    .feature-text-content {
        padding-left: 50px;
        padding-right: 15px;
    }
    .features-list > .feature-item:not(:last-of-type) {
        margin-bottom: 60px;
    }
    .feature-number,
    .feature-item-reverse .feature-number {
        left: 15px;
        right: auto;
        transform: none;
    }

    /* 主な機能セクションの本文 */
    .feature-text-content p {
        font-size: 0.9em;
    }

    /* 3番目の画像のサイズを調整し、!importantで強制適用 */
    .features-list > .feature-item:nth-of-type(3) .feature-image-wrapper img {
        max-width: 90% !important; /* 親要素に対して90%の幅に制限 */
        width: auto !important;
        height: auto !important;
        margin: 0 auto !important;
    }

    /* サンプル試用ボタン SP表示             */
    .sample-cta-section {
        margin-top: 60px !important;
        padding: 0 !important;
    }
    .sample-cta-description {
        font-size: 1em !important;
        padding: 0 20px !important;
        margin-bottom: 20px !important;
    }
    /* ボタンの親要素の横パディングを削除し、ボタン幅を確保 */
    .sample-cta-content {
        padding: 0 !important;
    }

    /* PC用のボタンを非表示 */
    .sample-cta-wrapper.pc-only {
        display: none !important;
    }

    /* SP用のボタンを表示し、スタイルを適用 */
    a.sp-sample-button.sp-only {
        display: flex !important;
        align-items: center;
        width: 100%;
        /* 内側のパディングを少し詰める */
        padding: 12px;
        background-color: #fff;
        border: 3px solid #fe7b12;
        border-radius: 12px;
        color: #fe7b12;
        text-decoration: none;
        box-sizing: border-box;
    }
    /* 画像を少し小さくしてスペースを確保 */
    .sp-sample-button-img {
        width: 70px;
        height: auto;
        margin-right: 12px;
        flex-shrink: 0;
    }
    .sp-sample-button-text {
        text-align: left;
        margin-right: auto;
    }
    /* テキストサイズを小さくする */
    .sp-sample-maintext {
        font-size: 1em;
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
    }
    .sp-sample-subtext {
        font-size: 0.8em;
        font-weight: bold;
    }
    .sp-sample-button .icon-arrow-right {
        border-color: #fe7b12;
        color: #fe7b12;
    }

    /* =================================== */
    /* 主な利用シーン      SP表示             */
    /* =================================== */
    .use-cases-section {
        padding: 60px 20px; /* SP用の余白調整 */
    }
    .use-cases-list {
        justify-content: flex-start; /* カードを左寄せにする */
        gap: 20px; /* SP用のカード間の隙間 */
    }
    .use-case-item {
        flex-basis: calc(50% - 10px); /* 2列表示にする (gap/2) */
        min-width: 0; /* 最小幅をリセットして柔軟に縮小できるようにする */
    }

    /* =================================== */
    /* プラグインのポイント       SP表示     */
    /* =================================== */
    .points-list {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .points-section h3.point-title {
        height: auto;
    }
    /* SP表示で画像エリアの高さを調整 */
    .points-section .point-image-wrapper {
        height: 200px !important; /* 高さを大きくして画像を拡大 */
    }

    /* =================================== */
    /* 動画          SP表示                 */
    /* =================================== */
    .video-explanation-section {
        padding: 80px 20px;
    }
    .video-contents-summary {
        background-color: #fff;
        padding: 40px 20px;
        border-radius: 8px;
    }
    .video-contents-summary > p:first-child {
        display: none;
    }
    .summary-items-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 250px;
        margin: 0 auto;
    }

    .video-player-wrapper {
        /* 高さをゼロにしてパディングだけで高さを確保する（16:9比率を強制） */
        height: 0 !important;
        padding-bottom: 56.25% !important; /* 16:9 の比率 */
        overflow: hidden !important;

        /* 余計な余白の原因となる行間やマージンを排除 */
        line-height: 0 !important;
        margin-bottom: 40px !important;
    }

    /* iframe（動画本体）を親要素いっぱいに広げる */
    .video-player-wrapper iframe {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* =================================== */
    /* 導入事例 SP用カルーセル対応           */
    /* =================================== */
    .case-studies-section {
        padding: 60px 20px;
    }
    .case-studies-section .container {
        padding: 40px 20px;
    }
    .case-studies-list {
        flex-direction: column;
        gap: 25px;
    }
    .case-study-link-wrapper {
        flex-basis: 100%;
    }
    /* 導入事例セクションの本文 */
    .case-study-description {
        font-size: 0.9em;
    }

    /* 共通：矢印ボタンのデザイン（丸の中に< >） --- */
    .case-study-swiper .swiper-button-prev,
    .case-study-swiper .swiper-button-next {
        display: flex !important;
        width: 44px;
        height: 44px;
        background-color: #fff;
        border-radius: 50%;
        border: 1px solid #333;
        color: #333;
        z-index: 20; /* カードより手前に */
    }

    /* 矢印アイコンのサイズ調整 */
    .case-study-swiper .swiper-button-prev::after,
    .case-study-swiper .swiper-button-next::after {
        font-size: 18px; /* 矢印の大きさ */
        font-weight: bold;
    }

    /* 点々（ページネーション）を非表示 */
    .case-study-swiper .swiper-pagination {
        display: none;
    }

    /* コンテナのパディング調整（左右の隙間を埋めるため） */
    .case-studies-section .container {
        padding: 0; /* 横幅いっぱいに使うためパディング削除 */
        max-width: 100%;
        overflow: hidden; /* 横スクロールバー防止 */
    }

    /* Swiperラッパー */
    .case-studies-list.swiper {
        padding: 20px 0 40px 0 !important; /* 上下の余白調整 */
        margin-top: 0 !important;
        overflow: visible; /* 端のみ見せるためにコンテナ外の描画を許可 */
    }

    /* 矢印の位置調整 */
    .case-study-swiper .swiper-button-prev {
        left: 10px;
    }
    .case-study-swiper .swiper-button-next {
        right: 10px;
    }

    /* カードの高さ微調整 */
    .case-study-item {
        margin: 0 5px; /* カード同士がくっつきすぎないように微調整 */
        /* カードに少し影を強調して浮き上がらせる */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    /* =================================== */
    /* ご利用料金        SP表示             */
    /* =================================== */
    .pricing-section {
        padding: 60px 20px;
    }
    .pricing-plan-wrapper {
        padding: 25px 25px 40px 25px !important;
    }

    /* PC用の画像エリアを非表示 */
    .pricing-plan .pc-only {
        display: none !important;
    }
    /* SP用の画像エリアを表示 */
    .pricing-plan .sp-only {
        display: block !important;
    }

    /* レイアウト調整 */
    .pricing-plan {
        flex-direction: column;
        align-items: center;
    }
    .pricing-plan-details-area {
        width: 100%;
        /* 子要素の中央揃えの基準とする */
        text-align: center;
    }

    /* テキストブロック内のスタイル調整 */
    .pricing-section .plan-name {
        /* text-align: center; は親から継承 */
        font-size: 1.3em !important;
        letter-spacing: -0.05em;
        margin-top: 0 !important;
        /* 要素を内容に合わせた幅にし、中央揃えを確実にする */
        display: inline-block;
    }
    .pricing-section .no-initial-fee {
        display: block; /* （初期費用なし）を改行させる */
        text-align: center;
        font-size: 0.8em;
        margin: 5px 0 0 0;
    }

    /* リリース予定ラベルをスマホで非表示にする */
    .release-date-label {
        display: none !important;
    }

    /* SP用の画像エリアのスタイル */
    .pricing-plan-details-area .pricing-plan-image-area.sp-only {
        text-align: center;
        margin: 0;
    }
    .pricing-plan-details-area .pricing-plan-image-area.sp-only img {
        width: 120px; /* 画像サイズ調整 */
        height: auto;
        margin: 0 !important;
    }

    .pricing-section .plan-features,
    .pricing-section .plan-api-info,
    .pricing-section .plan-note {
        text-align: left; /* 詳細テキストは左揃えに戻す */
    }

    /* 比較表エリア */
    .pricing-comparison-area {
        margin-bottom: 50px;
    }

    /* スマホ版ではPC用のテーブル（.pc-only）を非表示にする */
    .pricing-comparison-area .pc-only {
        display: none !important;
    }

    /* スマホ版ではSP用の画像ラッパー（.sp-only）を表示する */
    .pricing-comparison-area .sp-only {
        display: block !important;
    }

    .release-date-label {
        text-align: center;
        margin-bottom: 15px !important;
        /* スマホ版では位置指定（absolute）を解除して自然な配置にする */
        position: static !important;
        transform: none !important;
    }

    /* SP用画像のスタイル調整 */
    .sp-comparison-image {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    /* オプションメニュー */
    .options-grid {
        grid-template-columns: 1fr; /* 1列にする */
        gap: 40px; /* 縦の間隔を広げる */
    }

    .option-card {
        display: block !important; /* 縦並び */
        padding: 40px 20px 25px 20px !important; /* バッジ用に上部余白を少し増やす */
        overflow: visible !important; /* バッジのはみ出しを表示許可 */
    }

    /* 2枚目のカードの上側に余白を追加 */
    .option-card:nth-child(2) {
        margin-top: 50px !important;
    }

    .badge-recommend {
        left: 50% !important;
        transform: translateX(-50%) !important; /* 左右中央揃え */
        white-space: nowrap; /* 文字の折り返し防止 */
        top: -50px !important;
    }

    .option-name {
        /* 中央揃えと幅の自動調整 */
        width: fit-content !important;
        margin: 0 auto 20px auto !important;
        text-align: center !important;

        /* 左線を消して下線にする */
        border-left: none !important;
        border-bottom: 3px solid #ff7b13 !important;

        /* 余白調整 */
        padding-left: 0 !important;
        padding-bottom: 10px !important;
    }

    .option-desc {
        width: 100% !important;
    }

    /* =================================== */
    /* サポート情報      SP表示             */
    /* =================================== */
    .support-info-section {
        background-color: #f5f5f7;
        padding: 60px 20px;
    }
    .support-info-section .container {
        background-color: #fff;
        padding: 50px 30px;
        border-radius: 8px;
    }
    .support-info-section .container::before {
        display: none;
    }
    .support-links-container {
        flex-direction: column;
        gap: 0;
    }
    .support-link-item {
        border-right: none;
        padding: 0 0 30px 0;
        margin-bottom: 30px;
        border-bottom: 1px solid #3e3a39;
    }
    .support-link-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .support-icon-wrapper img {
        height: 100px !important;
    }
    a.support-link {
        gap: 15px;
    }

    /* =================================== */
    /* 問い合わせフォーム      SP表示        */
    /* =================================== */
    /* HubSpot標準のクラスおよび一般的な入力欄を強制的に広げる */
    .contact-section input[type='text'],
    .contact-section input[type='email'],
    .contact-section input[type='tel'],
    .contact-section textarea,
    .hs-input,
    fieldset {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .contact-section .hubspot-form-wrapper,
    .hbspt-form {
        width: 90% !important; /* スマホでは画面の90% */
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: auto !important; /* SPでも中央寄せを維持 */
        margin-right: auto !important; /* SPでも中央寄せを維持 */
    }

    /* フォームの中身（入力欄）も枠いっぱいに広げる */
    .hs-form-field {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important; /* 横並び防止 */
    }
}

/*------------------------------------*/
/* 無料プラグイン                     */
/*------------------------------------*/
#article_free_plugin {
    width: 100%;
    margin: 0 auto;
}

/* セクション全般 */
#article_free_plugin section {
    width: 100%;
    padding: 30px 0 50px 0;
    margin: 0 auto;
}

#article_free_plugin section .wrap-content {
    width: 1000px;
    margin: 0 auto;
}

/* 偶数セクション */
#article_free_plugin section.odd-number {
    background-color: #dcf2fa;
}

/* 奇数セクション */
#article_free_plugin section.even-number {
    background-color: white;
}

/* セクションタイトル */
#article_free_plugin section p.section-title {
    font-size: 3rem;
    line-height: 1.8em;
    font-weight: bold;
    text-align: center;
    color: #00a2de;
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
}

/* メインビジュアル */
#article_free_plugin #section_main_visual {
    padding: 0px;
    text-align: center;
}

#article_free_plugin #section_main_visual .free-plugin-top-img {
    width: 1000px;
}

/* 概要 */
#article_free_plugin #section_overview {
    padding-top: 20px;
}

#article_free_plugin #section_overview .headline {
    font-weight: bold;
    font-size: 2em;
    text-align: center;
}
#article_free_plugin #section_overview .headline .sp-br {
    display: none;
}

#article_free_plugin #section_overview .description {
    padding: 20px 30px 0 30px;
    margin-bottom: 0;
    text-align: left;
}

/* 主な機能 */
#article_free_plugin #section_main_features {
}

#article_free_plugin #section_main_features ul {
    display: flex;
    justify-content: space-around;
    padding-bottom: 20px !important;
    margin-bottom: 20px !important;
}

#article_free_plugin #section_main_features ul li {
    width: 310px;
    min-height: 350px;
    background-color: #fff;
    border: 3px solid #00a2de;
    border-radius: 10px;
    overflow: hidden;
}

#article_free_plugin #section_main_features ul li .title {
    width: 100%;
    height: 60px;
    background-color: #00a2de;
    color: #fff;
    font-size: larger;
    font-weight: bold;
    text-align: center;
    line-height: 2.5em;
}

#article_free_plugin #section_main_features ul li .figure {
    height: 150px;
    display: table-cell;
    vertical-align: middle;
}

#article_free_plugin #section_main_features ul li .figure img {
    width: 90%;
}

#article_free_plugin #section_main_features ul li .description {
    margin: 15px 0;
    padding: 5%;
    line-height: 1.6;
}

#article_free_plugin #section_main_features .online-demo {
    margin-top: 50px;
    text-align: center;
}

/* テーブル */
#article_free_plugin #section_main_features #field-list-table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 30px;
    background: white;
    border: 3px solid #00a2de;
}

th {
}

#article_free_plugin #section_main_features #field-list-table td {
    border: 1px solid #00a2de;
    padding: 15px 10px;
    color: #000;
}

/* オンラインデモ */
#article_free_plugin #section_main_features .online-demo-btn {
    display: inline-block;
    width: 80%;
    min-width: 220px;
    height: auto;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
    position: relative;
    font-family: 游ゴシック体, YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', 游ゴシック, 'Yu Gothic', sans-serif;
    color: white !important;
    background: linear-gradient(45deg, rgb(0, 162, 222) 0%, rgb(0, 162, 222) 60%, rgb(0, 203, 202) 100%);
    border-radius: 6px;
    border-bottom: 1px solid rgb(129, 127, 127);
    padding: 10px 40px;
    text-decoration: none !important;
}
.searchplugin-sp_br {
    display: none;
}
.online-demo-btn:hover {
    opacity: 0.8;
}
.online-demo-btn::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: translate(0, -50%) rotate(45deg);
    transform: translate(0, -50%) rotate(45deg);
    transition: 0.3s;
    text-shadow: 0 0 3px #464646;
}
.online-demo-btn:hover::after {
    -webkit-transform: translate(2px, -50%) rotate(45deg);
    transform: translate(2px, -50%) rotate(45deg);
}

/* 設定方法 */
#article_free_plugin #section_settings {
}

#article_free_plugin #section_settings ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    list-style: none;
}

#article_free_plugin #section_settings ul li {
    width: 30rem;
    box-sizing: border-box;
    margin-bottom: 2rem;
}

#article_free_plugin #section_settings ul li figure {
    border: 1px solid #aaa;
    height: 195px;
    overflow: hidden;
}

#article_free_plugin #section_settings ul li figure img {
    object-fit: contain;
    max-height: 100%;
}

#article_free_plugin #section_settings ul li .title {
    display: flex;
    align-items: center;
    font-weight: bold;
    padding: 0px 10px;
    margin: 10px 0;
}

#article_free_plugin #section_settings ul li p {
    margin-bottom: 0px !important;
}

#article_free_plugin #section_settings ul li .number {
    width: 25px;
    height: 25px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #fedd10;
    text-align: center;
    margin-right: 10px;
}

#article_free_plugin #section_settings ul li .description {
    padding: 0px 10px;
    margin-bottom: 0px !important;
}

/* フォームブリッジ */
#article_free_plugin #section_formbridge .wrap-content {
    text-align: center;
}

/*------------------------------------*/
/* 無料プラグイン モバイル              */
/*------------------------------------*/
@media screen and (max-width: 767px) {
    /* セクション全般 */
    #article_free_plugin section {
        width: 100%;
        padding: 15px 0 20px 0;
        margin: 0 auto;
    }
    #article_free_plugin section .wrap-content {
        width: 100%;
    }
    #article_free_plugin section .wrap-content img {
        width: 90%;
    }

    /* セクションタイトル */
    #article_free_plugin section p.section-title {
        font-size: 2rem;
        padding-bottom: 0;
    }

    /* メインビジュアル */
    #article_free_plugin #section_main_visual .free-plugin-top-img {
        width: 100%;
    }
    #article_free_plugin #section_overview {
        padding-top: 0;
    }
    #article_free_plugin #section_overview .headline {
        font-weight: bold;
        font-size: 1.3em;
        margin-bottom: 0;
    }
    #article_free_plugin #section_overview .headline .sp-br {
        display: block;
    }
    #article_free_plugin #section_overview .description {
        padding: 10px 10px 0 10px;
        margin-bottom: 0;
        text-align: left;
    }

    /* 主な機能 */
    #article_free_plugin #section_main_features ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-bottom: 0 !important;
    }
    #article_free_plugin #section_main_features ul li {
        width: 90%;
        min-height: 350px;
        background-color: #fff;
        border: 3px solid #00a2de;
        border-radius: 10px;
        overflow: hidden;
    }
    #article_free_plugin #section_main_features ul li .title {
        line-height: 3em;
    }
    #article_free_plugin #section_main_features ul li img {
        margin-top: 20px;
    }

    /*テーブル*/
    #article_free_plugin #section_main_features #field-list-table {
        border-collapse: collapse;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
        background: white;
        border: 3px solid #00a2de;
    }

    th {
    }

    #article_free_plugin #section_main_features #field-list-table td {
        border: 1px solid #00a2de;
        padding: 15px 10px;
        color: #000;
    }

    /* オンラインデモ */
    #article_free_plugin #section_main_features .online-demo-btn {
        width: 90%;
    }

    /* 設定方法 */
    #article_free_plugin #section_settings ul {
        flex-direction: column;
        align-items: center;
    }

    #article_free_plugin #section_settings ul li {
        width: 90%;
    }

    #article_free_plugin #section_settings ul li figure {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        padding: 5px;
    }

    #article_free_plugin #section_settings ul li .number {
    }

    #article_free_plugin #section_settings ul li .description {
    }

    /* フォームブリッジ */
    #article_free_plugin #section_formbridge .section-title {
        font-size: 1.6rem;
    }
    #article_free_plugin #section_formbridge iframe {
        width: 95%;
        height: 1080px !important;
    }
}

/* ============================================== */
/* 画像拡大表示モーダル用CSS                        */
/* ============================================== */

/* モーダルの背景（オーバーレイ） */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* 背景を暗くする */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* 最前面に表示 */
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
    padding: 20px; /* 画面端との余白 */
    box-sizing: border-box;
}

/* モーダルが表示された時の状態 */
.modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* モーダルの内容物を包むコンテナ */
.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background-color: transparent; /* 画像のみを表示するため背景は透明 */
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    display: flex; /* 閉じるボタン配置のため */
    flex-direction: column;
    align-items: flex-end; /* 閉じるボタンを右寄せ */
}

/* 拡大表示される画像 */
.modal-image {
    width: auto;
    height: auto;
    max-width: 100%; /* 画面からはみ出さないように制限 */
    max-height: 80vh; /* 画面の高さの80%までに制限 */
    object-fit: contain; /* 比率を維持して収める */
    display: block;
    border-radius: 4px;
}

/* 閉じるボタン（×印） */
.modal-close-btn {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    line-height: 1;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5); /* 視認性を高める影 */
    margin-bottom: 10px; /* 画像との間隔 */
}

/* エリア全体：スマホでは縦並び（ラベル→ボタン群）にする */
.post_wrap .category-filter-area {
    display: flex;
    flex-direction: row; /* PCは横並び */
    align-items: center; /* 垂直方向中央揃え */
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}
/* ラベル "CATEGORY" */
.post_wrap .cat-label {
    font-weight: bold;
    font-size: 18px;
    border-bottom: 2px solid #333;
    padding-bottom: 2px;
    margin-right: 0; /* フレックスのgapで調整するため0に */
    white-space: nowrap; /* 改行させない */
}
/* リスト（ul）の強制リセット */
.post_wrap .cat-list {
    list-style: none !important; /* ・を消す */
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-wrap: wrap; /* 折り返して表示 */
    gap: 10px; /* ボタン間の隙間 */
    width: 100%;
}
/* リストアイテム（li）の強制リセット */
.post_wrap .cat-list li {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important; /* テーマの枠線を消す */
    background: none !important; /* テーマの背景を消す */
    width: auto !important; /* 全幅になるのを防ぐ */
}
/* ボタン（aタグ）のデザイン */
.post_wrap .cat-list li a {
    display: inline-block; /* インラインブロックにして幅を持たせる */
    padding: 6px 16px; /* スマホで見やすいサイズ */
    border: 1px solid #333 !important; /* 強制的に枠線を表示 */
    border-radius: 50px; /* 角丸 */
    text-decoration: none !important; /* 下線を消す */
    color: #333 !important;
    font-size: 14px;
    background: #fff;
    transition: all 0.3s ease;
    white-space: nowrap; /* ボタン内での改行を防ぐ */
    line-height: 1.5;
}
/* ホバー時・アクティブ時 */
.post_wrap .cat-list li a:hover,
.post_wrap .cat-list li a.active {
    background: #333 !important;
    color: #fff !important;
}
/* --- スマホ・タブレット向け調整 (768px以下) --- */
@media (max-width: 768px) {
    .post_wrap .category-filter-area {
        flex-direction: column; /* ラベルとボタン群を縦積みに */
        align-items: flex-start; /* 左揃え */
        gap: 15px;
    }
    /* ボタン群は横に並べて折り返す（タグクラウド風） */
    .post_wrap .cat-list {
        justify-content: flex-start;
    }
}

/* ==========================================================================
   ABテスト：FV背景画像比較テスト
   ========================================================================== */

/* -----------------------------------------------------------------
   1. 共通設定（レイアウト・テキスト）
   ----------------------------------------------------------------- */
.ab-fv-wrapper .fv_section {
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #e8f7ff; /* 共通の背景色 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ab-fv-wrapper .fv_inner {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ab-fv-wrapper .fv_content {
    text-align: left;
    margin-bottom: 60px;
}

/* サブテキスト設定 */
.ab-fv-wrapper .fv_sub_text {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: 400 !important; /* Regular */
    font-size: 30px !important;
    color: #005f69 !important;
    line-height: 1.5 !important;
    letter-spacing: 0.02em !important;
    margin: 0 0 20px 0 !important;
    padding: 0;
    padding-top: 85px;
}

/* メインテキスト設定 */
.ab-fv-wrapper .fv_main_text {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: 700 !important; /* Bold */
    font-size: 50px !important;
    color: #005f69 !important;
    line-height: 1.3 !important;
    letter-spacing: 0.04em !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    text-shadow: none !important;
}

/* 改行制御 */
.ab-fv-wrapper .pc_br {
    display: block;
}

/* テーマ干渉のリセット */
.ab-fv-wrapper .fv_main_text::before,
.ab-fv-wrapper .fv_main_text::after {
    display: none !important;
}

/* -----------------------------------------------------------------
   2. 個別設定（背景画像の違い）
   ----------------------------------------------------------------- */

/* --- パターンA（Variant B）用の背景画像 --- */
.ab-fv-wrapper.pattern-a .fv_section {
    /* firstViewA.webp のURL */
    background-image: url('http://goodoro.co.jp/wp-content/themes/standard_black_cmspro/img/firstViewA.webp');
    background-size: 85%;
}

/* ==========================================================================
   ABテスト：開発実績セクション (sec01)
   ========================================================================== */

/* 追加：セクション全体の上下パディングを100pxに設定 */
.ab-sec01-wrapper .sec01 {
    padding: 100px 0 !important;
}

/* 吹き出しテキスト本体のデザイン */
.ab-sec01-wrapper .catch_p {
    /* --- レイアウト設定 (Figma: W1000 x H49) --- */
    background-color: #009fdb !important; /* 青色背景 */
    width: 100% !important;
    max-width: 1000px !important;
    min-height: 49px !important; /* 高さを49px確保 */
    margin: 0 auto 60px auto !important; /* 中央配置と下の余白 */
    padding: 0 10px !important; /* 内側余白 */
    box-sizing: border-box !important;

    /* テキストをボックスの上下左右中央に配置 */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    /* --- ▼を表示させるための設定 --- */
    position: relative !important; /* ▼の配置基準点にする */
    overflow: visible !important; /* ボックスの外にはみ出す▼を表示許可する */

    /* --- タイポグラフィ設定 --- */
    color: #ffffff !important;
    font-family: 'Noto Sans JP', sans-serif !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 40px !important;
    letter-spacing: 0.05em !important;

    /* 既存スタイルのリセット */
    border-radius: 0 !important;
}

/* 吹き出し下の▼（三角形） */
.ab-sec01-wrapper .catch_p::after {
    content: '' !important;
    position: absolute !important;
    bottom: -10px !important; /* 本体の下にはみ出させる */
    left: 50% !important;
    transform: translateX(-50%) !important; /* 中央揃え */
    width: 0 !important;
    height: 0 !important;
    border-style: solid !important;
    border-width: 10px 10px 0 10px !important; /* 三角形のサイズ */
    border-color: #009fdb transparent transparent transparent !important; /* 上辺のみ青色 */
    z-index: 10 !important; /* 最前面に表示 */
    display: block !important;
}

/* ==========================================================================
   ABテスト：MetaSlider（ロゴ）の中央寄せ修正
   ========================================================================== */
.ab-sec01-wrapper .metaslider {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ==========================================================================
   ABテスト：悩み～解決策セクション
   ========================================================================== */

/* 1. 全体背景とカード */
html body #content #main .ab-reason-wrapper {
    background-color: #e8f7ff !important;
    padding: 60px 0 !important;
    width: 100% !important;
}

html body #content #main .ab-reason-wrapper .reason-card {
    background-color: #ffffff !important;
    width: 1240px !important;
    margin: 0 auto !important;
    padding: 80px 100px !important;
    box-sizing: border-box !important;
    border-radius: 30px !important;
}

/* 2. メインタイトル (月13万円～) */
html body #content #main .ab-reason-wrapper h2.reason-main-title {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: 700 !important;
    font-size: 38px !important;
    color: #333333 !important;
    text-align: center !important;
    line-height: 1.4 !important;
    letter-spacing: 0.06em !important;
    margin: 0 0 60px 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
}
html body #content #main .ab-reason-wrapper h2.reason-main-title::before {
    display: none !important;
    content: none !important;
}

/* 3. 悩みブロック（.worry）のレイアウト */

/* フレックス設定 */
html body #content #main .ab-reason-wrapper .worry {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 40px !important;
    margin-bottom: 60px !important;
}

/* 画像エリア */
html body #content #main .ab-reason-wrapper .worry figure {
    width: 400px !important;
    flex: 0 0 400px !important;
    margin: 0 !important;
    padding: 0 !important;
}
html body #content #main .ab-reason-wrapper .worry figure img {
    width: 100% !important;
    height: auto !important;
    vertical-align: top !important;
}

/* テキストエリア */
html body #content #main .ab-reason-wrapper .worry .flex_text {
    width: 500px !important;
    flex: 0 0 500px !important;
    margin: 0 !important;
    background: none !important;
    padding-top: 30px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
}

/* 4. テキストスタイル・配置調整 */

/* 見出し：右揃え */
html body #content #main .ab-reason-wrapper .worry h3 {
    font-size: 28px !important;
    letter-spacing: 0 !important;
    line-height: 1.4 !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    padding-bottom: 10px !important;
    width: 100% !important;
    text-align: right !important;
}

/* 逆配置（システム担当不在）の時は左揃え */
html body #content #main .ab-reason-wrapper .worry.reverse h3 {
    text-align: left !important;
}

/* --- リスト共通設定 --- */
html body #content #main .ab-reason-wrapper .worry ul.check_list {
    font-size: 18px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    line-height: 1.6 !important;
    color: #333333 !important;
    margin: 0 !important;
    text-align: left !important;
    width: 100% !important;
    padding-left: 10px !important;
    max-width: 420px !important;
}

/* --- リスト個別調整 --- */

/* 1. kintone導入（通常配置） */
html body #content #main .ab-reason-wrapper .worry:not(.reverse) ul.check_list {
    margin-left: 40px !important;
}

/* 2. システム担当不在（逆配置） */
html body #content #main .ab-reason-wrapper .worry.reverse ul.check_list {
    margin-left: 0 !important;
    max-width: 500px !important;
}

/* 3. 解決策ブロック（.solution-block） */
html body #content #main .ab-reason-wrapper .solution-block ul.check_list {
    margin-left: 0 !important;
    max-width: 500px !important;
}

/* リストアイテム：Gap 5px */
html body #content #main .ab-reason-wrapper .worry ul.check_list li {
    margin-bottom: 15px !important;
    position: relative !important;
    text-align: left !important;
    padding-left: 20px !important;
}

/* 黄色チェックマークの位置調整 */
html body #content #main .ab-reason-wrapper .check_list.yellow-mark li::after {
    border-top-color: #ffc107 !important;
    border-left-color: #ffc107 !important;
    left: 0 !important;
    right: auto !important;
    top: 8px !important;
}

/* 5. 矢印 (画像に変更・位置調整) */

/* 古い矢印（ロゴ下）を消す */
section.sec01::after {
    display: none !important;
    content: none !important;
}

/* 新しい矢印エリアの位置 */
html body #content #main .ab-reason-wrapper .reason-arrow-area {
    text-align: center !important;
    margin-top: 40px !important; /* 上の要素との間隔 */
    margin-bottom: 20px !important; /* 下のタイトルとの間隔 */
    display: block !important;
}

/* 矢印本体（画像） */
html body #content #main .ab-reason-wrapper .wide-arrow-down {
    display: inline-block !important;
    width: 141px !important;
    height: 72px !important;
    background: url(/wp-content/themes/standard_black_cmspro/img/arrow_gray.png) center no-repeat !important;
    background-size: contain !important;
    border: none !important;
}

/* 6. 解決策エリア */
html body #content #main .ab-reason-wrapper h2.solution-main-title {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: 700 !important;
    font-size: 28px !important;
    color: #333333 !important;
    line-height: 1.5 !important;
    margin-bottom: 40px !important;
    text-align: center !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
}
html body #content #main .ab-reason-wrapper h2.solution-main-title::before {
    display: none !important;
    content: none !important;
}

/* --- 解決策ブロック独自の調整 --- */
html body #content #main .ab-reason-wrapper .worry.solution-block {
    gap: 69px !important;
}

/* テキストエリアの微調整 */
html body #content #main .ab-reason-wrapper .solution-block .flex_text {
    padding-top: 15px !important;
}

/* リスト調整 */
html body #content #main .ab-reason-wrapper .solution-block ul.check_list {
    margin-left: 0 !important;
    padding-left: 10px !important;
}

/* 下余白を10pxに短縮・パディング確保 */
html body #content #main .ab-reason-wrapper .solution-block ul.check_list li {
    margin-bottom: 5px !important;
    padding-left: 20px !important;
}

/* チェックマークの位置調整（通常オレンジ用） */
/* yellow-markと同様に左端配置にする */
html body #content #main .ab-reason-wrapper .solution-block ul.check_list li::after {
    left: 0 !important;
    right: auto !important;
    top: 8px !important;
}

/* ==========================================================================
   導入事例セクション
   ========================================================================== */

/* 1. 見切れ・角ばりの原因となる「はみ出し隠し」を全解除 */
html body .ab-full-width-area,
html body .ab-unique-slider,
html body .ab-unique-wrapper,
html body .ab-unique-slide,
html body .ab-case-link {
    overflow: visible !important;
}

/* 一番外側のセクションのみ画面の横スクロール防止用としてhiddenにする */
html body section.ab-case-section {
    overflow: hidden !important;
    padding-top: 100px !important;
    padding-bottom: 140px !important; /* 影・ホバー用の下部スペースを十分に確保 */
}

/* タイトル用コンテナ */
.ab-case-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
}

.ab-case-title {
    font-size: 28px !important;
    font-weight: bold !important;
    color: #333 !important;
    margin-bottom: 20px !important;
    border: none !important;
    text-align: center !important;
}
.ab-case-title::before {
    content: none !important;
}

.ab-case-subtitle {
    font-size: 14px !important;
    color: #333 !important;
    margin-bottom: 50px !important;
}

/* 2. スライダーエリア */
.ab-full-width-area {
    width: 100%;
    padding: 40px 0 60px 0 !important;
}

.ab-unique-wrapper {
    display: flex;
    box-sizing: content-box;
}

/* 自動挿入タグ無効化 */
.ab-unique-wrapper > br,
.ab-unique-wrapper > p {
    display: none !important;
}

/* 3. スライド（カード）のサイズ・余白制御 */
html body .ab-unique-slide {
    flex-shrink: 0;
    height: auto;
    position: relative;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;

    /* paddingを含めて幅を計算させる */
    box-sizing: border-box !important;
    width: calc(80% + 30px) !important;
    padding-right: 30px !important; /* ここで確実に30pxの余白を作る */
    margin-right: 0 !important; /* 座標計算を狂わせるmarginはゼロに */
}

/* --- PC表示 (768px以上) --- */
@media (min-width: 768px) {
    html body .ab-unique-slide {
        width: 380px !important;
        max-width: 380px !important;
    }
}

/* 4. カード内デザイン（ブラウザの角丸消失バグ対策含む） */
.ab-case-link {
    display: block !important;
    width: 100% !important;
    text-decoration: none !important;
    color: inherit !important;
    height: 100%;
}

html body .ab-case-card {
    background: #f8f8f8 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    -webkit-mask-image: -webkit-radial-gradient(white, black); /* ★ ホバー時に角丸が四角くなるのを防ぐ */
    isolation: isolate;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
    width: 100% !important;
    height: 546px !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform 0.3s ease !important;
}

.ab-case-link:hover .ab-case-card {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

/* 画像エリア */
.ab-case-img-box {
    position: relative !important;
    width: 100% !important;
    height: 240px !important;
}

.ab-case-img-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* カテゴリバッジ */
.ab-case-cat {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    background: #fff !important;
    color: #333 !important;
    font-size: 12px !important;
    font-weight: bold !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
    z-index: 10 !important;
}

/* テキストエリア全体 */
html body .ab-case-body {
    display: flex !important;
    flex-direction: column !important;
    padding: 36px 0 24px 0 !important;
    align-items: center !important;
    gap: 0 !important;
}

/* 会社名 (W264 / 下間隔16px / 左寄せ) */
html body h3.ab-case-company {
    width: 264px !important;
    text-align: center !important;
    font-size: 14px !important;
    font-weight: bold !important;
    color: #333 !important;
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
}

/* ヘッドライン (W274 / 内包パディング / 下間隔10px / 左寄せ) */
html body .ab-case-headline {
    width: 274px !important;
    background: #fff !important;
    padding: 8px 12px !important;
    font-size: 15px !important;
    font-weight: bold !important;
    line-height: 1.5 !important;
    color: #333 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
    box-sizing: border-box !important;
    margin: 0 0 10px 0 !important;
    text-align: left !important;
}
.ab-high {
    color: #ff7b13 !important;
}

/* 説明文 (W264 / 下間隔なし / 左寄せ) */
html body .ab-case-desc {
    width: 264px !important;
    font-size: 12px !important;
    line-height: 1.8 !important;
    color: #333 !important;
    padding: 0 !important;
    margin: 0 0 15px 0 !important;
    box-sizing: border-box !important;
    flex-grow: 1 !important;
    text-align: left !important;
}

/* 矢印アイコン */
html body .ab-case-arrow {
    width: 18px !important;
    height: 18px !important;
    margin-top: auto !important;
    align-self: flex-end !important;
    margin-right: 43px !important;
    flex-shrink: 0 !important;
    border: 1px solid #333333 !important;
    border-radius: 50% !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='5' y1='12' x2='19' y2='12'/%3e%3cpolyline points='12 5 19 12 12 19'/%3e%3c/svg%3e") !important;
    background-size: 12px 12px !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.ab-case-arrow::before,
.ab-case-arrow::after {
    display: none !important;
}

/* 5. ナビゲーション矢印 */
.ab-unique-prev,
.ab-unique-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    z-index: 20;
    cursor: pointer;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);

    /* ボタンの中央に矢印を配置する */
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* 矢印（綺麗なSVGアイコン）の共通設定 */
.ab-unique-prev::before,
.ab-unique-next::before {
    content: '';
    display: block;
    width: 20px; /* 矢印の幅 */
    height: 30px; /* 矢印の高さ */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* 「前へ」ボタンの中に綺麗なSVG矢印を表示 */
.ab-unique-prev::before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='15 18 9 12 15 6'/%3e%3c/svg%3e");
    margin-right: -3px; /* 視覚的に中央に見えるよう微調整 */
}

/* 「次へ」ボタンの中に綺麗なSVG矢印を表示 */
.ab-unique-next::before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='9 18 15 12 9 6'/%3e%3c/svg%3e");
    margin-left: 6px; /* 視覚的に中央に見えるよう微調整 */
}

@media (min-width: 1400px) {
    .ab-unique-prev {
        left: calc(50% - 600px) !important;
    }
    .ab-unique-next {
        right: calc(50% - 600px) !important;
    }
}
@media (max-width: 1399px) and (min-width: 768px) {
    .ab-unique-prev {
        left: 20px !important;
    }
    .ab-unique-next {
        right: 20px !important;
    }
}

/* ページネーション */
.ab-unique-pagination {
    position: absolute;
    text-align: center;
    bottom: -40px !important;
    width: 100%;
    z-index: 10;
    transform: translateX(-15px) !important;
}
.ab-unique-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #000;
    opacity: 0.2;
    margin: 0 6px;
    cursor: pointer;
}
.ab-unique-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ff7b13;
}

@media (max-width: 767px) {
    .ab-case-section {
        padding: 60px 0 !important;
    }
    .ab-unique-prev,
    .ab-unique-next {
        display: none !important;
    }
}

/* ==========================================================================
   CTAセクション（kintoneやAWS〜）
   ========================================================================== */

.cta-contact-section {
    background-color: #009fdb;
    padding: 80px 20px 100px;
    text-align: center;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
    overflow: hidden;
}

/* 疑似要素で画像＋覆い焼き（カラー）＋不透明度30%を再現 */
.cta-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url('http://goodoro.co.jp/wp-content/themes/standard_black_cmspro/img/Mask-group.png');
    background-repeat: no-repeat;
    background-position: right bottom;

    /* Figmaのマスクサイズに合わせて明示的に指定（高さはautoで比率維持） ▼ */
    background-size: 390px auto;

    /* Figmaのエフェクトを再現 */
    mix-blend-mode: color-dodge; /* 覆い焼き（カラー） */
    opacity: 0.8; /* 不透明度 80% */

    z-index: 1;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* タイトル設定 */
html body #content #main section.cta-contact-section h2.cta-contact-title {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 100% !important;
    margin-bottom: 30px !important;
    border: none !important;
    background: none !important;
    padding: 0 !important;
    text-shadow: none !important;
    letter-spacing: normal !important;
    display: block !important;
    text-align: center !important;
}

html body #content #main section.cta-contact-section h2.cta-contact-title::before,
html body #content #main section.cta-contact-section h2.cta-contact-title::after {
    display: none !important;
    content: none !important;
}

.cta-contact-title .small-char {
    font-size: 36px;
    font-weight: 500;
    margin: 0 4px;
}

/* カードエリア設定 */
.cta-contact-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-contact-card {
    background-color: #ffffff;
    border-radius: 30px;
    padding: 50px 72px;
    width: 535px;
    height: 260px;
    box-sizing: border-box;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* リード文設定 */
.card-lead {
    font-size: 18px;
    color: #009fdb;
    font-weight: 500;
    line-height: 160%;
    margin-bottom: 10px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.card-lead-description {
    font-size: 16px;
    color: #222;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
}

.slash-bold {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-size: 18px;
}

/* ボタン共通設定 */
.cta-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 388px;
    height: 64px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-sizing: border-box;

    /* テキストを視覚的な中央に寄せるためのパディング */
    padding-right: 40px;
    padding-left: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.cta-btn .btn-content-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 100%;
}

.cta-btn .icon-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* ボタンテキスト設定（垂直・水平中央揃え） */
.cta-btn .btn-text {
    font-weight: 700;
    font-size: 20px;
    line-height: 1 !important;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    /* 視覚的中央調整 */
    margin-top: -2px;
}

/* 右矢印アイコンのラッパー */
.icon-right-wrapper {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);

    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 各ボタン固有色設定 */
.btn-download {
    background-color: #fff;
    color: #333333 !important;
    border: 2px solid #009fdb;
}
.btn-download .icon-left {
    color: #333333;
}
.btn-download .icon-right-wrapper {
    background-color: #333333;
    color: #ffffff;
}
.btn-download .icon-right-wrapper .icon-svg path {
    stroke: #ffffff;
}
.btn-download:hover {
    background-color: #f0faff;
}

.btn-contact {
    background-color: #009fdb;
    color: #ffffff !important;
    border: 2px solid #009fdb;
}
.btn-contact .icon-left {
    color: #ffffff;
}
.btn-contact .icon-right-wrapper {
    background-color: #ffffff;
    color: #333333;
}
.btn-contact .icon-right-wrapper .icon-svg path {
    stroke: #333333;
}
.btn-contact:hover {
    background-color: #0088bb;
}

/* ==========================================================================
   選ばれる理由セクション
   ========================================================================== */

/* セクション全体 */
.rs-section {
    padding: 100px 20px 0 20px !important;
    background-color: #fff;
    border-bottom: none !important;
    overflow: visible !important; /* セクション自体のはみ出しも許可 */
}

/* コンテナ */
.rs-container {
    max-width: 1320px !important;
    margin: 0 auto;
    text-align: center;
    overflow: visible !important;
}

/* タイトル (Bold 40px) */
html body .rs-title {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: 700 !important;
    font-size: 40px !important;
    color: #333 !important;
    margin-bottom: 80px !important;
    text-align: center !important;
    border: none !important;
}
html body .rs-title::before {
    content: none !important;
}

/* カードエリア（親要素） */
html body .rs-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 30px;

    /* 数字が上に飛び出すためのスペースをパディングで確保 */
    padding-top: 40px !important;
    /* コンテナ自体のはみ出しを許可 */
    overflow: visible !important;
}

/* カード本体（横幅を固定から柔軟な比率に変更） */
html body .rs-card {
    width: 100% !important;
    max-width: 416px !important; /* 最大幅を416pxに制限 */
    flex: 1 1 0 !important;
    height: 388px;
    box-sizing: border-box;
    background-color: #fff;
    border: 3px solid #00a2de;
    border-radius: 30px;
    padding: 35px 20px 20px 20px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: visible !important;
    clip-path: none !important;
    transform: none !important;
    z-index: 1;
}

/* 番号 (表示欠け対策済) */
html body .rs-number {
    position: absolute;
    /* 枠線の上に配置されるよう調整 */
    top: -30px;
    left: 40px;

    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 50px;

    /* 高さを確保 */
    height: 60px;
    line-height: 60px;
    white-space: nowrap;

    color: #00a2de;
    background-color: #fff; /* 線を隠す背景 */
    padding: 0 10px;

    /* カードより手前に表示 */
    z-index: 20;
    display: block;
}

/* 画像エリア */
.rs-img-box {
    height: 158px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    z-index: 2; /* 数字より下、背景より上 */
}

/* 画像エリア内の画像 */
.rs-main-img {
    max-height: 140px !important; /* 高さを最大140pxに制限 */
    width: auto !important; /* HTMLのstyle指定を上書き無効化 */
    max-width: 100% !important;
    object-fit: contain;
}

/* カードタイトル */
html body .rs-card-title {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    line-height: 32px !important;
    color: #009fdb !important;
    margin: 0 0 0px 0 !important;

    border: none !important;
    text-align: center !important;
}

/* 説明文 */
html body .rs-card-desc {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 28px !important;
    color: #333333 !important;
    text-align: center;

    /* 幅を100%から300pxに変更し、中央配置を明示 ▼ */
    width: 300px !important;
    margin: 0 auto !important;
}

.rs-card-desc p {
    margin: 0 !important;
}

/* 区切り線（カード幅1296pxと一致させる） */
.rs-divider {
    width: 100%;
    max-width: 1296px; /* カードエリアの合計幅に合わせる */
    height: 1px;
    background-color: rgba(0, 0, 0, 0.3); /* #000000 30% */
    margin: 80px auto 0 auto;
}

/* ==========================================================================
   sec03 背景色変更 & ボタン修正
   ========================================================================== */

/* 背景色の変更と余白 */
.sec03 {
    background-color: #ffffff !important;
    padding-top: 120px !important;
    padding-bottom: 120px !important;
}

/* 全体のコンテナ（幅1000px） */
.sec03 .pricing-plans-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1000px !important;
    margin: 60px auto 40px auto !important; /* タイトル下とボタン上の余白 */
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* ==========================================================================
   sec03 サービスフローの背景色変更
   ========================================================================== */

/* 1. コンテナの調整（隙間をなくす） */
html body #content #main .sec03 .service_flow {
    display: flex !important;
    gap: 0 !important; /* 隙間をゼロにする */
    background: transparent !important;
}

/* 2. ボックス共通設定 */
html body #content #main .sec03 .service_flow .service_flow_box {
    flex: 1 !important;
    position: relative !important;
    background-image: none !important;
    border: none !important;
    margin: 0 !important;
    padding: 18px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* 矢印の結合部分：マイナスマージンで噛み合わせ、重なり順(z-index)でブラウザの描画の隙間を防ぐ */
html body #content #main .sec03 .service_flow .service_flow_box:nth-of-type(1) {
    z-index: 3 !important;
}
html body #content #main .sec03 .service_flow .service_flow_box:nth-of-type(2) {
    z-index: 2 !important;
    margin-left: -24px !important; /* 前の矢印にピタッと合わせる */
}
html body #content #main .sec03 .service_flow .service_flow_box:nth-of-type(3) {
    z-index: 1 !important;
    margin-left: -24px !important; /* 前の矢印にピタッと合わせる */
}

/* 古いテーマの三角形（::after, ::before）の残骸を完全に消去 */
html body #content #main .sec03 .service_flow .service_flow_box::after,
html body #content #main .sec03 .service_flow .service_flow_box::before,
html body #content #main .sec03 .service_flow .service_flow_txt::after,
html body #content #main .sec03 .service_flow .service_flow_txt::before {
    display: none !important;
    content: none !important;
}

/* テキストが背景に埋もれないようにする */
html body #content #main .sec03 .service_flow .service_flow_txt {
    position: relative !important;
    z-index: 10 !important;
    color: #333333 !important;
    font-weight: bold !important;
}

/* 3. 各ボックスの形状切り抜き（clip-path）と背景色設定 */

/* 1つ目：要件整理（左フラット、右矢印） */
html body #content #main .sec03 .service_flow .service_flow_box:nth-of-type(1) {
    flex: 3.1 !important;
    background-color: #fffcdb !important;
    clip-path: polygon(0% 0%, calc(100% - 24px) 0%, 100% 50%, calc(100% - 24px) 100%, 0% 100%) !important;
}

/* 2つ目：開発（左食い込み、右矢印） */
html body #content #main .sec03 .service_flow .service_flow_box:nth-of-type(2) {
    flex: 4.3 !important; /* 下の長い枠に合わせて中央を広くする */
    background-color: #fff6c2 !important;
    clip-path: polygon(0% 0%, calc(100% - 24px) 0%, 100% 50%, calc(100% - 24px) 100%, 0% 100%, 24px 50%) !important;
}

/* 3つ目：保守・改善（左食い込み、右フラット） */
html body #content #main .sec03 .service_flow .service_flow_box:nth-of-type(3) {
    flex: 2.8 !important;
    background-color: #ffea6b !important;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 24px 50%) !important;
}

/* 各カード（幅460px） */
.sec03 .pricing-plan-card {
    width: 460px !important;
    height: 440px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0 28px !important;
    box-sizing: border-box !important;
}

/* 中央の区切り線（点線） */
.sec03 .plan-separator {
    width: 2px !important;
    height: 400px !important;
    border: none !important;
    background-image: repeating-linear-gradient(to bottom, #c4c4c4, #c4c4c4 4px, transparent 4px, transparent 10px) !important;
}

/* 画像エリア */
.sec03 .plan-img-area {
    position: relative !important;
    width: 100% !important;
    height: 158px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 25px !important;
}

/* オススメバッジ（72x72px） */
.sec03 .badge-recommend-circle {
    position: absolute !important;
    top: 20px !important;
    left: 30px !important;
    width: 72px !important;
    height: 72px !important;
    background-color: #ffe85a !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ff7b13 !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    z-index: 2 !important;
}

/* プラン画像 */
.sec03 .plan-main-img {
    max-height: 100% !important;
    width: auto !important;
    object-fit: contain !important;
}

/* プラン名 (30px) */
.sec03 .plan-title {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: 400 !important;
    font-size: 30px !important;
    color: #333333 !important;
    margin: 0 0 15px 0 !important;
    line-height: 32px !important;
    border: none !important;
    background: none !important;
    padding: 0 !important;
    letter-spacing: 0px !important;
}

/* 価格・テキストエリア（高さを揃える） */
.sec03 .plan-price-area {
    height: 56px !important; /* 70pxから56pxに変更 */
    margin-bottom: 16px !important;
    align-items: flex-end !important;
}

/* 13の数字部分 */
.sec03 .price-number-13 {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: 700 !important; /* Bold */
    font-size: 44px !important;
    color: #009fdb !important;
    line-height: 1 !important;
    letter-spacing: 0px !important;
}

/* .2の数字部分 */
.sec03 .price-number-dot2 {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: 700 !important; /* Bold */
    font-size: 34px !important;
    color: #009fdb !important;
    line-height: 1 !important;
    letter-spacing: 0px !important;
    margin-right: 4px !important; /* 「万円」との間に少し余白 */
}

/* 万円 の単位部分 */
.sec03 .price-unit-man {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: 700 !important; /* Bold */
    font-size: 22px !important;
    color: #333333 !important;
    line-height: 1.2 !important;
    letter-spacing: 0px !important;
    margin-bottom: 4px !important; /* 数字と下端を揃える微調整 */
}

/* 〜 の部分 */
.sec03 .price-unit-kara {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: 400 !important; /* Regular */
    font-size: 22px !important;
    color: #333333 !important;
    line-height: 1.2 !important;
    letter-spacing: 0px !important;
    margin-bottom: 4px !important;
}

/* 個別お見積り のテキスト部分 */
.sec03 .price-text-cyan {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    color: #009fdb !important;
    line-height: 56px !important;
    margin-bottom: 0 !important;
    align-self: center !important;
}

/* 説明文 */
.sec03 .plan-desc {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 28px !important;
    color: #333333 !important;
    text-align: left !important;
    margin: 0 auto !important;
    width: 336px !important;
    letter-spacing: 0px !important;
}

.sec03 .system-example-box {
    background-color: #e8f7ff !important;
    border-radius: 10px !important;
    max-width: 1000px !important;
    margin: -30px auto 0 auto !important;
    padding: 40px 60px !important;
    box-sizing: border-box !important;
    text-align: center !important;
}

.sec03 .system-example-box p {
    margin: 0 !important;
    color: #333333 !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
}

/*「料金の詳細はこちら」ボタン */
.sec03 .ac .btn-round1 {
    /* サイズと配置 */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important; /* コンテンツを中央に */
    width: 300px !important;
    height: 64px !important;

    /* 上の余白 */
    margin: 0px auto 0 auto !important;

    /* パディングをリセットしてテキストを正確に中央へ */
    padding: 0 !important;
    box-sizing: border-box !important;

    /* 背景（グラデーション） */
    background: linear-gradient(90deg, #00a3df 0%, #00c4cc 100%) !important;
    border-radius: 100px !important;
    border: none !important;

    /* テキストスタイル */
    font-family: 'Yu Gothic', 'YuGothic', sans-serif !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    line-height: 1 !important;

    position: relative !important;
}

/* ホバー時の挙動 */
.sec03 .ac .btn-round1:hover {
    opacity: 0.9 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 163, 223, 0.3) !important;
}

/* ボタン内のテキスト配置 */
.sec03 .ac .btn-round1::before {
    content: '料金の詳細はこちら';
    /* 余白を0にして完全に中央寄せ */
    margin-right: 0 !important;
    font-size: 18px !important;
}

/* 既存のテキストを非表示にする（二重表示防止） */
.sec03 .ac .btn-round1 {
    font-size: 0 !important;
}

/* 右矢印アイコン */
.sec03 .ac .btn-round1::after {
    content: '' !important;
    display: block !important;
    width: 10px !important;
    height: 10px !important;
    border-top: 3px solid #ffffff !important;
    border-right: 3px solid #ffffff !important;
    transform: rotate(45deg) !important;
    position: absolute !important;
    right: 30px !important;
    top: 50% !important;
    margin-top: -6px !important; /* 垂直中央補正 */
}

/* ==========================================================================
   ABテスト：PC/SP表示切り替え用 共通クラス
   ========================================================================== */
.ab-sp-only,
.ab-sp-br {
    display: none !important;
}

/* ==========================================================================
   ABテスト：SP対応（767px以下）まとめ
   ========================================================================== */
@media screen and (max-width: 767px) {
    /* --- FirstViewセクション --- */

    /* スマホでは上に移動させた分をリセットして中央に戻す */
    .ab-fv-wrapper .fv_content {
        margin-bottom: 0 !important;
    }

    /* セクションの高さをスマホサイズに調整 */
    .ab-fv-wrapper .fv_section {
        height: 265px !important;
        padding: 0 15px !important; /* スマホ画面端からの余白 */
    }

    /* サブテキスト（100社以上の〜）の調整 */
    .ab-fv-wrapper .fv_sub_text {
        font-size: 15px !important;
        line-height: 1.5 !important;
        letter-spacing: 0.02em !important;
        margin-bottom: 5px !important; /* メインテキストとの隙間を詰める */
    }

    /* メインテキスト（kintoneと地図を〜）の調整 */
    .ab-fv-wrapper .fv_main_text {
        font-size: 24px !important;
        line-height: 1.3 !important;
        letter-spacing: 0.04em !important;

        /* ドロップシャドウ（スマホのみ適用） */
        text-shadow: 1px 1px 0.5px #e8f7ff !important;
    }

    /* PC用の改行タグをスマホでも有効にする */
    .ab-fv-wrapper .pc_br {
        display: block !important;
    }

    /* --- PC要素を隠し、SP要素と改行を表示 --- */
    .ab-pc-only {
        display: none !important;
    }
    .ab-sp-only,
    .ab-sp-br {
        display: block !important;
    }

    /* セクション全体の上下余白をスマホ用に最適化 */
    .ab-sec01-wrapper .sec01 {
        padding: 60px 15px !important;
    }

    /* 吹き出し（青いボックス）のサイズと文字設定 */
    .ab-sec01-wrapper .catch_p {
        /* flexを解除してbrタグでの改行を有効にする */
        display: block !important;
        text-align: center !important;
        box-sizing: border-box !important;

        width: 100% !important;
        max-width: 320px !important;
        min-height: 50px !important;
        padding: 4px 24px !important;
        margin: 0 auto 24px auto !important;

        font-size: 14px !important;
        line-height: 1.5 !important;
        letter-spacing: 0.05em !important;
    }

    /* 吹き出しの下の▼をスマホ用に少し小さく調整 */
    .ab-sec01-wrapper .catch_p::after {
        bottom: -8px !important;
        border-width: 8px 8px 0 8px !important;
    }

    /* スマホ用ロゴ画像の設定▼ */
    .ab-sec01-sp-img {
        width: 100% !important;
        max-width: 320px !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
    }

    /* --- 悩み～解決策セクション --- */
    /* 1. 背景と全体余白 */
    html body #content #main .ab-reason-wrapper {
        padding: 40px 15px !important;
    }

    /* 2. 白いカード部分（Figma：左右余白16px） */
    html body #content #main .ab-reason-wrapper .reason-card {
        width: 100% !important;
        padding: 40px 16px !important;
        border-radius: 16px !important;
        box-sizing: border-box !important;
    }

    /* 3. メインタイトル (月13万円〜...) */
    html body #content #main .ab-reason-wrapper h2.reason-main-title {
        font-size: 20px !important;
        line-height: 1.5 !important;
        letter-spacing: 0.06em !important;
        margin: 0 auto 20px auto !important;
        max-width: 280px !important;
    }

    /* 4. 悩みブロック共通（フレックスを縦並びに） */
    html body #content #main .ab-reason-wrapper .worry {
        flex-direction: column !important;
        gap: 0 !important;
        margin-bottom: 54px !important;
    }

    /* 5. スマホでは「テキストが上、画像が下」の順序にする */
    html body #content #main .ab-reason-wrapper .worry .flex_text {
        order: 1 !important;
        flex: 0 0 auto !important;
        width: 279px !important;

        /* 画像との余白を広げる */
        margin: 0 auto 32px auto !important;

        padding: 0 !important;
        text-align: left !important;
    }
    html body #content #main .ab-reason-wrapper .worry figure {
        order: 2 !important;
        flex: 0 0 auto !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        line-height: 0 !important;
    }
    html body #content #main .ab-reason-wrapper .worry figure img {
        display: block !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    /* 表示切り替え */
    html body #content #main .ab-reason-wrapper .worry h3.ab-pc-only,
    html body #content #main .ab-reason-wrapper .worry.reverse h3.ab-pc-only {
        display: none !important;
    }
    html body #content #main .ab-reason-wrapper .worry h3.ab-sp-only,
    html body #content #main .ab-reason-wrapper .worry.reverse h3.ab-sp-only {
        display: block !important;
    }

    /* 親要素や画像に潜んでいる「不要なグレーの線」を消去 */
    html body #content #main .ab-reason-wrapper .worry.reverse,
    html body #content #main .ab-reason-wrapper .worry.reverse .flex_text,
    html body #content #main .ab-reason-wrapper .worry figure {
        border: none !important;
        border-top: none !important;
        background-image: none !important;
        box-shadow: none !important;
    }
    html body #content #main .ab-reason-wrapper .worry::before,
    html body #content #main .ab-reason-wrapper .worry::after,
    html body #content #main .ab-reason-wrapper .worry .flex_text::before,
    html body #content #main .ab-reason-wrapper .worry .flex_text::after {
        display: none !important;
        content: none !important;
    }

    /* 見出し（kintoneを導入したいけど...など） */
    html body #content #main .ab-reason-wrapper .worry h3,
    html body #content #main .ab-reason-wrapper .worry.reverse h3 {
        font-size: 20px !important;
        color: #009fdb !important;
        width: 100% !important;
        text-align: center !important;
        background: none !important;
        border: none !important;
        border-top: none !important;
        box-shadow: none !important;
        border-bottom: 2px solid #009fdb !important;
        padding: 0 0 4px 0 !important;
        margin: 0 0 20px 0 !important;
        line-height: 1.4 !important;
    }
    html body #content #main .ab-reason-wrapper .worry h3::before,
    html body #content #main .ab-reason-wrapper .worry h3::after {
        display: none !important;
        content: none !important;
    }

    /* リスト（チェックマーク部分） */
    html body #content #main .ab-reason-wrapper .worry ul.check_list,
    html body #content #main .ab-reason-wrapper .worry:not(.reverse) ul.check_list,
    html body #content #main .ab-reason-wrapper .solution-block ul.check_list {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        text-align: left !important;
    }

    html body #content #main .ab-reason-wrapper .worry ul.check_list li {
        font-size: 16px !important;
        line-height: 1.6 !important;
        letter-spacing: 0 !important;
        margin-bottom: 6px !important;
        padding-left: 28px !important;
        position: relative !important;
    }
    html body #content #main .ab-reason-wrapper .worry ul.check_list li:last-child {
        margin-bottom: 0 !important;
    }

    /* チェックマークの縦位置と、左端合わせの微調整 */
    html body #content #main .ab-reason-wrapper .check_list li::after,
    html body #content #main .ab-reason-wrapper .check_list.yellow-mark li::after {
        /* チェックマークを少し下げてテキストと高さを揃える */
        top: 10px !important;
        left: 4px !important;
        right: auto !important;
    }

    /* 6. 矢印エリア（スマホサイズに縮小） */
    html body #content #main .ab-reason-wrapper .reason-arrow-area {
        margin-top: -10px !important;
        margin-bottom: 40px !important;
    }
    html body #content #main .ab-reason-wrapper .wide-arrow-down {
        width: 80px !important;
        height: 40px !important;
    }

    html body #content #main .ab-reason-wrapper,
    html body #content #main .ab-reason-wrapper .reason-card,
    html body #content #main .ab-reason-wrapper .solution-area {
        overflow: visible !important;
        clip-path: none !important;
    }

    /* 7. 解決策エリア タイトル */
    html body #content #main .ab-reason-wrapper h2.solution-main-title {
        font-size: 18px !important;
        font-weight: 700 !important;
        line-height: 1.5 !important;
        letter-spacing: 0.06em !important;

        /* 自動改行を禁止 */
        white-space: nowrap !important;
        text-align: center !important;

        /* 枠を無視して最前面へ */
        width: max-content !important;
        position: relative !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 9999 !important;

        /* 文字自体の保護 */
        padding: 0 10px !important;
        margin: 0 0 30px 0 !important;

        /* 自身の切り捨て設定も解除・リセット */
        overflow: visible !important;
        border: none !important;
        background: none !important;
        box-sizing: border-box !important;
    }

    /* ぐーどろに、ご相談ください！ の部分 */
    html body #content #main .ab-reason-wrapper h2.solution-main-title .tk2 {
        display: inline-block !important;
        margin-top: 12px !important;
        font-size: 20px !important;
        font-weight: 700 !important;
        line-height: 1.5 !important;
        letter-spacing: 0.06em !important;

        background: linear-gradient(transparent 60%, #fedd10 60%) !important;
        padding: 0 4px !important;
    }

    /* 解決策ブロック独自の間隔調整 */
    html body #content #main .ab-reason-wrapper .worry.solution-block {
        margin-bottom: 0 !important; /* 最後のブロックなので余白を消す */
        /* PC版の「横の隙間(69px)」が縦の余白になっていたので解除 */
        gap: 0 !important;
    }

    /* リスト（チェックマーク部分） */
    html body #content #main .ab-reason-wrapper .worry ul.check_list,
    html body #content #main .ab-reason-wrapper .worry:not(.reverse) ul.check_list,
    html body #content #main .ab-reason-wrapper .solution-block ul.check_list {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        text-align: left !important;
    }

    html body #content #main .ab-reason-wrapper .worry ul.check_list li {
        font-size: 16px !important;
        line-height: 1.6 !important;
        letter-spacing: 0 !important;

        /* 間の余白は行間を考慮して見た目16pxになるよう調整 */
        margin-bottom: 6px !important;

        /* チェックマークを右に移動させる分、テキストの開始位置も右にずらす（26px → 32px） */
        padding-left: 32px !important;

        position: relative !important;
    }
    html body #content #main .ab-reason-wrapper .worry ul.check_list li:last-child {
        margin-bottom: 0 !important;
    }

    /* チェックマークの縦位置と、左端合わせの微調整 */
    html body #content #main .ab-reason-wrapper .check_list li::after,
    html body #content #main .ab-reason-wrapper .check_list.yellow-mark li::after,
    /* 解決策ブロックにも確実に位置調整を効かせるためのセレクタ */
    html body #content #main .ab-reason-wrapper .solution-block ul.check_list li::after {
        /* 少し下に移動させてテキストの中央に合わせる */
        top: 12px !important;

        /* 少し右に移動 */
        left: 8px !important;

        right: auto !important;
    }

    /* --- 導入事例セクション --- */
    /* 1. セクション全体：上下の余白をFigma通りに設定 */
    html body section.ab-case-section {
        padding: 72px 0 72px 0 !important;
    }

    /* 2. コンテナ：スライダーが画面端まで行くように親の余白をゼロにする */
    html body .ab-case-container {
        padding: 0 !important;
    }

    /* 3. タイトル（導入事例） */
    html body .ab-case-title {
        font-size: 20px !important;
        font-weight: 700 !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
        text-align: center !important;
        padding: 0 16px !important;
        box-sizing: border-box !important;
    }

    /* 4. サブタイトル（様々な業種で〜） */
    html body .ab-case-subtitle {
        font-size: 14px !important;
        font-weight: 400 !important;
        line-height: 26px !important;
        margin-bottom: 30px !important;
        text-align: left !important;
        padding: 0 16px !important;
        box-sizing: border-box !important;
    }

    /* 導入事例エリア SP用カルーセル微調整 */
    /* 1. 見切れを防ぐため親要素のはみ出しを完全に許可 */
    html body .ab-case-container,
    html body .ab-full-width-area {
        padding: 0 !important;
        max-width: 100% !important;
        overflow: visible !important;
    }

    /* 2. コンテナを「完全対称」 */
    html body .case-studies-list.swiper {
        width: 100% !important;

        /* PC用の上50px/下70pxの余白をゼロにし、左右のみ計算式を適用 */
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        padding-left: calc(50% - 158px) !important;
        padding-right: calc(50% - 158px) !important;

        box-sizing: border-box !important;
        margin: 0 !important;
        transform: none !important;
        overflow: visible !important;
    }

    /* 3. ラッパーの余白リセット */
    html body .ab-unique-wrapper {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 !important;
    }

    /* 4. スライドを「カード(300px) + 左右の隙間(8px × 2) = 316px」の完全対称な箱にする */
    html body .ab-unique-slide {
        box-sizing: border-box !important;

        /* 完全対称な316pxの箱にする */
        width: 316px !important;
        min-width: 316px !important;
        max-width: 316px !important;

        /* 左右に8pxずつの隙間を作る（これにより中のカードは自動的にピッタリ300pxになる） */
        padding-left: 8px !important;
        padding-right: 8px !important;

        /* marginはシステムを狂わせるので絶対にゼロ！ */
        margin: 0 !important;
    }

    /* 5. ページネーション（点々）を完全に中央揃えにする */
    html body .ab-unique-pagination {
        /* 左に15pxズレていた過去の指定を強制リセット */
        transform: none !important;

        /* 画面幅いっぱいの基準から真ん中に配置 */
        left: 0 !important;
        width: 100% !important;
        text-align: center !important;
    }

    /* --- CTAセクション --- */
    /* 1. セクション全体：余白設定 */
    html body #content #main section.cta-contact-section {
        padding: 30px 16px !important;
    }

    /* 2. タイトル（サイズ統一と改行の修正） */
    html body #content #main section.cta-contact-section h2.cta-contact-title {
        font-size: 22px !important;
        font-weight: 500 !important;
        line-height: 1.6 !important;
        margin-bottom: 24px !important;

        /* 親要素の幅を少し狭めて自然な改行を促す */
        max-width: 340px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* 元々入っている改行タグ(<br>)を無効化し、変な位置での改行を防ぐ */
    html body #content #main section.cta-contact-section h2.cta-contact-title br {
        display: none !important;
    }

    /* 「や」「を」が改行されないようinline付与 */
    html body #content #main section.cta-contact-section h2.cta-contact-title .small-char {
        font-size: 22px !important;
        display: inline !important;
        margin: 0 !important;
    }

    /* 3. カードエリア（縦並びに変更） */
    html body #content #main section.cta-contact-section .cta-contact-cards {
        flex-direction: column !important;
        gap: 24px !important;
    }

    /* 4. カード本体 */
    html body #content #main section.cta-contact-section .cta-contact-card {
        width: 100% !important;
        height: auto !important;
        min-height: 160px !important;
        padding: 30px 20px !important; /* ボタンが入りきるよう横の余白を少し広げる */
        border-radius: 20px !important;

        justify-content: center !important;
        gap: 10px !important;
    }

    /* 5. リード文 */
    html body #content #main section.cta-contact-section .card-lead {
        /* 16pxに統一 */
        font-size: 16px !important;
        margin-bottom: 0 !important;
    }
    html body #content #main section.cta-contact-section .slash-bold {
        font-size: 16px !important;
    }

    /* 6. ボタン */
    html body #content #main section.cta-contact-section .cta-btn {
        width: 100% !important;
        height: 64px !important;
        border-radius: 50px !important;

        /* 右矢印の重みを相殺し、テキスト群全体を「少し左」へずらす */
        /* 右の余白を多め(40px)、左を少なめ(10px)にすることで中心を左にスライドさせる */
        padding: 0 40px 0 10px !important;
    }

    /* 資料ダウンロードボタンのテキストのみ太さをMedium(500)に変更 */
    html body #content #main section.cta-contact-section .cta-btn.btn-download .btn-text {
        font-weight: 500 !important;
    }

    /* ボタン内テキストとアイコンの間隔 */
    html body #content #main section.cta-contact-section .cta-btn .btn-content-center {
        /* 間隔を8pxに設定 */
        gap: 8px !important;
    }

    /* ボタン内テキスト */
    html body #content #main section.cta-contact-section .cta-btn .btn-text {
        font-size: 22px !important;

        /* サイトで正常に読み込まれる太字（700）を指定してかすれを防ぐ */
        font-weight: 700 !important;

        /* 不自然な文字詰めをリセット */
        letter-spacing: 0 !important;

        white-space: nowrap !important;
    }

    @media screen and (max-width: 767px) {
        html body #content #main section.cta-contact-section .cta-btn.btn-download .btn-text,
        html body #content #main section.cta-contact-section .cta-btn.btn-contact .btn-text  {
            font-size: 16px !important;
        }
    }

    /* 右の矢印アイコンの位置 */
    html body #content #main section.cta-contact-section .icon-right-wrapper {
        /* 右端に配置 */
        right: 16px !important;
    }

    /* --- 選ばれる理由セクション --- */
    /* 1. セクション全体 */
    html body .rs-section {
        padding: 72px 16px 0 16px !important;
        overflow: visible !important;
    }

    /* 2. セクションタイトル */
    html body .rs-title {
        font-size: 20px !important;
        line-height: 1.5 !important;
        letter-spacing: 0.06em !important;
        margin-bottom: 40px !important;
        max-width: 220px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* 3. カードエリア（縦並びに変更） */
    html body .rs-cards {
        flex-direction: column !important;
        align-items: center !important;
        gap: 60px !important;
        padding-top: 40px !important;
        margin-top: 0 !important;
        overflow: visible !important;
    }

    /* 4. カード本体 */
    html body .rs-card {
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;

        /* 左右の余白を少し縮めて画像スペースを確保 */
        padding: 40px 20px !important;

        border-radius: 30px !important;
        flex: none !important;
        overflow: visible !important;
    }

    html body .rs-number {
        left: 20px !important;
    }

    /* 5. 画像エリア（Flexboxで中央寄せし、高さを確保） */
    html body .rs-img-box {
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
        min-height: 140px !important; /* 最低140pxの高さを確保して潰れを防止 */
        margin: 0 auto 8px auto !important;

        /* Flexboxで中の画像をド真ん中に配置 */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        aspect-ratio: auto !important;
        overflow: visible !important;
    }

    /* 6. 画像本体（絶対に欠けさせない・PC版安定挙動） */
    html body .rs-img-box img,
    html body .rs-main-img {
        /* サイズを自動にして「最大値」だけを制限する */
        width: auto !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: 140px !important;

        object-fit: contain !important;
        transform: none !important;
        margin: 0 !important;
    }

    /* 7. カードタイトル */
    html body .rs-card-title {
        font-size: 18px !important;
        line-height: 1.5 !important;
        margin-bottom: 4px !important;
    }

    /* 8. カード説明文 */
    html body .rs-card-desc {
        width: 100% !important;
        font-size: 14px !important;
        line-height: 2 !important;
    }

    /* 9. 微調整：2枚目のカードのみ、画像とタイトルの間の余白を広げる */
    html body .rs-cards .rs-card:nth-child(2) .rs-img-box {
        margin-bottom: 24px !important;
    }

    /* 10. SP表示では下部の区切り線（グレーの線）を非表示にする */
    html body .rs-divider {
        display: none !important;
    }

    /* 11. 余計な下余白（60pxなど）を完全に削除して繋げる */
    html body .rs-section,
    html body .rs-container,
    html body .rs-cards {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    html body .rs-cards::before,
    html body .rs-cards::after {
        display: none !important;
        content: none !important;
    }

    /* --- 開発支援サービスセクション --- */
    /* 1. セクション全体：前セクションからの余白を72pxに設定 */
    html body #content #main .sec03 {
        padding: 72px 16px 80px 16px !important;
        margin-top: 0 !important;
    }

    /* 2. メインタイトル (改行位置の修正) */
    html body #content #main .sec03 h2.main_title {
        font-size: 20px !important;
        font-weight: 700 !important;
        line-height: 1.5 !important;
        margin: 0 auto 40px auto !important;
        text-align: center !important;

        /* 不自然な改行の原因だった幅制限を解除。HTML側の<br>に任せる */
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }

    /* 3. 各ポイントのタイトル */
    html body #content #main .sec03 h3 {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;

        font-size: 16px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        letter-spacing: 2px !important;

        /* 下のフロー図との間隔を 29px に設定 */
        margin-bottom: 29px !important;
        text-align: left !important;

        border: none !important;
        padding: 0 !important;
        background: none !important;
    }

    /* 3-1. バッジ「1」「2」の装飾 */
    html body #content #main .sec03 h3 .nmb_sec03 {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        background-color: #72c7e9 !important;
        color: #ffffff !important;
        width: 24px !important;
        height: 24px !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        margin-right: 8px !important;
        border-radius: 2px !important;
    }

    /* 4. サブテキスト (〜導入前から保守/改善まで一気通貫サポート〜) */
    html body #content #main .sec03 h3 .service_sec03_sub {
        display: block !important;
        width: 100% !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        color: #00a2de !important;
        line-height: 1.6 !important;
        letter-spacing: 2px !important;
        margin-top: 8px !important;

        /* 青い下線 */
        padding-bottom: 8px !important;
        border-bottom: 2px solid #00a2de !important;
        margin-bottom: 0px !important;
    }

    /* 5. フロー図（要件整理・開発・保守）の設定 */
    html body #content #main .sec03 .service_flow {
        height: 80px !important;
        display: flex !important;
        gap: 0 !important;
        margin-bottom: 40px !important; /* 下のリストとの間隔 */
        width: 100% !important;
    }

    html body #content #main .sec03 .service_flow .service_flow_box {
        height: 100% !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Figmaの数値(92.42 : 102.41 : 148.17)に基づいた正確な比率設定 */
    html body #content #main .sec03 .service_flow .service_flow_box:nth-of-type(1) {
        flex: 92 !important;
    }
    html body #content #main .sec03 .service_flow .service_flow_box:nth-of-type(2) {
        flex: 102 !important;
    }
    html body #content #main .sec03 .service_flow .service_flow_box:nth-of-type(3) {
        flex: 148 !important;
    }

    /* フロー図の文字設定 */
    html body #content #main .sec03 .service_flow .service_flow_txt {
        font-size: 14px !important;
        font-weight: 700 !important;
        color: #333333 !important;
        letter-spacing: 0 !important;
        white-space: nowrap !important;
    }

    /* フロー図の形状調整（スマホ最適化） */
    html body #content #main .sec03 .service_flow .service_flow_box:nth-of-type(1) {
        clip-path: polygon(0% 0%, calc(100% - 12px) 0%, 100% 50%, calc(100% - 12px) 100%, 0% 100%) !important;
    }
    html body #content #main .sec03 .service_flow .service_flow_box:nth-of-type(2) {
        margin-left: -12px !important;
        clip-path: polygon(0% 0%, calc(100% - 12px) 0%, 100% 50%, calc(100% - 12px) 100%, 0% 100%, 12px 50%) !important;
    }
    html body #content #main .sec03 .service_flow .service_flow_box:nth-of-type(3) {
        margin-left: -12px !important;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 12px 50%) !important;
    }

    /* 文字の中央配置微調整 */
    html body #content #main .sec03 .service_flow .service_flow_box:nth-of-type(3) .service_flow_txt {
        padding-left: 12px !important;
    }

    /* 6. サービスリスト（PC/SP出し分けの強制適用） */
    /* 2枚目のカードのテキストを一旦「全て」隠す（元のPCテキストが残っていても強制非表示） */
    html body #content #main .sec03 .service_list li:nth-child(2) .s_name {
        display: none !important;
    }

    /* スマホ用に用意したテキスト（ab-sp-only）「だけ」を強制的に表示する */
    html body #content #main .sec03 .service_list li:nth-child(2) .s_name.ab-sp-only {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        line-height: 1.3 !important;
        font-size: 12px !important;
        font-weight: 400 !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    /* 上の3つのカード（導入支援・開発・定着支援） */
    html body #content #main .sec03 .service_list li {
        width: calc(33.3% - 5px) !important; /* 隙間を考慮した3分割 */
        min-height: 180px !important;
        /* ▼ 12pxの文字が入り切るよう、横のパディングを極限（2px）まで削ります */
        padding: 16px 2px !important;
        background: #ffffff !important;
        border: 2px solid #00a2de !important;
        border-radius: 10px !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    /* 一番下の4つ目のカード（アドバイザリーサポート） */
    html body #content #main .sec03 .service_list li:nth-child(4) {
        width: 100% !important;
        min-height: 80px !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 15px !important;
        padding: 10px 20px !important;
    }

    /* 画像サイズ微調整（12pxの文字スペースを確保するため少しだけ縮小） */
    html body #content #main .sec03 .service_list li figure img {
        height: 55px !important;
        width: auto !important;
    }

    /* ▼ 修正：4枚目の横長カードの画像サイズを大きくする */
    html body #content #main .sec03 .service_list li:nth-child(4) figure img {
        height: 70px !important;
    }

    /* ▼ 修正：s_name (テキスト) をFigma通りの 12px / Regular に設定 */
    html body #content #main .sec03 .service_list li .s_name {
        font-size: 12px !important; /* Figma指定通り */
        font-weight: 400 !important; /* Figma指定通り (Regular) */
        line-height: 1.3 !important;
        color: #333333 !important;
        text-align: center !important;
        word-break: break-all !important; /* 枠からはみ出さないよう単語の途中で改行を許可 */
    }

    /* 4枚目の横長テキストも12pxに統一 */
    html body #content #main .sec03 .service_list li:nth-child(4) .s_name {
        font-size: 12px !important;
        text-align: left !important;
    }

    /* --- 開発支援サービスセクション --- */
    /* 1. ボックス全体の設定 */
    html body #content #main .sec03 .system-example-box {
        width: 100% !important;
        margin: 0 0 40px 0 !important; /* Figma: 下の「2. 支援形式〜」との間隔 40px */
        padding: 30px 20px !important; /* Figma: 上下30px、左右20px */
        border-radius: 10px !important;
        background-color: #e8f7ff !important;
        box-sizing: border-box !important;
    }

    /* 2. PC用テキストは隠す */
    html body #content #main .sec03 .system-example-box p.ab-pc-only {
        display: none !important;
    }

    /* 3. SP用テキストの大枠設定 */
    html body #content #main .sec03 .system-example-box p.ab-sp-only {
        display: block !important;
        margin: 0 !important;
        text-align: left !important;
    }

    /* 4. 「システム開発の一例：」の部分 */
    html body #content #main .sec03 .system-example-box p.ab-sp-only .ex-title {
        display: block !important;
        font-size: 14px !important; /* Figma: 14px */
        font-weight: 400 !important; /* Figma: Regular */
        color: #333333 !important;
        line-height: 1.5 !important; /* Figma: 150% */
        letter-spacing: 0.02em !important; /* Figma: 2% */
        margin-bottom: 10px !important; /* Figma: 下のテキストとの隙間 10px */
    }

    /* 5. その下のシステム名一覧の部分 */
    html body #content #main .sec03 .system-example-box p.ab-sp-only .ex-text {
        display: block !important;
        font-size: 14px !important; /* Figma: 14px */
        font-weight: 400 !important; /* Figma: Regular */
        color: #333333 !important;
        line-height: 1.5 !important; /* Figma: 150% */
        letter-spacing: 0.02em !important; /* Figma: 2% */
    }

    /* 6. コンテナを縦並びに変更 */
    html body #content #main .sec03 .pricing-plans-container {
        flex-direction: column !important;
        margin: 40px auto !important; /* 上下の余白 */
        gap: 40px !important; /* カード間の隙間 */
    }

    /* 7. カードの固定サイズを解除してスマホの幅に合わせる */
    html body #content #main .sec03 .pricing-plan-card {
        width: 100% !important;
        height: auto !important; /* PCの固定高さを解除 */
        padding: 0 !important; /* 余白をリセット */
    }

    /* 8. 区切り線を「横向きの点線」に */
    html body #content #main .sec03 .plan-separator {
        width: 100% !important;
        max-width: 320px !important; /* 長くなりすぎないよう制限 */
        height: 2px !important; /* 線の太さ */
        /* 背景グラデーションを to right にして横向きの点線を作る */
        background-image: repeating-linear-gradient(to right, #c4c4c4, #c4c4c4 4px, transparent 4px, transparent 10px) !important;
    }

    /* 9. 画像エリアと画像サイズの微調整 */
    html body #content #main .sec03 .plan-img-area {
        height: auto !important;
        margin-bottom: 20px !important;
    }
    html body #content #main .sec03 .plan-main-img {
        height: 120px !important; /* スマホ向けに少し縮小 */
    }

    /* 10. オススメバッジのサイズと位置調整 */
    html body #content #main .sec03 .badge-recommend-circle {
        width: 60px !important;
        height: 60px !important;
        font-size: 16px !important;
        top: 0 !important;
        /* ▼ 修正：左へ移動させるため、マイナスする数値を大きくしました(-80px → -95px) */
        left: calc(50% - 95px) !important;
    }

    /* 11. プラン名 (従量課金開発など) */
    html body #content #main .sec03 .plan-title {
        font-size: 18px !important;
        font-weight: 700 !important; /* Figma: Bold */
        /* ▼ 修正：下余白を不要（ゼロ）にしました */
        margin-bottom: 0 !important;
    }

    /* 12. 金額エリアの文字サイズ調整 */
    html body #content #main .sec03 .plan-price-area {
        height: auto !important;
        margin-bottom: 16px !important;
    }
    /* 指定のサイズに細かく変更 */
    html body #content #main .sec03 .price-number-13 {
        font-size: 24px !important;
    }
    html body #content #main .sec03 .price-number-dot2 {
        font-size: 18px !important;
        margin-right: 2px !important;
    }
    html body #content #main .sec03 .price-unit-man {
        font-size: 15px !important;
    }
    /* バランスを取るため「〜」も同じ15pxに揃える */
    html body #content #main .sec03 .price-unit-kara {
        font-size: 15px !important;
    }

    html body #content #main .sec03 .price-text-cyan {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }

    /* 13. 説明文（Figmaの改行位置に近づけるための幅調整） */
    html body #content #main .sec03 .plan-desc {
        width: 100% !important;
        max-width: 280px !important;
        font-size: 14px !important;
        line-height: 1.8 !important;
    }
    /* PC用の強制改行をスマホでは無効化 */
    html body #content #main .sec03 .plan-desc .pc_br {
        display: none !important;
    }
}
