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

* {
            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 25%, #9333EA 50%, #0369A1 75%, #00f2fe 100%);
            padding: 20px;
            padding-top: 80px; /* 固定ヘッダー分のスペース確保 */
            line-height: 1.6;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 25px 70px rgba(0,0,0,0.4);
            overflow: hidden;
        }
        
        .header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #9333EA 100%);
            color: white;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: '🏢';
            position: absolute;
            font-size: 20em;
            opacity: 0.1;
            top: -50px;
            right: -50px;
        }
        
        .header h1 {
            font-size: 3em;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
        
        .header p {
            font-size: 1.3em;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }
        
        .content {
            padding: 50px;
        }
        
        .intro {
            text-align: center;
            margin-bottom: 50px;
            padding: 40px;
            background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
            border-radius: 15px;
            border-left: 6px solid #0284c7;
        }
        
        .intro h2 {
            color: #0c4a6e;
            font-size: 2.2em;
            margin-bottom: 20px;
        }
        
        .intro-text {
            font-size: 1.2em;
            color: #075985;
            line-height: 1.8;
        }
        
        .analogy-section {
            background: linear-gradient(to bottom, #fef3c7 0%, #fde68a 50%, #fcd34d 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .analogy-title {
            text-align: center;
            font-size: 2.5em;
            color: #78350f;
            margin-bottom: 40px;
            font-weight: bold;
        }
        
        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 30px;
        }
        
        .comparison-card {
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-top: 6px solid;
        }
        
        .comparison-card.restaurant {
            border-color: #CA8A04;
        }
        
        .comparison-card.aws {
            border-color: #8b5cf6;
        }
        
        .comparison-icon {
            font-size: 4em;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .comparison-title {
            font-size: 1.8em;
            font-weight: bold;
            text-align: center;
            margin-bottom: 25px;
            color: #1e293b;
        }
        
        .comparison-item {
            background: #f8fafc;
            padding: 15px;
            border-radius: 10px;
            margin: 12px 0;
            border-left: 4px solid #64748b;
        }
        
        .comparison-item strong {
            color: #334155;
            display: block;
            margin-bottom: 5px;
            font-size: 1.05em;
        }
        
        .comparison-item p {
            color: #475569;
            line-height: 1.6;
        }
        
        .flow-section {
            background: linear-gradient(to bottom, #f0fdf4 0%, white 100%);
            padding: 50px 30px;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .flow-title {
            text-align: center;
            font-size: 2.5em;
            color: #1e293b;
            margin-bottom: 50px;
            font-weight: bold;
        }
        
        .flow-diagram {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }
        
        .flow-step {
            background: white;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border-left: 6px solid;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .flow-step:hover {
            transform: translateX(10px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        }
        
        .flow-step:nth-child(1) { border-color: #ef4444; }
        .flow-step:nth-child(2) { border-color: #EA580C; }
        .flow-step:nth-child(3) { border-color: #eab308; }
        .flow-step:nth-child(4) { border-color: #16A34A; }
        .flow-step:nth-child(5) { border-color: #0284C7; }
        .flow-step:nth-child(6) { border-color: #8b5cf6; }
        
        .flow-step::before {
            content: '↓';
            position: absolute;
            left: 50%;
            bottom: -40px;
            transform: translateX(-50%);
            font-size: 2em;
            color: #cbd5e1;
        }
        
        .flow-step:last-child::before {
            content: '';
        }
        
        .step-number {
            display: inline-block;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 1.1em;
        }
        
        .step-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .step-icon {
            font-size: 2.5em;
        }
        
        .step-title {
            font-size: 1.6em;
            font-weight: bold;
            color: #1e293b;
        }
        
        .step-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 20px;
        }
        
        .step-restaurant,
        .step-aws {
            background: #f8fafc;
            padding: 20px;
            border-radius: 10px;
        }
        
        .step-restaurant {
            border-left: 4px solid #CA8A04;
        }
        
        .step-aws {
            border-left: 4px solid #8b5cf6;
        }
        
        .step-subtitle {
            font-weight: bold;
            color: #334155;
            margin-bottom: 10px;
            font-size: 1.1em;
        }
        
        .step-description {
            color: #475569;
            line-height: 1.7;
        }
        
        .benefits-section {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #CA8A04;
        }
        
        .benefits-title {
            color: #78350f;
            font-size: 2.2em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .benefit-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
        }
        
        .benefit-icon {
            font-size: 3em;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .benefit-title {
            font-size: 1.3em;
            font-weight: bold;
            color: #78350f;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .benefit-description {
            color: #92400e;
            line-height: 1.6;
            text-align: center;
        }
        
        .components-section {
            background: white;
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .components-title {
            text-align: center;
            font-size: 2.2em;
            color: #1e293b;
            margin-bottom: 40px;
            font-weight: bold;
        }
        
        .component-card {
            background: linear-gradient(to bottom, #f8fafc 0%, white 100%);
            padding: 30px;
            border-radius: 15px;
            margin: 25px 0;
            border-top: 5px solid;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .component-card:nth-child(1) { border-color: #ef4444; }
        .component-card:nth-child(2) { border-color: #EA580C; }
        .component-card:nth-child(3) { border-color: #16A34A; }
        
        .component-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .component-icon {
            font-size: 2.5em;
        }
        
        .component-name {
            font-size: 1.5em;
            font-weight: bold;
            color: #1e293b;
        }
        
        .component-description {
            color: #475569;
            line-height: 1.7;
            margin: 15px 0;
        }
        
        .component-example {
            background: #f1f5f9;
            padding: 20px;
            border-radius: 10px;
            margin-top: 15px;
        }
        
        .component-example strong {
            color: #334155;
            display: block;
            margin-bottom: 10px;
        }
        
        .code-example {
            background: #1e293b;
            color: #f1f5f9;
            padding: 25px;
            border-radius: 12px;
            overflow-x: auto;
            font-family: 'Courier New', monospace;
            font-size: 0.9em;
            line-height: 1.6;
            margin: 20px 0;
        }
        
        .tip-box {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            border-left: 6px solid #2563eb;
        }
        
        .tip-title {
            font-size: 1.4em;
            font-weight: bold;
            color: #1e40af;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .tip-content {
            color: #1e40af;
            line-height: 1.8;
        }
        
        .summary-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #9333EA 100%);
            color: white;
            padding: 50px;
            border-radius: 20px;
            text-align: center;
            margin-top: 50px;
        }
        
        .summary-title {
            font-size: 2.5em;
            margin-bottom: 30px;
        }
        
        .summary-content {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .summary-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin: 30px 0;
        }
        
        .summary-card {
            background: rgba(255,255,255,0.15);
            padding: 25px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }
        
        .summary-card-icon {
            font-size: 2.5em;
            margin-bottom: 15px;
        }
        
        .summary-card-title {
            font-size: 1.3em;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        @media (max-width: 1024px) {
            .comparison-grid {
                grid-template-columns: 1fr;
            }
            
            .step-content {
                grid-template-columns: 1fr;
            }
            
            .summary-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2em;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
        }
    
        
        

        

        

        

        

        

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

    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }