        /*
        🚨🚨🚨 絶対変更禁止 - DO NOT MODIFY 🚨🚨🚨
        このファイルは完成形です。いかなる理由があっても変更禁止。
        特に以下の値は絶対に変更しないこと：
        - .docs-layout { max-width: 1140px; } ← フッター幅と同じ
        - .page-header .container { max-width: 1140px; } ← フッター幅と同じ
        - .container { max-width: 1140px !important; } ← Bootstrap上書き
        詳細: /Users/apple/Projects/mothership/apps/komon/LAYOUT_PROTECTION.md
        制定日: 2025年11月13日
        */

        /* コンテナ幅の統一（ヘッダー・フッター用） - Bootstrap 5デフォルトに合わせる */
        .container {
            max-width: 1140px !important;
        }

        .page-header {
            background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
            color: white;
            padding: 40px 0;
            margin-bottom: 40px;
        }
        .page-header .container {
            max-width: 1140px;
        }
        .docs-layout {
            display: flex;
            gap: 40px;
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .docs-sidebar {
scrollbar-width: thin;            scrollbar-color: #cbd5e1 transparent;
            width: 280px;
            flex-shrink: 0;
        }
        .docs-nav-section {
            margin-bottom: 30px;
        }
        .docs-nav-title {
            font-size: 0.875rem;
            font-weight: 700;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 2px solid #e5e7eb;
        }
        .docs-nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .docs-nav-list li {
            margin-bottom: 4px;
        }
        .docs-nav-link {
            display: block;
            padding: 8px 12px;
            color: #4b5563;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.2s;
            font-size: .9rem;
        }
        .docs-nav-link:hover {
            background: #eef6ff;
            color: #1E40AF;
        }
        .docs-nav-link.active {
            background: #1E40AF;
            color: white;
            font-weight: 600;
        }
        .docs-sidebar-cta {
            background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
            border-radius: 8px;
            padding: 20px;
            margin-top: 30px;
        }
        .docs-sidebar-cta h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .docs-sidebar-cta p {
            font-size: 0.875rem;
            color: #6b7280;
            margin-bottom: 15px;
        }
        .docs-sidebar-cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .docs-sidebar-cta-buttons .btn {
            width: 100%;
        }
        .docs-main {
            flex: 1;
            min-width: 0;
        }
        .breadcrumb {
            background: transparent;
            padding: 0;
            margin-bottom: 30px;
        }
        .content-section {
            margin-bottom: 40px;
        }
        .content-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            padding-bottom: 10px;
        }
        .info-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            overflow: hidden;
        }
        .info-table th,
        .info-table td {
            padding: 16px 20px;
            border-bottom: 1px solid #e5e7eb;
            vertical-align: top;
        }
        .info-table tr:last-child th,
        .info-table tr:last-child td {
            border-bottom: none;
        }
        .info-table th {
            background: #f9fafb;
            font-weight: 600;
            width: 25%;
            text-align: left;
            color: #374151;
            font-size: 0.95rem;
        }
        .info-table td {
            background: white;
            color: #1f2937;
            line-height: 1.7;
        }
        .info-table td ul {
            margin: 0;
            padding-left: 20px;
        }
        .info-table td ul li {
.info-table {            table-layout: fixed;        }        @media (max-width: 991px) {            .info-table {                display: block;                overflow-x: auto;            }            .info-table th {                min-width: 120px;            }            .info-table td {                word-wrap: break-word;            }        }
            margin-bottom: 8px;
        }
        .mission-section {
            background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
            padding: 40px;
            border-radius: 12px;
            margin: 40px 0;
            border-left: 4px solid #1E40AF;
        }
        .mission-section h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1E40AF;
            margin-bottom: 20px;
        }
        .mission-section .lead {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1f2937;
        }
        .content-section h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-top: 15px;
            margin-bottom: 15px;
            padding: 0px 10px;
        }
        .update-date {
            text-align: right;
            color: #6b7280;
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        @media (max-width: 991px) {
            .docs-layout {
                flex-direction: column;
            }
            .docs-sidebar {
scrollbar-width: thin;            scrollbar-color: #cbd5e1 transparent;
                width: 100%;
            }
        }

        /* サイドバー：PCでsticky（ヘッダー考慮）、スマホで非表示 */
        @media (min-width: 992px) {
            .docs-sidebar {
scrollbar-width: thin;            scrollbar-color: #cbd5e1 transparent;
                position: sticky;
                top: 80px;
                max-height: calc(100vh - 100px);
                overflow-y: auto;
}        .docs-sidebar::-webkit-scrollbar {            width: 6px;        }        .docs-sidebar::-webkit-scrollbar-track {            background: transparent;        }        .docs-sidebar::-webkit-scrollbar-thumb {            background-color: #cbd5e1;            border-radius: 3px;
            }
        }
        
        @media (max-width: 991px) {
            .docs-sidebar {
scrollbar-width: thin;            scrollbar-color: #cbd5e1 transparent;
                display: none;
            }
            .docs-main {
                max-width: 100%;
            }
        }

        /* サイドバー：PCでsticky（ヘッダー考慮）、スマホで非表示 */
        @media (min-width: 992px) {
            .docs-sidebar {
scrollbar-width: thin;            scrollbar-color: #cbd5e1 transparent;
                position: sticky;
                top: 80px;
                max-height: calc(100vh - 100px);
                overflow-y: auto;
}        .docs-sidebar::-webkit-scrollbar {            width: 6px;        }        .docs-sidebar::-webkit-scrollbar-track {            background: transparent;        }        .docs-sidebar::-webkit-scrollbar-thumb {            background-color: #cbd5e1;            border-radius: 3px;
            }
        }
        
        @media (max-width: 991px) {
            .docs-sidebar {
scrollbar-width: thin;            scrollbar-color: #cbd5e1 transparent;
                display: none;
            }
            .docs-main {
                max-width: 100%;
            }
        }
