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

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

        body {
            font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Yu Gothic', '游ゴシック', Arial, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            color: #333;
            line-height: 1.6;
        
            padding-top: 80px; /* 固定ヘッダー分のスペース確保 */
        }

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

        .header {
            text-align: center;
            margin-bottom: 40px;
            color: white;
        }

        .header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .section {
            background: white;
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .section-title {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: #333;
            border-bottom: 3px solid #667eea;
            padding-bottom: 10px;
        }

        .analogy-intro {
            background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            text-align: center;
        }

        .analogy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .analogy-item {
            background: rgba(255,255,255,0.9);
            border-radius: 10px;
            padding: 15px;
            text-align: center;
        }

        .analogy-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .migration-flow {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 20px;
            align-items: center;
            margin: 30px 0;
            padding: 25px;
            background: linear-gradient(145deg, #e3f2fd, #bbdefb);
            border-radius: 15px;
        }

        .house {
            background: white;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            position: relative;
            border: 3px solid #A0A0A0;
            transition: all 0.3s ease;
        }

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

        .house.old {
            border-color: #CA8A04;
            background: linear-gradient(145deg, #fff8e1, #ffecb3);
        }

        .house.new {
            border-color: #28a745;
            background: linear-gradient(145deg, #f1f8e9, #dcedc8);
        }

        .house-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .house-title {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .data-items {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-top: 15px;
        }

        .data-item {
            background: rgba(255,255,255,0.7);
            border-radius: 8px;
            padding: 8px;
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }

        .data-item.moving {
            animation: moveData 2s ease-in-out infinite;
        }

        @keyframes moveData {
            0%, 100% { transform: translateX(0); background: rgba(255,255,255,0.7); }
            50% { transform: translateX(5px); background: rgba(255,193,7,0.8); }
        }

        .dms-truck {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .truck-icon {
            font-size: 4rem;
            color: #667eea;
            margin-bottom: 10px;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .truck-label {
            background: #667eea;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .cdc-explanation {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            border-radius: 15px;
            padding: 25px;
            margin: 25px 0;
        }

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

        .cdc-step {
            background: white;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }

        .cdc-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .step-number {
            background: #667eea;
            color: white;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin: 0 auto 15px;
        }

        .step-icon {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .step-title {
            font-weight: bold;
            margin-bottom: 10px;
        }

        .migration-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 25px 0;
        }

        .migration-type {
            background: linear-gradient(145deg, #f8f9fa, #e9ecef);
            border-radius: 15px;
            padding: 25px;
            border-left: 5px solid #667eea;
            transition: all 0.3s ease;
        }

        .migration-type:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .migration-type.full-load {
            border-left-color: #28a745;
        }

        .migration-type.cdc-only {
            border-left-color: #CA8A04;
        }

        .migration-type.full-cdc {
            border-left-color: #dc3545;
        }

        .type-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .type-icon {
            font-size: 2rem;
            margin-right: 15px;
        }

        .type-title {
            font-size: 1.2rem;
            font-weight: bold;
        }

        .timeline {
            display: flex;
            align-items: center;
            margin: 15px 0;
            background: rgba(255,255,255,0.7);
            border-radius: 10px;
            padding: 15px;
        }

        .timeline-bar {
            flex: 1;
            height: 20px;
            background: #f0f0f0;
            border-radius: 10px;
            overflow: hidden;
            margin: 0 15px;
        }

        .timeline-progress {
            height: 100%;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .timeline-progress.full { background: linear-gradient(90deg, #28a745, #20c997); }
        .timeline-progress.cdc { background: linear-gradient(90deg, #CA8A04, #fd7e14); }
        .timeline-progress.both { background: linear-gradient(90deg, #dc3545, #e83e8c); }

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

        .benefit-card {
            background: linear-gradient(145deg, #e8f5e8, #c8e6c9);
            border: 2px solid #28a745;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
        }

        .benefit-icon {
            font-size: 2.5rem;
            color: #28a745;
            margin-bottom: 15px;
        }

        .benefit-title {
            font-weight: bold;
            margin-bottom: 10px;
            color: #28a745;
        }

        .cost-calculator {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border-radius: 15px;
            padding: 25px;
            margin: 25px 0;
        }

        .calculator-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .input-group {
            background: rgba(255,255,255,0.15);
            border-radius: 10px;
            padding: 15px;
        }

        .input-group label {
            display: block;
            margin-bottom: 5px;
            font-size: 0.9rem;
        }

        .input-group input, .input-group select {
            width: 100%;
            padding: 8px;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
        }

        .calculate-btn {
            background: rgba(255,255,255,0.2);
            color: white;
            border: 2px solid white;
            padding: 12px 24px;
            border-radius: 25px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 15px;
        }

        .calculate-btn:hover {
            background: white;
            color: #667eea;
        }

        .cost-result {
            background: rgba(255,255,255,0.15);
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
            text-align: center;
        }

        .use-cases {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 25px 0;
        }

        .use-case {
            background: linear-gradient(145deg, #fff3e0, #ffe0b2);
            border-radius: 15px;
            padding: 25px;
            border-left: 5px solid #D97706;
        }

        .use-case-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .use-case-icon {
            font-size: 2rem;
            margin-right: 15px;
        }

        .use-case-title {
            font-size: 1.2rem;
            font-weight: bold;
        }

        .metrics-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .metrics-table th, .metrics-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #A0A0A0;
        }

        .metrics-table th {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            font-weight: bold;
        }

        .metrics-table tr:hover {
            background: #f8f9fa;
        }

        .alert {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 10px;
            padding: 15px;
            margin: 15px 0;
            border-left: 5px solid #CA8A04;
        }

        .alert-icon {
            color: #856404;
            margin-right: 10px;
        }

        .implementation-flow {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin: 25px 0;
        }

        .flow-step {
            background: linear-gradient(145deg, #e3f2fd, #bbdefb);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            position: relative;
        }

        .flow-step::after {
            content: '→';
            position: absolute;
            right: -15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: #667eea;
        }

        .flow-step:last-child::after {
            display: none;
        }

        .interactive-demo {
            background: linear-gradient(145deg, #f1f8e9, #dcedc8);
            border-radius: 15px;
            padding: 25px;
            margin: 25px 0;
            text-align: center;
        }

        .demo-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
        }

        .demo-btn {
            background: #28a745;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .demo-btn:hover {
            background: #218838;
            transform: translateY(-2px);
        }

        .demo-result {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
            min-height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        @media (max-width: 768px) {
            .migration-flow {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            .calculator-grid {
                grid-template-columns: 1fr;
            }
            
            .flow-step::after {
                content: '↓';
                right: 50%;
                top: 100%;
                transform: translateX(50%);
            }
        }

        .highlight {
            background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: bold;
        }
    
        

    
        
        

        

        

        

        

        

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

    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }