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

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

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

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

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

        .header h1 {
            font-size: 2.5em;
            color: #2c3e50;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .aws-logo {
            color: #dc7600;
            font-weight: bold;
        }

        .subtitle {
            font-size: 1.2em;
            color: #34495e;
            margin-bottom: 20px;
        }

        .intro {
            background: rgba(255, 255, 255, 0.9);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .step-container {
            display: grid;
            gap: 30px;
            margin-bottom: 40px;
        }

        .step {
            background: rgba(255, 255, 255, 0.95);
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .step:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .step-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .step-number {
            background: linear-gradient(45deg, #3498db, #2980b9);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 15px;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
        }

        .step-title {
            font-size: 1.3em;
            font-weight: bold;
            color: #2c3e50;
        }

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

        .kitchen {
            background: linear-gradient(135deg, #3378be, #0984e3);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            color: white;
            min-width: 180px;
            position: relative;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        .kitchen.green {
            background: linear-gradient(135deg, #008662, #00a085);
        }

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

        .kitchen-icon {
            font-size: 2em;
            margin-bottom: 10px;
        }

        .customer {
            background: linear-gradient(135deg, #fd79a8, #e84393);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            color: white;
            min-width: 150px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .arrow {
            font-size: 2em;
            color: #CA8A04;
            animation: pulse 2s infinite;
        }

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

        .aws-flow {
            background: #34495e;
            color: white;
            padding: 25px;
            border-radius: 15px;
            margin: 30px 0;
        }

        .aws-environments {
            display: flex;
            justify-content: space-around;
            margin: 20px 0;
            flex-wrap: wrap;
            gap: 15px;
        }

        .environment {
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            min-width: 120px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .environment:hover {
            border-color: #3498db;
            background: rgba(255, 255, 255, 0.2);
        }

        .environment.blue {
            border-color: #3498db;
            background: rgba(52, 152, 219, 0.2);
        }

        .environment.green {
            border-color: #15803D;
            background: rgba(39, 174, 96, 0.2);
        }

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

        .benefit {
            background: rgba(255, 255, 255, 0.95);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .benefit:hover {
            transform: translateY(-3px);
        }

        .benefit-icon {
            font-size: 2.5em;
            margin-bottom: 15px;
        }

        .icon-good { color: #15803D; }
        .icon-bad { color: #e74c3c; }
        .icon-neutral { color: #3498db; }

        .highlight {
            background: linear-gradient(45deg, #CA8A04, #f1c40f);
            color: white;
            padding: 2px 8px;
            border-radius: 5px;
            font-weight: bold;
        }

        .swap-animation {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px 0;
            gap: 20px;
        }

        .swap-button {
            background: linear-gradient(45deg, #e74c3c, #c0392b);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            font-size: 1.1em;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        }

        .swap-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2em;
            }
            
            .restaurant-diagram {
                flex-direction: column;
            }
            
            .aws-environments {
                flex-direction: column;
            }
        }
    
        

    
        
        

        

        

        

        

        

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

    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }