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

* {
            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%, #f093fb 50%, #4facfe 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%, #f093fb 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: 2.8em;
            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, #fff5f5 0%, #ffe4e6 100%);
            border-radius: 15px;
            border-left: 6px solid #f5576c;
        }
        
        .intro h2 {
            color: #be123c;
            font-size: 2.2em;
            margin-bottom: 20px;
        }
        
        .intro-text {
            font-size: 1.2em;
            color: #881337;
            line-height: 1.8;
        }
        
        /* 宅配ピザの例えセクション */
        .analogy-hero {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #f59e0b;
        }
        
        .analogy-hero-title {
            color: #92400e;
            font-size: 2.5em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .pizza-flow {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
        }
        
        .pizza-step {
            flex: 1;
            min-width: 200px;
            background: white;
            padding: 30px 20px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .pizza-step-icon {
            font-size: 3.5em;
            margin-bottom: 15px;
        }
        
        .pizza-step-title {
            font-weight: bold;
            color: #92400e;
            font-size: 1.2em;
            margin-bottom: 10px;
        }
        
        .pizza-step-aws {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.85em;
            display: inline-block;
            margin-top: 10px;
        }
        
        .pizza-arrow {
            font-size: 2.5em;
            color: #f59e0b;
        }
        
        /* 関係性図解 */
        .relationship-section {
            background: linear-gradient(to bottom, #f8fafc 0%, white 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .relationship-title {
            text-align: center;
            font-size: 2.5em;
            color: #1e293b;
            margin-bottom: 40px;
            font-weight: bold;
        }
        
        .visual-diagram {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }
        
        .pipeline-container {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            border: 4px solid #3b82f6;
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .pipeline-header {
            background: #3b82f6;
            color: white;
            padding: 15px 25px;
            border-radius: 10px;
            font-size: 1.5em;
            font-weight: bold;
            text-align: center;
            margin-bottom: 25px;
        }
        
        .stages-flow {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
        }
        
        .stage-box {
            flex: 1;
            background: white;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 3px solid;
            transition: all 0.3s ease;
        }
        
        .stage-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .stage-source { border-color: #10b981; }
        .stage-build { border-color: #f59e0b; }
        .stage-deploy { border-color: #ef4444; background: linear-gradient(to bottom, #fef2f2, white); }
        
        .stage-icon {
            font-size: 2.5em;
            margin-bottom: 10px;
        }
        
        .stage-name {
            font-weight: bold;
            font-size: 1.1em;
            color: #1e293b;
        }
        
        .stage-arrow {
            font-size: 2em;
            color: #64748b;
        }
        
        .deploy-detail {
            background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
            border: 4px dashed #ef4444;
            border-radius: 20px;
            padding: 30px;
            margin-top: 20px;
        }
        
        .deploy-detail-header {
            text-align: center;
            margin-bottom: 25px;
        }
        
        .deploy-detail-title {
            font-size: 1.8em;
            color: #991b1b;
            font-weight: bold;
        }
        
        .deploy-detail-subtitle {
            color: #b91c1c;
            font-size: 1.1em;
        }
        
        .codedeploy-box {
            background: white;
            border: 3px solid #dc2626;
            border-radius: 15px;
            padding: 25px;
            margin: 20px 0;
        }
        
        .codedeploy-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .codedeploy-icon {
            font-size: 2.5em;
        }
        
        .codedeploy-title {
            font-size: 1.5em;
            font-weight: bold;
            color: #991b1b;
        }
        
        .deployment-groups-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .deployment-group {
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
            border: 3px solid #10b981;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .deployment-group:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
        }
        
        .dg-icon {
            font-size: 2.5em;
            margin-bottom: 10px;
        }
        
        .dg-name {
            font-weight: bold;
            color: #065f46;
            font-size: 1.2em;
            margin-bottom: 10px;
        }
        
        .dg-targets {
            background: white;
            padding: 12px;
            border-radius: 8px;
            font-size: 0.9em;
            color: #047857;
        }
        
        /* 詳細説明カード */
        .detail-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        
        .detail-card {
            background: white;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-top: 6px solid;
            transition: all 0.3s ease;
        }
        
        .detail-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        .detail-card.pipeline { border-color: #3b82f6; }
        .detail-card.stage { border-color: #ef4444; }
        .detail-card.group { border-color: #10b981; }
        
        .detail-card-icon {
            font-size: 3.5em;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .detail-card-title {
            font-size: 1.8em;
            font-weight: bold;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .detail-card.pipeline .detail-card-title { color: #1e40af; }
        .detail-card.stage .detail-card-title { color: #991b1b; }
        .detail-card.group .detail-card-title { color: #065f46; }
        
        .detail-content {
            background: #f8fafc;
            padding: 20px;
            border-radius: 12px;
            margin: 15px 0;
        }
        
        .detail-content h4 {
            font-size: 1.1em;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .detail-card.pipeline .detail-content h4 { color: #1e40af; }
        .detail-card.stage .detail-content h4 { color: #991b1b; }
        .detail-card.group .detail-content h4 { color: #065f46; }
        
        .detail-content p {
            color: #475569;
            line-height: 1.7;
        }
        
        /* 連携の流れ */
        .flow-section {
            background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #0284c7;
        }
        
        .flow-section-title {
            color: #0c4a6e;
            font-size: 2.5em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .flow-steps {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .flow-step {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            margin: 30px 0;
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .flow-step-number {
            background: linear-gradient(135deg, #0284c7, #0369a1);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8em;
            font-weight: bold;
            flex-shrink: 0;
        }
        
        .flow-step-content {
            flex: 1;
        }
        
        .flow-step-title {
            font-size: 1.4em;
            font-weight: bold;
            color: #0c4a6e;
            margin-bottom: 10px;
        }
        
        .flow-step-desc {
            color: #475569;
            line-height: 1.7;
        }
        
        .flow-step-highlight {
            background: #f0f9ff;
            padding: 12px 15px;
            border-radius: 8px;
            margin-top: 12px;
            border-left: 4px solid #0284c7;
            color: #0369a1;
            font-weight: 500;
        }
        
        /* 設定例 */
        .config-section {
            background: white;
            padding: 40px;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .config-title {
            text-align: center;
            font-size: 2em;
            color: #1e293b;
            margin-bottom: 35px;
            font-weight: bold;
        }
        
        .code-example {
            background: #1e293b;
            color: #f1f5f9;
            padding: 30px;
            border-radius: 15px;
            overflow-x: auto;
            font-family: 'Courier New', monospace;
            font-size: 0.9em;
            line-height: 1.8;
            margin: 20px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        
        .code-title {
            color: #60a5fa;
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 1.1em;
        }
        
        .code-comment { color: #94a3b8; }
        .code-keyword { color: #f472b6; }
        .code-string { color: #34d399; }
        .code-highlight { color: #fbbf24; background: rgba(251, 191, 36, 0.2); padding: 2px 6px; border-radius: 4px; }
        
        /* ユースケース */
        .usecase-section {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #f59e0b;
        }
        
        .usecase-title {
            color: #92400e;
            font-size: 2.5em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .usecase-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .usecase-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .usecase-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .usecase-icon {
            font-size: 3em;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .usecase-card h4 {
            color: #92400e;
            font-size: 1.4em;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .usecase-desc {
            color: #475569;
            line-height: 1.7;
            margin-bottom: 15px;
        }
        
        .usecase-config {
            background: #fffbeb;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #f59e0b;
        }
        
        .usecase-config strong {
            color: #92400e;
            display: block;
            margin-bottom: 8px;
        }
        
        .usecase-config code {
            background: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-family: 'Courier New', monospace;
            color: #b45309;
        }
        
        /* 比較表 */
        .comparison-table {
            background: white;
            padding: 40px;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .table-title {
            text-align: center;
            font-size: 2em;
            color: #1e293b;
            margin-bottom: 35px;
            font-weight: bold;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }
        
        th {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px;
            text-align: left;
            font-size: 1.1em;
        }
        
        th:first-child {
            border-radius: 10px 0 0 0;
        }
        
        th:last-child {
            border-radius: 0 10px 0 0;
        }
        
        td {
            padding: 20px;
            border-bottom: 2px solid #f1f5f9;
            vertical-align: top;
        }
        
        tr:hover {
            background: #f8fafc;
        }
        
        /* Tips */
        .tip-box {
            background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
            padding: 35px;
            border-radius: 15px;
            margin: 40px 0;
            border-left: 6px solid #7c3aed;
        }
        
        .tip-title {
            font-size: 1.6em;
            font-weight: bold;
            color: #5b21b6;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .tip-content {
            color: #5b21b6;
            line-height: 1.9;
            font-size: 1.05em;
        }
        
        /* FAQ */
        .faq-section {
            background: linear-gradient(to bottom, #f8fafc 0%, white 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .faq-title {
            text-align: center;
            font-size: 2.5em;
            color: #1e293b;
            margin-bottom: 40px;
            font-weight: bold;
        }
        
        .faq-item {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin: 20px 0;
            border-left: 5px solid #667eea;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .faq-question {
            font-size: 1.2em;
            font-weight: bold;
            color: #1e40af;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .faq-answer {
            color: #475569;
            line-height: 1.8;
            padding-left: 30px;
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2em;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            .pizza-flow {
                flex-direction: column;
            }
            
            .pizza-arrow {
                transform: rotate(90deg);
            }
            
            .stages-flow {
                flex-direction: column;
            }
            
            .stage-arrow {
                transform: rotate(90deg);
            }
        }
    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }