/*
 * AWS SAP学習リソース - aws_migration_services_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;
        }

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

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

        .journey-stages {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            align-items: center;
            margin-bottom: 30px;
        }

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

        .stage:hover {
            border-color: #667eea;
            transform: scale(1.05);
        }

        .stage::after {
            content: '→';
            position: absolute;
            right: -25px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            color: #667eea;
            font-weight: bold;
        }

        .stage:last-child::after {
            display: none;
        }

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

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

        .stage-subtitle {
            font-size: 0.9rem;
            color: #666;
        }

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

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

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

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

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

        .service-card.cart {
            border-left-color: #dc3545;
            background: linear-gradient(145deg, #ffeaea, #ffcdd2);
        }

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

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

        .service-title {
            flex: 1;
        }

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

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

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

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

        .feature-item {
            background: rgba(255,255,255,0.7);
            border-radius: 8px;
            padding: 10px;
            text-align: center;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(255,255,255,1);
            transform: scale(1.05);
        }

        .use-cases {
            margin-top: 20px;
        }

        .use-case {
            background: rgba(255,255,255,0.9);
            border-radius: 8px;
            padding: 15px;
            margin: 10px 0;
            border-left: 3px solid #667eea;
        }

        .use-case-title {
            font-weight: bold;
            margin-bottom: 8px;
            color: #333;
        }

        .workflow-diagram {
            background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
            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: #28a745;
            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;
        }

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

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

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

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

        .benefit-card {
            background: linear-gradient(145deg, #e1f5fe, #b3e5fc);
            border: 2px solid #0288d1;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
        }

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

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

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

        .industry-example {
            background: linear-gradient(145deg, #fff3e0, #ffe0b2);
            border-radius: 15px;
            padding: 25px;
            border-left: 5px solid #D97706;
            transition: all 0.3s ease;
        }

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

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

        .industry-icon {
            font-size: 2rem;
            margin-right: 15px;
            color: #e65100;
        }

        .industry-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: #e65100;
        }

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

        .timeline-container {
            position: relative;
            margin: 20px 0;
        }

        .timeline-line {
            position: absolute;
            left: 30px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, #9c27b0, #7b1fa2);
        }

        .timeline-item {
            display: flex;
            align-items: center;
            margin: 20px 0;
            position: relative;
        }

        .timeline-dot {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #9c27b0;
            border: 3px solid white;
            box-shadow: 0 0 0 3px #9c27b0;
            z-index: 2;
            margin-right: 20px;
        }

        .timeline-content {
            background: white;
            border-radius: 10px;
            padding: 15px;
            flex: 1;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .timeline-phase {
            font-weight: bold;
            color: #9c27b0;
            margin-bottom: 5px;
        }

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

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

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

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

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

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

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

        @media (max-width: 768px) {
            .journey-stages {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .stage::after {
                content: '↓';
                right: 50%;
                top: 100%;
                transform: translateX(50%);
            }
            
            .service-cards {
                grid-template-columns: 1fr;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            .selector-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

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

        .metrics-grid {
            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;
        }

        .service-flow {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 10px;
            align-items: center;
            margin: 20px 0;
            background: rgba(255,255,255,0.7);
            border-radius: 10px;
            padding: 15px;
        }

        .flow-item {
            background: white;
            border-radius: 8px;
            padding: 10px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }

        .flow-item:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

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

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

    
        
        

        

        

        

        

        

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

    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }