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

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Noto Sans JP', 'Segoe UI', sans-serif;
            background: #f0f4ff;
            min-height: 100vh;
            padding: 20px;
            padding-top: 80px; /* 固定ヘッダー分のスペース確保 */
            line-height: 1.8;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 50px;
        }
        
        h1 {
            text-align: center;
            color: #2c3e50;
            font-size: 2.8em;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .main-subtitle {
            text-align: center;
            color: #7f8c8d;
            font-size: 1.3em;
            margin-bottom: 50px;
            font-weight: 400;
        }
        
        /* ストーリーセクション */
        .story-section {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 50px;
            position: relative;
            overflow: hidden;
        }
        
        .story-title {
            font-size: 2em;
            color: #1976d2;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .story-content {
            font-size: 1.2em;
            color: #34495e;
            line-height: 2;
        }
        
        .highlight {
            background: #fff59d;
            padding: 2px 8px;
            border-radius: 5px;
            font-weight: 600;
        }
        
        /* 例え話セクション */
        .analogy-section {
            background: #fff3e0;
            border-radius: 20px;
            padding: 40px;
            margin: 50px 0;
            border: 3px dashed #D97706;
        }
        
        .analogy-title {
            font-size: 1.8em;
            color: #f57c00;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .analogy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .analogy-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .analogy-card:hover {
            transform: translateY(-5px);
        }
        
        .analogy-icon {
            font-size: 4em;
            margin-bottom: 15px;
        }
        
        .analogy-label {
            font-size: 1.3em;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .analogy-description {
            color: #7f8c8d;
            font-size: 1.1em;
        }
        
        /* シンプルな手順 */
        .simple-steps {
            margin: 60px 0;
        }
        
        .simple-steps-title {
            text-align: center;
            font-size: 2.2em;
            color: #2c3e50;
            margin-bottom: 50px;
        }
        
        .step-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border-left: 5px solid #3498db;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .step-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transform: translateX(10px);
        }
        
        .step-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .step-emoji {
            font-size: 3em;
        }
        
        .step-number-circle {
            width: 50px;
            height: 50px;
            background: #3498db;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            font-weight: bold;
        }
        
        .step-title {
            font-size: 1.5em;
            color: #2c3e50;
            flex: 1;
        }
        
        .step-explanation {
            font-size: 1.15em;
            color: #555;
            margin-bottom: 20px;
            padding-left: 70px;
        }
        
        .step-example {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            margin-left: 70px;
            border: 2px solid #e9ecef;
        }
        
        .example-label {
            font-weight: 600;
            color: #3498db;
            margin-bottom: 10px;
            display: block;
        }
        
        /* ビジュアル図解 */
        .visual-flow {
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            border-radius: 20px;
            padding: 50px;
            margin: 50px 0;
        }
        
        .flow-title {
            text-align: center;
            font-size: 2em;
            color: #2c3e50;
            margin-bottom: 40px;
        }
        
        .flow-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .flow-box {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            width: 200px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .flow-box:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .flow-box-icon {
            font-size: 3.5em;
            margin-bottom: 15px;
        }
        
        .flow-box-title {
            font-size: 1.2em;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .flow-box-desc {
            font-size: 0.95em;
            color: #7f8c8d;
        }
        
        .flow-arrow {
            font-size: 2.5em;
            color: #3498db;
            animation: slideRight 2s infinite;
        }
        
        @keyframes slideRight {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(10px); }
        }
        
        /* メリットセクション */
        .benefits-section {
            background: #e8f5e9;
            border-radius: 20px;
            padding: 40px;
            margin: 50px 0;
        }
        
        .benefits-title {
            text-align: center;
            font-size: 2em;
            color: #2e7d32;
            margin-bottom: 40px;
        }
        
        .benefit-item {
            background: white;
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .benefit-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
        }
        
        .benefit-icon {
            font-size: 2.5em;
            flex-shrink: 0;
        }
        
        .benefit-content h4 {
            color: #2e7d32;
            font-size: 1.3em;
            margin-bottom: 5px;
        }
        
        .benefit-content p {
            color: #555;
            font-size: 1.1em;
        }
        
        /* FAQ風の説明 */
        .faq-section {
            margin: 50px 0;
        }
        
        .faq-title {
            text-align: center;
            font-size: 2em;
            color: #2c3e50;
            margin-bottom: 40px;
        }
        
        .faq-item {
            background: #f0f4ff;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            background: #e3ebff;
        }
        
        .faq-question {
            font-size: 1.3em;
            font-weight: 600;
            color: #2c3e50;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .faq-answer {
            margin-top: 20px;
            padding-left: 45px;
            font-size: 1.1em;
            color: #555;
            line-height: 1.8;
        }
        
        /* まとめ */
        .summary-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            padding: 40px;
            margin-top: 60px;
            color: white;
            text-align: center;
        }
        
        .summary-title {
            font-size: 2em;
            margin-bottom: 20px;
        }
        
        .summary-content {
            font-size: 1.2em;
            line-height: 2;
        }
        
        /* レスポンシブ */
        @media (max-width: 768px) {
            .container {
                padding: 30px 20px;
            }
            
            h1 {
                font-size: 2em;
            }
            
            .flow-container {
                flex-direction: column;
            }
            
            .flow-arrow {
                transform: rotate(90deg);
            }
            
            .step-explanation,
            .step-example {
                padding-left: 0;
                margin-left: 0;
            }
        }
    
        

    
        
        

        

        

        

        

        

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

    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }