    <style>

        body {
            font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
        }

        /* 全体コンテナ */
        .pdcawrapper {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr; /* 左右2カラム */
            gap: 40px;
            width: 1000px;
            padding: 40px;
        }

        /* 左側の3Cエリア（Grid in Grid） */
        .pleft-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 20px;
            position: relative;
        }

        /* 右側のPDCAエリア */
        .pright-column {
            display: grid;
            grid-template-columns: 1fr;
            grid-template-rows: auto auto;
            gap: 20px;
            position: relative;
        }

        /* 共通パネルスタイル */
        .panel {
            position: relative;
            z-index: 2;
            padding: 25px 15px;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            border-radius: 2px;
        }

        .blue { background-color:#1a2872; }
        .orange { background-color: #e2991d; }

        /* 左上のターゲット分析（2列分ぶち抜き） */
        .ptarget-box {
            grid-column: 1 / 3;
        }

        .ptitle {
            font-size: 22px;
            font-weight: bold;
            line-height: 1.4;
            margin-bottom: 10px;
        }

        .highlight { color: #ffff00; }

        .subptitle-box {
            background-color: white;
            color: #333;
            padding: 6px 12px;
            font-size: 13px;
            width: 90%;
            margin-top: 10px;
            font-weight: 500;
        }

        /* 背面のグレーの線（レイヤー1） */
        .lines-layer {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .triangle-connector {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 60px;
            border-top: 5px solid #999;
            border-left: 5px solid #999;
            border-right: 5px solid #999;
        }

        /* 中央のPDCA丸アイコン（レイヤー3） */
        .pdca-badge {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90px;
            height: 90px;
            background-color: var(--pdca-bg);
            border-radius: 50%;
            z-index: 10;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        /* 矢印の装飾 */
        .pdca-badge::after {
            content: "";
            position: absolute;
            width: 100%; height: 100%;
            border-radius: 50%;
            border: 4px solid transparent;
            border-top-color: rgba(255,255,255,0.8);
            border-right-color: rgba(255,255,255,0.8);
            transform: rotate(45deg);
        }

@media (max-width: 768px) {
    .pdcawrapper {
        grid-template-columns: 1fr; /* 1カラムに変更 */
        width: 100%;
        max-width: 450px; /* スマホで横に広がりすぎないよう制限 */
        padding: 20px;
        gap: 60px; /* 上下グループの間にPDCAバッジ用の隙間を作る */
    }

    .pleft-column {
        order: 1; /* 3Cエリアを上に */
    }

    .pright-column {
        order: 2; /* PDCAエリアを下に */
    }

    .pdca-badge {
        /* 上下グループのちょうど真ん中に配置 */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80px;
        height: 80px;
        font-size: 16px;
    }

    .triangle-connector {
        width: 80px; /* スマホ用に線の幅を少し狭く調整 */
    }

    .ptitle {
        font-size: 18px; /* 文字サイズをスマホ向けに最適化 */
    }

    .subptitle-box {
        font-size: 11px;
    }
}


    </style>