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

* {
            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%);
            color: #333;
            line-height: 1.6;
        
            padding-top: 80px; /* 固定ヘッダー分のスペース確保 */
        }

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

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

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

        .header .subtitle {
            font-size: 1.2em;
            color: #7f8c8d;
            margin-bottom: 20px;
        }

        .aws-logo {
            display: inline-block;
            background: #dc7600;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: bold;
            margin-top: 10px;
        }

        .section {
            background: white;
            padding: 30px;
            margin: 30px 0;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3498db, #15803D, #e74c3c, #CA8A04);
        }

        .section h2 {
            font-size: 2em;
            color: #2c3e50;
            margin-bottom: 20px;
            text-align: center;
        }

        .restaurant-analogy {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 30px 0;
        }

        .restaurant {
            text-align: center;
            padding: 20px;
            border-radius: 15px;
            position: relative;
            transition: transform 0.3s ease;
        }

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

        .blue-restaurant {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
        }

        .green-restaurant {
            background: linear-gradient(135deg, #15803D, #15803D);
            color: white;
        }

        .restaurant-icon {
            font-size: 4em;
            margin-bottom: 15px;
            display: block;
        }

        .environment-diagram {
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin: 40px 0;
            flex-wrap: wrap;
        }

        .environment {
            background: #ecf0f1;
            border-radius: 15px;
            padding: 25px;
            margin: 10px;
            text-align: center;
            min-width: 250px;
            position: relative;
            transition: all 0.3s ease;
        }

        .environment:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .blue-env {
            border: 3px solid #3498db;
        }

        .green-env {
            border: 3px solid #15803D;
        }

        .env-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            color: white;
            font-weight: bold;
        }

        .blue-env .env-icon {
            background: #3498db;
        }

        .green-env .env-icon {
            background: #15803D;
        }

        .arrow {
            font-size: 3em;
            color: #e74c3c;
            animation: bounce 1s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(0);
            }
            40% {
                transform: translateX(10px);
            }
            60% {
                transform: translateX(5px);
            }
        }

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

        .step {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            position: relative;
            border: 2px solid #dee2e6;
            transition: all 0.3s ease;
        }

        .step:hover {
            border-color: #007bff;
            transform: translateY(-5px);
        }

        .step-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #007bff;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

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

        .benefit {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .benefit:hover {
            transform: scale(1.05);
        }

        .benefit-icon {
            font-size: 2.5em;
            margin-bottom: 10px;
            display: block;
        }

        .code-block {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 20px;
            border-radius: 10px;
            font-family: 'Courier New', monospace;
            margin: 20px 0;
            overflow-x: auto;
        }

        .highlight {
            background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
            padding: 20px;
            border-radius: 15px;
            border-left: 5px solid #e74c3c;
            margin: 20px 0;
        }

        .url-swap {
            background: #f8f9fa;
            border: 2px dashed #007bff;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            margin: 30px 0;
        }

        .url-before-after {
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin: 20px 0;
            flex-wrap: wrap;
        }

        .url-box {
            background: white;
            border: 2px solid #dee2e6;
            border-radius: 10px;
            padding: 15px;
            margin: 10px;
            min-width: 200px;
        }

        .url-box.before {
            border-color: #3498db;
        }

        .url-box.after {
            border-color: #15803D;
        }

        @media (max-width: 768px) {
            .restaurant-analogy {
                grid-template-columns: 1fr;
            }
            
            .environment-diagram {
                flex-direction: column;
            }
            
            .header h1 {
                font-size: 2em;
            }
        }
    
        

    
        
        

        

        

        

        

        

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

    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }