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

* {
            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%, #f5576c 75%, #fbbf24 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: 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%, #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;
        }
        
        .key-takeaway {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            border-left: 6px solid #f59e0b;
        }
        
        .key-takeaway h3 {
            color: #92400e;
            font-size: 1.6em;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .key-takeaway-content {
            color: #78350f;
            font-size: 1.1em;
            line-height: 1.8;
        }
        
        .methods-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 50px 0;
        }
        
        .method-card {
            background: white;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-top: 6px solid;
        }
        
        .method-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }
        
        .method-card:nth-child(1) {
            border-color: #ef4444;
            background: linear-gradient(to bottom, #fef2f2 0%, white 100%);
        }
        
        .method-card:nth-child(2) {
            border-color: #3b82f6;
            background: linear-gradient(to bottom, #eff6ff 0%, white 100%);
        }
        
        .method-card:nth-child(3) {
            border-color: #10b981;
            background: linear-gradient(to bottom, #f0fdf4 0%, white 100%);
        }
        
        .method-icon {
            font-size: 4em;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .method-title {
            font-size: 1.8em;
            font-weight: bold;
            text-align: center;
            margin-bottom: 10px;
        }
        
        .method-card:nth-child(1) .method-title { color: #dc2626; }
        .method-card:nth-child(2) .method-title { color: #2563eb; }
        .method-card:nth-child(3) .method-title { color: #059669; }
        
        .method-subtitle {
            text-align: center;
            color: #64748b;
            font-size: 1.05em;
            margin-bottom: 25px;
            font-weight: 600;
        }
        
        .method-description {
            background: white;
            padding: 20px;
            border-radius: 10px;
            margin: 15px 0;
            color: #475569;
            line-height: 1.7;
        }
        
        .priority-badge {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9em;
            margin-top: 15px;
            text-align: center;
            width: 100%;
        }
        
        .priority-low {
            background: #fee2e2;
            color: #991b1b;
        }
        
        .priority-medium {
            background: #dbeafe;
            color: #1e40af;
        }
        
        .priority-high {
            background: #d1fae5;
            color: #065f46;
        }
        
        .analogy-section {
            background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #0284c7;
        }
        
        .analogy-title {
            color: #0c4a6e;
            font-size: 2.5em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .analogy-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 30px;
        }
        
        .analogy-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .analogy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(2, 132, 199, 0.3);
        }
        
        .analogy-icon {
            font-size: 4em;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .analogy-card h4 {
            color: #0c4a6e;
            font-size: 1.4em;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .analogy-description {
            background: #f0f9ff;
            padding: 20px;
            border-radius: 10px;
            color: #0c4a6e;
            line-height: 1.7;
            margin: 15px 0;
        }
        
        .flow-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);
        }
        
        .flow-title {
            text-align: center;
            font-size: 2.5em;
            color: #1e293b;
            margin-bottom: 40px;
            font-weight: bold;
        }
        
        .flow-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .flow-column {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .flow-column-title {
            font-size: 1.4em;
            font-weight: bold;
            text-align: center;
            margin-bottom: 20px;
            padding: 15px;
            border-radius: 10px;
        }
        
        .flow-column:nth-child(1) .flow-column-title {
            background: #fee2e2;
            color: #991b1b;
        }
        
        .flow-column:nth-child(2) .flow-column-title {
            background: #dbeafe;
            color: #1e40af;
        }
        
        .flow-column:nth-child(3) .flow-column-title {
            background: #d1fae5;
            color: #065f46;
        }
        
        .flow-step {
            background: #f8fafc;
            padding: 15px;
            border-radius: 8px;
            margin: 12px 0;
            border-left: 4px solid;
        }
        
        .flow-column:nth-child(1) .flow-step { border-color: #ef4444; }
        .flow-column:nth-child(2) .flow-step { border-color: #3b82f6; }
        .flow-column:nth-child(3) .flow-step { border-color: #10b981; }
        
        .flow-step-number {
            display: inline-block;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            text-align: center;
            line-height: 28px;
            font-weight: bold;
            font-size: 0.9em;
            margin-right: 8px;
        }
        
        .flow-step-text {
            color: #475569;
            font-size: 0.95em;
            line-height: 1.6;
        }
        
        .flow-arrow {
            text-align: center;
            font-size: 1.5em;
            color: #94a3b8;
            margin: 8px 0;
        }
        
        .code-section {
            margin: 50px 0;
        }
        
        .code-section-title {
            text-align: center;
            font-size: 2.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.95em;
            line-height: 1.8;
            margin: 25px 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-variable { color: #fbbf24; }
        
        .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;
        }
        
        tr:hover {
            background: #f8fafc;
        }
        
        .check {
            color: #10b981;
            font-weight: bold;
            font-size: 1.3em;
        }
        
        .cross {
            color: #ef4444;
            font-weight: bold;
            font-size: 1.3em;
        }
        
        .warning {
            color: #f59e0b;
            font-weight: bold;
            font-size: 1.3em;
        }
        
        .use-case-section {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #f59e0b;
        }
        
        .use-case-title {
            color: #92400e;
            font-size: 2.5em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .use-case-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 30px;
        }
        
        .use-case-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .use-case-icon {
            font-size: 3em;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .use-case-card h4 {
            color: #92400e;
            font-size: 1.4em;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .use-case-description {
            color: #475569;
            line-height: 1.7;
            margin: 15px 0;
        }
        
        .best-practice-box {
            background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
            padding: 35px;
            border-radius: 15px;
            margin: 40px 0;
            border-left: 6px solid #7c3aed;
        }
        
        .best-practice-title {
            font-size: 1.8em;
            font-weight: bold;
            color: #5b21b6;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .best-practice-content {
            color: #5b21b6;
            line-height: 1.9;
            font-size: 1.05em;
        }
        
        .priority-order {
            background: white;
            padding: 40px;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .priority-title {
            text-align: center;
            font-size: 2.2em;
            color: #1e293b;
            margin-bottom: 35px;
            font-weight: bold;
        }
        
        .priority-flow {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
        }
        
        .priority-item {
            flex: 1;
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            border-top: 5px solid;
        }
        
        .priority-item:nth-child(1) { border-color: #10b981; }
        .priority-item:nth-child(2) { border-color: #3b82f6; }
        .priority-item:nth-child(3) { border-color: #ef4444; }
        
        .priority-number {
            display: inline-block;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            line-height: 50px;
            font-size: 1.5em;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .priority-method {
            font-size: 1.3em;
            font-weight: bold;
            color: #1e293b;
            margin: 10px 0;
        }
        
        .priority-desc {
            color: #64748b;
            font-size: 0.95em;
            line-height: 1.6;
        }
        
        .arrow-right {
            font-size: 2em;
            color: #94a3b8;
        }
        
        @media (max-width: 1024px) {
            .methods-grid,
            .analogy-grid,
            .flow-container,
            .use-case-grid {
                grid-template-columns: 1fr;
            }
            
            .priority-flow {
                flex-direction: column;
            }
            
            .arrow-right {
                transform: rotate(90deg);
            }
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2em;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            table {
                font-size: 0.85em;
            }
            
            th, td {
                padding: 12px;
            }
        }
    
        
        

        

        

        

        

        

        

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

        

        

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

        

        

        

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

            

            

            

            
        }