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

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            color: #333;
        
            padding-top: 80px; /* 固定ヘッダー分のスペース確保 */
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .header {
            text-align: center;
            background: white;
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .header h1 {
            color: #ff9500;
            font-size: 2.5em;
            margin-bottom: 10px;
        }

        .header p {
            font-size: 1.2em;
            color: #666;
        }

        .section {
            background: white;
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .section:hover {
            transform: translateY(-5px);
        }

        .section-title {
            font-size: 1.8em;
            color: #ff9500;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .icon {
            width: 40px;
            height: 40px;
            margin-right: 15px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
        }

        .building-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }

        .building {
            background: linear-gradient(145deg, #e6f3ff, #cce7ff);
            border: 3px solid #0066cc;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .building:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0,102,204,0.3);
        }

        .building-icon {
            font-size: 3em;
            margin-bottom: 10px;
        }

        .building-name {
            font-weight: bold;
            color: #0066cc;
            margin-bottom: 10px;
        }

        .server-count {
            background: #ff6b35;
            color: white;
            border-radius: 20px;
            padding: 5px 15px;
            font-size: 0.9em;
        }

        .flow-diagram {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }

        .flow-step {
            flex: 1;
            min-width: 200px;
            background: linear-gradient(145deg, #f8f9ff, #e8edff);
            border: 2px solid #4a90e2;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }

        .flow-step:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(74,144,226,0.3);
        }

        .flow-step::after {
            content: '→';
            position: absolute;
            right: -30px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2em;
            color: #4a90e2;
            font-weight: bold;
        }

        .flow-step:last-child::after {
            display: none;
        }

        .step-number {
            background: #ff6b35;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-weight: bold;
        }

        .timeline {
            background: linear-gradient(90deg, #e8f5e8, #c8e6c9);
            border-radius: 15px;
            padding: 20px;
            margin: 20px 0;
            position: relative;
            overflow: hidden;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #2E7D32, #81c784, #2E7D32);
            animation: progress 10s infinite;
        }

        @keyframes progress {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .timeline-header {
            font-weight: bold;
            color: #2e7d32;
            margin-bottom: 15px;
            font-size: 1.2em;
        }

        .time-slots {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
        }

        .time-slot {
            background: white;
            border: 2px solid #2E7D32;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .time-slot:hover {
            background: #e8f5e8;
            transform: scale(1.05);
        }

        .benefit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }

        .benefit-card {
            background: linear-gradient(145deg, #fff8e1, #ffecb3);
            border: 2px solid #ffa726;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255,167,38,0.3);
        }

        .analogy-box {
            background: linear-gradient(145deg, #f3e5f5, #e1bee7);
            border: 3px solid #ba68c8;
            border-radius: 20px;
            padding: 25px;
            margin: 20px 0;
            position: relative;
        }

        .analogy-box::before {
            content: '💡';
            position: absolute;
            top: -15px;
            left: 20px;
            background: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 1.5em;
        }

        .analogy-title {
            color: #7b1fa2;
            font-weight: bold;
            font-size: 1.2em;
            margin-bottom: 15px;
            margin-left: 40px;
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .highlight {
            background: linear-gradient(120deg, #ffd54f 0%, #ffb74d 100%);
            padding: 2px 8px;
            border-radius: 5px;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .flow-diagram {
                flex-direction: column;
            }
            
            .flow-step::after {
                content: '↓';
                right: 50%;
                bottom: -30px;
                top: auto;
                transform: translateX(50%);
            }
            
            .building-grid {
                grid-template-columns: 1fr;
            }
        }
    
        

    
        
        

        

        

        

        

        

        @media (max-width: 768px) {
            
        }

    
        
        

        

        

        

        

        

        

        /* 読書進捗インジケーター */
        

        

        

        /* トップに戻るボタン */
        

        

        

        

        /* Mobile responsive */
        @media (max-width: 768px) {
            

            

            

            

            
        }