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

* {
            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;
        }

        .library-analogy {
            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;
            transition: all 0.3s ease;
        }

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

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

        .library-scene {
            background: linear-gradient(145deg, #e3f2fd, #bbdefb);
            border-radius: 15px;
            padding: 25px;
            margin: 25px 0;
            position: relative;
        }

        .library-layout {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 30px;
            align-items: center;
            margin-bottom: 30px;
        }

        .library-building {
            background: white;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            border: 3px solid #2196f3;
            position: relative;
        }

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

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

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

        .book-item {
            background: linear-gradient(145deg, #f8f9fa, #e9ecef);
            border-radius: 4px;
            padding: 8px;
            font-size: 0.7rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .book-item:hover {
            transform: scale(1.05);
        }

        .book-item.moving {
            animation: bookMove 2s ease-in-out infinite;
        }

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

        .conversion-center {
            background: white;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            border: 3px solid #D97706;
            position: relative;
        }

        .center-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            animation: rotate 3s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

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

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

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

        .tool-card.sct {
            border-left-color: #28a745;
            background: linear-gradient(145deg, #f1f8e9, #dcedc8);
        }

        .tool-card.dms {
            border-left-color: #D97706;
            background: linear-gradient(145deg, #fff8e1, #ffecb3);
        }

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

        .tool-icon {
            font-size: 3rem;
            margin-right: 20px;
        }

        .tool-title {
            flex: 1;
        }

        .tool-name {
            font-size: 1.4rem;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .tool-subtitle {
            font-size: 1rem;
            color: #666;
        }

        .tool-description {
            background: rgba(255,255,255,0.8);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 20px;
        }

        .migration-methods {
            background: linear-gradient(145deg, #e8f5e8, #c8e6c9);
            border-radius: 15px;
            padding: 25px;
            margin: 25px 0;
        }

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

        .method-card {
            background: white;
            border-radius: 15px;
            padding: 20px;
            border-left: 5px solid #28a745;
            transition: all 0.3s ease;
        }

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

        .method-card.offline {
            border-left-color: #f44336;
        }

        .method-card.online {
            border-left-color: #2E7D32;
        }

        .method-card.hybrid {
            border-left-color: #2196f3;
        }

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

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

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

        .latency-showcase {
            background: linear-gradient(135deg, #fff3e0, #ffe0b2);
            border-radius: 15px;
            padding: 25px;
            margin: 25px 0;
        }

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

        .latency-meter {
            background: white;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            border: 2px solid #D97706;
            position: relative;
        }

        .meter-icon {
            font-size: 2.5rem;
            color: #D97706;
            margin-bottom: 15px;
        }

        .meter-title {
            font-weight: bold;
            margin-bottom: 10px;
            color: #e65100;
        }

        .meter-value {
            font-size: 2rem;
            font-weight: bold;
            color: #D97706;
            margin: 10px 0;
        }

        .meter-description {
            font-size: 0.9rem;
            color: #666;
        }

        .performance-chart {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin: 25px 0;
            border: 2px solid #e0e0e0;
        }

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

        .chart-bar {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            position: relative;
        }

        .chart-label {
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }

        .chart-track {
            width: 100%;
            height: 20px;
            background: #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
            margin: 10px 0;
        }

        .chart-fill {
            height: 100%;
            border-radius: 10px;
            transition: width 2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .chart-fill.excellent { background: linear-gradient(90deg, #2E7D32, #8bc34a); }
        .chart-fill.good { background: linear-gradient(90deg, #2196f3, #0369A1); }
        .chart-fill.fair { background: linear-gradient(90deg, #D97706, #CA8A04); }
        .chart-fill.poor { background: linear-gradient(90deg, #f44336, #e91e63); }

        .chart-value {
            font-weight: bold;
            color: #667eea;
            margin-top: 5px;
        }

        .workflow-diagram {
            background: linear-gradient(145deg, #f3e5f5, #e1bee7);
            border-radius: 15px;
            padding: 25px;
            margin: 25px 0;
        }

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

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

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

        .step-number {
            background: #9c27b0;
            color: white;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin: 0 auto 10px;
            font-size: 0.9rem;
        }

        .step-icon {
            font-size: 1.5rem;
            margin-bottom: 8px;
            color: #9c27b0;
        }

        .step-title {
            font-weight: bold;
            margin-bottom: 5px;
            font-size: 0.9rem;
        }

        .step-desc {
            font-size: 0.8rem;
            color: #666;
        }

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

        .use-case {
            background: linear-gradient(145deg, #e1f5fe, #b3e5fc);
            border-radius: 15px;
            padding: 25px;
            border-left: 5px solid #0288d1;
            transition: all 0.3s ease;
        }

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

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

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

        .use-case-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: #01579b;
        }

        .comparison-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);
        }

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

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

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

        .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;
            flex-wrap: wrap;
        }

        .demo-btn {
            background: #2E7D32;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

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

        .demo-btn.sct {
            background: #28a745;
        }

        .demo-btn.sct:hover {
            background: #218838;
        }

        .demo-btn.dms {
            background: #D97706;
        }

        .demo-btn.dms:hover {
            background: #f57c00;
        }

        .demo-btn.online {
            background: #2196f3;
        }

        .demo-btn.online:hover {
            background: #1976d2;
        }

        .demo-result {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
            min-height: 150px;
            border: 2px solid #2E7D32;
            text-align: left;
        }

        .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;
        }

        .alert.success {
            background: #d4edda;
            border-color: #c3e6cb;
            border-left-color: #28a745;
        }

        .alert.success .alert-icon {
            color: #155724;
        }

        .alert.info {
            background: #d1ecf1;
            border-color: #bee5eb;
            border-left-color: #17a2b8;
        }

        .alert.info .alert-icon {
            color: #0c5460;
        }

        .alert.danger {
            background: #f8d7da;
            border-color: #f5c6cb;
            border-left-color: #dc3545;
        }

        .alert.danger .alert-icon {
            color: #721c24;
        }

        @media (max-width: 768px) {
            .library-layout {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .tools-showcase {
                grid-template-columns: 1fr;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            .workflow-steps {
                grid-template-columns: 1fr;
            }
        }

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

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

        .metric-item {
            background: white;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            border: 2px solid #e0e0e0;
        }

        .metric-value {
            font-size: 1.5rem;
            font-weight: bold;
            color: #667eea;
            display: block;
        }

        .metric-label {
            font-size: 0.9rem;
            color: #666;
            margin-top: 5px;
        }

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

        .code-header {
            background: #1a202c;
            color: #a0aec0;
            padding: 10px 15px;
            margin: -20px -20px 15px -20px;
            border-radius: 10px 10px 0 0;
            font-size: 0.9rem;
        }

        .code-line {
            margin: 5px 0;
        }

        .code-comment {
            color: #68d391;
        }

        .code-string {
            color: #fbb6ce;
        }

        .code-keyword {
            color: #90cdf4;
        }

        .code-property {
            color: #ffd700;
        }

        .realtime-monitor {
            background: linear-gradient(145deg, #263238, #37474f);
            color: white;
            border-radius: 15px;
            padding: 25px;
            margin: 25px 0;
        }

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

        .monitor-item {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .monitor-value {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .monitor-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .status-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            display: inline-block;
            margin-right: 8px;
        }

        .status-green { background: #2E7D32; }
        .status-yellow { background: #CA8A04; }
        .status-red { background: #f44336; }
    
        

    
        
        

        

        

        

        

        

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

    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }