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

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

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #333;
            overflow-x: hidden;
        
            padding-top: 80px; /* 固定ヘッダー分のスペース確保 */
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .header {
            text-align: center;
            color: white;
            margin-bottom: 40px;
            padding: 40px 0;
        }

        .header h1 {
            font-size: 3em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .header p {
            font-size: 1.2em;
            opacity: 0.9;
        }

        .section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #DC2626, #4ecdc4, #45b7d1, #f7b801);
        }

        .section-title {
            font-size: 2.5em;
            color: #2c3e50;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            color: white;
        }

        .analogy-box {
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
            border-radius: 15px;
            padding: 25px;
            margin: 20px 0;
            border-left: 5px solid #DC2626;
        }

        .analogy-title {
            font-size: 1.3em;
            font-weight: bold;
            color: #d63031;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .diagram {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 30px;
            margin: 25px 0;
            text-align: center;
            position: relative;
        }

        .flow-step {
            display: inline-block;
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            min-width: 200px;
            position: relative;
            border: 2px solid #A0A0A0;
        }

        .flow-step.user { border-color: #3498db; background: linear-gradient(135deg, #3378be, #0984e3); color: white; }
        .flow-step.idp { border-color: #c35237; background: linear-gradient(135deg, #fd79a8, #e84393); color: white; }
        .flow-step.aws { border-color: #008662; background: linear-gradient(135deg, #55efc4, #008662); color: white; }

        .arrow {
            display: inline-block;
            width: 40px;
            height: 20px;
            background: #95a5a6;
            margin: 0 10px;
            position: relative;
            vertical-align: middle;
        }

        .arrow::after {
            content: '';
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 10px solid #95a5a6;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
        }

        .key-points {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .key-point {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            border: 2px solid #A0A0A0;
            transition: transform 0.3s ease;
        }

        .key-point:hover {
            transform: translateY(-5px);
        }

        .key-point h3 {
            color: #2d3436;
            margin-bottom: 15px;
            font-size: 1.4em;
        }

        .big-diagram {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin: 30px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .entity {
            display: inline-block;
            padding: 20px;
            margin: 15px;
            border-radius: 15px;
            font-weight: bold;
            color: white;
            min-width: 150px;
            text-align: center;
            position: relative;
        }

        .entity.user { background: linear-gradient(135deg, #3378be, #0984e3); }
        .entity.company { background: linear-gradient(135deg, #fd79a8, #e84393); }
        .entity.aws { background: linear-gradient(135deg, #55efc4, #008662); }

        .connection {
            stroke: #2d3436;
            stroke-width: 3;
            marker-end: url(#arrowhead);
        }

        .step-number {
            background: #DC2626;
            color: white;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 10px;
        }

        .highlight {
            background: linear-gradient(120deg, #ffeaa7 0%, #9e6c0f 100%);
            padding: 3px 8px;
            border-radius: 5px;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .header h1 { font-size: 2em; }
            .section { padding: 20px; }
            .section-title { font-size: 1.8em; }
            .flow-step { min-width: 150px; margin: 5px; }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
    
        

    
        
        

        

        

        

        

        

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

    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }