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

body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
            margin: 0;
            padding: 0;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            background: linear-gradient(to right, #232F3E, #527FFF);
            color: white;
            padding: 30px 20px;
            text-align: center;
            border-radius: 12px 12px 0 0;
        }
        
        h1 {
            margin: 0;
            font-size: 2.5em;
        }
        
        .subtitle {
            font-size: 1.3em;
            margin-top: 10px;
            color: #dc7600;
            background-color: rgba(255, 255, 255, 0.1);
            display: inline-block;
            padding: 5px 15px;
            border-radius: 20px;
        }
        
        .content-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        h2 {
            color: #232F3E;
            border-bottom: 3px solid #dc7600;
            padding-bottom: 10px;
            margin-top: 0;
            font-size: 1.8em;
        }
        
        /* 簡単な説明セクション */
        .simple-explanation {
            display: flex;
            align-items: center;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .explanation-text {
            flex: 1;
            min-width: 300px;
            font-size: 1.2em;
            padding-right: 20px;
        }
        
        .explanation-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
            background-color: #F9FAFC;
            padding: 20px;
            border-radius: 12px;
            border: 1px dashed #A0A0A0;
        }
        
        /* メタファーによる説明 */
        .metaphor {
            background-color: #FFF8E7;
            padding: 20px;
            border-radius: 12px;
            margin: 20px 0;
            border-left: 5px solid #dc7600;
        }
        
        .metaphor h3 {
            color: #dc7600;
            margin-top: 0;
        }
        
        /* ビフォーアフター比較 */
        .before-after {
            display: flex;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .comparison-box {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            border-radius: 12px;
            margin: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        
        .before {
            background-color: #FFF0F0;
            border: 1px solid #FFDDDD;
        }
        
        .after {
            background-color: #F0FFF0;
            border: 1px solid #DDFFDD;
        }
        
        .comparison-title {
            text-align: center;
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 1.2em;
            padding: 8px;
            border-radius: 30px;
        }
        
        .before .comparison-title {
            background-color: #FFDDDD;
            color: #CC5555;
        }
        
        .after .comparison-title {
            background-color: #DDFFDD;
            color: #55CC55;
        }
        
        .comparison-content {
            text-align: center;
        }
        
        .comparison-icon {
            font-size: 3em;
            margin: 10px 0;
        }
        
        /* 中央の矢印 */
        .arrow-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px 0;
        }
        
        .arrow {
            width: 0;
            height: 0;
            border-top: 20px solid transparent;
            border-bottom: 20px solid transparent;
            border-left: 30px solid #dc7600;
            margin: 0 10px;
        }
        
        /* ステップボックス */
        .steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin: 30px 0;
        }
        
        .step-box {
            flex: 1;
            min-width: 200px;
            background-color: white;
            padding: 20px;
            border-radius: 12px;
            margin: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            position: relative;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .step-box:hover {
            transform: translateY(-5px);
        }
        
        .step-number {
            background-color: #dc7600;
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-weight: bold;
            font-size: 1.2em;
        }
        
        .step-box h3 {
            color: #232F3E;
            margin-top: 0;
        }
        
        .step-box p {
            color: #555;
        }
        
        .step-connector {
            position: absolute;
            top: 50%;
            right: -25px;
            transform: translateY(-50%);
            color: #dc7600;
            font-size: 20px;
            z-index: 1;
        }
        
        /* イラスト図 */
        .illustration {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            margin: 30px 0;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .hub-diagram {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 20px 0;
        }
        
        .environments {
            display: flex;
            width: 100%;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .env-box {
            width: 45%;
            padding: 20px;
            border-radius: 12px;
            min-height: 200px;
        }
        
        .on-premise-env {
            background-color: #F0F0F0;
            border: 2px solid #CCCCCC;
        }
        
        .aws-env {
            background-color: #FFF8E7;
            border: 2px solid #dc7600;
        }
        
        .server-icon {
            display: inline-block;
            width: 80px;
            height: 80px;
            background-color: white;
            margin: 10px;
            padding: 10px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        
        .on-premise-env .server-icon {
            border: 1px solid #CCCCCC;
        }
        
        .aws-env .server-icon {
            border: 1px solid #dc7600;
        }
        
        .server-name {
            margin-top: 10px;
            font-size: 0.9em;
        }
        
        .migration-hub-box {
            width: 70%;
            background-color: #232F3E;
            color: white;
            padding: 20px;
            border-radius: 12px;
            margin: 20px 0;
            position: relative;
        }
        
        .connector-line {
            width: 3px;
            height: 40px;
            background-color: #dc7600;
            margin: 0 auto;
        }
        
        .dashboard {
            background-color: #FFFFFF;
            border-radius: 8px;
            padding: 15px;
            margin-top: 15px;
            color: #333;
        }
        
        .progress-bars {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 15px;
        }
        
        .progress-item {
            flex-basis: 30%;
            margin-bottom: 10px;
        }
        
        .progress-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
        }
        
        .progress-bar {
            height: 20px;
            background-color: #E0E0E0;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .progress-fill {
            height: 100%;
            border-radius: 10px;
        }
        
        .complete {
            background-color: #2E7D32;
            width: 100%;
        }
        
        .in-progress {
            background-color: #2196F3;
            width: 60%;
        }
        
        .planned {
            background-color: #CA8A04;
            width: 20%;
        }
        
        /* メリットボックス */
        .benefits {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: 30px 0;
        }
        
        .benefit-box {
            flex-basis: 48%;
            background-color: #F9FAFC;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            border-left: 5px solid #dc7600;
            transition: transform 0.3s;
        }
        
        .benefit-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .benefit-box h3 {
            color: #232F3E;
            margin-top: 0;
        }
        
        /* フォーカスボックス */
        .focus-box {
            background-color: #FFF8E7;
            border: 2px solid #dc7600;
            padding: 20px;
            border-radius: 12px;
            margin: 30px 0;
        }
        
        .focus-box h3 {
            color: #dc7600;
            margin-top: 0;
        }
        
        /* 使い方ガイド */
        .usage-guide {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .usage-step {
            display: flex;
            margin-bottom: 20px;
            align-items: center;
        }
        
        .usage-number {
            background-color: #dc7600;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2em;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .usage-text {
            flex-grow: 1;
        }
        
        .usage-text h3 {
            margin-top: 0;
            color: #232F3E;
        }
        
        /* つまづきポイント */
        .pitfall {
            background-color: #FFF0F0;
            border-left: 5px solid #FF5555;
            padding: 20px;
            border-radius: 12px;
            margin: 20px 0;
        }
        
        .pitfall h3 {
            color: #FF5555;
            margin-top: 0;
        }
        
        /* まとめ */
        .summary {
            background: linear-gradient(to right, #232F3E, #527FFF);
            color: white;
            padding: 30px;
            border-radius: 12px;
            margin: 30px 0;
            text-align: center;
        }
        
        .summary h2 {
            color: white;
            border-bottom: 2px solid #dc7600;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        footer {
            text-align: center;
            padding: 20px;
            color: #666;
            font-size: 0.9em;
        }
        
        @media (max-width: 768px) {
            .before-after, .steps, .environments {
                flex-direction: column;
            }
            
            .comparison-box, .step-box, .env-box {
                width: 90%;
                margin: 10px auto;
            }
            
            .step-connector {
                right: 50%;
                top: auto;
                bottom: -15px;
                transform: translateX(50%) rotate(90deg);
            }
            
            .benefit-box {
                flex-basis: 100%;
            }
        }
    
        

    
        
        

        

        

        

        

        

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

    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }