@charset "utf-8";

.blog_shell {
    color: var(--black);
    background: #fff;
}

.blog_container {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

.blog_hero {
    padding: 96px 0 76px;
    background:
        radial-gradient(circle at 88% 18%, rgba(60, 86, 173, .14), transparent 30%),
        linear-gradient(135deg, #f7f8fc 0%, #eef1fa 100%);
    border-bottom: 1px solid var(--grey1);
}

.blog_eyebrow {
    margin-bottom: 16px;
    color: var(--brand3);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: .16em;
}

.blog_hero h1,
.blog_message h1 {
    margin: 0;
    color: var(--brand);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: -.05em;
}

.blog_hero_text {
    margin-top: 22px;
    color: var(--grey5);
    font-size: 18px;
    line-height: 1.75;
}

.blog_list_body {
    padding: 54px 0 110px;
}

.blog_categories {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 42px;
}

.blog_categories a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 17px;
    border: 1px solid var(--grey1);
    border-radius: 999px;
    background: #fff;
    color: var(--grey5);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.blog_categories a:hover,
.blog_categories a:focus-visible,
.blog_categories a.is-current {
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
}

.blog_filter_notice {
    margin: -20px 0 32px;
    padding: 14px 18px;
    border-radius: 8px;
    background: #f6f7fb;
    color: var(--grey5);
    font-size: 14px;
    line-height: 1.6;
}

.blog_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px 28px;
}

.blog_card {
    min-width: 0;
}

.blog_card_link {
    display: block;
    height: 100%;
}

.blog_card_media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    background: linear-gradient(135deg, #e8ebf7, #f7f8fc);
}

.blog_card_media img {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform .35s ease;
}

.blog_card_link:hover .blog_card_media img {
    transform: scale(1.025);
}

.blog_card_placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--brand2);
    font-size: 15px;
    font-weight: 700;
}

.blog_card_body {
    padding: 19px 3px 0;
}

.blog_card_category,
.blog_article_category {
    color: var(--brand3);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
}

.blog_card_title {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 9px;
    color: var(--black);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.42;
    letter-spacing: -.035em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.blog_card_link:hover .blog_card_title,
.blog_card_link:focus-visible .blog_card_title {
    color: var(--brand3);
}

.blog_card_summary {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 10px;
    color: var(--grey5);
    font-size: 15px;
    line-height: 1.68;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.blog_card_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 14px;
    margin-top: 17px;
    color: var(--grey4);
    font-size: 13px;
    line-height: 1.4;
}

.blog_card_meta time::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 3px;
    margin: 0 10px 3px 0;
    border-radius: 50%;
    background: var(--grey3);
}

.blog_empty {
    padding: 100px 20px;
    border: 1px solid var(--grey1);
    border-radius: 16px;
    background: #fafbfe;
    text-align: center;
}

.blog_empty h2 {
    color: var(--brand);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.4;
}

.blog_empty p {
    margin-top: 10px;
    color: var(--grey5);
    font-size: 15px;
    line-height: 1.6;
}

.blog_pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 70px;
    font-size: 14px;
}

.blog_page_numbers {
    display: flex;
    gap: 5px;
}

.blog_page_numbers a,
.blog_page_numbers strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 700;
}

.blog_page_numbers strong {
    background: var(--brand);
    color: #fff;
}

.blog_page_numbers a:hover,
.blog_page_numbers a:focus-visible {
    background: var(--brand6);
    color: var(--brand);
}

.blog_page_direction {
    color: var(--grey5);
    font-weight: 600;
}

.blog_page_direction.is-disabled {
    color: var(--grey2);
}

.blog_preview_notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 20px;
    background: #fff3cd;
    color: #654f08;
    font-size: 14px;
    line-height: 1.5;
}

.blog_preview_notice strong {
    font-weight: 800;
}

.blog_article {
    padding: 64px 20px 100px;
}

.blog_article_narrow {
    width: min(820px, 100%);
    margin: 0 auto;
}

.blog_breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--grey4);
    font-size: 13px;
    line-height: 1.5;
}

.blog_breadcrumb a:hover,
.blog_breadcrumb a:focus-visible {
    color: var(--brand3);
}

.blog_article_header {
    padding: 54px 0 42px;
}

.blog_article_header h1 {
    margin-top: 15px;
    color: var(--black);
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -.055em;
}

.blog_article_lead {
    margin-top: 25px;
    color: var(--grey5);
    font-size: 19px;
    line-height: 1.75;
}

.blog_article_people {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 34px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--grey1);
}

.blog_article_people > div {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.blog_article_people dt {
    color: var(--grey4);
    font-size: 13px;
    font-weight: 700;
}

.blog_article_people dd {
    color: var(--black);
    font-size: 14px;
    line-height: 1.5;
}

.blog_article_people strong {
    font-weight: 800;
}

.blog_article_people span {
    margin-left: 5px;
    color: var(--grey5);
}

.blog_article_dates {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 14px;
    color: var(--grey4);
    font-size: 13px;
    line-height: 1.5;
}

.blog_article_hero {
    overflow: hidden;
    width: min(1200px, 100%);
    margin: 0 auto 65px;
    border-radius: 22px;
    background: #f1f3f8;
}

.blog_article_hero img {
    display: block;
    width: 100%;
    height: auto !important;
}

.blog_article_content {
    color: #35363a;
    font-size: 17px;
    line-height: 1.9;
    overflow-wrap: anywhere;
}

.blog_article_content > * + * {
    margin-top: 22px;
}

.blog_article_content h2 {
    margin-top: 62px;
    color: var(--brand);
    font-size: 30px;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: -.04em;
}

.blog_article_content h3 {
    margin-top: 42px;
    color: var(--black);
    font-size: 23px;
    font-weight: 800;
    line-height: 1.45;
}

.blog_article_content strong,
.blog_article_content b {
    font-weight: 800;
}

.blog_article_content em,
.blog_article_content i {
    font-style: italic;
}

.blog_article_content a {
    color: var(--brand3);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog_article_content ul,
.blog_article_content ol {
    padding-left: 1.45em;
}

.blog_article_content ul,
.blog_article_content ul li {
    list-style: disc;
}

.blog_article_content ol,
.blog_article_content ol li {
    list-style: decimal;
}

.blog_article_content li + li {
    margin-top: 7px;
}

.blog_article_content blockquote {
    padding: 22px 25px;
    border-left: 4px solid var(--brand3);
    background: #f6f7fb;
    color: var(--brand2);
}

.blog_article_content img {
    display: block;
    max-width: 100%;
    height: auto !important;
    margin: 34px auto;
    border-radius: 12px;
}

.blog_article_content figure {
    margin: 34px 0;
    max-width: 100%;
}

.blog_article_content figure img {
    margin: 0 auto;
    width: 100%;
}

.blog_article_content figcaption {
    margin-top: 12px;
    color: var(--brand2);
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
}

.blog_article_content table {
    display: block;
    overflow-x: auto;
    width: 100%;
    border-collapse: collapse;
}

.blog_article_content th,
.blog_article_content td {
    min-width: 120px;
    padding: 12px;
    border: 1px solid var(--grey2);
    text-align: left;
}

.blog_article_content th {
    background: #f6f7fb;
    font-weight: 800;
}

.blog_sources {
    margin-top: 72px;
    padding: 28px 30px;
    border-radius: 14px;
    background: #f7f8fb;
}

.blog_sources h2 {
    color: var(--black);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.4;
}

.blog_sources ol {
    margin-top: 15px;
    padding-left: 20px;
}

.blog_sources li {
    color: var(--grey5);
    font-size: 14px;
    line-height: 1.7;
    list-style: decimal;
    overflow-wrap: anywhere;
}

.blog_sources li + li {
    margin-top: 7px;
}

.blog_sources a {
    color: var(--brand3);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog_medical_notice {
    margin-top: 24px;
    padding: 19px 22px;
    border: 1px solid var(--grey1);
    border-radius: 12px;
    color: var(--grey5);
    font-size: 13px;
    line-height: 1.7;
}

.blog_article_actions,
.blog_message_actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 42px;
}

.blog_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 11px 24px;
    border: 1px solid var(--grey2);
    border-radius: 999px;
    background: #fff;
    color: var(--grey5);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.blog_button:hover,
.blog_button:focus-visible {
    border-color: var(--brand);
    color: var(--brand);
}

.blog_button_primary {
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
}

.blog_button_primary:hover,
.blog_button_primary:focus-visible {
    border-color: var(--brand3);
    background: var(--brand3);
    color: #fff;
}

.blog_related {
    padding: 82px 0 105px;
    border-top: 1px solid var(--grey1);
    background: #f7f8fb;
}

.blog_section_heading {
    margin-bottom: 34px;
}

.blog_section_heading h2 {
    color: var(--brand);
    font-size: 32px;
    font-weight: 900;
    line-height: 1.35;
}

.blog_related .blog_card_media {
    background: #e9ebf3;
}

.blog_message {
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--hd_height));
    padding: 100px 0;
    background: #f7f8fc;
}

.blog_message_inner {
    text-align: center;
}

.blog_message_inner > p:not(.blog_eyebrow) {
    margin-top: 20px;
    color: var(--grey5);
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .blog_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .blog_container {
        width: min(100% - 32px, 1240px);
    }

    .blog_hero {
        padding: 62px 0 52px;
    }

    .blog_hero h1,
    .blog_message h1 {
        font-size: 36px;
    }

    .blog_hero_text {
        margin-top: 17px;
        font-size: 16px;
        line-height: 1.7;
    }

    .blog_pc_only {
        display: none;
    }

    .blog_list_body {
        padding: 35px 0 72px;
    }

    .blog_categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        width: calc(100% + 16px);
        margin-bottom: 31px;
        padding: 0 16px 7px 0;
        -webkit-overflow-scrolling: touch;
    }

    .blog_categories a {
        flex: 0 0 auto;
        min-height: 39px;
        padding: 8px 14px;
        font-size: 13px;
    }

    .blog_grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .blog_card_title {
        font-size: 20px;
    }

    .blog_card_summary {
        -webkit-line-clamp: 2;
    }

    .blog_pagination {
        gap: 10px;
        margin-top: 52px;
    }

    .blog_page_numbers a,
    .blog_page_numbers strong {
        width: 34px;
        height: 34px;
    }

    .blog_page_direction {
        font-size: 13px;
    }

    .blog_preview_notice {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .blog_article {
        padding: 38px 16px 68px;
    }

    .blog_article_header {
        padding: 38px 0 30px;
    }

    .blog_article_header h1 {
        font-size: 34px;
        line-height: 1.3;
    }

    .blog_article_lead {
        margin-top: 19px;
        font-size: 17px;
    }

    .blog_article_people {
        display: grid;
        gap: 10px;
        margin-top: 23px;
        padding-top: 19px;
    }

    .blog_article_hero {
        margin-bottom: 43px;
        border-radius: 12px;
    }

    .blog_article_content {
        font-size: 16px;
        line-height: 1.85;
    }

    .blog_article_content h2 {
        margin-top: 48px;
        font-size: 25px;
    }

    .blog_article_content h3 {
        margin-top: 34px;
        font-size: 21px;
    }

    .blog_sources {
        margin-top: 54px;
        padding: 22px 20px;
    }

    .blog_related {
        padding: 62px 0 75px;
    }

    .blog_section_heading h2 {
        font-size: 27px;
    }
}
