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

* {
            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;
            color: #333;
        
            padding-top: 80px; /* 固定ヘッダー分のスペース確保 */
        }

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

        .header {
            text-align: center;
            color: white;
            margin-bottom: 40px;
            animation: fadeInDown 1s ease-out;
        }

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

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

        .main-content {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            overflow: hidden;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .intro-section {
            background: linear-gradient(135deg, #DC2626, #ee5a52);
            color: white;
            padding: 40px;
            text-align: center;
        }

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

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

        .analogy-section {
            padding: 50px 40px;
            background: #f8f9ff;
        }

        .analogy-title {
            text-align: center;
            font-size: 1.8rem;
            color: #4a5568;
            margin-bottom: 40px;
        }

        .delivery-center {
            position: relative;
            background: linear-gradient(135deg, #3378be, #0984e3);
            border-radius: 20px;
            padding: 40px;
            margin: 30px 0;
            overflow: hidden;
        }

        .delivery-center::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255,255,255,0.1) 10px,
                rgba(255,255,255,0.1) 20px
            );
            animation: float 10s linear infinite;
        }

        .center-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }

        .center-content h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

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

        .component-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

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

        .component-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--accent-color);
        }

        .event-source {
            --accent-color: #008662;
        }

        .event-bus {
            --accent-color: #0984e3;
        }

        .rules {
            --accent-color: #9e6c0f;
        }

        .targets {
            --accent-color: #c35237;
        }

        .icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--accent-color);
            animation: pulse 2s infinite;
        }

        .component-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #2d3748;
        }

        .component-card p {
            color: #4a5568;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .analogy-text {
            background: var(--accent-color);
            color: white;
            padding: 15px;
            border-radius: 10px;
            font-weight: bold;
            margin-top: 15px;
        }

        .flow-diagram {
            margin: 50px 0;
            padding: 40px;
            background: #f8f9ff;
            border-radius: 15px;
        }

        .flow-title {
            text-align: center;
            font-size: 1.8rem;
            color: #4a5568;
            margin-bottom: 40px;
        }

        .flow-steps {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .flow-step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            position: relative;
        }

        .flow-step:not(:last-child)::after {
            content: '→';
            position: absolute;
            right: -30px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            color: #3378be;
            font-weight: bold;
        }

        .flow-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #3378be, #0984e3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: white;
            font-size: 2rem;
            animation: bounce 2s infinite;
        }

        .benefits {
            background: linear-gradient(135deg, #008662, #00a085);
            color: white;
            padding: 40px;
        }

        .benefits h3 {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 30px;
        }

        .benefits-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .benefit-item {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .benefit-item h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        @keyframes float {
            0% {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            100% {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .flow-steps {
                flex-direction: column;
            }
            
            .flow-step:not(:last-child)::after {
                content: '↓';
                right: auto;
                bottom: -30px;
                top: auto;
                transform: none;
            }
        }
    
        

    
        
        

        

        

        

        

        

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

    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }