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

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        
            padding-top: 80px; /* 固定ヘッダー分のスペース確保 */
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .header {
            text-align: center;
            color: white;
            margin-bottom: 40px;
            padding: 40px 0;
        }
        
        .header h1 {
            font-size: 3em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .header p {
            font-size: 1.3em;
            opacity: 0.9;
        }
        
        .section {
            background: white;
            border-radius: 15px;
            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 {
            color: #2c3e50;
            font-size: 2.2em;
            margin-bottom: 20px;
            border-bottom: 3px solid #3498db;
            padding-bottom: 10px;
        }
        
        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: center;
        }
        
        .intro-text {
            font-size: 1.2em;
            line-height: 1.8;
        }
        
        .intro-visual {
            background: linear-gradient(45deg, #DC2626, #4ecdc4);
            color: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            font-size: 1.1em;
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 1.1em;
        }
        
        .comparison-table th,
        .comparison-table td {
            padding: 15px;
            text-align: left;
            border: 1px solid #A0A0A0;
        }
        
        .comparison-table th {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            font-weight: bold;
        }
        
        .comparison-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        
        .architecture-diagram {
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 30px;
            margin: 20px 0;
            text-align: center;
        }
        
        .node {
            display: inline-block;
            background: #3498db;
            color: white;
            padding: 15px 25px;
            margin: 10px;
            border-radius: 8px;
            font-weight: bold;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .arrow {
            font-size: 2em;
            color: #e74c3c;
            margin: 0 10px;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        
        .benefit-card {
            background: linear-gradient(135deg, #3378be, #0984e3);
            color: white;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: scale(1.05);
        }
        
        .benefit-icon {
            font-size: 3em;
            margin-bottom: 15px;
        }
        
        .use-cases {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        
        .use-case {
            background: #fff5f5;
            border-left: 5px solid #e53e3e;
            padding: 20px;
            border-radius: 5px;
        }
        
        .use-case h4 {
            color: #e53e3e;
            margin-bottom: 10px;
            font-size: 1.3em;
        }
        
        .setup-steps {
            counter-reset: step-counter;
        }
        
        .step {
            counter-increment: step-counter;
            background: #f7f7f7;
            border-radius: 10px;
            padding: 20px;
            margin: 15px 0;
            border-left: 5px solid #15803D;
            position: relative;
        }
        
        .step::before {
            content: counter(step-counter);
            position: absolute;
            left: -15px;
            top: 20px;
            background: #15803D;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        .performance-chart {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            text-align: center;
        }
        
        .bar {
            display: inline-block;
            width: 60px;
            background: linear-gradient(to top, #ff7675, #fd79a8);
            margin: 0 10px;
            border-radius: 5px 5px 0 0;
            color: white;
            font-weight: bold;
            text-align: center;
            padding: 10px 5px;
        }
        
        .bar.traditional { height: 80px; }
        .bar.efa { height: 160px; background: linear-gradient(to top, #008662, #00cec9); }
        
        .highlight {
            background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            border-left: 5px solid #fd79a8;
        }
        
        .footer {
            text-align: center;
            color: white;
            padding: 30px 0;
            margin-top: 40px;
        }
        
        @media (max-width: 768px) {
            .intro-grid {
                grid-template-columns: 1fr;
            }
            
            .header h1 {
                font-size: 2em;
            }
            
            .section-title {
                font-size: 1.8em;
            }
            
            .node {
                display: block;
                margin: 10px 0;
            }
            
            .arrow {
                display: block;
                transform: rotate(90deg);
            }
        }
    
        

    
        
        

        

        

        

        

        

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

    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }