/*
 * AWS SAP学習リソース - canary_linear_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%);
            min-height: 100vh;
            padding: 20px;
            padding-top: 80px; /* 固定ヘッダー分のスペース確保 */
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .header {
            background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
            padding: 40px;
            text-align: center;
            color: #333;
        }
        
        .header h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        
        .header p {
            font-size: 1.2em;
            opacity: 0.8;
        }
        
        .comparison-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }
        
        .strategy {
            padding: 40px;
            position: relative;
        }
        
        .canary {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
        }
        
        .linear {
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
        }
        
        .strategy-title {
            font-size: 2em;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
            color: #333;
        }
        
        .restaurant-metaphor {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .restaurant-title {
            font-size: 1.3em;
            font-weight: bold;
            margin-bottom: 15px;
            color: #444;
            text-align: center;
        }
        
        .timeline {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .timeline-item {
            display: flex;
            align-items: center;
            background: rgba(255,255,255,0.7);
            padding: 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .timeline-item:hover {
            background: rgba(255,255,255,0.9);
            transform: translateX(5px);
        }
        
        .timeline-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #2E7D32;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .timeline-content {
            flex: 1;
        }
        
        .timeline-time {
            font-weight: bold;
            color: #666;
            font-size: 0.9em;
        }
        
        .timeline-description {
            margin-top: 5px;
            color: #333;
        }
        
        .traffic-visualization {
            margin: 25px 0;
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .traffic-title {
            text-align: center;
            font-weight: bold;
            margin-bottom: 20px;
            color: #333;
        }
        
        .traffic-bars {
            display: flex;
            justify-content: space-around;
            align-items: end;
            height: 150px;
            margin: 20px 0;
        }
        
        .traffic-bar {
            width: 30px;
            background: linear-gradient(to top, #DC2626, #4ecdc4);
            border-radius: 5px 5px 0 0;
            position: relative;
            animation: growBar 2s ease-out;
        }
        
        .traffic-bar.canary-step1 { height: 20%; }
        .traffic-bar.canary-step2 { height: 100%; }
        .traffic-bar.linear-step1 { height: 25%; }
        .traffic-bar.linear-step2 { height: 50%; }
        .traffic-bar.linear-step3 { height: 75%; }
        .traffic-bar.linear-step4 { height: 100%; }
        
        .traffic-label {
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.8em;
            font-weight: bold;
            color: #333;
        }
        
        @keyframes growBar {
            from { height: 0; }
        }
        
        .summary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 40px;
            text-align: center;
        }
        
        .summary h2 {
            font-size: 2em;
            margin-bottom: 20px;
        }
        
        .summary-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 30px;
        }
        
        .summary-item {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }
        
        .summary-item h3 {
            font-size: 1.5em;
            margin-bottom: 15px;
        }
        
        .emoji {
            font-size: 1.5em;
            margin-right: 10px;
        }
        
        .pros-cons {
            margin: 20px 0;
            background: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .pros-cons h4 {
            margin-bottom: 10px;
            color: #333;
        }
        
        .pros {
            color: #2E7D32;
        }
        
        .cons {
            color: #f44336;
        }
        
        .pros-cons ul {
            list-style: none;
            padding-left: 0;
        }
        
        .pros-cons li {
            margin: 8px 0;
            padding-left: 25px;
            position: relative;
        }
        
        .pros li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #2E7D32;
            font-weight: bold;
        }
        
        .cons li::before {
            content: "✗";
            position: absolute;
            left: 0;
            color: #f44336;
            font-weight: bold;
        }
        
        @media (max-width: 768px) {
            .comparison-container {
                grid-template-columns: 1fr;
            }
            
            .summary-grid {
                grid-template-columns: 1fr;
            }
            
            .header h1 {
                font-size: 2em;
            }
            
            .strategy {
                padding: 20px;
            }
        }
        
        .animated-icon {
            display: inline-block;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }
    
        

    
        
        

        

        

        

        

        

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

    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }