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

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Noto Sans JP', 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #1a1a2e 100%);
            padding: 20px;
            padding-top: 80px; /* 固定ヘッダー分のスペース確保 */
            line-height: 1.7;
            min-height: 100vh;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            background: white;
            border-radius: 24px;
            box-shadow: 0 30px 80px rgba(0,0,0,0.5);
            overflow: hidden;
        }
        
        .header {
            background: linear-gradient(135deg, #DC2626 0%, #feca57 25%, #48dbfb 50%, #ff9ff3 75%, #54a0ff 100%);
            color: white;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: '📊';
            position: absolute;
            font-size: 18em;
            opacity: 0.15;
            top: -40px;
            right: -40px;
            transform: rotate(-15deg);
        }
        
        .header::after {
            content: '🔑';
            position: absolute;
            font-size: 12em;
            opacity: 0.1;
            bottom: -30px;
            left: -20px;
            transform: rotate(15deg);
        }
        
        .header h1 {
            font-size: 2.8em;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
            font-weight: 900;
        }
        
        .header p {
            font-size: 1.3em;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }
        
        .badge-container {
            margin-top: 20px;
            position: relative;
            z-index: 1;
        }
        
        .header-badge {
            display: inline-block;
            background: rgba(255,255,255,0.25);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 700;
            backdrop-filter: blur(10px);
            margin: 5px;
        }
        
        .content {
            padding: 50px;
        }
        
        .intro {
            text-align: center;
            margin-bottom: 50px;
            padding: 45px;
            background: linear-gradient(135deg, #fff9db 0%, #ffeaa7 100%);
            border-radius: 20px;
            border-left: 8px solid #CA8A04;
            position: relative;
        }
        
        .intro::before {
            content: '🏥';
            position: absolute;
            font-size: 5em;
            opacity: 0.15;
            top: 20px;
            right: 30px;
        }
        
        .intro h2 {
            color: #d35400;
            font-size: 2.2em;
            margin-bottom: 20px;
            font-weight: 900;
        }
        
        .intro-text {
            font-size: 1.15em;
            color: #7f5539;
            line-height: 2;
        }
        
        .analogy-section {
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            padding: 50px;
            border-radius: 24px;
            margin: 50px 0;
            border-left: 8px solid #43a047;
            position: relative;
            overflow: hidden;
        }
        
        .analogy-section::before {
            content: '🩺';
            position: absolute;
            font-size: 15em;
            opacity: 0.08;
            bottom: -30px;
            right: -30px;
        }
        
        .analogy-title {
            color: #2e7d32;
            font-size: 2.3em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 900;
        }
        
        .analogy-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 30px;
        }
        
        .analogy-card {
            background: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .analogy-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }
        
        .analogy-icon {
            font-size: 4em;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .analogy-card h3 {
            color: #2e7d32;
            font-size: 1.6em;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 700;
        }
        
        .analogy-description {
            background: #f1f8e9;
            padding: 20px;
            border-radius: 12px;
            color: #33691e;
            line-height: 1.9;
            margin: 15px 0;
        }
        
        .concept-section {
            background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
            padding: 50px;
            border-radius: 24px;
            margin: 50px 0;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .concept-title {
            text-align: center;
            font-size: 2.5em;
            color: #1e293b;
            margin-bottom: 40px;
            font-weight: 900;
        }
        
        .concept-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        
        .concept-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            border-top: 6px solid;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .concept-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .concept-card:nth-child(1) { border-color: #DC2626; }
        .concept-card:nth-child(2) { border-color: #48dbfb; }
        .concept-card:nth-child(3) { border-color: #feca57; }
        
        .concept-icon {
            font-size: 3.5em;
            margin-bottom: 15px;
        }
        
        .concept-card h4 {
            font-size: 1.4em;
            color: #1e293b;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .concept-card p {
            color: #64748b;
            line-height: 1.8;
        }
        
        .flow-section {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            padding: 50px;
            border-radius: 24px;
            margin: 50px 0;
            border-left: 8px solid #1976d2;
        }
        
        .flow-title {
            color: #0d47a1;
            font-size: 2.3em;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 900;
        }
        
        .flow-diagram {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            margin: 40px 0;
        }
        
        .flow-step {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            width: 200px;
            position: relative;
        }
        
        .flow-step-icon {
            font-size: 3em;
            margin-bottom: 15px;
        }
        
        .flow-step-title {
            font-weight: 700;
            color: #1565c0;
            font-size: 1.1em;
            margin-bottom: 10px;
        }
        
        .flow-step-desc {
            color: #64748b;
            font-size: 0.95em;
            line-height: 1.6;
        }
        
        .flow-arrow {
            font-size: 2.5em;
            color: #1976d2;
        }
        
        .iam-section {
            background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
            padding: 50px;
            border-radius: 24px;
            margin: 50px 0;
            border-left: 8px solid #e91e63;
        }
        
        .iam-title {
            color: #880e4f;
            font-size: 2.3em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 900;
        }
        
        .iam-explanation {
            background: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        
        .iam-point {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin: 25px 0;
            padding: 20px;
            background: #fef4f7;
            border-radius: 15px;
            border-left: 5px solid #e91e63;
        }
        
        .iam-point-icon {
            font-size: 2.5em;
            flex-shrink: 0;
        }
        
        .iam-point-content h4 {
            color: #880e4f;
            font-size: 1.2em;
            margin-bottom: 8px;
            font-weight: 700;
        }
        
        .iam-point-content p {
            color: #6d4c5e;
            line-height: 1.8;
        }
        
        .code-section {
            background: #1a1a2e;
            padding: 40px;
            border-radius: 20px;
            margin: 40px 0;
            overflow-x: auto;
        }
        
        .code-title {
            color: #48dbfb;
            font-size: 1.3em;
            margin-bottom: 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .code-block {
            font-family: 'Courier New', monospace;
            font-size: 0.95em;
            line-height: 1.9;
            color: #f8f9fa;
        }
        
        .code-comment { color: #6c757d; }
        .code-key { color: #DC2626; }
        .code-string { color: #54a0ff; }
        .code-value { color: #feca57; }
        
        .permission-table {
            background: white;
            padding: 40px;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .table-title {
            text-align: center;
            font-size: 2em;
            color: #1e293b;
            margin-bottom: 35px;
            font-weight: 900;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
        }
        
        th {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px;
            text-align: left;
            font-weight: 700;
        }
        
        th:first-child { border-radius: 12px 0 0 0; }
        th:last-child { border-radius: 0 12px 0 0; }
        
        td {
            padding: 18px 20px;
            border-bottom: 2px solid #f1f5f9;
        }
        
        tr:hover { background: #f8fafc; }
        
        .action-badge {
            display: inline-block;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-family: 'Courier New', monospace;
            font-size: 0.9em;
            font-weight: 600;
        }
        
        .required-badge {
            display: inline-block;
            background: #DC2626;
            color: white;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.85em;
            font-weight: 700;
        }
        
        .optional-badge {
            display: inline-block;
            background: #48dbfb;
            color: #1a1a2e;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.85em;
            font-weight: 700;
        }
        
        .use-case-section {
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
            padding: 50px;
            border-radius: 24px;
            margin: 50px 0;
            border-left: 8px solid #D97706;
        }
        
        .use-case-title {
            color: #e65100;
            font-size: 2.3em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 900;
        }
        
        .use-case-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
        
        .use-case-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .use-case-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 152, 0, 0.3);
        }
        
        .use-case-icon {
            font-size: 3em;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .use-case-card h4 {
            color: #e65100;
            font-size: 1.4em;
            margin-bottom: 15px;
            text-align: center;
            font-weight: 700;
        }
        
        .use-case-content {
            color: #5d4037;
            line-height: 1.8;
        }
        
        .use-case-metrics {
            background: #fff8e1;
            padding: 15px;
            border-radius: 12px;
            margin-top: 15px;
        }
        
        .use-case-metrics strong {
            color: #ef6c00;
        }
        
        .tip-section {
            background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
            padding: 40px;
            border-radius: 20px;
            margin: 40px 0;
            border-left: 8px solid #3f51b5;
        }
        
        .tip-title {
            font-size: 1.6em;
            font-weight: 900;
            color: #1a237e;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .tip-content {
            color: #303f9f;
            line-height: 2;
        }
        
        .tip-item {
            background: white;
            padding: 20px;
            border-radius: 12px;
            margin: 15px 0;
            border-left: 4px solid #3f51b5;
        }
        
        .tip-item strong {
            color: #1a237e;
        }
        
        .warning-box {
            background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
            padding: 30px;
            border-radius: 16px;
            margin: 30px 0;
            border-left: 6px solid #f44336;
        }
        
        .warning-title {
            font-size: 1.4em;
            font-weight: 900;
            color: #c62828;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .warning-content {
            color: #b71c1c;
            line-height: 1.9;
        }
        
        .summary {
            background: linear-gradient(135deg, #DC2626 0%, #feca57 25%, #48dbfb 50%, #ff9ff3 75%, #54a0ff 100%);
            color: white;
            padding: 60px;
            border-radius: 24px;
            text-align: center;
        }
        
        .summary h2 {
            font-size: 2.5em;
            margin-bottom: 30px;
            font-weight: 900;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
        }
        
        .summary-box {
            background: rgba(255,255,255,0.2);
            padding: 35px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            margin: 30px auto;
            max-width: 900px;
        }
        
        .summary-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 30px 0;
        }
        
        .summary-item {
            background: rgba(255,255,255,0.15);
            padding: 25px;
            border-radius: 16px;
            backdrop-filter: blur(10px);
        }
        
        .summary-item-icon {
            font-size: 2.5em;
            margin-bottom: 15px;
        }
        
        .summary-item strong {
            font-size: 1.2em;
            display: block;
            margin-bottom: 10px;
        }
        
        .key-point {
            background: rgba(255,255,255,0.25);
            padding: 25px 35px;
            border-radius: 16px;
            font-size: 1.2em;
            line-height: 1.9;
            margin-top: 30px;
        }
        
        .key-point code {
            background: rgba(0,0,0,0.3);
            padding: 4px 12px;
            border-radius: 8px;
            font-family: 'Courier New', monospace;
        }
        
        @media (max-width: 1024px) {
            .analogy-grid,
            .use-case-grid {
                grid-template-columns: 1fr;
            }
            
            .concept-grid {
                grid-template-columns: 1fr;
            }
            
            .flow-diagram {
                flex-direction: column;
            }
            
            .flow-arrow {
                transform: rotate(90deg);
            }
            
            .summary-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 1.8em;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            .flow-step {
                width: 100%;
            }
            
            table {
                font-size: 0.85em;
            }
            
            th, td {
                padding: 12px;
            }
        }
    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }