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

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

        body {
            font-family: 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 20px;
            padding-top: 80px; /* 固定ヘッダー分のスペース確保 */
            color: #333;
        }

        .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, #DC2626, #ee5a24);
            color: white;
            padding: 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

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

        .header h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .header p {
            font-size: 1.2em;
            position: relative;
            z-index: 1;
        }

        .section {
            padding: 40px;
            margin-bottom: 30px;
        }

        .section-title {
            font-size: 2.2em;
            margin-bottom: 30px;
            text-align: center;
            color: #2c3e50;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #DC2626, #ee5a24);
            border-radius: 2px;
        }

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

        .strategy-card {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-left: 5px solid;
            position: relative;
            overflow: hidden;
        }

        .strategy-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(30%, -30%);
        }

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

        .rehost { border-left-color: #3498db; }
        .replatform { border-left-color: #15803D; }
        .repurchase { border-left-color: #e74c3c; }
        .refactor { border-left-color: #CA8A04; }
        .retire { border-left-color: #95a5a6; }
        .retain { border-left-color: #9b59b6; }
        .relocate { border-left-color: #1abc9c; }

        .strategy-icon {
            font-size: 3em;
            margin-bottom: 15px;
            text-align: center;
        }

        .strategy-title {
            font-size: 1.4em;
            font-weight: bold;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .strategy-description {
            font-size: 1.1em;
            line-height: 1.6;
            margin-bottom: 15px;
            color: #555;
        }

        .strategy-example {
            background: rgba(255,255,255,0.7);
            padding: 15px;
            border-radius: 10px;
            font-style: italic;
            border-left: 3px solid #3498db;
        }

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

        .service-card {
            background: linear-gradient(135deg, #fff, #f8f9fa);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(255,107,107,0.1), transparent);
            animation: rotate 15s linear infinite;
        }

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

        .service-icon {
            font-size: 4em;
            margin-bottom: 20px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .service-title {
            font-size: 1.6em;
            font-weight: bold;
            margin-bottom: 15px;
            color: #2c3e50;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .service-description {
            font-size: 1.1em;
            line-height: 1.7;
            margin-bottom: 20px;
            color: #555;
            position: relative;
            z-index: 1;
        }

        .service-usecase {
            background: linear-gradient(135deg, #DC2626, #ee5a24);
            color: white;
            padding: 20px;
            border-radius: 15px;
            font-weight: bold;
            position: relative;
            z-index: 1;
        }

        .flow-diagram {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 40px;
            border-radius: 20px;
            margin-top: 30px;
        }

        .flow-title {
            font-size: 1.8em;
            margin-bottom: 30px;
            text-align: center;
        }

        .flow-steps {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .flow-step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            position: relative;
        }

        .flow-step:not(:last-child)::after {
            content: '→';
            position: absolute;
            right: -30px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2em;
            color: rgba(255,255,255,0.7);
        }

        .step-icon {
            font-size: 3em;
            margin-bottom: 15px;
            background: rgba(255,255,255,0.2);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
        }

        .step-text {
            font-size: 1.1em;
            font-weight: bold;
        }

        .tip-box {
            background: linear-gradient(135deg, #ffeaa7, #9e6c0f);
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
            border-left: 5px solid #c35237;
        }

        .tip-title {
            font-size: 1.4em;
            font-weight: bold;
            margin-bottom: 15px;
            color: #2d3436;
        }

        .tip-content {
            font-size: 1.1em;
            line-height: 1.6;
            color: #2d3436;
        }

        @media (max-width: 768px) {
            .flow-steps {
                flex-direction: column;
            }
            
            .flow-step:not(:last-child)::after {
                content: '↓';
                right: 50%;
                transform: translateX(50%);
                top: 100%;
            }
            
            .header h1 {
                font-size: 2em;
            }
            
            .section {
                padding: 20px;
            }
        }
    
        

    
        
        

        

        

        

        

        

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

    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }