        .comparison-section {
            max-width: 1000px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .section-title {
            font-size: 28px;
            color: #ffffff;
            margin-bottom: 40px;
            text-align: center;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .section-title::before,
        .section-title::after {
            content: "";
            display: inline-block;
            width: 30px;
            height: 4px;
            background-color: #e60000;
            transform: skewX(-30deg);
            margin: 0 15px;
        }

        /* ==============================
           テーブル枠＆スクロール対応
           ============================== */
        .table-wrapper {
            width: 100%;
            overflow-x: auto; /* スマホ表示時の横スクロール対応 */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
            border-radius: 4px;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px; /* テーブルが崩れないための最小幅 */
            background-color: #1a1a1a;
            text-align: center;
        }

        /* ヘッダー・セル基本設計 */
        .comparison-table th,
        .comparison-table td {
            padding: 18px 15px;
            border-bottom: 1px solid #2a2a2a;
            font-size: 15px;
            vertical-align: middle;
        }

        /* 項目名（左端のカラム） */
        .comparison-table th.feature-head,
        .comparison-table td.feature-title {
            text-align: left;
            width: 25%;
            background-color: #161616;
            color: #ffffff;
            font-weight: bold;
            padding-left: 25px;
        }

        /* ==============================
           自社（当社）カラムの強調デザイン
           ============================== */
        .comparison-table .col-our-product {
            background-color: #241113; /* 深い赤黒で差別化 */
            border-left: 2px solid #e60000;
            border-right: 2px solid #e60000;
            position: relative;
            width: 30%;
        }

        /* 自社ヘッダー */
        .comparison-table th.col-our-product {
            border-top: 4px solid #e60000;
            background-color: #2e0d11;
            color: #ffffff;
            font-size: 18px;
            font-weight: 900;
            letter-spacing: 1px;
        }

        /* 自社バッジ（RECOMMENDED） */
        .recommend-badge {
            display: inline-block;
            background-color: #e60000;
            color: #ffffff;
            font-size: 11px;
            font-weight: bold;
            padding: 3px 10px;
            margin-bottom: 8px;
            letter-spacing: 1px;
            transform: skewX(-12deg);
        }

        .recommend-badge span {
            display: inline-block;
            transform: skewX(12deg);
        }

        /* 他社カラム */
        .comparison-table .col-competitor {
            width: 22.5%;
            color: #aaaaaa;
        }

        /* 評価記号の装飾 */
        .mark-excellent {
            color: #e60000;
            font-size: 20px;
            font-weight: bold;
        }

        .mark-good {
            color: #ffffff;
            font-size: 18px;
        }

        .mark-fair {
            color: #666666;
            font-size: 18px;
        }

        /* 強調テキスト */
        .highlight-text {
            color: #ffffff;
            font-weight: bold;
        }

        /* ==============================
           スマートフォン対応
           ============================== */
        @media (max-width: 768px) {
            .comparison-table th,
            .comparison-table td {
                padding: 14px 10px;
                font-size: 13px;
            }
            
            .comparison-table th.col-our-product {
                font-size: 15px;
            }
        }