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

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #DC2626 0%, #ee5a6f 25%, #c44569 50%, #6c5ce7 75%, #7E22CE 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, #DC2626 0%, #c44569 50%, #6c5ce7 100%);
            color: white;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: '→';
            position: absolute;
            font-size: 20em;
            opacity: 0.08;
            top: -50px;
            right: -50px;
            font-weight: bold;
        }
        
        .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, #fff5f5 0%, #ffe5e5 100%);
            border-radius: 15px;
            border-left: 6px solid #DC2626;
        }
        
        .intro h2 {
            color: #c92a2a;
            font-size: 2.2em;
            margin-bottom: 20px;
        }
        
        .intro-text {
            font-size: 1.2em;
            color: #862e2e;
            line-height: 1.8;
        }
        
        .pipeline-flow {
            background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
            padding: 50px 30px;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .flow-title {
            text-align: center;
            font-size: 2.2em;
            color: #495057;
            margin-bottom: 40px;
            font-weight: bold;
        }
        
        .flow-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .action-flow {
            display: flex;
            align-items: center;
            gap: 20px;
            animation: slideIn 0.8s ease;
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .action-box {
            flex: 1;
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            border-left: 6px solid;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .action-box:hover {
            transform: translateX(10px) scale(1.02);
            box-shadow: 0 12px 35px rgba(0,0,0,0.2);
        }
        
        .action-box.source { border-color: #20c997; background: linear-gradient(to right, #d3f9f0 0%, white 100%); }
        .action-box.build { border-color: #fd7e14; background: linear-gradient(to right, #ffe8cc 0%, white 100%); }
        .action-box.test { border-color: #0dcaf0; background: linear-gradient(to right, #cff4fc 0%, white 100%); }
        .action-box.deploy { border-color: #0d6efd; background: linear-gradient(to right, #cfe2ff 0%, white 100%); }
        .action-box.approval { border-color: #CA8A04; background: linear-gradient(to right, #fff3cd 0%, white 100%); }
        .action-box.invoke { border-color: #6f42c1; background: linear-gradient(to right, #e0cffc 0%, white 100%); }
        
        .action-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .action-icon {
            font-size: 2.5em;
            min-width: 50px;
        }
        
        .action-title {
            font-size: 1.6em;
            font-weight: bold;
        }
        
        .source .action-title { color: #087f5b; }
        .build .action-title { color: #c2410c; }
        .test .action-title { color: #0c4a6e; }
        .deploy .action-title { color: #1e3a8a; }
        .approval .action-title { color: #854d0e; }
        .invoke .action-title { color: #5b21b6; }
        
        .action-desc {
            color: #6c757d;
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .example-box {
            background: rgba(255,255,255,0.7);
            padding: 15px;
            border-radius: 8px;
            margin-top: 12px;
            font-size: 0.95em;
        }
        
        .example-title {
            font-weight: bold;
            color: #495057;
            margin-bottom: 8px;
        }
        
        .arrow-down {
            text-align: center;
            font-size: 2.5em;
            color: #adb5bd;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .detail-section {
            margin: 50px 0;
        }
        
        .detail-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 40px;
            margin-top: 30px;
        }
        
        .detail-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-top: 8px solid;
            transition: all 0.3s ease;
        }
        
        .detail-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }
        
        .detail-card.source { border-color: #20c997; }
        .detail-card.build { border-color: #fd7e14; }
        .detail-card.test { border-color: #0dcaf0; }
        .detail-card.deploy { border-color: #0d6efd; }
        .detail-card.approval { border-color: #CA8A04; }
        .detail-card.invoke { border-color: #6f42c1; }
        
        .card-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .card-icon {
            font-size: 4em;
            margin-bottom: 15px;
        }
        
        .card-title {
            font-size: 2em;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .source .card-title { color: #087f5b; }
        .build .card-title { color: #c2410c; }
        .test .card-title { color: #0c4a6e; }
        .deploy .card-title { color: #1e3a8a; }
        .approval .card-title { color: #854d0e; }
        .invoke .card-title { color: #5b21b6; }
        
        .card-subtitle {
            color: #6c757d;
            font-size: 1.2em;
            font-weight: 600;
        }
        
        .info-section {
            margin: 25px 0;
        }
        
        .info-label {
            font-weight: bold;
            color: #495057;
            margin-bottom: 10px;
            font-size: 1.1em;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .info-content {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            color: #495057;
        }
        
        .provider-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 10px;
        }
        
        .provider-tag {
            background: linear-gradient(135deg, #e9ecef, #dee2e6);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9em;
            font-weight: 600;
            color: #495057;
            transition: all 0.3s ease;
        }
        
        .provider-tag:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        
        .use-case {
            background: #fff3cd;
            padding: 20px;
            border-radius: 12px;
            margin-top: 20px;
            border-left: 4px solid #CA8A04;
        }
        
        .use-case h4 {
            color: #854d0e;
            margin-bottom: 10px;
            font-size: 1.2em;
        }
        
        .use-case ul {
            padding-left: 20px;
            line-height: 2;
        }
        
        .comparison-table {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin: 50px 0;
        }
        
        .table-header {
            display: grid;
            grid-template-columns: 200px repeat(3, 1fr);
            background: linear-gradient(135deg, #495057 0%, #343a40 100%);
            color: white;
            padding: 20px;
            font-weight: bold;
            font-size: 1.1em;
        }
        
        .table-row {
            display: grid;
            grid-template-columns: 200px repeat(3, 1fr);
            padding: 20px;
            border-bottom: 1px solid #e9ecef;
            transition: background 0.3s ease;
        }
        
        .table-row:hover {
            background: #f8f9fa;
        }
        
        .table-cell {
            padding: 0 10px;
            display: flex;
            align-items: center;
        }
        
        .table-cell:first-child {
            font-weight: bold;
            color: #212529;
        }
        
        .code-example {
            background: #1e293b;
            color: #f1f5f9;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            overflow-x: auto;
            font-family: 'Courier New', monospace;
            font-size: 0.95em;
            line-height: 1.8;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        
        .code-title {
            color: #2563EB;
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 1.1em;
        }
        
        .code-comment { color: #64748B; }
        .code-key { color: #f472b6; }
        .code-string { color: #34d399; }
        .code-value { color: #2563EB; }
        
        .workflow-example {
            background: linear-gradient(to bottom, #f0f9ff 0%, white 100%);
            padding: 40px;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .workflow-title {
            text-align: center;
            font-size: 2em;
            color: #1e3a8a;
            margin-bottom: 30px;
            font-weight: bold;
        }
        
        .stage-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .stage {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .stage-header {
            font-size: 1.4em;
            font-weight: bold;
            color: #1e3a8a;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .stage-actions {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .mini-action {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 10px;
            border-left: 4px solid;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }
        
        .mini-action:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .mini-action.source { border-color: #20c997; }
        .mini-action.build { border-color: #fd7e14; }
        .mini-action.test { border-color: #0dcaf0; }
        .mini-action.deploy { border-color: #0d6efd; }
        .mini-action.approval { border-color: #CA8A04; }
        .mini-action.invoke { border-color: #6f42c1; }
        
        .mini-icon {
            font-size: 1.8em;
        }
        
        .best-practice {
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
            padding: 40px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #047857;
        }
        
        .bp-title {
            color: #065f46;
            font-size: 2em;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .bp-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }
        
        .bp-card {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .bp-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
        }
        
        .bp-icon {
            font-size: 2.5em;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .bp-card h4 {
            color: #059669;
            font-size: 1.3em;
            margin-bottom: 10px;
            text-align: center;
        }
        
        @media (max-width: 1024px) {
            .detail-grid {
                grid-template-columns: 1fr;
            }
            
            .table-header,
            .table-row {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2em;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            .flow-container {
                gap: 20px;
            }
        }
    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }