    /* ==========================================
       1. 【根本原因の解決】
        service_biz.html 専用：ヘッダー下の10px隙間消去＆PC/SP完全最適化 
       bodyの余白(70px)を、ヘッダー実寸(60px)に完全一致させる
       ========================================== */
    body {
        padding-top: 60px !important; /* これで10pxの白い隙間が消滅します */
    }

    /* ヘッダー自体の下隙間要因をカット */
    header.header {
        height: 60px !important;
        margin-bottom: 0 !important;
        border-bottom: none !important;
    }

    /* メインエリアをヘッダー直下に隙間なく密着させる */
    main,
    section.download {
        margin-top: 0 !important;
    }

    /* ==========================================
       2. PC表示時（769px以上）の表示調整
       ========================================== */
    @media (min-width: 769px) {
        section.download {
            padding-top: 60px !important; /* 白い隙間ではなく、グレー背景内部の余白として調整 */
            background-color: var(--color-bg-light) !important;
        }

        .download .section-title {
            margin-top: 0 !important;
            margin-bottom: 40px !important;
        }
    }

    /* ==========================================
       3. スマホ表示時（768px以下）の表示調整（成功している状態を維持）
       ========================================== */
    @media (max-width: 768px) {
        .header {
            padding: 0 15px !important;
            box-sizing: border-box !important;
        }
        .header__inner {
            justify-content: flex-start !important;
            align-items: center !important;
            height: 60px !important;
        }
        .header__logo {
            margin: 0 auto 0 0 !important; /* 左寄せ固定 */
            text-align: left !important;
        }
        .header__logo img {
            height: 28px !important;
            width: auto !important;
        }

        section.download {
            padding-top: 30px !important;
            background-color: var(--color-bg-light) !important;
        }
        .download .section-title {
            margin-top: 0 !important;
            margin-bottom: 20px !important;
        }
        .download__lead {
            margin-top: 0 !important;
            margin-bottom: 30px !important;
        }
    }

    @media (max-width: 768px) {
        /* メッセージ文の負のマージン(-40px)を消して重なりを解消 */
        .cta-section__message {
            margin: 20px auto 30px !important; /* ネガティブマージンを解除して正のマージンに */
            font-size: 14px !important;
            line-height: 1.6 !important;
            padding: 0 10px !important;
        }
    
        /* タイトル側の余白も念のため整える */
        .cta-section .section-title {
            margin-bottom: 0 !important;
        }
    }