/* =========================================
   悩みごと固定ページ 共通CSS
   配置想定：/css/worry-page.css
   HTML想定：/worries/hypertension.html
========================================= */

:root {
    --worry-orange: #f08300;
    --worry-orange-dark: #d07200;
    --worry-orange-light: #fff3e0;
    --worry-peach: #ffe9cf;
    --worry-beige: #f8f1e5;
    --worry-text: #333333;
    --worry-sub: #666666;
    --worry-border: rgba(240, 131, 0, 0.25);
    --worry-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}

html {
    scroll-behavior: smooth;
}

body.worry-page {
    color: var(--worry-text);
    background: #fff;
}

body.worry-page main {
    padding-top: 0 !important;
}

body.worry-page .pc_br {
    display: block;
}

/* ===== ファーストビュー ===== */
.worry-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background-image: url("../img/main-visual-BH.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.worry-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.22),
            rgba(240, 131, 0, 0.28));
    filter: grayscale(35%);
}

.worry-hero-inner {
    position: relative;
    z-index: 1;
    padding: 72px 16px;
    display: flex;
    justify-content: center;
}

.worry-hero-card {
    width: min(760px, 100%);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 28px;
    padding: 36px 40px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.worry-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--worry-orange);
    font-weight: 800;
    letter-spacing: 0.03em;
}

.worry-eyebrow::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--worry-orange);
}

.worry-hero-title {
    font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
    font-size: clamp(2.1rem, 5vw, 4rem);
    line-height: 1.22;
    letter-spacing: 0.03em;
    font-weight: 900;
    margin: 0 0 18px;
}

.worry-hero-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.9;
    color: #444;
    margin-bottom: 26px;
}

.worry-hero-buttons,
.worry-final-buttons {
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
}

/* ===== お悩み ===== */
.worry-check-section .section-title::after {
    background-color: #fff;
}

.worry-check-list {
    max-width: 920px;
}

.worry-check-list li {
    line-height: 1.6;
}

/* ===== 本文共通 ===== */
.worry-page .paragraph {
    font-size: 1rem;
    line-height: 1.95;
    color: var(--worry-text);
    margin-bottom: 14px;
}

.worry-page .section-subtitle {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.worry-two-column {
    gap: 40px;
}

.worry-note-inline {
    margin-top: 22px;
    padding: 18px 20px;
    background: #fff;
    border-left: 6px solid var(--worry-orange);
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    color: var(--worry-sub);
    line-height: 1.8;
    font-weight: 600;
}

.worry-point-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: var(--worry-shadow);
    border: 1px solid var(--worry-border);
    text-align: center;
}

.worry-point-icon {
    width: 78px;
    height: 78px;
    border-radius: 999px;
    background: var(--worry-orange);
    color: #fff;
    display: inline-grid;
    place-items: center;
    font-size: 32px;
    margin-bottom: 18px;
}

.worry-point-card h3 {
    color: var(--worry-orange);
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-weight: 800;
}

.worry-point-card p {
    color: var(--worry-sub);
    line-height: 1.85;
    text-align: left;
}

/* ===== サポートカード ===== */
.worry-support-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 32px;
}

.worry-support-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px 22px 24px;
    box-shadow: var(--worry-shadow);
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.worry-support-card:hover {
    transform: translateY(-4px);
    border-color: var(--worry-orange);
    box-shadow: 0 16px 36px rgba(232, 130, 12, 0.16);
}

.worry-support-icon {
    width: 64px;
    height: 64px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--worry-orange-light);
    color: var(--worry-orange);
    font-size: 26px;
    margin-bottom: 16px;
}

.worry-support-card h3 {
    color: var(--worry-orange);
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.45;
    margin-bottom: 10px;
}

.worry-support-card p {
    color: var(--worry-sub);
    line-height: 1.8;
    font-size: 0.95rem;
}

.worry-caution-mini {
    margin: 30px auto 0;
    padding: 14px 18px;
    max-width: 820px;
    background: #fff7ea;
    border: 1px solid var(--worry-border);
    border-radius: 14px;
    color: #5a4a3b;
    text-align: center;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== 代表メッセージ ===== */
.worry-greeting-card {
    align-items: flex-start;
}

.worry-greeting-card .greeting-body {
    padding-top: 4px;
}

/* ===== 知識コラム導線 ===== */
.worry-column-box {
    /* display: flex; */
    text-align: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 34px;
    border-radius: 24px;
    background: linear-gradient(135deg, #fff8f0, #ffffff);
    border: 1px solid var(--worry-border);
    box-shadow: var(--worry-shadow);
}

.worry-column-text h2 {
    color: var(--worry-orange);
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 900;
    line-height: 1.45;
    margin-bottom: 10px;
}

.worry-column-text p:last-child {
    color: var(--worry-sub);
    line-height: 1.8;
}

/* ===== CTA ===== */
.worry-final-cta {
    background: #fff;
}

.worry-final-cta .final-cta-inner {
    background: var(--worry-orange);
    color: #fff;
    border-radius: 28px;
    padding: 46px 28px;
    box-shadow: 0 16px 42px rgba(240, 131, 0, 0.22);
}

.worry-final-cta .final-cta-title,
.worry-final-cta .final-cta-text {
    color: #fff;
}

.worry-final-buttons {
    justify-content: center;
    margin-top: 24px;
}

.worry-final-buttons .btn-outline {
    background: #fff;
    color: var(--worry-orange);
    border-color: #fff;
}

.worry-final-buttons .btn-outline:hover {
    background: #fff7ea;
    border-color: #fff7ea;
}

/* ===== 注意書き ===== */
.worry-medical-note-section {
    padding-top: 0;
}

.worry-medical-note {
    background: #fff;
    border-radius: 20px;
    padding: 24px 28px;
    border: 1px solid var(--worry-border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.worry-medical-note h2 {
    color: var(--worry-orange);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.worry-medical-note p {
    color: var(--worry-sub);
    line-height: 1.85;
    margin: 0;
}

/* ===== レスポンシブ ===== */
@media (max-width: 1024px) {
    .worry-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    body.worry-page .pc_br {
        display: none;
    }

    .worry-hero {
        min-height: auto;
        min-height: 500px;
    }

    .worry-hero-inner {
        padding: 52px 16px;
    }

    .worry-hero-card {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .worry-hero-text {
        line-height: 1.8;
    }

    .worry-hero-buttons,
    .worry-final-buttons {
        flex-direction: column;
        height: 120px;
        display: flex;
    }

    .worry-hero-buttons .btn,
    .worry-final-buttons .btn {
        width: 100%;
    }

    .worry-two-column {
        display: block;
    }

    .worry-point-card {
        margin-top: 26px;
    }

    .worry-support-grid {
        grid-template-columns: 1fr;
    }

    .worry-column-box {
        display: block;
        padding: 24px 20px;
    }

    .worry-column-box .btn {
        width: 100%;
        margin-top: 18px;
    }

    .worry-final-cta .final-cta-inner {
        padding: 34px 20px;
        border-radius: 22px;
    }

    .worry-medical-note {
        padding: 20px 18px;
    }
}

@media (max-width: 600px) {
    .worry-check-list li {
        border-radius: 18px;
        font-size: 1rem;
        padding-right: 16px;
    }
}