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

* {
            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 100%);
            min-height: 100vh;
            padding: 20px;
            padding-top: 80px; /* 固定ヘッダー分のスペース確保 */
        }
        
        .container {
            max-width: 1400px;
            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(45deg, #DC2626, #4ecdc4);
            color: white;
            padding: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .header h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            z-index: 2;
            position: relative;
        }
        
        .subtitle {
            font-size: 1.2em;
            opacity: 0.9;
            z-index: 2;
            position: relative;
        }
        
        .header-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .floating-icon {
            position: absolute;
            opacity: 0.2;
            animation: float 4s ease-in-out infinite;
            font-size: 2em;
        }
        
        .floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .floating-icon:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
        .floating-icon:nth-child(3) { top: 40%; left: 70%; animation-delay: 2s; }
        .floating-icon:nth-child(4) { top: 10%; right: 20%; animation-delay: 3s; }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        .flow-container {
            padding: 40px;
            background: #f8f9fa;
        }
        
        .main-flow {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }
        
        .step-visual {
            width: 100%;
            max-width: 1000px;
            margin: 30px 0;
            position: relative;
        }
        
        .step-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .step-number-big {
            background: linear-gradient(45deg, #DC2626, #4ecdc4);
            color: white;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5em;
            font-weight: bold;
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
            margin-bottom: 20px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .step-title-big {
            font-size: 1.8em;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .api-badge-big {
            background: #e74c3c;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 1em;
            display: inline-block;
            margin: 10px;
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        }
        
        /* Step 1: 並列招待の視覚化 */
        .parallel-invitation {
            display: flex;
            justify-content: center;
            align-items: center;
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .management-account {
            background: linear-gradient(45deg, #3378be, #0984e3);
            color: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            font-size: 1.2em;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            position: relative;
        }
        
        .invitation-arrows {
            display: flex;
            flex-direction: column;
            margin: 0 30px;
        }
        
        .arrow {
            width: 100px;
            height: 4px;
            background: #DC2626;
            margin: 5px 0;
            position: relative;
            animation: slideArrow 2s infinite;
        }
        
        .arrow::after {
            content: '';
            position: absolute;
            right: -10px;
            top: -6px;
            width: 0;
            height: 0;
            border-left: 15px solid #DC2626;
            border-top: 7px solid transparent;
            border-bottom: 7px solid transparent;
        }
        
        @keyframes slideArrow {
            0% { transform: translateX(-20px); opacity: 0; }
            50% { transform: translateX(0); opacity: 1; }
            100% { transform: translateX(20px); opacity: 0; }
        }
        
        .target-accounts {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .account-box {
            background: #A0A0A06fe;
            border: 2px solid #8b5cf6;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            min-width: 150px;
            animation: bounce 2s infinite;
            animation-delay: var(--delay);
        }
        
        .account-box:nth-child(1) { --delay: 0s; }
        .account-box:nth-child(2) { --delay: 0.3s; }
        .account-box:nth-child(3) { --delay: 0.6s; }
        .account-box:nth-child(4) { --delay: 0.9s; }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }
        
        /* Step 2: 承諾プロセスの視覚化 */
        .acceptance-process {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .cli-terminal {
            background: #2d3748;
            color: #68d391;
            padding: 20px;
            border-radius: 10px;
            font-family: 'Courier New', monospace;
            margin: 20px 0;
            box-shadow: inset 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .terminal-prompt {
            color: #81e6d9;
        }
        
        .typing-animation {
            overflow: hidden;
            border-right: 2px solid #68d391;
            white-space: nowrap;
            animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
        }
        
        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }
        
        @keyframes blink-caret {
            from, to { border-color: transparent; }
            50% { border-color: #68d391; }
        }
        
        .handshake-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 30px 0;
        }
        
        .handshake-icon {
            font-size: 4em;
            animation: shake 1s infinite;
        }
        
        @keyframes shake {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-5deg); }
            75% { transform: rotate(5deg); }
        }
        
        /* Step 3: OU登録の視覚化 */
        .ou-registration {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .organization-chart {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 30px 0;
        }
        
        .root-ou {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            padding: 20px 40px;
            border-radius: 15px;
            font-size: 1.3em;
            margin-bottom: 30px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        .ou-line {
            width: 2px;
            height: 30px;
            background: #666;
            margin-bottom: 10px;
        }
        
        .ou-branches {
            display: flex;
            gap: 30px;
            margin-bottom: 20px;
        }
        
        .ou-box {
            background: #e3f2fd;
            border: 2px solid #2196f3;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            min-width: 150px;
            position: relative;
            animation: slideUp 1s ease-out;
        }
        
        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .moving-account {
            background: #A0A0A06fe;
            border: 2px solid #8b5cf6;
            padding: 15px;
            border-radius: 10px;
            position: absolute;
            animation: moveToOU 3s ease-in-out infinite;
        }
        
        @keyframes moveToOU {
            0% { transform: translateY(100px) translateX(-200px); opacity: 0; }
            50% { transform: translateY(0) translateX(-100px); opacity: 1; }
            100% { transform: translateY(-50px) translateX(0); opacity: 0.8; }
        }
        
        /* Step 4 & 5: ガードレールとログの視覚化 */
        .automation-visual {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: flex;
            justify-content: space-around;
            align-items: center;
        }
        
        .guardrail-tower {
            text-align: center;
        }
        
        .tower {
            width: 60px;
            height: 150px;
            background: linear-gradient(to top, #CA8A04, #e67e22);
            border-radius: 30px 30px 0 0;
            position: relative;
            margin: 0 auto 20px;
            animation: grow 2s ease-out;
        }
        
        @keyframes grow {
            from { height: 0; }
            to { height: 150px; }
        }
        
        .tower::before {
            content: '🛡️';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 2em;
            animation: spin 3s linear infinite;
        }
        
        @keyframes spin {
            from { transform: translateX(-50%) rotate(0deg); }
            to { transform: translateX(-50%) rotate(360deg); }
        }
        
        .log-monitor-visual {
            text-align: center;
        }
        
        .monitor {
            width: 120px;
            height: 80px;
            background: #2d3748;
            border-radius: 10px;
            position: relative;
            margin: 0 auto 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .monitor::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            background: #68d391;
            border-radius: 5px;
            animation: flicker 2s infinite;
        }
        
        @keyframes flicker {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        
        .data-stream {
            position: absolute;
            top: 20px;
            left: 20px;
            color: #1a202c;
            font-size: 0.8em;
            animation: scroll 2s linear infinite;
        }
        
        @keyframes scroll {
            0% { transform: translateY(0); }
            100% { transform: translateY(-20px); }
        }
        
        .connection-line {
            width: 2px;
            height: 50px;
            background: #666;
            margin: 20px auto;
            position: relative;
        }
        
        .connection-line::before {
            content: '⬇️';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 5px;
            animation: moveDown 2s infinite;
        }
        
        @keyframes moveDown {
            0% { top: 0%; }
            100% { top: 100%; }
        }
        
        .summary-visual {
            background: linear-gradient(45deg, #a8edea, #fed6e3);
            padding: 40px;
            margin: 40px 20px 20px;
            border-radius: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .success-animation {
            font-size: 4em;
            animation: celebrate 2s ease-in-out infinite;
        }
        
        @keyframes celebrate {
            0%, 100% { transform: scale(1) rotate(0deg); }
            25% { transform: scale(1.1) rotate(-5deg); }
            75% { transform: scale(1.1) rotate(5deg); }
        }
        
        .confetti {
            position: absolute;
            width: 10px;
            height: 10px;
            background: #DC2626;
            animation: confetti 3s linear infinite;
        }
        
        .confetti:nth-child(1) { left: 10%; animation-delay: 0s; background: #DC2626; }
        .confetti:nth-child(2) { left: 30%; animation-delay: 0.5s; background: #4ecdc4; }
        .confetti:nth-child(3) { left: 50%; animation-delay: 1s; background: #45b7d1; }
        .confetti:nth-child(4) { left: 70%; animation-delay: 1.5s; background: #CA8A04; }
        .confetti:nth-child(5) { left: 90%; animation-delay: 2s; background: #e74c3c; }
        
        @keyframes confetti {
            0% { transform: translateY(-100px) rotate(0deg); opacity: 1; }
            100% { transform: translateY(400px) rotate(720deg); opacity: 0; }
        }
        
        .parallel-badge {
            background: #3378be;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 1em;
            display: inline-block;
            margin: 10px;
            animation: glow 2s ease-in-out infinite alternate;
        }
        
        @keyframes glow {
            from { box-shadow: 0 0 5px #3378be; }
            to { box-shadow: 0 0 20px #3378be; }
        }
    
        

    
        
        

        

        

        

        

        

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

    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }