/* ==========================================
   ITヘルスチェック診断（/check/）
   common.cssのブランド変数（--color-gold / --color-gold-dark / --color-navy）のみ使用。
========================================== */
.check-section {
    padding-bottom: 40px;
}
.check-app {
    max-width: 640px;
    margin: 0 auto;
}

/* ---- イントロ ---- */
.check-intro {
    background: #f9f9f9;
    border-left: 3px solid var(--color-gold);
    padding: 40px;
    text-align: center;
}
.check-intro p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 24px;
}
.check-intro .check-intro-meta {
    font-size: 12.5px;
    color: #888;
    margin-top: 18px;
    margin-bottom: 0;
}

/* ---- 進捗ドット ---- */
.check-progress {
    display: flex;
    gap: 6px;
    margin: 0 0 28px;
}
.check-progress i {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: #e5e5e5;
    transition: background 0.2s ease;
}
.check-progress i.done {
    background: var(--color-gold);
}

/* ---- 設問カード ---- */
.check-card {
    background: #f9f9f9;
    border-left: 3px solid var(--color-gold);
    padding: 36px 40px;
}
.check-card-eyebrow {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--color-gold-text, #7a5e1f);
    font-weight: 600;
    margin-bottom: 10px;
}
.check-question {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.7;
    margin-bottom: 22px;
}
.check-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 4px;
}
.check-opt {
    display: block;
    width: 100%;
    text-align: left;
    background: #fff;
    border: 1.4px solid #ddd;
    padding: 14px 18px;
    font-size: 14.5px;
    font-family: inherit;
    color: #2b2b2b;
    cursor: pointer;
    transition: 0.15s ease;
}
.check-opt:hover {
    border-color: var(--color-gold);
}
.check-opt.selected {
    background: var(--color-navy);
    border-color: var(--color-navy);
    color: #fff;
}

.check-nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 26px;
}
.check-back-btn {
    background: none;
    border: none;
    font-size: 13.5px;
    color: #777;
    cursor: pointer;
    padding: 8px 4px;
}
.check-back-btn:hover {
    color: var(--color-navy);
}
.check-step-count {
    font-size: 12.5px;
    color: #999;
    letter-spacing: 0.05em;
}

/* ---- 結果画面 ---- */
.check-result-headline {
    text-align: center;
    margin-bottom: 36px;
}
.check-result-headline .check-result-eyebrow {
    display: block;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--color-gold-text, #7a5e1f);
    font-weight: 600;
    margin-bottom: 12px;
}
.check-result-headline h3 {
    font-size: 20px;
    color: var(--color-navy);
    margin-bottom: 14px;
    line-height: 1.6;
}
.check-result-headline p {
    font-size: 14px;
    color: #555;
    line-height: 1.9;
}

.check-score-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 40px;
}
.check-score-item {
    background: #f9f9f9;
    padding: 24px 28px;
}
.check-score-item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
    gap: 12px;
}
.check-score-item-head .label {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy);
}
.check-score-item-head .value {
    font-size: 12.5px;
    color: #888;
    white-space: nowrap;
}
.check-bar {
    height: 6px;
    background: #e5e5e5;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 14px;
}
.check-bar-fill {
    height: 100%;
    background: var(--color-gold);
}
.check-score-item p {
    font-size: 13.5px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}
.check-score-item .service-link-more {
    font-size: 13px;
}

/* ---- メール受け取り導線 ---- */
.check-email-block {
    border-top: 1px solid #e5e5e5;
    padding-top: 32px;
    margin-bottom: 40px;
    text-align: center;
}
.check-email-block .check-email-lead {
    font-size: 13.5px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}
.check-email-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto;
}
.check-email-form input[type="email"] {
    flex: 1 1 240px;
    padding: 12px 14px;
    border: 1.4px solid #ddd;
    font-size: 14px;
    font-family: inherit;
}
.check-email-note {
    font-size: 12.5px;
    color: #888;
    margin-top: 12px;
}
.check-email-done {
    font-size: 14px;
    color: var(--color-navy);
    line-height: 1.9;
}

/* ---- 結果画面下部の常設CTA（primaryはここのみ） ---- */
.check-cta-bottom {
    text-align: center;
    padding-top: 8px;
}
.check-cta-note {
    margin-top: 14px;
    font-size: 12.5px;
    color: #888;
    letter-spacing: 0.03em;
}

@media screen and (max-width: 640px) {
    .check-intro,
    .check-card {
        padding: 28px 22px;
    }
    .check-score-item {
        padding: 20px 20px;
    }
}
