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

body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            padding-top: 80px; /* 固定ヘッダー分のスペース確保 */
            background-color: #f5f7f9;
        }
        
        h1, h2, h3 {
            color: #0f5e99;
        }
        
        h1 {
            text-align: center;
            margin-bottom: 30px;
            font-size: 2.5em;
        }
        
        .container {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 25px;
            transition: transform 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
        }
        
        .title-section {
            background-color: #0f5e99;
            color: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .two-column {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .column {
            flex: 1;
            min-width: 300px;
        }
        
        .icon {
            font-size: 2.5em;
            margin-bottom: 15px;
            color: #0f5e99;
            text-align: center;
        }
        
        .diagram {
            text-align: center;
            margin: 20px 0;
        }
        
        .diagram img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        
        .steps {
            counter-reset: step-counter;
            list-style-type: none;
            padding-left: 0;
        }
        
        .step {
            position: relative;
            padding-left: 60px;
            margin-bottom: 20px;
            counter-increment: step-counter;
        }
        
        .step:before {
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            background-color: #0f5e99;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2em;
        }
        
        .highlight {
            background-color: #f0f7ff;
            border-left: 4px solid #0f5e99;
            padding: 15px;
            margin: 15px 0;
        }
        
        .aws-color {
            color: #dc7600;
        }
        
        .note {
            background-color: #fff8e1;
            padding: 15px;
            border-radius: 5px;
            margin-top: 15px;
            border-left: 4px solid #CA8A04;
        }
        
        .vpc-zone {
            border: 2px dashed #0f5e99;
            padding: 20px;
            margin: 20px 0;
            border-radius: 8px;
            position: relative;
        }
        
        .vpc-label {
            position: absolute;
            top: -12px;
            left: 20px;
            background-color: white;
            padding: 0 10px;
            color: #0f5e99;
            font-weight: bold;
        }
        
        .component {
            display: inline-block;
            background-color: #e1f5fe;
            padding: 10px 15px;
            margin: 5px;
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            font-weight: 500;
        }
        
        .architecture-diagram {
            position: relative;
            margin: 40px auto;
            width: 90%;
            max-width: 800px;
            height: 500px;
            background-color: #f5f7f9;
            border-radius: 10px;
            border: 1px solid #A0A0A0;
        }
        
        .efs-fs {
            position: absolute;
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 120px;
            background-color: #dc7600;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        .az {
            position: absolute;
            width: 300px;
            height: 300px;
            border: 2px dashed #0f5e99;
            border-radius: 10px;
            padding: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .az1 {
            bottom: 30px;
            left: 80px;
        }
        
        .az2 {
            bottom: 30px;
            right: 80px;
        }
        
        .az-label {
            background-color: #0f5e99;
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            margin-bottom: 10px;
        }
        
        .mount-target {
            width: 80px;
            height: 80px;
            background-color: #0f5e99;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            margin: 20px 0;
            position: relative;
        }
        
        .ec2-instance {
            width: 70px;
            height: 50px;
            background-color: #dc7600;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            margin: 10px;
        }
        
        .connection {
            position: absolute;
            border-top: 3px dashed #333;
        }
        
        .connection-efs-mt1 {
            top: 170px;
            left: 250px;
            width: 100px;
            transform: rotate(45deg);
        }
        
        .connection-efs-mt2 {
            top: 170px;
            right: 250px;
            width: 100px;
            transform: rotate(-45deg);
        }
        
        @media (max-width: 768px) {
            .two-column {
                flex-direction: column;
            }
            
            .architecture-diagram {
                height: 700px;
            }
            
            .az1, .az2 {
                position: static;
                margin: 20px auto;
                width: 90%;
            }
            
            .efs-fs {
                position: static;
                margin: 20px auto;
                transform: none;
            }
            
            .connection {
                display: none;
            }
        }
    
        

    
        
        

        

        

        

        

        

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

    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }