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

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 25%, #4a90b8 50%, #7fc8e8 75%, #b8e6f7 100%);
            padding: 20px;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 25px 70px rgba(0,0,0,0.4);
            overflow: hidden;
        }
        
        .header {
            background: linear-gradient(135deg, #1e3a5f 0%, #e47911 50%, #dc7600 100%);
            color: white;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: '📊';
            position: absolute;
            font-size: 18em;
            opacity: 0.1;
            top: -40px;
            right: -40px;
        }
        
        .header h1 {
            font-size: 2.8em;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
        
        .header p {
            font-size: 1.3em;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }
        
        .content {
            padding: 50px;
        }
        
        /* 結論ファースト */
        .conclusion-first {
            background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
            color: white;
            padding: 40px;
            border-radius: 20px;
            margin-bottom: 50px;
        }
        
        .conclusion-first h2 {
            font-size: 2em;
            margin-bottom: 25px;
            color: #dc7600;
            text-align: center;
        }
        
        .conclusion-cards {
            display: grid;
            grid-template-columns: 1fr 100px 1fr;
            gap: 20px;
            align-items: center;
        }
        
        .conclusion-card {
            background: rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .conclusion-card:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.2);
        }
        
        .conclusion-icon {
            font-size: 4em;
            margin-bottom: 15px;
        }
        
        .conclusion-title {
            font-size: 1.5em;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .quicksight-color {
            color: #dc7600;
        }
        
        .opensearch-color {
            color: #00bfff;
        }
        
        .conclusion-subtitle {
            font-size: 1.1em;
            opacity: 0.9;
            margin-bottom: 15px;
        }
        
        .conclusion-points {
            text-align: left;
            font-size: 0.95em;
            line-height: 2;
        }
        
        .vs-badge {
            background: linear-gradient(135deg, #dc7600 0%, #00bfff 100%);
            color: white;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8em;
            font-weight: bold;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        
        /* たとえ話セクション */
        .analogy-section {
            background: linear-gradient(135deg, #fff5e6 0%, #ffe4cc 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #dc7600;
        }
        
        .analogy-title {
            color: #1e3a5f;
            font-size: 2.2em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .analogy-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        
        .analogy-card {
            background: white;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .analogy-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        .analogy-card.quicksight {
            border-top: 6px solid #dc7600;
        }
        
        .analogy-card.opensearch {
            border-top: 6px solid #00bfff;
        }
        
        .analogy-icon {
            font-size: 4em;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .analogy-card h3 {
            font-size: 1.6em;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .analogy-card.quicksight h3 {
            color: #e47911;
        }
        
        .analogy-card.opensearch h3 {
            color: #0099cc;
        }
        
        .analogy-description {
            background: #f8fafc;
            padding: 20px;
            border-radius: 12px;
            margin: 15px 0;
            line-height: 1.8;
        }
        
        .analogy-example {
            background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
            padding: 20px;
            border-radius: 12px;
            margin-top: 15px;
        }
        
        .analogy-example h4 {
            color: #006064;
            margin-bottom: 10px;
            font-size: 1.1em;
        }
        
        /* 視覚的な違い図解 */
        .visual-comparison {
            background: linear-gradient(to bottom, #f8fafc 0%, white 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .visual-title {
            text-align: center;
            font-size: 2.2em;
            color: #1e293b;
            margin-bottom: 40px;
            font-weight: bold;
        }
        
        .flow-diagram {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 50px;
            flex-wrap: wrap;
        }
        
        .flow-column {
            flex: 1;
            min-width: 350px;
            max-width: 500px;
        }
        
        .flow-header {
            text-align: center;
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 20px;
            font-size: 1.4em;
            font-weight: bold;
            color: white;
        }
        
        .flow-header.quicksight {
            background: linear-gradient(135deg, #dc7600 0%, #e47911 100%);
        }
        
        .flow-header.opensearch {
            background: linear-gradient(135deg, #00bfff 0%, #0099cc 100%);
        }
        
        .flow-step {
            background: white;
            border-radius: 15px;
            padding: 20px;
            margin: 15px 0;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .flow-step:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        
        .flow-step.quicksight {
            border-left: 5px solid #dc7600;
        }
        
        .flow-step.opensearch {
            border-left: 5px solid #00bfff;
        }
        
        .flow-icon {
            font-size: 2.5em;
            flex-shrink: 0;
        }
        
        .flow-content h4 {
            color: #1e293b;
            margin-bottom: 5px;
            font-size: 1.1em;
        }
        
        .flow-content p {
            color: #64748b;
            font-size: 0.95em;
        }
        
        .flow-arrow {
            text-align: center;
            font-size: 1.5em;
            color: #94a3b8;
            margin: 5px 0;
        }
        
        /* 比較表 */
        .comparison-table {
            background: white;
            padding: 40px;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .table-title {
            text-align: center;
            font-size: 2em;
            color: #1e293b;
            margin-bottom: 35px;
            font-weight: bold;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
        }
        
        th {
            padding: 20px;
            text-align: center;
            font-size: 1.1em;
            color: white;
        }
        
        th:first-child {
            background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
            border-radius: 10px 0 0 0;
            text-align: left;
        }
        
        th:nth-child(2) {
            background: linear-gradient(135deg, #dc7600 0%, #e47911 100%);
        }
        
        th:last-child {
            background: linear-gradient(135deg, #00bfff 0%, #0099cc 100%);
            border-radius: 0 10px 0 0;
        }
        
        td {
            padding: 20px;
            border-bottom: 2px solid #f1f5f9;
            text-align: center;
        }
        
        td:first-child {
            text-align: left;
            font-weight: bold;
            color: #1e293b;
            background: #f8fafc;
        }
        
        tr:hover td {
            background: #fff8f0;
        }
        
        tr:hover td:first-child {
            background: #f0f4f8;
        }
        
        .feature-icon {
            font-size: 1.8em;
            display: block;
            margin-bottom: 5px;
        }
        
        /* ユースケースセクション */
        .usecase-section {
            background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #00bfff;
        }
        
        .usecase-title {
            color: #006064;
            font-size: 2.2em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .usecase-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        
        .usecase-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .usecase-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .usecase-icon {
            font-size: 3em;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .usecase-card h4 {
            font-size: 1.3em;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .usecase-description {
            color: #475569;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .usecase-badge {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9em;
        }
        
        .badge-quicksight {
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
            color: #e65100;
            border: 2px solid #dc7600;
        }
        
        .badge-opensearch {
            background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
            color: #006064;
            border: 2px solid #00bfff;
        }
        
        .badge-both {
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            color: #2e7d32;
            border: 2px solid #4caf50;
        }
        
        /* 選択フローチャート */
        .decision-section {
            background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #e91e63;
        }
        
        .decision-title {
            color: #880e4f;
            font-size: 2.2em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .decision-flow {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .decision-box {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin: 20px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .decision-question {
            background: linear-gradient(135deg, #880e4f 0%, #ad1457 100%);
            color: white;
            font-size: 1.2em;
            font-weight: bold;
        }
        
        .decision-answers {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }
        
        .decision-answer {
            padding: 15px 30px;
            border-radius: 10px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .decision-answer:hover {
            transform: scale(1.05);
        }
        
        .answer-yes {
            background: #dc7600;
            color: white;
        }
        
        .answer-no {
            background: #00bfff;
            color: white;
        }
        
        .decision-result {
            margin-top: 20px;
            padding: 20px;
            border-radius: 15px;
            font-weight: bold;
        }
        
        .result-quicksight {
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
            border: 3px solid #dc7600;
            color: #e65100;
        }
        
        .result-opensearch {
            background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
            border: 3px solid #00bfff;
            color: #006064;
        }
        
        /* データソース比較 */
        .datasource-section {
            background: linear-gradient(to bottom, #f0f4f8 0%, white 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .datasource-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 30px;
        }
        
        .datasource-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .datasource-card.quicksight {
            border-top: 5px solid #dc7600;
        }
        
        .datasource-card.opensearch {
            border-top: 5px solid #00bfff;
        }
        
        .datasource-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .datasource-header h3 {
            font-size: 1.4em;
        }
        
        .datasource-card.quicksight .datasource-header h3 {
            color: #e47911;
        }
        
        .datasource-card.opensearch .datasource-header h3 {
            color: #0099cc;
        }
        
        .datasource-list {
            list-style: none;
            padding: 0;
        }
        
        .datasource-list li {
            padding: 12px 0;
            border-bottom: 1px solid #f1f5f9;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .datasource-list li:last-child {
            border-bottom: none;
        }
        
        /* Tips */
        .tip-box {
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            padding: 35px;
            border-radius: 15px;
            margin: 40px 0;
            border-left: 6px solid #4caf50;
        }
        
        .tip-title {
            font-size: 1.5em;
            font-weight: bold;
            color: #2e7d32;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .tip-content {
            color: #1b5e20;
            line-height: 1.9;
            font-size: 1.05em;
        }
        
        /* FAQ */
        .faq-section {
            background: linear-gradient(to bottom, #f8fafc 0%, white 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .faq-title {
            text-align: center;
            font-size: 2em;
            color: #1e293b;
            margin-bottom: 35px;
            font-weight: bold;
        }
        
        .faq-item {
            background: white;
            border-radius: 15px;
            margin: 20px 0;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .faq-question {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            padding: 20px 25px;
            font-weight: bold;
            color: #1565c0;
            font-size: 1.1em;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .faq-answer {
            padding: 25px;
            color: #475569;
            line-height: 1.8;
        }
        
        /* まとめ */
        .summary {
            background: linear-gradient(135deg, #1e3a5f 0%, #e47911 50%, #00bfff 100%);
            color: white;
            padding: 50px;
            border-radius: 20px;
            text-align: center;
        }
        
        .summary h2 {
            font-size: 2.5em;
            margin-bottom: 30px;
        }
        
        .summary-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 30px 0;
        }
        
        .summary-card {
            background: rgba(255,255,255,0.15);
            padding: 30px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }
        
        .summary-icon {
            font-size: 3.5em;
            margin-bottom: 15px;
        }
        
        .summary-title {
            font-size: 1.4em;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .summary-desc {
            font-size: 1em;
            opacity: 0.95;
            line-height: 1.8;
        }
        
        .final-message {
            background: rgba(255,255,255,0.2);
            padding: 30px;
            border-radius: 15px;
            margin-top: 30px;
            font-size: 1.2em;
            line-height: 1.8;
        }
        
        /* レスポンシブ */
        @media (max-width: 1024px) {
            .conclusion-cards {
                grid-template-columns: 1fr;
            }
            
            .vs-badge {
                margin: 20px auto;
            }
            
            .analogy-grid,
            .usecase-grid,
            .datasource-grid,
            .summary-grid {
                grid-template-columns: 1fr;
            }
            
            .flow-diagram {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2em;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            table {
                font-size: 0.85em;
            }
            
            th, td {
                padding: 12px 8px;
            }
            
            .decision-answers {
                flex-direction: column;
                gap: 15px;
            }
        }