/*
 * AWS SAP学習リソース - amazon-q-business-access-guardrails-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, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #7209b7 75%, #f72585 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, #1a1a2e 0%, #7209b7 50%, #f72585 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, #fff5f5 0%, #ffe4e6 100%);
            border-radius: 15px;
            border-left: 6px solid #f72585;
        }
        
        .intro h2 {
            color: #be123c;
            font-size: 2.2em;
            margin-bottom: 20px;
        }
        
        .intro-text {
            font-size: 1.2em;
            color: #881337;
            line-height: 1.8;
        }
        
        .conclusion-first {
            background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
            color: white;
            padding: 40px;
            border-radius: 20px;
            margin: 40px 0;
            text-align: center;
        }
        
        .conclusion-first h2 {
            font-size: 2em;
            margin-bottom: 25px;
            color: #ffd700;
        }
        
        .conclusion-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 30px;
        }
        
        .conclusion-item {
            background: rgba(255,255,255,0.1);
            padding: 30px 20px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .conclusion-item:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.2);
        }
        
        .conclusion-icon {
            font-size: 3.5em;
            margin-bottom: 15px;
        }
        
        .conclusion-name {
            font-size: 1.3em;
            font-weight: bold;
            margin-bottom: 10px;
            color: #ffd700;
        }
        
        .conclusion-desc {
            font-size: 1em;
            opacity: 0.9;
            line-height: 1.6;
        }
        
        .analogy-section {
            background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #0284c7;
        }
        
        .analogy-title {
            color: #0c4a6e;
            font-size: 2.5em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .analogy-intro {
            background: white;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .analogy-intro p {
            font-size: 1.2em;
            color: #0c4a6e;
            line-height: 1.8;
        }
        
        .hotel-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        
        .hotel-box {
            background: white;
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            min-width: 180px;
            transition: all 0.3s ease;
        }
        
        .hotel-box:hover {
            transform: scale(1.05);
        }
        
        .hotel-emoji {
            font-size: 4em;
            margin-bottom: 15px;
        }
        
        .hotel-label {
            font-weight: bold;
            color: #0c4a6e;
            font-size: 1.1em;
        }
        
        .arrow-right {
            font-size: 3em;
            color: #0284c7;
        }
        
        .two-pillars {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin: 50px 0;
        }
        
        .pillar-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-top: 8px solid;
        }
        
        .pillar-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.2);
        }
        
        .pillar-card.access-control {
            border-color: #3b82f6;
            background: linear-gradient(to bottom, #eff6ff 0%, white 100%);
        }
        
        .pillar-card.guardrails {
            border-color: #f59e0b;
            background: linear-gradient(to bottom, #fffbeb 0%, white 100%);
        }
        
        .pillar-icon {
            font-size: 4em;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .pillar-title {
            font-size: 1.8em;
            font-weight: bold;
            text-align: center;
            margin-bottom: 10px;
        }
        
        .access-control .pillar-title { color: #1d4ed8; }
        .guardrails .pillar-title { color: #d97706; }
        
        .pillar-subtitle {
            text-align: center;
            color: #64748b;
            font-size: 1.1em;
            margin-bottom: 25px;
            font-weight: 600;
        }
        
        .pillar-box {
            padding: 20px;
            border-radius: 12px;
            margin: 15px 0;
        }
        
        .access-control .pillar-box { background: #eff6ff; border-left: 4px solid #3b82f6; }
        .guardrails .pillar-box { background: #fffbeb; border-left: 4px solid #f59e0b; }
        
        .pillar-box-title {
            font-weight: bold;
            font-size: 1.1em;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .access-control .pillar-box-title { color: #1d4ed8; }
        .guardrails .pillar-box-title { color: #d97706; }
        
        .pillar-box-content {
            color: #475569;
            line-height: 1.7;
        }
        
        .feature-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);
        }
        
        .feature-title {
            text-align: center;
            font-size: 2.5em;
            color: #1e293b;
            margin-bottom: 40px;
            font-weight: bold;
        }
        
        .acl-flow {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            margin: 40px 0;
            padding: 30px;
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            border-radius: 15px;
        }
        
        .flow-step {
            background: white;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            min-width: 140px;
            transition: all 0.3s ease;
        }
        
        .flow-step:hover {
            transform: scale(1.05);
        }
        
        .flow-step-icon {
            font-size: 2.5em;
            margin-bottom: 10px;
        }
        
        .flow-step-label {
            font-weight: bold;
            color: #1e293b;
            font-size: 0.95em;
        }
        
        .flow-arrow {
            font-size: 2em;
            color: #3b82f6;
        }
        
        .guardrail-types {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin: 40px 0;
        }
        
        .guardrail-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-top: 6px solid;
        }
        
        .guardrail-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        .guardrail-card.global {
            border-color: #8b5cf6;
            background: linear-gradient(to bottom, #f5f3ff 0%, white 100%);
        }
        
        .guardrail-card.topic {
            border-color: #ec4899;
            background: linear-gradient(to bottom, #fdf2f8 0%, white 100%);
        }
        
        .guardrail-icon {
            font-size: 3em;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .guardrail-name {
            font-size: 1.5em;
            font-weight: bold;
            text-align: center;
            margin-bottom: 10px;
        }
        
        .global .guardrail-name { color: #7c3aed; }
        .topic .guardrail-name { color: #db2777; }
        
        .guardrail-subtitle {
            text-align: center;
            color: #64748b;
            font-size: 1em;
            margin-bottom: 20px;
        }
        
        .guardrail-features {
            list-style: none;
            padding: 0;
        }
        
        .guardrail-features li {
            padding: 12px 0 12px 35px;
            position: relative;
            color: #475569;
            line-height: 1.6;
            border-bottom: 1px solid #f1f5f9;
        }
        
        .guardrail-features li:last-child {
            border-bottom: none;
        }
        
        .guardrail-features li::before {
            content: '✅';
            position: absolute;
            left: 0;
            font-size: 1em;
        }
        
        .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;
            background: white;
        }
        
        th {
            background: linear-gradient(135deg, #1a1a2e 0%, #7209b7 100%);
            color: white;
            padding: 20px;
            text-align: left;
            font-size: 1.1em;
        }
        
        th:first-child {
            border-radius: 10px 0 0 0;
        }
        
        th:last-child {
            border-radius: 0 10px 0 0;
        }
        
        td {
            padding: 20px;
            border-bottom: 2px solid #f1f5f9;
        }
        
        tr:hover {
            background: #f8fafc;
        }
        
        .scenario-section {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #f59e0b;
        }
        
        .scenario-title {
            color: #92400e;
            font-size: 2.5em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .scenario-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 30px;
        }
        
        .scenario-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .scenario-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .scenario-icon {
            font-size: 3em;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .scenario-card h4 {
            color: #92400e;
            font-size: 1.4em;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .scenario-solution {
            background: #fffbeb;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
        }
        
        .scenario-solution strong {
            color: #d97706;
            display: block;
            margin-bottom: 8px;
        }
        
        .use-case-badge {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85em;
            font-weight: bold;
            margin: 5px 5px 0 0;
        }
        
        .badge-access { background: #dbeafe; color: #1e40af; }
        .badge-guardrail { background: #fef3c7; color: #92400e; }
        .badge-both { background: #d1fae5; color: #065f46; }
        
        .tip-box {
            background: linear-gradient(135deg, #ddd6fe 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;
        }
        
        .visual-diagram {
            background: white;
            padding: 40px;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .diagram-title {
            text-align: center;
            font-size: 2em;
            color: #1e293b;
            margin-bottom: 30px;
            font-weight: bold;
        }
        
        .layered-security {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            margin: 30px 0;
        }
        
        .security-layer {
            width: 100%;
            max-width: 800px;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            position: relative;
        }
        
        .layer-user {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            border: 3px solid #f59e0b;
        }
        
        .layer-guardrail {
            background: linear-gradient(135deg, #f5f3ff, #ede9fe);
            border: 3px solid #8b5cf6;
            width: 90%;
        }
        
        .layer-acl {
            background: linear-gradient(135deg, #dbeafe, #bfdbfe);
            border: 3px solid #3b82f6;
            width: 80%;
        }
        
        .layer-data {
            background: linear-gradient(135deg, #d1fae5, #a7f3d0);
            border: 3px solid #10b981;
            width: 70%;
        }
        
        .layer-icon {
            font-size: 2em;
            margin-bottom: 10px;
        }
        
        .layer-name {
            font-weight: bold;
            font-size: 1.2em;
            margin-bottom: 5px;
        }
        
        .layer-desc {
            font-size: 0.95em;
            color: #475569;
        }
        
        .down-arrow {
            font-size: 2em;
            color: #64748b;
        }
        
        .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: 2.5em;
            color: #1e293b;
            margin-bottom: 40px;
            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, #e0f2fe 0%, #bae6fd 100%);
            padding: 20px 25px;
            font-weight: bold;
            color: #0c4a6e;
            font-size: 1.1em;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .faq-answer {
            padding: 25px;
            color: #475569;
            line-height: 1.8;
        }
        
        @media (max-width: 1024px) {
            .two-pillars,
            .guardrail-types,
            .scenario-grid,
            .conclusion-grid {
                grid-template-columns: 1fr;
            }
            
            .acl-flow {
                flex-direction: column;
            }
            
            .flow-arrow {
                transform: rotate(90deg);
            }
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2em;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            .hotel-visual {
                flex-direction: column;
            }
            
            .arrow-right {
                transform: rotate(90deg);
            }
            
            table {
                font-size: 0.85em;
            }
            
            th, td {
                padding: 12px;
            }
        }
    
    
    

    

    

    

    

    

    

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

    

    

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

    

    

    

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