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

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 20px;
            padding-top: 80px; /* 固定ヘッダー分のスペース確保 */
        }
        
        .container {
            max-width: 1500px;
            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 0%, #ee5a52 100%);
            color: white;
            padding: 50px;
            text-align: center;
            position: relative;
        }
        
        .header::before {
            content: '🏭';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 4em;
            opacity: 0.3;
        }
        
        .header h1 {
            font-size: 3em;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .header p {
            font-size: 1.4em;
            opacity: 0.9;
        }
        
        .content {
            padding: 60px;
        }
        
        /* 概要セクション */
        .intro-section {
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            color: white;
            padding: 40px;
            border-radius: 25px;
            margin-bottom: 60px;
            text-align: center;
        }
        
        .intro-title {
            font-size: 2.5em;
            margin-bottom: 20px;
        }
        
        .intro-description {
            font-size: 1.3em;
            line-height: 1.6;
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 15px;
            margin: 20px 0;
        }
        
        .service-overview {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .service-badge {
            background: rgba(255,255,255,0.2);
            padding: 15px;
            border-radius: 12px;
            text-align: center;
        }
        
        .service-icon {
            font-size: 2em;
            margin-bottom: 8px;
        }
        
        .service-name {
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .service-role {
            font-size: 0.9em;
            opacity: 0.9;
        }
        
        /* 工場アナロジー */
        .factory-section {
            margin: 80px 0;
        }
        
        .section-title {
            font-size: 2.8em;
            text-align: center;
            color: #2c3e50;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, #DC2626, #ee5a52);
            border-radius: 2px;
        }
        
        .factory-layout {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 25px;
            margin: 40px 0;
        }
        
        .factory-floor {
            display: grid;
            grid-template-columns: 1fr auto 1fr auto 1fr;
            align-items: center;
            gap: 30px;
            margin: 40px 0;
        }
        
        .factory-station {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }
        
        .eventbridge-station {
            border-top: 5px solid #DC2626;
        }
        
        .databrew-station {
            border-top: 5px solid #CA8A04;
        }
        
        .glue-station {
            border-top: 5px solid #15803D;
        }
        
        .station-icon {
            font-size: 3em;
            margin-bottom: 15px;
        }
        
        .station-title {
            font-size: 1.4em;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: bold;
        }
        
        .station-description {
            color: #7f8c8d;
            font-size: 0.9em;
            line-height: 1.4;
        }
        
        .conveyor-belt {
            width: 80px;
            height: 8px;
            background: linear-gradient(90deg, #34495e, #2c3e50);
            border-radius: 4px;
            position: relative;
            animation: belt-move 3s infinite linear;
        }
        
        @keyframes belt-move {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }
        
        .conveyor-belt::before {
            content: '📦';
            position: absolute;
            top: -15px;
            left: 10px;
            animation: package-move 3s infinite linear;
        }
        
        @keyframes package-move {
            0% { left: -20px; }
            100% { left: 80px; }
        }
        
        /* データフロー詳細 */
        .data-flow-detailed {
            background: #2c3e50;
            color: white;
            padding: 50px;
            border-radius: 25px;
            margin: 60px 0;
        }
        
        .flow-title {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .flow-steps {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .flow-step {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .step-number {
            background: #DC2626;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3em;
            font-weight: bold;
            flex-shrink: 0;
        }
        
        .step-content {
            flex: 1;
        }
        
        .step-title {
            font-size: 1.3em;
            margin-bottom: 8px;
            font-weight: bold;
        }
        
        .step-description {
            font-size: 0.95em;
            line-height: 1.4;
            opacity: 0.9;
        }
        
        .step-tech {
            color: #CA8A04;
            font-weight: bold;
            margin-left: 10px;
        }
        
        /* 各サービス詳細 */
        .services-detail {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }
        
        .service-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .card-header {
            text-align: center;
            margin-bottom: 25px;
        }
        
        .card-icon {
            font-size: 4em;
            margin-bottom: 15px;
        }
        
        .card-title {
            font-size: 1.8em;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .card-subtitle {
            color: #7f8c8d;
            font-size: 1.1em;
        }
        
        .card-features {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            background: #f8f9fa;
            border-radius: 8px;
        }
        
        .feature-icon {
            font-size: 1.2em;
            width: 25px;
        }
        
        .eventbridge-card { border-left: 5px solid #DC2626; }
        .databrew-card { border-left: 5px solid #CA8A04; }
        .glue-card { border-left: 5px solid #15803D; }
        
        /* 実際の使用例 */
        .use-case-scenario {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 50px;
            border-radius: 25px;
            margin: 60px 0;
        }
        
        .scenario-title {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .scenario-flow {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin: 30px 0;
        }
        
        .scenario-step {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .scenario-icon {
            font-size: 2em;
            width: 60px;
            text-align: center;
        }
        
        .scenario-text {
            flex: 1;
            line-height: 1.4;
        }
        
        /* データ変換の例 */
        .data-transformation {
            background: #f8f9fa;
            padding: 50px;
            border-radius: 25px;
            margin: 60px 0;
        }
        
        .transformation-title {
            font-size: 2.5em;
            text-align: center;
            color: #2c3e50;
            margin-bottom: 40px;
        }
        
        .transformation-example {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 30px;
            margin: 40px 0;
        }
        
        .data-sample {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .sample-title {
            font-size: 1.2em;
            color: #2c3e50;
            margin-bottom: 15px;
            text-align: center;
            font-weight: bold;
        }
        
        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9em;
        }
        
        .data-table th,
        .data-table td {
            padding: 8px 12px;
            border: 1px solid #A0A0A0;
            text-align: left;
        }
        
        .data-table th {
            background: #ecf0f1;
            font-weight: bold;
        }
        
        .raw-data { border-left: 4px solid #e74c3c; }
        .clean-data { border-left: 4px solid #15803D; }
        
        .transformation-arrow {
            font-size: 3em;
            color: #CA8A04;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }
        
        /* メリット・課題 */
        .pros-cons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin: 60px 0;
        }
        
        .pros-section {
            background: linear-gradient(135deg, #15803D 0%, #15803D 100%);
            color: white;
            padding: 40px;
            border-radius: 20px;
        }
        
        .cons-section {
            background: linear-gradient(135deg, #CA8A04 0%, #e67e22 100%);
            color: white;
            padding: 40px;
            border-radius: 20px;
        }
        
        .pros-cons-title {
            font-size: 2em;
            text-align: center;
            margin-bottom: 25px;
        }
        
        .pros-cons-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .pros-cons-item {
            background: rgba(255,255,255,0.1);
            padding: 15px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .item-icon {
            font-size: 1.3em;
            width: 30px;
        }
        
        /* 実装手順 */
        .implementation {
            background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
            color: white;
            padding: 50px;
            border-radius: 25px;
            margin: 60px 0;
        }
        
        .implementation-title {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .implementation-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .implementation-step {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            backdrop-filter: blur(10px);
        }
        
        .impl-step-number {
            background: #DC2626;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2em;
            font-weight: bold;
            margin: 0 auto 15px;
        }
        
        .impl-step-title {
            font-size: 1.2em;
            margin-bottom: 10px;
            font-weight: bold;
        }
        
        .impl-step-description {
            font-size: 0.9em;
            line-height: 1.4;
        }
        
        /* アーキテクチャ図 */
        .architecture-diagram {
            background: #2c3e50;
            color: white;
            padding: 50px;
            border-radius: 25px;
            margin: 60px 0;
        }
        
        .architecture-title {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .architecture-flow {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            align-items: center;
            gap: 20px;
            margin: 40px 0;
        }
        
        .arch-component {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            min-height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .arch-icon {
            font-size: 2.5em;
            margin-bottom: 10px;
        }
        
        .arch-label {
            font-size: 0.9em;
            font-weight: bold;
        }
        
        .arch-arrow {
            font-size: 2em;
            color: #CA8A04;
            text-align: center;
        }
        
        /* レスポンシブ対応 */
        @media (max-width: 1024px) {
            .factory-floor,
            .transformation-example,
            .pros-cons {
                grid-template-columns: 1fr;
            }
            
            .conveyor-belt {
                transform: rotate(90deg);
                margin: 20px 0;
            }
            
            .transformation-arrow {
                transform: rotate(90deg);
            }
            
            .architecture-flow {
                grid-template-columns: 1fr;
            }
            
            .arch-arrow {
                transform: rotate(90deg);
                margin: 10px 0;
            }
        }
        
        @media (max-width: 768px) {
            .content {
                padding: 30px;
            }
            
            .header h1 {
                font-size: 2.2em;
            }
            
            .section-title {
                font-size: 2.2em;
            }
            
            .service-overview {
                grid-template-columns: 1fr;
            }
        }
    
        

    
        
        

        

        

        

        

        

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

    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }