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

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 25%, #6d28d9 50%, #a855f7 75%, #ec4899 100%);
            padding: 20px;
            padding-top: 80px; /* 固定ヘッダー分のスペース確保 */
            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, #1e3a8a 0%, #6d28d9 50%, #ec4899 100%);
            color: white;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: '🔐';
            position: absolute;
            font-size: 20em;
            opacity: 0.1;
            top: -50px;
            right: -50px;
        }
        
        .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;
        }
        
        .intro {
            text-align: center;
            margin-bottom: 50px;
            padding: 40px;
            background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
            border-radius: 15px;
            border-left: 6px solid #7c3aed;
        }
        
        .intro h2 {
            color: #5b21b6;
            font-size: 2.2em;
            margin-bottom: 20px;
        }
        
        .intro-text {
            font-size: 1.2em;
            color: #4c1d95;
            line-height: 1.8;
        }
        
        /* ホテルのたとえセクション */
        .analogy-section {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #047857;
        }
        
        .analogy-title {
            color: #065f46;
            font-size: 2.5em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .analogy-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 30px;
        }
        
        .analogy-card {
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .analogy-icon {
            font-size: 4em;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .analogy-card h3 {
            color: #065f46;
            font-size: 1.6em;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .analogy-description {
            background: #f0fdf4;
            padding: 20px;
            border-radius: 10px;
            color: #065f46;
            line-height: 1.8;
            margin: 15px 0;
        }
        
        /* デフォルトポリシーセクション */
        .default-policy-section {
            background: linear-gradient(to bottom, #f8fafc 0%, white 100%);
            padding: 50px 30px;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5em;
            color: #1e293b;
            margin-bottom: 40px;
            font-weight: bold;
        }
        
        .policy-highlight {
            background: linear-gradient(135deg, #1e3a8a 0%, #6d28d9 100%);
            color: white;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            margin: 30px 0;
        }
        
        .policy-name {
            font-size: 2.5em;
            font-weight: bold;
            margin-bottom: 15px;
            font-family: 'Courier New', monospace;
        }
        
        .policy-subtitle {
            font-size: 1.3em;
            opacity: 0.9;
        }
        
        .policy-badge {
            display: inline-block;
            background: #CA8A04;
            color: #1e293b;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: bold;
            margin-top: 15px;
        }
        
        /* TLSバージョン・暗号スイート */
        .protocol-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        .protocol-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            border-top: 5px solid;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .protocol-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .protocol-card:nth-child(1) { border-color: #047857; }
        .protocol-card:nth-child(2) { border-color: #3b82f6; }
        .protocol-card:nth-child(3) { border-color: #CA8A04; }
        .protocol-card:nth-child(4) { border-color: #ef4444; }
        
        .protocol-icon {
            font-size: 3em;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .protocol-title {
            font-size: 1.4em;
            font-weight: bold;
            color: #1e293b;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .protocol-content {
            background: #f8fafc;
            padding: 15px;
            border-radius: 10px;
            color: #475569;
            line-height: 1.7;
        }
        
        .protocol-list {
            list-style: none;
            padding: 0;
        }
        
        .protocol-list li {
            padding: 8px 0;
            border-bottom: 1px dashed #e2e8f0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .protocol-list li:last-child {
            border-bottom: none;
        }
        
        .status-supported {
            color: #047857;
            font-weight: bold;
        }
        
        .status-not-supported {
            color: #ef4444;
            font-weight: bold;
        }
        
        /* 互換性セクション */
        .compatibility-section {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #CA8A04;
        }
        
        .compatibility-title {
            color: #92400e;
            font-size: 2.5em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .client-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .client-card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .client-card:hover {
            transform: scale(1.03);
        }
        
        .client-icon {
            font-size: 3em;
            margin-bottom: 15px;
        }
        
        .client-name {
            font-size: 1.3em;
            font-weight: bold;
            color: #1e293b;
            margin-bottom: 10px;
        }
        
        .client-status {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9em;
        }
        
        .status-ok {
            background: #d1fae5;
            color: #065f46;
        }
        
        .status-warning {
            background: #fef3c7;
            color: #92400e;
        }
        
        .status-ng {
            background: #fee2e2;
            color: #991b1b;
        }
        
        .client-detail {
            margin-top: 15px;
            color: #64748b;
            font-size: 0.9em;
            line-height: 1.6;
        }
        
        /* ポリシー比較表 */
        .comparison-table {
            background: white;
            padding: 40px;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow-x: auto;
        }
        
        .table-title {
            text-align: center;
            font-size: 2em;
            color: #1e293b;
            margin-bottom: 35px;
            font-weight: bold;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            min-width: 800px;
        }
        
        th {
            background: linear-gradient(135deg, #1e3a8a 0%, #6d28d9 100%);
            color: white;
            padding: 18px 15px;
            text-align: left;
            font-size: 1em;
        }
        
        th:first-child {
            border-radius: 10px 0 0 0;
        }
        
        th:last-child {
            border-radius: 0 10px 0 0;
        }
        
        td {
            padding: 18px 15px;
            border-bottom: 2px solid #f1f5f9;
        }
        
        tr:hover {
            background: #f8fafc;
        }
        
        .default-row {
            background: linear-gradient(to right, #faf5ff 0%, white 100%);
        }
        
        .check { color: #047857; font-weight: bold; }
        .cross { color: #ef4444; font-weight: bold; }
        
        /* ユースケース */
        .use-case-section {
            background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #0284c7;
        }
        
        .use-case-title {
            color: #0c4a6e;
            font-size: 2.5em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .use-case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .use-case-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .use-case-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 132, 199, 0.2);
        }
        
        .use-case-icon {
            font-size: 3em;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .use-case-card h4 {
            color: #0c4a6e;
            font-size: 1.4em;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .use-case-description {
            color: #475569;
            line-height: 1.7;
            margin: 15px 0;
        }
        
        .recommended-policy {
            background: #f0f9ff;
            padding: 15px;
            border-radius: 10px;
            margin-top: 15px;
        }
        
        .recommended-policy strong {
            color: #0369a1;
            display: block;
            margin-bottom: 8px;
        }
        
        .policy-code {
            font-family: 'Courier New', monospace;
            background: #1e293b;
            color: #22d3ee;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 0.85em;
        }
        
        /* 暗号スイート詳細 */
        .cipher-section {
            background: linear-gradient(to bottom, #1e293b 0%, #334155 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            color: white;
        }
        
        .cipher-title {
            text-align: center;
            font-size: 2em;
            margin-bottom: 40px;
        }
        
        .cipher-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
        }
        
        .cipher-card {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }
        
        .cipher-card h4 {
            color: #22d3ee;
            font-size: 1.3em;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .cipher-list {
            list-style: none;
            padding: 0;
        }
        
        .cipher-list li {
            font-family: 'Courier New', monospace;
            font-size: 0.85em;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            color: #64748B;
        }
        
        .cipher-list li:last-child {
            border-bottom: none;
        }
        
        /* Tipsボックス */
        .tip-box {
            background: linear-gradient(135deg, #A0A0A06fe 0%, #c4b5fd 100%);
            padding: 35px;
            border-radius: 15px;
            margin: 40px 0;
            border-left: 6px solid #7c3aed;
        }
        
        .tip-title {
            font-size: 1.6em;
            font-weight: bold;
            color: #5b21b6;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .tip-content {
            color: #5b21b6;
            line-height: 1.9;
            font-size: 1.05em;
        }
        
        /* 警告ボックス */
        .warning-box {
            background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            border-left: 6px solid #ef4444;
        }
        
        .warning-title {
            font-size: 1.4em;
            font-weight: bold;
            color: #991b1b;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .warning-content {
            color: #991b1b;
            line-height: 1.8;
        }
        
        /* フローチャート */
        .decision-flow {
            background: white;
            padding: 40px;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .flow-title {
            text-align: center;
            font-size: 2em;
            color: #1e293b;
            margin-bottom: 40px;
            font-weight: bold;
        }
        
        .flow-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        
        .flow-step {
            background: linear-gradient(135deg, #f8fafc 0%, white 100%);
            padding: 25px 40px;
            border-radius: 15px;
            border: 3px solid;
            text-align: center;
            max-width: 500px;
            width: 100%;
        }
        
        .flow-question {
            border-color: #3b82f6;
            background: linear-gradient(135deg, #eff6ff 0%, white 100%);
        }
        
        .flow-answer {
            border-color: #047857;
            background: linear-gradient(135deg, #f0fdf4 0%, white 100%);
        }
        
        .flow-step h4 {
            color: #1e293b;
            font-size: 1.2em;
            margin-bottom: 10px;
        }
        
        .flow-step p {
            color: #64748b;
        }
        
        .flow-arrow {
            font-size: 2em;
            color: #64748B;
        }
        
        .flow-branch {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .flow-branch .flow-step {
            max-width: 300px;
        }
        
        @media (max-width: 1024px) {
            .analogy-grid,
            .flow-branch {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2em;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            .policy-name {
                font-size: 1.5em;
            }
            
            table {
                font-size: 0.85em;
            }
            
            th, td {
                padding: 12px 8px;
            }
        }
    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }