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

body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
            padding-top: 80px; /* 固定ヘッダー分のスペース確保 */
            background-color: #f5f7f9;
        }
        h1 {
            color: #232f3e;
            text-align: center;
            margin-bottom: 30px;
            font-size: 28px;
        }
        h2 {
            color: #232f3e;
            border-left: 5px solid #dc7600;
            padding-left: 10px;
            font-size: 22px;
        }
        .container {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .intro {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .comparison {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .gateway-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 20px;
            flex: 1;
            min-width: 280px;
            display: flex;
            flex-direction: column;
        }
        .gateway-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        .gateway-title {
            font-weight: bold;
            font-size: 20px;
            color: #232f3e;
            margin: 0;
        }
        .gateway-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #232f3e;
            border-radius: 50%;
            margin-right: 10px;
        }
        .gateway-desc {
            margin-bottom: 15px;
        }
        .feature-list {
            padding-left: 20px;
            margin-bottom: 15px;
        }
        .feature-list li {
            margin-bottom: 8px;
        }
        .direction {
            display: flex;
            justify-content: space-between;
            background-color: #f0f5ff;
            padding: 8px 15px;
            border-radius: 5px;
            margin-bottom: 10px;
            font-weight: bold;
        }
        .direction.inbound {
            border-left: 4px solid #33cc33;
        }
        .direction.outbound {
            border-left: 4px solid #3399ff;
        }
        .direction.none {
            border-left: 4px solid #ff6666;
            background-color: #fff0f0;
        }
        .use-case {
            background-color: #fffaf0;
            padding: 12px;
            border-radius: 5px;
            border-left: 4px solid #dc7600;
            margin-top: auto;
        }
        .use-case h4 {
            margin-top: 0;
            margin-bottom: 8px;
            color: #d86b15;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            background-color: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
        }
        .comparison-table th, .comparison-table td {
            padding: 12px 15px;
            border: 1px solid #A0A0A0;
            text-align: left;
        }
        .comparison-table th {
            background-color: #232f3e;
            color: white;
        }
        .comparison-table tr:nth-child(even) {
            background-color: #f8f8f8;
        }
        .traffic-diagram {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 20px;
            margin-top: 30px;
        }
        .diagram-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
        }
        .diagram {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        .diagram svg {
            max-width: 100%;
            height: auto;
        }
        .diagram h3 {
            color: #232f3e;
            margin-bottom: 15px;
        }
        footer {
            margin-top: 30px;
            text-align: center;
            color: #666;
            font-size: 14px;
        }
        .highlight {
            background-color: #fff2cc;
            padding: 2px 4px;
            border-radius: 3px;
        }
        .tag {
            display: inline-block;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
            margin-right: 5px;
            margin-bottom: 5px;
        }
        .tag.private {
            background-color: #e6f7ff;
            color: #0066cc;
        }
        .tag.public {
            background-color: #f6ffed;
            color: #52c41a;
        }
        .tag.security {
            background-color: #fff2e8;
            color: #fa541c;
        }
        .tag.cost {
            background-color: #f9f0ff;
            color: #722ed1;
        }
        .summary {
            background-color: #e6f7ff;
            padding: 15px;
            border-radius: 8px;
            margin-top: 20px;
            border-left: 4px solid #1890ff;
        }
        .summary h3 {
            margin-top: 0;
            color: #0066cc;
        }
        .pros-cons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }
        .pros, .cons {
            flex: 1;
            min-width: 250px;
            padding: 12px;
            border-radius: 5px;
        }
        .pros {
            background-color: #f6ffed;
            border-left: 4px solid #52c41a;
        }
        .cons {
            background-color: #fff2f0;
            border-left: 4px solid #ff4d4f;
        }
        .pros h4, .cons h4 {
            margin-top: 0;
            margin-bottom: 8px;
        }
        .pros h4 {
            color: #52c41a;
        }
        .cons h4 {
            color: #ff4d4f;
        }
    
        

    
        
        

        

        

        

        

        

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

    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }