@charset "utf-8";

/*==================================================
sp
================================================== */

/* ========================================================================
[sp]lead
========================================================================= */
.benefit-page__lead {
    margin: calc(-16 * var(--vw-unit)) auto calc(80 * var(--vw-unit));
    width: calc(343 * var(--vw-unit));
}

.benefit-page__lead p {
    color: #000;
    font-family: var(--font-sans-serif);
    font-size: calc(14 * var(--vw-unit));
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
}


/* ========================================================================
[sp]category-list
========================================================================= */

.category-list {
    margin: 0 auto calc(80 * var(--vw-unit));
    width: calc(343 * var(--vw-unit));
}

.category-list dt {
    margin-bottom: calc(24 * var(--vw-unit));
    color: #000;
    font-family: var(--font-sans-serif);
    font-size: calc(12 * var(--vw-unit));
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}

.category-list li {
    list-style: none;
}

.category-list li+li {
    margin-top: calc(16 * var(--vw-unit));
}

.category-list li a {
    text-decoration: none;
    color: #0F3752;
    font-family: "Noto Sans JP";
    font-size: calc(16 * var(--vw-unit));
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    display: block;
    position: relative;
    padding: 0 0 0 calc(24 * var(--vw-unit));
}

.category-list li a::before {
    content: "";
    width: calc(10 * var(--vw-unit));
    height: calc(7 * var(--vw-unit));
    background-color: #0F78C0;
    -webkit-mask: var(--icon-arrow-head-down);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask: var(--icon-arrow-head-down);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100% 100%;
    position: absolute;
    top: 0.85em;
    left: 0;
    transform: translateY(-50%);
}


/* ========================================================================
[sp]benefit-category
========================================================================= */
.benefit-category {
    margin: 0 auto;
    width: calc(343 * var(--vw-unit));
}

.benefit-category+.benefit-category {
    margin-top: calc(64 * var(--vw-unit));
}

.benefit-category--health-service {
    margin-bottom: calc(100 * var(--vw-unit));
}

.benefit-category__title {
    margin-bottom: calc(40 * var(--vw-unit));
    color: #000;
    font-family: var(--font-sans-serif);
    font-size: calc(24 * var(--vw-unit));
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
}


/* ========================================================================
[sp]benefit-item
========================================================================= */

.benefit-item {
    scroll-margin-top: calc(70 * var(--vw-unit));
    padding-bottom: calc(24 * var(--vw-unit));
    border-bottom: calc(1 * var(--vw-unit)) solid #ccc;
}


.benefit-item+.benefit-item {
    margin-top: calc(24 * var(--vw-unit));
}


.benefit-item__title {
    margin-bottom: calc(24 * var(--vw-unit));
    color: #000;
    font-family: var(--font-sans-serif);
    font-size: calc(16 * var(--vw-unit));
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
}

.benefit-item__text figure {
    margin-bottom: calc(24 * var(--vw-unit));
}

.benefit-item__text figure img {
    width: 100%;
    height: auto;
}


.benefit-item__text p {
    color: #000;
    font-family: var(--font-sans-serif);
    font-size: calc(14 * var(--vw-unit));
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}

.benefit-item__text p+p {
    margin-top: calc(24 * var(--vw-unit));
}

.benefit-item__text+.benefit-table {
    margin-top: calc(24 * var(--vw-unit));
}

.benefit-table th {
    margin-bottom: calc(4 * var(--vw-unit));
    background: #0CA4CF;
    color: #FFF;
    font-family: var(--font-sans-serif);
    font-size: calc(14 * var(--vw-unit));
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    display: block;
    text-align: left;
    padding: calc(16 * var(--vw-unit)) calc(20 * var(--vw-unit));
}

.benefit-table td {
    color: #000;
    font-family: var(--font-sans-serif);
    font-size: calc(14 * var(--vw-unit));
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    display: block;
    text-align: left;
    padding: calc(20 * var(--vw-unit)) calc(20 * var(--vw-unit));
    background: #EBF5F7;
}


/*==================================================
pc
================================================== */
@media print,
screen and (min-width:768px) {

    html,
    body {
        overflow-x: clip;
    }


    /* ========================================================================
    [pc]lead
    ========================================================================= */
    .benefit-page__lead {
        margin: -20px auto 100px;
        width: var(--pc-container);
    }

    .benefit-page__lead p {
        color: #000;
        font-family: var(--font-sans-serif);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 180%;
    }



    /* ========================================================================
    [pc]benefit-container
    ========================================================================= */
    .benefit-container {
        margin: 0 auto 100px;
        width: var(--pc-container);
        display: flex;
        justify-content: space-between;
    }


    /* ========================================================================
    [pc]category-list
    ========================================================================= */

    .category-list {
        margin: 0;
        width: 287px;
        width: 24.65635739%;
        position: sticky;
        top: 116px;
        align-self: flex-start;
        max-height: calc(100vh - 116px);
        overflow-y: auto;
    }

    .category-list dt {
        margin-bottom: 24px;
        color: #000;
        font-family: var(--font-sans-serif);
        font-size: 28px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
    }

    .category-list li {
        list-style: none;
    }

    .category-list li+li {
        margin-top: 16px;
    }

    .category-list li a {
        text-decoration: none;
        color: #0F3752;
        font-family: "Noto Sans JP";
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 170%;
        display: block;
        position: relative;
        padding: 0 0 0 24px;
    }

    .category-list li a::before {
        content: "";
        width: 10px;
        height: 7px;
        background-color: #0F78C0;
        -webkit-mask: var(--icon-arrow-head-down);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        -webkit-mask-size: 100% 100%;
        mask: var(--icon-arrow-head-down);
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: 100% 100%;
        position: absolute;
        top: 0.85em;
        left: 0;
        transform: translateY(-50%);
    }


    /* ========================================================================
    [pc]benefit-category
    ========================================================================= */
    .benefit-category-group {
        margin: 0;
        width: 837px;
        width: 71.90721649%;
    }

    .benefit-category {
        margin: 0;
        width: 837px;
        width: 71.90721649%;
    }

    .benefit-category+.benefit-category {
        margin-top: 80px;
    }

    .benefit-category--health-service {
        margin-bottom: 0;
    }

    .benefit-category__title {
        margin-bottom: 40px;
        color: #000;
        font-family: var(--font-sans-serif);
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: 170%;
    }


    /* ========================================================================
    [pc]benefit-item
    ========================================================================= */
    .benefit-item {
        scroll-margin-top: 116px;
        padding-bottom: 32px;
        border-bottom: 1px solid #ccc;
    }

    .benefit-item+.benefit-item {
        margin-top: 16px;
    }



    .benefit-item__title {
        margin-bottom: 24px;
        color: #000;
        font-family: var(--font-sans-serif);
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 180%;
    }

    .benefit-item__text.benefit-item__text--with-image {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .benefit-item__text figure {
        margin-bottom: 0;
        max-width: 400px;
        width: 47.78972521%;
    }


    .benefit-item__text p {
        color: #000;
        font-family: var(--font-sans-serif);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
    }

    .benefit-item__text.benefit-item__text--with-image p {
        width: calc(100% - 51.61290323%);
    }


    .benefit-item__text p+p {
        margin-top: 12px;
    }

    .benefit-table {
        width: 100%;
    }


    .benefit-item__text+.benefit-table {
        margin-top: 12px;
    }

    .benefit-table th {
        margin-bottom: 4px;
        background: #0CA4CF;
        color: #FFF;
        font-family: var(--font-sans-serif);
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 170%;
        display: table-cell;
        text-align: left;
        padding: 16px 20px;
        width: 23%;
    }

    .benefit-table td {
        color: #000;
        font-family: var(--font-sans-serif);
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 170%;
        display: table-cell;
        text-align: left;
        padding: 16px 20px;
        background: #EBF5F7;
        width: 77%;
    }


}
