
        /* ==================================== */
        /* AGM Documentation 元のブランドカラーとデザイン変数の復元 */
        /* ==================================== */
        :root {
            --bg: #fffaf9;
            --card: #ffffff;
            --accent: #f7c6d1;      /* やわらかいピンク */
            --leaf: #b7e4c7;        /* 新緑グリーン */
            --muted: #6b6b6b;
            --round: 12px;
            --maxw: 960px;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --link-blue: #1e88e5;
            --strong-text: #4a4a4a;
            --text-main: #2b2b2b;
            --border-color: #f0e6e6;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
            background: linear-gradient(180deg, var(--bg), #fff);
            color: var(--text-main);
            line-height: 1.8;
            padding: 2rem 1rem;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: var(--maxw);
            margin: 0 auto;
        }

        /* --- ヘッダー --- */
        header {
            margin-bottom: 2rem;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 1.2rem;
        }

        h1 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-main);
            line-height: 1.3;
            margin-bottom: 0.5rem;
        }

        .subtitle {
            font-size: 1rem;
            color: var(--muted);
        }

        /* --- INTRO CARD（旧note/cardの質感に統合） --- */
        .intro-card {
            background: var(--card);
            border: 1px solid var(--border-color);
            border-left: 6px solid var(--accent);
            border-radius: var(--round);
            padding: 1.5rem;
            margin-bottom: 2.5rem;
            box-shadow: var(--shadow);
        }

        .intro-card h2 {
            font-size: 1.25rem;
            color: var(--text-main);
            margin-bottom: 0.75rem;
            border-bottom: none;
            padding-bottom: 0;
        }

        .intro-card p {
            color: var(--text-main);
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
        }

        /* アコーディオン（details）モバイル対応 */
        details {
            font-size: 0.95rem;
            border-top: 1px dashed var(--accent);
            padding-top: 1rem;
            margin-top: 1rem;
        }

        summary {
            cursor: pointer;
            font-weight: bold;
            color: var(--link-blue);
            outline: none;
            padding: 8px 0; /* モバイルでのタップ範囲拡大 */
            user-select: none;
        }

        summary:hover {
            text-decoration: underline;
        }

        .details-content {
            margin-top: 1rem;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .details-content h3 {
            font-size: 1.1rem;
            border-left: 4px solid var(--accent);
            padding-left: 10px;
            margin: 1rem 0 0.5rem;
        }

        .details-content ul {
            padding-left: 1.2rem;
        }

        /* --- グリッドナビゲーション --- */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.25rem;
            margin-bottom: 3rem;
        }

        .card {
            background: var(--card);
            border: 1px solid var(--border-color);
            border-radius: var(--round);
            padding: 1.5rem;
            text-decoration: none;
            color: inherit;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow);
        }

        .card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.1);
        }

        .card-number {
            font-size: 0.85rem;
            font-weight: bold;
            color: var(--muted);
            margin-bottom: 0.25rem;
            letter-spacing: 0.05em;
        }

        .card-title {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: var(--text-main);
            border-bottom: none;
            padding-bottom: 0;
        }

        .card-desc {
            font-size: 0.9rem;
            color: var(--muted);
            flex-grow: 1;
            line-height: 1.6;
        }

        .card-list {
            margin-top: 1rem;
            padding-left: 1.1rem;
            font-size: 0.85rem;
            color: var(--muted);
            border-top: 1px solid #f5f0f0;
            padding-top: 0.75rem;
        }

        /* --- ボタン共通 (旧 common.css の --leaf デザインを継承) --- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--leaf);
            color: #2b2b2b !important;
            padding: 10px 18px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 0.9rem;
            text-decoration: none !important;
            transition: 0.2s;
            min-height: 44px; /* モバイルアクセシビリティ標準サイズ */
            border: none;
        }

        .btn:hover {
            background: #a9d4b8;
            box-shadow: 0 4px 10px rgba(0, 150, 0, 0.15);
        }

        .footer-nav {
            margin-bottom: 2.5rem;
        }

        .footer-nav-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        /* --- フッター --- */
        footer {
            text-align: center;
            font-size: 0.85rem;
            color: var(--muted);
            border-top: 1px solid #ddd;
            padding-top: 2rem;
        }

        /* --- モバイル専用微調整 --- */
        @media (max-width: 600px) {
            body {
                padding: 1rem 0.75rem;
            }

            h1 {
                font-size: 1.6rem;
            }

            .intro-card {
                padding: 1.1rem;
            }

            .grid {
                grid-template-columns: 1fr; /* 完全に1列に固定 */
                gap: 1rem;
            }

            .footer-nav-links {
                flex-direction: column;
                width: 100%;
            }

            .footer-nav-links .btn {
                width: 100%;
                margin-bottom: 0.5rem;
            }
        }



