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

:root {
            --primary: #232F3E;
            --secondary: #dc7600;
            --accent: #0073BB;
            --light-bg: #f8f9fa;
            --dark-text: #333;
            --light-text: #fff;
            --border-radius: 8px;
        }
        
        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--dark-text);
            background-color: var(--light-bg);
            margin: 0;
            padding: 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            background-color: var(--primary);
            color: var(--light-text);
            padding: 30px 0;
            text-align: center;
            border-radius: var(--border-radius);
            margin-bottom: 30px;
        }
        
        h1 {
            margin: 0;
            font-size: 2.5em;
        }
        
        .subtitle {
            font-size: 1.2em;
            margin-top: 10px;
            opacity: 0.9;
        }
        
        .card {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            overflow: hidden;
        }
        
        .card-header {
            background-color: var(--primary);
            color: var(--light-text);
            padding: 15px 20px;
            font-size: 1.5em;
            font-weight: bold;
        }
        
        .card-header.orange {
            background-color: var(--secondary);
        }
        
        .card-header.blue {
            background-color: var(--accent);
        }
        
        .card-body {
            padding: 20px;
        }
        
        .flex-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .flex-item {
            flex: 1;
            min-width: 300px;
        }
        
        .info-box {
            background-color: #e3f2fd;
            border-left: 5px solid var(--accent);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        
        .warning-box {
            background-color: #fff3e0;
            border-left: 5px solid var(--secondary);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        
        .diagram {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 20px;
            margin: 20px 0;
            text-align: center;
        }
        
        .diagram img {
            max-width: 100%;
        }
        
        .flow-diagram {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .flow-item {
            background-color: var(--primary);
            color: var(--light-text);
            padding: 15px;
            border-radius: var(--border-radius);
            width: 150px;
            text-align: center;
            position: relative;
        }
        
        .flow-item::after {
            content: "→";
            position: absolute;
            right: -25px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2em;
            color: var(--primary);
        }
        
        .flow-item:last-child::after {
            display: none;
        }
        
        .example-code {
            background-color: #f5f5f5;
            padding: 15px;
            border-radius: var(--border-radius);
            font-family: monospace;
            overflow-x: auto;
            line-height: 1.4;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        th, td {
            border: 1px solid #A0A0A0;
            padding: 12px;
            text-align: left;
        }
        
        th {
            background-color: var(--primary);
            color: var(--light-text);
        }
        
        tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        
        .step-container {
            counter-reset: step;
        }
        
        .step {
            margin-bottom: 20px;
            padding-left: 60px;
            position: relative;
        }
        
        .step::before {
            counter-increment: step;
            content: counter(step);
            position: absolute;
            left: 0;
            top: 0;
            background-color: var(--primary);
            color: var(--light-text);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2em;
        }
        
        @media (max-width: 768px) {
            .flex-container {
                flex-direction: column;
            }
            
            .flow-diagram {
                flex-direction: column;
                gap: 30px;
            }
            
            .flow-item {
                width: 100%;
            }
            
            .flow-item::after {
                content: "↓";
                right: auto;
                bottom: -25px;
                top: auto;
                left: 50%;
                transform: translateX(-50%);
            }
        }
    
        

    
        
        

        

        

        

        

        

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

    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }