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

* {
            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 25%, #9333EA 50%, #0369A1 75%, #00f2fe 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%, #3b82f6 50%, #0284C7 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: 3em;
            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, #eff6ff 0%, #dbeafe 100%);
            border-radius: 15px;
            border-left: 6px solid #3b82f6;
        }
        
        .intro h2 {
            color: #1e40af;
            font-size: 2.2em;
            margin-bottom: 20px;
        }
        
        .intro-text {
            font-size: 1.2em;
            color: #1e3a8a;
            line-height: 1.8;
        }
        
        .analogy-section {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #CA8A04;
        }
        
        .analogy-title {
            color: #92400e;
            font-size: 2.5em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .analogy-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 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: #92400e;
            font-size: 1.6em;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .analogy-desc {
            background: #fffbeb;
            padding: 20px;
            border-radius: 10px;
            color: #78350f;
            line-height: 1.8;
            margin: 10px 0;
        }
        
        .concept-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);
        }
        
        .concept-title {
            text-align: center;
            font-size: 2.5em;
            color: #1e293b;
            margin-bottom: 40px;
            font-weight: bold;
        }
        
        .concept-explanation {
            background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            border-left: 6px solid #0284c7;
        }
        
        .concept-explanation h3 {
            color: #0c4a6e;
            font-size: 1.5em;
            margin-bottom: 15px;
        }
        
        .concept-explanation p {
            color: #0369a1;
            font-size: 1.1em;
            line-height: 1.8;
        }
        
        .components-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 40px;
        }
        
        .component-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;
        }
        
        .component-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .component-card:nth-child(1) { border-color: #ef4444; }
        .component-card:nth-child(2) { border-color: #047857; }
        .component-card:nth-child(3) { border-color: #8b5cf6; }
        .component-card:nth-child(4) { border-color: #CA8A04; }
        
        .component-icon {
            font-size: 3em;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .component-name {
            font-size: 1.4em;
            font-weight: bold;
            text-align: center;
            margin-bottom: 10px;
            color: #1e293b;
        }
        
        .component-subtitle {
            text-align: center;
            color: #64748b;
            font-size: 0.95em;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .component-desc {
            background: #f8fafc;
            padding: 15px;
            border-radius: 8px;
            color: #475569;
            line-height: 1.7;
        }
        
        .component-analogy {
            background: #fef3c7;
            padding: 12px;
            border-radius: 8px;
            margin-top: 10px;
            color: #92400e;
            font-size: 0.95em;
        }
        
        .flow-section {
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #16A34A;
        }
        
        .flow-title {
            color: #166534;
            font-size: 2.5em;
            margin-bottom: 40px;
            text-align: center;
            font-weight: bold;
        }
        
        .flow-diagram {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            margin: 40px 0;
        }
        
        .flow-box {
            background: white;
            padding: 25px 35px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            min-width: 180px;
        }
        
        .flow-box-icon {
            font-size: 2.5em;
            margin-bottom: 10px;
        }
        
        .flow-box-title {
            font-weight: bold;
            color: #1e293b;
            font-size: 1.1em;
        }
        
        .flow-box-sub {
            color: #64748b;
            font-size: 0.9em;
            margin-top: 5px;
        }
        
        .flow-arrow {
            font-size: 2.5em;
            color: #16A34A;
        }
        
        .flow-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .flow-step {
            background: white;
            padding: 25px;
            border-radius: 12px;
            border-left: 4px solid #16A34A;
        }
        
        .flow-step-number {
            display: inline-block;
            background: linear-gradient(135deg, #16A34A, #16a34a);
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            text-align: center;
            line-height: 35px;
            font-weight: bold;
            margin-right: 10px;
        }
        
        .flow-step-title {
            font-weight: bold;
            color: #166534;
            font-size: 1.1em;
            margin-bottom: 10px;
        }
        
        .flow-step-desc {
            color: #475569;
            line-height: 1.6;
        }
        
        .usecase-section {
            background: linear-gradient(135deg, #fae8ff 0%, #f5d0fe 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #a855f7;
        }
        
        .usecase-title {
            color: #7e22ce;
            font-size: 2.5em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .usecase-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .usecase-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .usecase-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
        }
        
        .usecase-icon {
            font-size: 3em;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .usecase-card h4 {
            color: #7e22ce;
            font-size: 1.4em;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .usecase-desc {
            color: #475569;
            line-height: 1.7;
            margin-bottom: 15px;
        }
        
        .usecase-example {
            background: #faf5ff;
            padding: 15px;
            border-radius: 8px;
            color: #7e22ce;
            font-size: 0.95em;
        }
        
        .comparison-section {
            background: white;
            padding: 40px;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .comparison-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, #1e3a8a 0%, #3b82f6 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;
        }
        
        .check {
            color: #047857;
            font-weight: bold;
            font-size: 1.2em;
        }
        
        .cross {
            color: #ef4444;
            font-weight: bold;
            font-size: 1.2em;
        }
        
        .config-section {
            background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #ef4444;
        }
        
        .config-title {
            color: #991b1b;
            font-size: 2.5em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .config-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }
        
        .config-step {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .config-step-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .config-step-number {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2em;
        }
        
        .config-step-title {
            font-weight: bold;
            color: #991b1b;
            font-size: 1.2em;
        }
        
        .config-step-desc {
            color: #475569;
            line-height: 1.7;
        }
        
        .code-example {
            background: #1e293b;
            color: #f1f5f9;
            padding: 30px;
            border-radius: 15px;
            overflow-x: auto;
            font-family: 'Courier New', monospace;
            font-size: 0.9em;
            line-height: 1.8;
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        
        .code-title {
            color: #2563EB;
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 1.1em;
        }
        
        .code-comment { color: #64748B; }
        .code-keyword { color: #f472b6; }
        .code-string { color: #34d399; }
        .code-number { color: #CA8A04; }
        
        .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, #fef3c7 0%, #fde68a 100%);
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            border-left: 6px solid #CA8A04;
        }
        
        .warning-title {
            font-size: 1.4em;
            font-weight: bold;
            color: #92400e;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .warning-content {
            color: #78350f;
            line-height: 1.8;
        }
        
        .pricing-section {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            padding: 40px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #047857;
        }
        
        .pricing-title {
            color: #065f46;
            font-size: 2em;
            margin-bottom: 25px;
            text-align: center;
            font-weight: bold;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .pricing-card {
            background: white;
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .pricing-icon {
            font-size: 2.5em;
            margin-bottom: 10px;
        }
        
        .pricing-item {
            font-weight: bold;
            color: #065f46;
            font-size: 1.1em;
            margin-bottom: 10px;
        }
        
        .pricing-desc {
            color: #475569;
            font-size: 0.95em;
        }
        
        @media (max-width: 1024px) {
            .analogy-content,
            .components-grid {
                grid-template-columns: 1fr;
            }
            
            .flow-diagram {
                flex-direction: column;
            }
            
            .flow-arrow {
                transform: rotate(90deg);
            }
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2em;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            table {
                font-size: 0.85em;
            }
            
            th, td {
                padding: 12px 8px;
            }
        }
    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }