/*
 * AWS SAP学習リソース - breakglass-user-guide 専用CSS
 * ページ固有のレイアウト・セクション・コンポーネントスタイル
 *
 * 自動生成日: 2026-01-11 18:18:58
 */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #e94560 75%, #ff6b6b 100%);
            padding: 20px;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 25px 70px rgba(0,0,0,0.4);
            overflow: hidden;
        }
        
        .header {
            background: linear-gradient(135deg, #dc2626 0%, #ea580c 50%, #f59e0b 100%);
            color: white;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: '🔑';
            position: absolute;
            font-size: 20em;
            opacity: 0.1;
            top: -50px;
            right: -50px;
        }
        
        .header h1 {
            font-size: 2.8em;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
        
        .header p {
            font-size: 1.3em;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }
        
        .content {
            padding: 50px;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.2em;
            color: #1e293b;
            margin: 50px 0 30px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        /* 結論ファースト */
        .conclusion-first {
            background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
            color: white;
            padding: 40px;
            border-radius: 20px;
            margin: 40px 0;
        }
        
        .conclusion-first h2 {
            font-size: 2em;
            margin-bottom: 25px;
            color: #fef3c7;
            text-align: center;
        }
        
        .conclusion-box {
            background: rgba(255,255,255,0.15);
            padding: 30px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }
        
        .conclusion-main {
            text-align: center;
            font-size: 1.3em;
            line-height: 2;
            margin-bottom: 30px;
        }
        
        .three-pillars {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .pillar {
            background: rgba(255,255,255,0.2);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
        }
        
        .pillar-icon {
            font-size: 3em;
            margin-bottom: 15px;
        }
        
        .pillar-title {
            font-size: 1.2em;
            font-weight: bold;
            color: #fef3c7;
            margin-bottom: 10px;
        }
        
        .pillar-desc {
            font-size: 0.95em;
            opacity: 0.9;
        }
        
        /* 例え話セクション */
        .analogy-section {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #f59e0b;
        }
        
        .analogy-title {
            color: #92400e;
            font-size: 2.2em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .analogy-intro {
            background: white;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .analogy-intro p {
            font-size: 1.2em;
            color: #78350f;
            line-height: 1.8;
        }
        
        .building-diagram {
            display: grid;
            grid-template-columns: 1fr 100px 1fr;
            gap: 20px;
            align-items: center;
            margin: 40px 0;
        }
        
        .building-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .building-icon {
            font-size: 5em;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .building-card h3 {
            color: #92400e;
            font-size: 1.5em;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .building-desc {
            background: #fffbeb;
            padding: 15px;
            border-radius: 10px;
            color: #78350f;
            line-height: 1.7;
            margin: 10px 0;
            font-size: 0.95em;
        }
        
        .vs-connector {
            text-align: center;
            font-size: 2em;
            color: #f59e0b;
        }
        
        .scenario-flow {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .scenario-step {
            background: white;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            min-width: 140px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .scenario-step-icon {
            font-size: 2.5em;
            margin-bottom: 10px;
        }
        
        .scenario-step-label {
            font-weight: bold;
            color: #92400e;
            font-size: 0.9em;
        }
        
        .scenario-arrow {
            font-size: 1.5em;
            color: #f59e0b;
        }
        
        /* 障害パターン */
        .failure-patterns {
            background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border: 3px solid #ef4444;
        }
        
        .failure-title {
            color: #991b1b;
            font-size: 2em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .idp-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .idp-card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border-top: 4px solid #ef4444;
        }
        
        .idp-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .idp-logo {
            font-size: 2.5em;
        }
        
        .idp-name {
            font-size: 1.3em;
            font-weight: bold;
            color: #991b1b;
        }
        
        .idp-failures {
            list-style: none;
            padding: 0;
        }
        
        .idp-failures li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: #64748b;
            border-bottom: 1px solid #f1f5f9;
            font-size: 0.9em;
        }
        
        .idp-failures li:last-child {
            border-bottom: none;
        }
        
        .idp-failures li::before {
            content: '⚠️';
            position: absolute;
            left: 0;
        }
        
        .real-incident {
            background: white;
            padding: 30px;
            border-radius: 15px;
            margin-top: 30px;
            border-left: 5px solid #dc2626;
        }
        
        .real-incident h4 {
            color: #dc2626;
            font-size: 1.3em;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .incident-timeline {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .incident-item {
            flex: 1;
            min-width: 200px;
            background: #fef2f2;
            padding: 20px;
            border-radius: 10px;
        }
        
        .incident-time {
            font-weight: bold;
            color: #dc2626;
            margin-bottom: 5px;
        }
        
        .incident-desc {
            color: #64748b;
            font-size: 0.9em;
        }
        
        /* マルチアカウント設計 */
        .multi-account {
            background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #0284c7;
        }
        
        .multi-title {
            color: #0c4a6e;
            font-size: 2.2em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .org-diagram {
            background: white;
            padding: 40px;
            border-radius: 15px;
            margin: 30px 0;
        }
        
        .org-structure {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        
        .org-level {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .org-box {
            padding: 20px 30px;
            border-radius: 12px;
            text-align: center;
            min-width: 180px;
            position: relative;
        }
        
        .org-management {
            background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
            color: white;
        }
        
        .org-security {
            background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
            color: white;
        }
        
        .org-workload {
            background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
            color: white;
        }
        
        .org-box-icon {
            font-size: 2em;
            margin-bottom: 10px;
        }
        
        .org-box-title {
            font-weight: bold;
            font-size: 1.1em;
        }
        
        .org-box-desc {
            font-size: 0.85em;
            opacity: 0.9;
            margin-top: 5px;
        }
        
        .org-connector {
            width: 3px;
            height: 30px;
            background: #94a3b8;
        }
        
        .org-branch {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .breakglass-placement {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .placement-card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border-top: 5px solid;
        }
        
        .placement-card.recommended {
            border-color: #10b981;
        }
        
        .placement-card.optional {
            border-color: #f59e0b;
        }
        
        .placement-card.notrecommended {
            border-color: #ef4444;
        }
        
        .placement-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .placement-icon {
            font-size: 2.5em;
        }
        
        .placement-title {
            font-size: 1.2em;
            font-weight: bold;
            color: #1e293b;
        }
        
        .placement-badge {
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8em;
            font-weight: bold;
        }
        
        .badge-recommended {
            background: #d1fae5;
            color: #065f46;
        }
        
        .badge-optional {
            background: #fef3c7;
            color: #92400e;
        }
        
        .badge-notrecommended {
            background: #fee2e2;
            color: #991b1b;
        }
        
        .placement-desc {
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 15px;
        }
        
        .placement-points {
            background: #f8fafc;
            padding: 15px;
            border-radius: 10px;
        }
        
        .placement-points li {
            padding: 5px 0;
            color: #475569;
            font-size: 0.9em;
        }
        
        /* デュアルコントロール */
        .dual-control {
            background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border: 3px solid #7c3aed;
        }
        
        .dual-title {
            color: #5b21b6;
            font-size: 2em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .dual-diagram {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        
        .person-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            min-width: 200px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .person-icon {
            font-size: 4em;
            margin-bottom: 15px;
        }
        
        .person-role {
            font-size: 1.3em;
            font-weight: bold;
            color: #5b21b6;
            margin-bottom: 10px;
        }
        
        .person-has {
            background: #f3e8ff;
            padding: 15px;
            border-radius: 10px;
            margin-top: 15px;
        }
        
        .person-has-title {
            font-weight: bold;
            color: #7c3aed;
            margin-bottom: 8px;
            font-size: 0.9em;
        }
        
        .person-has-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 5px 0;
            font-size: 0.9em;
            color: #64748b;
        }
        
        .dual-plus {
            font-size: 3em;
            color: #7c3aed;
        }
        
        .dual-result {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 25px 40px;
            border-radius: 15px;
            text-align: center;
        }
        
        .dual-result-icon {
            font-size: 3em;
            margin-bottom: 10px;
        }
        
        .dual-result-text {
            font-size: 1.2em;
            font-weight: bold;
        }
        
        .dual-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .dual-benefit {
            background: white;
            padding: 20px;
            border-radius: 12px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .dual-benefit-icon {
            font-size: 2em;
            flex-shrink: 0;
        }
        
        .dual-benefit-text h4 {
            color: #5b21b6;
            margin-bottom: 5px;
        }
        
        .dual-benefit-text p {
            color: #64748b;
            font-size: 0.9em;
        }
        
        /* SCP設計 */
        .scp-section {
            background: linear-gradient(135deg, #232f3e 0%, #0f3460 100%);
            color: white;
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
        }
        
        .scp-title {
            font-size: 2.2em;
            margin-bottom: 30px;
            text-align: center;
            color: #dc7600;
        }
        
        .scp-explanation {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        
        .scp-explanation p {
            line-height: 1.8;
            font-size: 1.1em;
        }
        
        .scp-diagram {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        
        .scp-box {
            background: rgba(255,255,255,0.15);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            min-width: 200px;
            backdrop-filter: blur(10px);
        }
        
        .scp-box-icon {
            font-size: 3em;
            margin-bottom: 15px;
        }
        
        .scp-box-title {
            font-weight: bold;
            color: #dc7600;
            margin-bottom: 10px;
        }
        
        .scp-box-desc {
            font-size: 0.9em;
            opacity: 0.9;
        }
        
        .scp-arrow {
            font-size: 2em;
            color: #dc7600;
        }
        
        .scp-code {
            background: #0f172a;
            padding: 25px;
            border-radius: 15px;
            overflow-x: auto;
            font-family: 'Courier New', monospace;
            font-size: 0.85em;
            line-height: 1.8;
            margin-top: 30px;
        }
        
        .code-comment { color: #94a3b8; }
        .code-keyword { color: #f472b6; }
        .code-string { color: #34d399; }
        .code-property { color: #fbbf24; }
        
        /* 代替手段比較 */
        .alternatives {
            background: white;
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .alt-title {
            text-align: center;
            font-size: 2em;
            color: #1e293b;
            margin-bottom: 35px;
            font-weight: bold;
        }
        
        .alt-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .alt-table th {
            background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
            color: white;
            padding: 18px;
            text-align: center;
            font-size: 1em;
        }
        
        .alt-table th:first-child {
            border-radius: 10px 0 0 0;
            text-align: left;
        }
        
        .alt-table th:last-child {
            border-radius: 0 10px 0 0;
        }
        
        .alt-table td {
            padding: 18px;
            border-bottom: 2px solid #f1f5f9;
            text-align: center;
            vertical-align: top;
        }
        
        .alt-table td:first-child {
            text-align: left;
            font-weight: bold;
            color: #1e293b;
        }
        
        .alt-table tr:hover {
            background: #f8fafc;
        }
        
        .rating-excellent {
            background: #d1fae5;
            color: #065f46;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.85em;
        }
        
        .rating-good {
            background: #dbeafe;
            color: #1e40af;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.85em;
        }
        
        .rating-caution {
            background: #fef3c7;
            color: #92400e;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.85em;
        }
        
        .rating-warning {
            background: #fee2e2;
            color: #991b1b;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.85em;
        }
        
        /* 緊急手順書 */
        .procedure-section {
            background: linear-gradient(135deg, #f0fdf4 0%, #d1fae5 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border: 3px solid #10b981;
        }
        
        .procedure-title {
            color: #065f46;
            font-size: 2em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .procedure-intro {
            background: white;
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .procedure-intro p {
            color: #065f46;
            font-size: 1.1em;
        }
        
        .procedure-phases {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .procedure-phase {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .phase-header {
            padding: 20px 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .phase-header.phase-1 {
            background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
            color: white;
        }
        
        .phase-header.phase-2 {
            background: linear-gradient(135deg, #f59e0b 0%, #eab308 100%);
            color: white;
        }
        
        .phase-header.phase-3 {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
        }
        
        .phase-header.phase-4 {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
        }
        
        .phase-number {
            background: rgba(255,255,255,0.3);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2em;
        }
        
        .phase-title {
            font-size: 1.3em;
            font-weight: bold;
        }
        
        .phase-time {
            margin-left: auto;
            background: rgba(255,255,255,0.2);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9em;
        }
        
        .phase-content {
            padding: 25px;
        }
        
        .phase-steps {
            list-style: none;
            padding: 0;
        }
        
        .phase-steps li {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            color: #475569;
            border-bottom: 1px solid #f1f5f9;
        }
        
        .phase-steps li:last-child {
            border-bottom: none;
        }
        
        .phase-steps li::before {
            content: '☐';
            position: absolute;
            left: 0;
            font-size: 1.2em;
            color: #10b981;
        }
        
        .phase-note {
            background: #fef3c7;
            padding: 15px;
            border-radius: 10px;
            margin-top: 15px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .phase-note-icon {
            font-size: 1.3em;
            flex-shrink: 0;
        }
        
        .phase-note-text {
            color: #92400e;
            font-size: 0.9em;
        }
        
        /* 事後対応 */
        .post-incident {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #f59e0b;
        }
        
        .post-title {
            color: #92400e;
            font-size: 2em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .post-timeline {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .post-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }
        
        .post-time-badge {
            background: white;
            padding: 10px 15px;
            border-radius: 10px;
            font-weight: bold;
            color: #92400e;
            white-space: nowrap;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            min-width: 100px;
            text-align: center;
        }
        
        .post-content {
            background: white;
            padding: 20px;
            border-radius: 12px;
            flex: 1;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .post-content h4 {
            color: #92400e;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .post-content p {
            color: #64748b;
            font-size: 0.95em;
        }
        
        .post-content ul {
            margin-top: 10px;
            padding-left: 20px;
        }
        
        .post-content li {
            color: #64748b;
            font-size: 0.9em;
            padding: 3px 0;
        }
        
        /* 監視設定詳細 */
        .monitoring-detail {
            background: linear-gradient(135deg, #232f3e 0%, #0f3460 100%);
            color: white;
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
        }
        
        .monitoring-title {
            font-size: 2.2em;
            margin-bottom: 30px;
            text-align: center;
            color: #dc7600;
        }
        
        .monitoring-architecture {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        
        .monitoring-box {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            min-width: 150px;
            backdrop-filter: blur(10px);
        }
        
        .monitoring-box-icon {
            font-size: 2.5em;
            margin-bottom: 10px;
        }
        
        .monitoring-box-title {
            font-weight: bold;
            color: #dc7600;
            margin-bottom: 5px;
        }
        
        .monitoring-box-desc {
            font-size: 0.85em;
            opacity: 0.8;
        }
        
        .monitoring-arrow {
            font-size: 1.5em;
            color: #dc7600;
        }
        
        .notification-channels {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .channel-card {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }
        
        .channel-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .channel-icon {
            font-size: 2em;
        }
        
        .channel-name {
            font-weight: bold;
            color: #dc7600;
        }
        
        .channel-desc {
            font-size: 0.9em;
            opacity: 0.9;
            line-height: 1.7;
        }
        
        /* 訓練計画 */
        .training-section {
            background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #0284c7;
        }
        
        .training-title {
            color: #0c4a6e;
            font-size: 2em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .training-schedule {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        
        .training-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .training-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .training-icon {
            font-size: 2.5em;
        }
        
        .training-info h4 {
            color: #0c4a6e;
            font-size: 1.2em;
        }
        
        .training-info span {
            color: #64748b;
            font-size: 0.9em;
        }
        
        .training-checklist {
            list-style: none;
            padding: 0;
        }
        
        .training-checklist li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            color: #475569;
            border-bottom: 1px solid #f1f5f9;
        }
        
        .training-checklist li:last-child {
            border-bottom: none;
        }
        
        .training-checklist li::before {
            content: '📋';
            position: absolute;
            left: 0;
        }
        
        /* FAQ */
        .faq-section {
            background: linear-gradient(to bottom, #f8fafc 0%, white 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .faq-title {
            text-align: center;
            font-size: 2em;
            color: #1e293b;
            margin-bottom: 35px;
            font-weight: bold;
        }
        
        .faq-item {
            background: white;
            border-radius: 15px;
            margin: 15px 0;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
        }
        
        .faq-question {
            background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
            padding: 20px 25px;
            font-weight: bold;
            color: #0c4a6e;
            font-size: 1.1em;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .faq-answer {
            padding: 25px;
            color: #475569;
            line-height: 1.8;
        }
        
        .faq-answer strong {
            color: #1e293b;
        }
        
        .faq-answer ul {
            margin: 10px 0;
            padding-left: 20px;
        }
        
        .faq-answer li {
            padding: 5px 0;
        }
        
        /* コスト */
        .cost-section {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #f59e0b;
        }
        
        .cost-title {
            color: #92400e;
            font-size: 2em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .cost-table {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .cost-table table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .cost-table th {
            background: #92400e;
            color: white;
            padding: 15px;
            text-align: left;
        }
        
        .cost-table td {
            padding: 15px;
            border-bottom: 1px solid #f1f5f9;
        }
        
        .cost-table tr:last-child td {
            border-bottom: none;
        }
        
        .cost-table tr:hover {
            background: #fffbeb;
        }
        
        .cost-total {
            background: #fef3c7;
            font-weight: bold;
        }
        
        /* まとめ */
        .summary {
            background: linear-gradient(135deg, #dc2626 0%, #ea580c 50%, #f59e0b 100%);
            color: white;
            padding: 50px;
            border-radius: 20px;
            text-align: center;
        }
        
        .summary h2 {
            font-size: 2.5em;
            margin-bottom: 30px;
        }
        
        .summary-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin: 30px 0;
        }
        
        .summary-item {
            background: rgba(255,255,255,0.15);
            padding: 25px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }
        
        .summary-icon {
            font-size: 2.5em;
            margin-bottom: 15px;
        }
        
        .summary-title {
            font-size: 1.1em;
            font-weight: bold;
            margin-bottom: 10px;
            color: #fef3c7;
        }
        
        .summary-desc {
            font-size: 0.9em;
            opacity: 0.9;
            line-height: 1.6;
        }
        
        .final-message {
            background: rgba(255,255,255,0.2);
            padding: 30px;
            border-radius: 15px;
            margin-top: 30px;
            font-size: 1.1em;
            line-height: 1.8;
        }
        
        .final-checklist {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 25px;
            flex-wrap: wrap;
        }
        
        .final-check {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,0.15);
            padding: 10px 20px;
            border-radius: 25px;
        }
        
        @media (max-width: 1024px) {
            .three-pillars,
            .building-diagram,
            .summary-grid {
                grid-template-columns: 1fr;
            }
            
            .building-diagram {
                gap: 30px;
            }
            
            .vs-connector {
                transform: rotate(90deg);
            }
            
            .dual-diagram {
                flex-direction: column;
            }
            
            .dual-plus {
                transform: rotate(90deg);
            }
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2em;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            .scenario-flow {
                flex-direction: column;
            }
            
            .scenario-arrow {
                transform: rotate(90deg);
            }
            
            .monitoring-architecture {
                flex-direction: column;
            }
            
            .monitoring-arrow {
                transform: rotate(90deg);
            }
            
            .alt-table {
                font-size: 0.85em;
            }
            
            .alt-table th, .alt-table td {
                padding: 12px 8px;
            }
        }