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

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Yu Gothic', 'Meiryo', sans-serif;
            line-height: 1.6;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 20px;
            padding-top: 80px; /* 固定ヘッダー分のスペース確保 */
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .header {
            background: linear-gradient(135deg, #DC2626, #feca57);
            color: white;
            text-align: center;
            padding: 40px 20px;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" role="img" aria-labelledby="svg-title-1 svg-desc-1">
    <title id="svg-title-1">AWSアーキテクチャ図</title>
    <desc id="svg-desc-1">AWSサービスの構成や動作フローを視覚的に表現した技術図。</desc><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(-50px) translateY(-50px); }
        }

        .header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .header p {
            font-size: 1.2rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .intro {
            padding: 40px;
            text-align: center;
            background: #f8f9fa;
        }

        .intro h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 2rem;
        }

        .intro p {
            color: #555;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 40px;
            padding: 40px;
        }

        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 3px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .feature-card.session-manager {
            border-color: #3498db;
        }

        .feature-card.run-command {
            border-color: #e74c3c;
        }

        .feature-card.patch-manager {
            border-color: #15803D;
        }

        .feature-card.automation {
            border-color: #CA8A04;
        }

        .feature-icon {
            font-size: 4rem;
            text-align: center;
            margin-bottom: 20px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-title {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 15px;
            text-align: center;
        }

        .session-manager .feature-title {
            color: #3498db;
        }

        .run-command .feature-title {
            color: #e74c3c;
        }

        .patch-manager .feature-title {
            color: #15803D;
        }

        .automation .feature-title {
            color: #CA8A04;
        }

        .analogy {
            background: #ecf0f1;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            border-left: 5px solid;
        }

        .session-manager .analogy {
            border-left-color: #3498db;
        }

        .run-command .analogy {
            border-left-color: #e74c3c;
        }

        .patch-manager .analogy {
            border-left-color: #15803D;
        }

        .automation .analogy {
            border-left-color: #CA8A04;
        }

        .analogy h4 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .analogy p {
            color: #555;
            line-height: 1.6;
        }

        .aws-explanation {
            background: #fff;
            border-radius: 10px;
            padding: 20px;
            margin: 15px 0;
            border: 1px solid #A0A0A0;
        }

        .aws-explanation h4 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .aws-explanation p {
            color: #555;
            line-height: 1.6;
        }

        .use-cases {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 15px;
            margin: 15px 0;
        }

        .use-cases h5 {
            color: #2c3e50;
            margin-bottom: 8px;
        }

        .use-cases ul {
            margin-left: 20px;
            color: #555;
        }

        .use-cases li {
            margin-bottom: 5px;
        }

        .comparison-table {
            margin: 40px;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .comparison-table h3 {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 20px;
            text-align: center;
            margin: 0;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #A0A0A0;
        }

        th {
            background-color: #f8f9fa;
            font-weight: bold;
            color: #2c3e50;
        }

        tr:hover {
            background-color: #f5f5f5;
        }

        .footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 30px;
        }

        .footer h3 {
            margin-bottom: 15px;
        }

        .footer p {
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
                padding: 20px;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            .feature-card {
                padding: 20px;
            }
            
            .comparison-table {
                margin: 20px;
            }
            
            table {
                font-size: 0.9rem;
            }
        }
    
        

    
        
        

        

        

        

        

        

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

    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }