/* 基本リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent unwanted focus scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent radio buttons from triggering scroll on focus */
input[type="radio"]:focus {
    scroll-margin: 0;
}

/* CSS Custom Properties - Spec.md Section 6.4完全準拠のデザインシステム */
:root {
    /* メインカラーパレット (Spec.md Section 6.4) */
    --color-base: #FFFFFF;              /* ベースカラー: メインコンテンツ背景 */
    --color-header: #1B2951;            /* ヘッダー背景: ダークブルー */
    --color-primary: #4A90E2;           /* プライマリカラー: ブルー（ボタン、リンク） */
    --color-secondary: #EC892E;         /* セカンダリカラー: オレンジ（アクセント、注目要素） */
    --color-bg-grey: #F5F5F5;           /* 背景グレー: カード背景 */
    --color-text: #333333;              /* テキストカラー: 基本テキスト */
    --color-text-sub: #666666;          /* サブテキスト: 補助テキスト */
    --color-error: #E74C3C;             /* エラーカラー: エラーメッセージ */
    --color-success: #27AE60;           /* 成功カラー: 成功メッセージ */
    
    /* カラーバリエーション */
    --color-primary-hover: #357ABD;
    --color-primary-light: rgba(74, 144, 226, 0.1);
    --color-primary-shadow: rgba(74, 144, 226, 0.3);
    --color-secondary-light: rgba(236, 137, 46, 0.1);
    --color-secondary-hover: #D4751D;
    --color-success-light: rgba(39, 174, 96, 0.1);
    --color-error-light: rgba(231, 76, 60, 0.1);
    
    /* グレー系バリエーション */
    --color-bg-light: #FAFAFA;
    --color-border: #E0E0E0;
    --color-border-light: #F0F0F0;
    --color-border-focus: var(--color-primary);
    
    /* シャドウ定義 */
    --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 6px 16px rgba(0, 0, 0, 0.2);
    
    /* タイポグラフィ設定 (Spec.md Section 6.4完全準拠) */
    --font-primary: "Noto Sans JP", sans-serif;      /* 基本フォント */
    --font-weight-normal: 400;                       /* 本文 */
    --font-weight-medium: 500;
    --font-weight-semibold: 600;                     /* h2, h3 */
    --font-weight-bold: 700;                         /* h1 */
    
    /* フォントサイズ (Spec.md Section 6.4準拠 + 2px調整) */
    --font-size-h1: 34px;                           /* 見出し h1 (32px→34px) */
    --font-size-h2: 26px;                           /* 見出し h2 (24px→26px) */
    --font-size-h3: 22px;                           /* 見出し h3 (20px→22px) */
    --font-size-body: 18px;                         /* 本文 (16px→18px) */
    --font-size-small: 16px;                        /* 注釈 (14px→16px) */
    
    /* レイアウト設定 (Spec.md Section 6.4準拠) */
    --max-width: 1200px;                            /* 最大コンテンツ幅 */
    --content-padding: 20px;                        /* コンテンツパディング */
    --card-spacing: 20px;                           /* カード間隔 */
    --button-height: 48px;                          /* ボタン高さ */
    --button-height-mobile: 52px;                   /* モバイル時ボタン高さ */
    
    /* UI要素 */
    --border-radius-small: 4px;                     /* ボタン角丸 */
    --border-radius-medium: 8px;                    /* カード角丸 */
    
    /* レスポンシブブレークポイント */
    --breakpoint-mobile: 767px;
    --breakpoint-tablet: 768px;
    --breakpoint-desktop: 1920px;
}

/* 基本スタイル (Spec.md Section 6.4準拠) */
body {
    font-family: var(--font-primary);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-normal);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-base);
    margin: 0;
    padding: 0;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--content-padding);
}

/* ヘッダー */
.header {
    background-color: var(--color-header);
    color: var(--color-base);
    padding: 1rem 0;
}

.logo {
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-base);
}

/* メイン */
.main {
    background-color: var(--color-base);
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* 見出しスタイル (Spec.md Section 6.4準拠) */
.main h1,
h1 {
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.main h2,
h2 {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    margin-bottom: 0.875rem;
    line-height: 1.3;
}

.main h3,
h3 {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

/* フッター */
.footer {
    background-color: var(--color-header);
    padding: 1rem 0;
    text-align: center;
    font-size: var(--font-size-small);
    color: var(--color-base);
}

/* ボタンスタイル (Spec.md Section 6.4準拠) */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-primary);
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius-small);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    min-height: var(--button-height);
    line-height: 1.5;
    box-sizing: border-box;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-base);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    box-shadow: var(--shadow-medium);
    transform: translateY(-1px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #357ABD 100%); /* ブルーグラデーション */
    color: var(--color-base);
    border: 2px solid var(--color-primary);
    font-weight: var(--font-weight-semibold);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #357ABD 0%, var(--color-primary) 100%);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4); /* ブルーのシャドウ */
    transform: translateY(-2px);
    border-color: #357ABD;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-large {
    padding: 16px 48px;
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    min-height: 56px;
}

/* カード */
.card {
    background-color: var(--color-base);
    border-radius: var(--border-radius-medium, 8px);
    padding: 24px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 20px;
}

.card-header {
    border-bottom: 2px solid var(--color-bg-grey);
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.card-title {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-semibold);
    color: var(--color-header);
}

/* フォーム要素 */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
    font-size: var(--font-size-body);
}

.form-label .required {
    color: var(--color-error);
    margin-left: 4px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-small, 4px);
    transition: border-color 0.3s;
    font-family: var(--font-family);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-light);
}

.form-error {
    color: var(--color-error);
    font-size: var(--font-size-small);
    margin-top: 4px;
    font-weight: var(--font-weight-medium);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-col {
    flex: 1;
}

/* チェックボックス・ラジオボタン */
.form-checkbox,
.form-radio {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
}

.form-checkbox input,
.form-radio input {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label,
.form-radio label {
    cursor: pointer;
    user-select: none;
}

/* プログレスバー */
.progress-container {
    margin-bottom: 30px;
}

.progress-text {
    text-align: center;
    margin-bottom: 10px;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: var(--color-bg-grey);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

/* セクション */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-bold);
    margin-bottom: 40px;
    color: var(--color-header);
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
}

/* アラート */
.alert {
    padding: 12px 16px;
    border-radius: var(--border-radius-small);
    margin-bottom: var(--card-spacing);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-normal);
}

.alert-info {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-left: 4px solid var(--color-primary);
}

.alert-success {
    background-color: var(--color-success-light);
    color: var(--color-success);
    border-left: 4px solid var(--color-success);
}

.alert-error {
    background-color: var(--color-error-light);
    color: var(--color-error);
    border-left: 4px solid var(--color-error);
}

/* ローディング */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--color-bg-grey);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-overlay .loading {
    width: 40px;
    height: 40px;
    border-width: 4px;
}

/* API ローディング表示専用 */
#api-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

#api-loading .loading-content {
    background-color: var(--color-base);
    padding: 30px 40px;
    border-radius: var(--border-radius-medium, 8px);
    text-align: center;
    box-shadow: var(--shadow-heavy);
}

#api-loading .loading {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    border: 4px solid var(--color-primary-light);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

#api-loading .loading-message {
    font-size: 16px;
    color: var(--color-text);
    margin: 0;
    font-weight: 500;
}

/* ユーティリティクラス */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.hidden { display: none; }

/* P-01 概要説明ページ専用スタイル */
.hero-section {
    background: linear-gradient(135deg, var(--color-header) 0%, var(--color-primary-hover) 100%);
    color: var(--color-base);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
    color: white !important;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: var(--font-weight-medium);
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-description {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--border-radius-medium, 8px);
    margin: 40px 0;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-description p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

.hero-action {
    margin-top: 50px;
}

.hero-action .btn {
    min-width: 200px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-action .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    .main h1 {
        font-size: calc(var(--font-size-h2) + 0px);
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .btn-large {
        width: 100%;
        min-height: var(--button-height-mobile);
    }
    
    .section {
        padding: 40px 0;
    }
    
    /* P-01 モバイル対応 */
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: var(--font-size-h1);
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .hero-description {
        margin: 30px 0;
        padding: 20px;
    }
    
    .hero-description p {
        font-size: 14px;
    }
    
    .hero-action {
        margin-top: 30px;
    }
}

/* P-02 プライバシーポリシーページ専用スタイル */
.sub-header {
    background-color: var(--color-header);
    color: var(--color-base);
    padding: 30px 0;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.sub-header-title {
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-bold);
    margin: 0;
    color: var(--color-base);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.privacy-title {
    font-size: calc(var(--font-size-h1) + 4px);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-header);
    border-bottom: 3px solid var(--color-header);
    padding-bottom: 20px;
}

.privacy-document {
    background-color: var(--color-base);
    border-radius: var(--border-radius-medium, 8px);
    padding: 40px;
    box-shadow: var(--shadow-heavy);
    margin-bottom: 40px;
    border: 1px solid var(--color-border);
}


.privacy-section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-semibold);
    color: var(--color-header);
    margin-bottom: 30px;
    text-align: center;
}

.privacy-article {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border-light, #f0f0f0);
}

.privacy-article:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.article-title {
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    margin-bottom: 15px;
}

.article-content {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 0;
}

.privacy-list {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text);
    margin: 10px 0;
    padding-left: 40px;
}

.privacy-list li {
    margin-bottom: 8px;
}

.privacy-subsection {
    margin-top: 20px;
    padding-left: 20px;
}

.subsection-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
}

.privacy-agreement {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--color-bg-grey);
    border-radius: 8px;
}

.privacy-agreement .form-checkbox {
    justify-content: center;
    margin-bottom: 0;
}

.privacy-agreement .form-checkbox input {
    width: 20px;
    height: 20px;
}

.privacy-agreement .form-checkbox label {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-medium);
    margin-left: 10px;
}

.privacy-actions {
    text-align: center;
}

.btn-disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    background-color: var(--color-border) !important;
}

.btn-disabled:hover {
    background-color: var(--color-border) !important;
    transform: none !important;
    box-shadow: none !important;
}

/* レスポンシブ対応 - プライバシーポリシー */
@media (max-width: 768px) {
    .sub-header-title {
        font-size: var(--font-size-h2);
    }
    
    .privacy-content {
        padding: 20px 10px;
    }
    
    .privacy-title {
        font-size: calc(var(--font-size-h2) + 4px);
        margin-bottom: 30px;
    }
    
    .privacy-document {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .privacy-section-title {
        font-size: var(--font-size-h3);
        margin-bottom: 20px;
    }
    
    .article-title {
        font-size: var(--font-size-body);
    }
    
    .article-content {
        font-size: 13px;
    }
    
    .privacy-list {
        font-size: 13px;
        padding-left: 30px;
    }
    
    .privacy-subsection {
        padding-left: 10px;
    }
    
    .subsection-title {
        font-size: var(--font-size-small);
    }
    
    .privacy-agreement {
        padding: 15px;
    }
    
    .privacy-agreement .form-checkbox label {
        font-size: var(--font-size-small);
    }
}

/* P-03 個人情報入力ページ専用スタイル */
.register-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.register-title {
    font-size: calc(var(--font-size-h1) + 4px);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-header);
    border-bottom: 3px solid var(--color-header);
    padding-bottom: 20px;
}

.register-form {
    background-color: var(--color-base);
    border-radius: var(--border-radius-medium, 8px);
    padding: 40px;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--color-border);
}

.required-badge {
    background-color: var(--color-primary);
    color: var(--color-base);
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    padding: 2px 6px;
    border-radius: 3px;
    margin-right: 6px;
    vertical-align: middle;
}

.form-input.error,
.form-select.error {
    border-color: var(--color-error);
    box-shadow: 0 0 0 3px var(--color-error-light);
}

.form-error {
    display: none;
    color: var(--color-error);
    font-size: 14px;
    margin-top: 4px;
    font-weight: 500;
}

.form-error:not(:empty) {
    display: block;
}

.register-actions {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.register-actions .btn {
    min-width: 200px;
}

/* フォーム要素の調整 */
.register-form .form-input,
.register-form .form-select {
    height: 50px;
    font-size: 16px;
    padding: 12px 16px;
}

.register-form .form-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-header);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.register-form .form-group {
    margin-bottom: 25px;
}

.register-form .form-row {
    margin-bottom: 0;
}

.register-form .form-row .form-group {
    margin-bottom: 25px;
}

/* プレースホルダーのスタイル */
.register-form .form-input::placeholder {
    color: var(--color-text-sub);
    font-style: italic;
}

.register-form .form-select option:first-child {
    color: var(--color-text-sub);
}

/* フォーカス状態の強化 */
.register-form .form-input:focus,
.register-form .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-light);
    outline: none;
}

/* 成功状態のスタイル */
.form-input.success,
.form-select.success {
    border-color: var(--color-success);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

/* レスポンシブ対応 - 個人情報入力 */
@media (max-width: 768px) {
    .register-content {
        padding: 20px 10px;
    }
    
    .register-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .register-form {
        padding: 25px;
    }
    
    .register-form .form-input,
    .register-form .form-select {
        height: var(--button-height);
        font-size: var(--font-size-body); /* iOS zoom対応 */
        padding: 12px 14px;
    }
    
    .register-form .form-label {
        font-size: var(--font-size-small);
    }
    
    .register-form .form-group {
        margin-bottom: 20px;
    }
    
    .register-actions {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .register-actions .btn {
        width: 100%;
        min-width: auto;
    }
    
    .required-badge {
        font-size: 10px;
        padding: 2px 4px;
    }
}

/* P-04 診断ページ専用スタイル */
.assessment-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.assessment-category {
    font-size: calc(var(--font-size-h1) + 4px);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-header);
    border-bottom: 3px solid var(--color-header);
    padding-bottom: 20px;
}

.question-cards {
    margin-bottom: 40px;
}

.question-card {
    background-color: var(--color-bg-grey);
    border-radius: var(--border-radius-medium, 8px);
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid var(--color-border);
    transition: box-shadow 0.3s ease;
}

.question-card:hover {
    box-shadow: var(--shadow-medium);
}

.question-header {
    margin-bottom: 25px;
}

.question-category {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-base);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.8rem;
}

.question-title {
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

.question-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.question-option {
    background-color: var(--color-base);
    border-radius: 6px;
    padding: 15px 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.question-option:hover {
    border-color: var(--color-primary);
    background-color: var(--color-primary-light);
}

.question-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    /* Prevent focus from causing unwanted scroll behavior */
    scroll-margin: 0;
}

.question-option input[type="radio"]:focus {
    outline: none;
    scroll-margin: 0;
}

/* Prevent any focus-based scrolling on question options */
.question-option {
    scroll-margin: 0;
}

.question-option:focus-within {
    scroll-margin: 0;
}

.question-option label {
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-text);
    cursor: pointer;
    user-select: none;
    margin: 0;
    flex: 1;
}

.question-option input[type="radio"]:checked + label {
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
}

.question-option:has(input[type="radio"]:checked) {
    border-color: var(--color-primary);
    background-color: var(--color-primary-light);
}

.assessment-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.assessment-actions .btn {
    min-width: 140px;
    font-weight: 600;
}

/* プログレスバーの強化 */
.progress-container {
    margin-bottom: 40px;
    text-align: right;
    padding: 20px 0;
}

.progress-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-header);
    margin-bottom: 10px;
}

.progress-bar {
    height: 6px;
    background-color: var(--color-border);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    border-radius: 3px;
    transition: width 0.5s ease-in-out;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* レスポンシブ対応 - 診断ページ */
@media (max-width: 768px) {
    .assessment-content {
        padding: 20px 10px;
    }
    
    .assessment-category {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .question-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .question-title {
        font-size: 16px;
    }
    
    .question-option {
        padding: 12px 15px;
    }
    
    .question-option label {
        font-size: 14px;
    }
    
    .question-option input[type="radio"] {
        width: 18px;
        height: 18px;
    }
    
    .assessment-actions {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
    
    .assessment-actions .btn {
        width: 100%;
        min-width: auto;
    }
    
    .progress-container {
        margin-bottom: 30px;
        padding: 15px 0;
    }
    
    .progress-text {
        font-size: 14px;
    }
}

/* P-05 診断結果ページ専用スタイル */
.result-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 40px 20px; /* 上部パディングを減らして空白を削減 */
}

.result-summary {
    text-align: center;
    margin-bottom: 50px;
}

.result-title {
    font-size: calc(var(--font-size-h1) + 4px);
    font-weight: var(--font-weight-bold);
    color: var(--color-header);
    margin-bottom: 20px;
}

.result-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-sub);
    max-width: 800px;
    margin: 0 auto;
}

/* レーダーチャートセクション */
.result-chart-section {
    background-color: var(--color-base);
    border-radius: var(--border-radius-medium, 8px);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--color-border);
}

.chart-title {
    font-size: 30px;
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-header);
}

.result-chart-section {
    margin: 35px 0; /* サマリーと同じ上下マージンで統一 */
    padding: 40px 20px;
    background: rgba(74, 144, 226, 0.02);
    border-radius: var(--border-radius-medium);
}

.chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.chart-wrapper {
    position: relative;
    width: 800px;
    height: 700px;
    margin: 0 auto;
}

.chart-wrapper canvas {
    width: 100% !important;
    height: 100% !important;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.legend-text {
    font-size: 14px;
    color: var(--color-text);
}

/* スコア詳細 */
.score-details {
    margin-bottom: 50px;
}

.score-title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: var(--color-header);
}

.score-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.score-card {
    background-color: var(--color-base);
    border-radius: var(--border-radius-medium, 8px);
    padding: 25px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease;
}

.score-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.score-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.score-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
}

.score-card-value {
    font-size: 24px;
    font-weight: 700;
}

.score-unit {
    font-size: 14px;
    font-weight: 400;
}

.score-card-progress {
    margin-bottom: 15px;
}

.score-progress-bar {
    width: 100%;
    height: 8px;
    background-color: var(--color-bg-grey);
    border-radius: 4px;
    overflow: hidden;
}

.score-progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s ease-in-out;
}

.score-card-details {
    text-align: right;
}

.score-questions {
    font-size: 12px;
    color: var(--color-text-sub);
}

/* 分析セクション */
.analysis-section {
    background-color: var(--color-header);
    color: var(--color-base);
    padding: 50px 40px;
    margin-bottom: 50px;
    border-radius: var(--border-radius-medium, 8px);
}

.analysis-title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

.analysis-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
}

.framework-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.framework-description {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

.framework-features {
    list-style: none;
    padding: 0;
}

.framework-features li {
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.framework-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

.dx-framework-diagram {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-base);
    z-index: 2;
}

.framework-items {
    position: relative;
    width: 100%;
    height: 100%;
}

.framework-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.framework-item.cx {
    top: 10px;
    right: 10px;
}

.framework-item.ex {
    bottom: 10px;
    right: 10px;
}

.framework-item.mx {
    bottom: 10px;
    left: 10px;
}

.framework-item.dx-inner {
    top: 10px;
    left: 10px;
}

/* 総合スコア */
.total-score-section {
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    text-align: center;
}

.total-score-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--color-header);
}

.total-score-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.score-circle {
    width: 150px;
    height: 150px;
    border: 8px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.score-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
}

.score-label {
    font-size: 14px;
    color: var(--color-text-sub);
}

.score-description {
    text-align: left;
    max-width: 300px;
}

.score-description h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-header);
}

.score-description p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-sub);
}

/* オファリング */
.offerings-section {
    margin-bottom: 50px;
}

.offerings-title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-header);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.offering-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.offering-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.offering-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-header);
    margin-bottom: 20px;
}

.offering-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-sub);
    margin-bottom: 20px;
}

.offering-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.offering-features li {
    font-size: 13px;
    color: var(--color-text-sub);
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.offering-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.offering-btn {
    width: 100%;
    margin-top: auto;
}

/* お問い合わせ */
.contact-section {
    background-color: var(--color-header);
    color: var(--color-base);
    padding: 50px 40px;
    border-radius: var(--border-radius-medium, 8px);
    text-align: center;
}

.contact-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-btn {
    min-width: 250px;
    font-size: 18px;
    font-weight: 600;
}

.contact-info {
    display: flex;
    gap: 15px;
}

.contact-info .btn {
    min-width: 180px;
}

/* レスポンシブ対応 - 結果ページ */
@media (max-width: 768px) {
    .result-content {
        padding: 15px 10px 20px 10px; /* モバイルでも上部パディングを削減 */
    }
    
    .result-title {
        font-size: 28px;
    }
    
    .result-description {
        font-size: 14px;
    }
    
    .result-chart-section {
        padding: 25px;
    }
    
    .chart-wrapper {
        width: 300px;
        height: 300px;
    }
    
    .score-cards {
        grid-template-columns: 1fr;
    }
    
    .analysis-section {
        padding: 30px 20px;
    }
    
    .analysis-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .total-score-display {
        flex-direction: column;
        gap: 20px;
    }
    
    .score-circle {
        width: 120px;
        height: 120px;
    }
    
    .score-number {
        font-size: 28px;
    }
    
    .score-description {
        text-align: center;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offering-card {
        padding: 20px;
    }
    
    .contact-section {
        padding: 30px 20px;
    }
    
    .contact-info {
        flex-direction: column;
        width: 100%;
    }
    
    .contact-info .btn {
        min-width: auto;
        width: 100%;
    }
    
    .contact-btn {
        min-width: auto;
        width: 100%;
    }
}

/* ===== Haru Automationサービス紹介エリア (Step 6) ===== */
.service-introduction {
    background: rgba(183, 199, 255, 0.2);
    padding: 60px 0; /* 上下パディングのみ、左右は0で全幅表示 */
    margin: 40px 0;
    border-top: 1px solid rgba(183, 199, 255, 0.3);
    border-bottom: 1px solid rgba(183, 199, 255, 0.3);
    box-shadow: var(--shadow-light);
    width: 100vw; /* 画面全幅 */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.service-container {
    max-width: 1800px; /* 最大幅を少し狭めて左右の余白を確保（2200px→1800px） */
    margin: 0 auto;
    padding: 0 80px; /* 左右のパディングを大幅に増加（var(--content-padding)→80px） */
}

.service-introduction .service-title {
    font-size: calc(var(--font-size-h1) + 8px) !important; /* より大きなフォントサイズ（42px） */
    color: var(--color-header);
    margin-bottom: 30px;
    text-align: center;
    font-weight: var(--font-weight-bold);
}

.service-description {
    font-size: var(--font-size-body);
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--color-text);
}

.service-hero-text {
    font-size: calc(var(--font-size-body) + 6px); /* より大きなフォントサイズ（24px） */
    line-height: 1.6;
    margin-bottom: 20px !important;
    color: var(--color-header);
}

.service-description p {
    margin-bottom: 16px;
}

.service-description p:last-child {
    margin-bottom: 0;
}

.service-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-cta-buttons .btn {
    min-width: 280px; /* 横幅を大幅に拡大（200px→280px） */
    padding: 14px 32px; /* パディングも拡大（12px 24px → 14px 32px） */
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-medium);
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.service-cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* 2カラムレイアウト構造 */
.service-content-wrapper {
    display: flex;
    align-items: center; /* 垂直方向中央揃え（flex-start → center） */
    gap: 100px; /* ギャップを少し狭める（120px→100px） */
    margin-top: 20px;
    max-width: 1600px; /* コンテナを調整（2000px→1600px） */
    margin-left: auto;
    margin-right: auto;
}

.service-text-column {
    flex: 2; /* テキストエリアの比率を少し下げて重なりを防止（2.5→2） */
    min-width: 700px; /* 最小幅を少し下げて調整（800px→700px） */
    max-width: 900px; /* 最大幅を調整して重なりを防止（1200px→900px） */
}

.service-image-column {
    flex: 1.5; /* 画像エリアをより大きな比率に（1.5倍） */
    max-width: 900px; /* 最大幅を大幅拡大（700px→900px） */
    min-width: 500px; /* 最小幅を設定して確実に大きく */
    display: flex;
    justify-content: center; /* 水平方向中央揃え */
    align-items: center; /* 垂直方向中央揃え */
}

.service-hero-image {
    width: 800px; /* 固定サイズで大幅に拡大 */
    height: auto;
    border-radius: 12px; /* より大きな角丸 */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* より強いシャドウ */
    transition: transform 0.3s ease;
    object-fit: cover;
    background-color: #f8f9fa; /* 読み込み中の背景色 */
}

.service-hero-image:hover {
    transform: scale(1.02);
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
    .service-introduction {
        padding: 40px 0; /* モバイルでも上下のパディングを維持 */
        margin: 20px 0;
        /* モバイルでは全幅レイアウトを無効化 */
        width: 100%;
        left: auto;
        right: auto;
        margin-left: 0;
        margin-right: 0;
        position: static;
    }
    
    .service-container {
        padding: 0 15px; /* モバイルでの横パディングを削減 */
        max-width: 100%; /* モバイルでは最大幅制限を解除 */
        overflow-x: hidden; /* 横スクロールを防止 */
    }
    
    /* 2カラムレイアウトのモバイル対応 */
    .service-content-wrapper {
        flex-direction: column;
        gap: 30px; /* より大きなギャップ */
        max-width: 100%; /* モバイルでは全幅 */
        margin-left: 0; /* 左右マージンをリセット */
        margin-right: 0; /* 左右マージンをリセット */
    }
    
    .service-text-column {
        max-width: 100%; /* モバイルでは最大幅制限を解除 */
        min-width: auto; /* モバイルでは最小幅制限を解除 */
        flex: none; /* モバイルではflex比率を無効化 */
    }
    
    .service-image-column {
        flex: none;
        width: 100%;
        order: -1; /* 画像を上部に配置 */
        display: flex;
        justify-content: center; /* モバイルでも中央揃え */
        align-items: center; /* モバイルでも垂直中央揃え */
        max-width: 100%;
        padding: 0 20px; /* 左右に十分な余白を追加 */
        box-sizing: border-box; /* パディングを含めた幅計算 */
    }
    
    .service-hero-image {
        max-width: 85%; /* さらに小さくして確実に画面内に収める */
        width: 85%; /* 85%幅で十分な余裕を確保 */
        height: auto;
        border-radius: 8px; /* モバイルでの角丸 */
        margin: 0 auto; /* 中央揃え */
        display: block; /* block要素として中央揃えを適用 */
    }
    
    .service-cta-buttons {
        flex-direction: column;
    }
    
    .service-cta-buttons .btn {
        width: 100%;
        margin: 5px 0;
        min-width: auto;
    }
    
    .service-introduction .service-title {
        font-size: calc(var(--font-size-h2) + 4px) !important; /* モバイルでも大きめ（30px） */
    }
    
    .service-hero-text {
        font-size: calc(var(--font-size-body) + 2px); /* モバイルでの調整（20px） */
    }
    
    .service-description {
        font-size: var(--font-size-small); /* モバイルではレベル解説文と同じサイズ */
        line-height: 1.6; /* レベル解説文と同じ行間 */
    }
}

/* より小さなモバイルデバイス対応 */
@media (max-width: 480px) {
    .service-content-wrapper {
        gap: 20px;
    }
    
    .service-hero-image {
        border-radius: 6px;
    }
    
    .service-introduction {
        padding: 30px 0; /* 小さなモバイルでも適度なパディング維持 */
        margin: 15px 0;
    }
    
    .service-container {
        padding: 0 15px; /* より小さな横パディング */
    }
    
    .service-introduction .service-title {
        font-size: var(--font-size-h2) !important; /* 小さなモバイルでの調整 */
    }
    
    .service-hero-text {
        font-size: var(--font-size-body); /* 小さなモバイルでの調整 */
    }
}

/* ===== ナビゲーションエリア (Step 7) ===== */
.navigation-section {
    margin: 40px 0 20px 0;
    text-align: center;
}

.navigation-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.navigation-buttons .btn {
    min-width: 180px;
    padding: 12px 24px;
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-medium);
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
    .navigation-section {
        margin: 20px 0;
    }
    
    .navigation-buttons {
        flex-direction: column;
    }
    
    .navigation-buttons .btn {
        width: 100%;
        min-width: auto;
    }
}

/* ===== 診断結果レベル表示エリア (Step 2-4 Mobile対応) ===== */
.result-summary-section {
    margin: 35px 0; /* 上下同じマージンで均等配置 */
}

.result-title {
    font-size: var(--font-size-h2);
    color: var(--color-text);
    margin-bottom: 16px;
    font-weight: var(--font-weight-semibold);
}

.result-summary-text {
    font-size: 28px;
    font-weight: var(--font-weight-bold);
    line-height: 1.4;
    color: var(--color-header);
    margin-bottom: 0;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(183, 199, 255, 0.1));
    border-radius: var(--border-radius-medium);
    border-left: 4px solid var(--color-primary);
}

.level-detail-section {
    margin: 30px 0;
}

.level-description {
    font-size: var(--font-size-body);
    line-height: 1.8;
    color: #000000;
}

.level-description p {
    margin-bottom: 16px;
}

.level-description p:last-child {
    margin-bottom: 0;
}

/* Step 8: モバイルレスポンシブ最適化 */
@media (max-width: 767px) {
    /* 診断結果エリアのモバイル最適化 */
    .result-summary-section {
        margin: 25px 0; /* モバイルでも上下同じマージンで均等配置 */
        padding: 0 10px;
    }
    
    .result-title {
        font-size: var(--font-size-h3);
        text-align: center;
        margin-bottom: 12px;
    }
    
    .result-summary-text {
        font-size: 22px;
        font-weight: var(--font-weight-bold);
        text-align: center;
        line-height: 1.3;
        padding: 15px;
    }
    
    /* レベル詳細解説のモバイル最適化 */
    .level-detail-section {
        margin: 20px 0;
        padding: 0 10px;
    }
    
    .level-description {
        font-size: var(--font-size-small);
        line-height: 1.6;
    }
    
    .level-description p {
        margin-bottom: 12px;
    }
    
    /* レーダーチャートのモバイル最適化 */
    .result-chart-section {
        margin: 25px 0; /* モバイルでもサマリーと同じマージン */
        padding: 0 10px;
    }
    
    .chart-title {
        font-size: var(--font-size-h3);
        text-align: center;
        margin-bottom: 15px;
    }
    
    .chart-wrapper {
        height: 450px;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .chart-legend {
        margin-top: 15px;
        display: flex;
        justify-content: center;
    }
    
    
    /* ナビゲーションエリアの追加モバイル最適化 */
    .navigation-section {
        margin: 15px 0;
        padding: 0 10px;
    }
    
    .navigation-buttons .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: var(--font-size-small);
    }
    
    /* お問い合わせセクションの追加モバイル最適化 */
    .contact-section {
        padding: 20px 15px;
        margin: 15px 0;
    }
    
    .contact-title {
        font-size: var(--font-size-h3);
        text-align: center;
        margin-bottom: 15px;
    }
    
    .contact-description {
        font-size: var(--font-size-small);
        line-height: 1.6;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: var(--font-size-small);
    }
    
    .contact-info {
        width: 100%;
        max-width: 280px;
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: var(--font-size-small);
    }
}

/* Force cache refresh - 2025年 8月20日 水曜日 19時55分36秒 JST */
/* Reverted to clean design - 2025年 8月20日 水曜日 21時10分57秒 JST */
/* Added Haru Automation service styling - Step 6 */
/* Added Navigation area styling - Step 7 */
/* Added Mobile responsive optimizations - Step 8 */
/* Style updated: 2025年 8月25日 月曜日 03時26分00秒 JST */
/* Navigation styling updated: 2025年 8月25日 月曜日 03時29分34秒 JST */
/* Mobile responsive updated: 2025年 8月25日 月曜日 03時32分48秒 JST */
/* Font size increased by +2px: 2025年 8月25日 月曜日 03時40分23秒 JST */
/* Radar chart adjustments: 2025年 8月25日 月曜日 03時45分32秒 JST */
/* Enhanced summary text and larger radar chart: 2025年 8月25日 月曜日 03時48分48秒 JST */
