/* health用 */

.column-title {
    margin: 3rem auto 0;
}

.breadcrumbs-list {
    display: flex;
    padding: 0 4rem;
}

.breadcrumbs-list-item {
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    padding: 1rem 0;
}

.breadcrumbs-list-item::after {
    display: inline-block;
    content: ">";
    padding: 0 1rem 0 1rem;
    margin-bottom: .25rem;
}

.breadcrumbs-list-item:last-of-type::after {
    content: unset;
}

.health-ctr {
    margin-top: 5.5rem;
}

.health-ctr-ttl {
    font-size: 2.8rem;
    font-weight: bold;
}

.health-ctr-ttl-sub {
    font-size: 2.2rem;
}

.health-ctr-txt {
    font-size: 1.8rem;
}

.health-column-img {
    margin-bottom: 6rem;
}

.column-table {
    width: 100%;
    border-collapse: collapse;
    margin: 3rem auto 1rem;
}

.column-table caption {
    text-align: left;
    font-size: 1.8rem;
    font-weight: bold;
}

.column-table th,
.column-table td {
    padding: .8rem;
    border: 1px solid rgb(54, 54, 54);
    text-align: left;
    font-size: 1.5rem;
    width: 33.3%;
}

.column-table th {
    background-color: #ddd;
    font-size: 1.7rem;
    font-weight: bold;
    text-align: center;
}

.scroll-txt {
    text-align: center;
}

.scroll-txt.sp-only {
    font-size: 1.6rem;
    display: none;
}

/* 画像アニメーション */
.image-wrapper {
    background-color: #f2fff1;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
}

.masked-image {
    width: 100%;
    display: block;
    opacity: 0;
    mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 1) 0.5%,
            rgba(0, 0, 0, 1) 100%);
    mask-size: 0% 100%;
    mask-repeat: no-repeat;
    transform: translateX(-20px);
    filter: blur(2px) brightness(.95);
    transition:
        mask-size 3s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 4s cubic-bezier(0.25, 1, 0.5, 1),
        transform 3s cubic-bezier(0.25, 1, 0.5, 1),
        filter 3s cubic-bezier(0.25, 1, 0.5, 1);
}

.masked-image.visible {
    opacity: 1;
    mask-size: 100% 100%;
    transform: translateX(0);
    filter: blur(0) brightness(1);
}


/* コラムseries */

.column-box {
    background-color: #f7f3f3;
}

.column-series {
    margin: 5rem auto;
    /*width: 900px;*/
    width: 90%;
    padding: 2rem 0;
}

.column-series p {
    color: #525252;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.series-list {
    display: flex;
    padding: 0 1rem;
}

.series-item {
    width: 300px;
    margin: 0 10PX;
}

.series-item span {
    display: block;
    font-size: 1.3rem;
    letter-spacing: -.04em;
    margin-top: 1rem;
}

.series-item img {}

.pc-img-only {
    display: block;
}

.sp-img-only {
    display: none;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
    .health-ctr-ttl {
        font-size: 2rem;
        font-weight: bold;
    }

    .health-ctr-ttl-sub {
        font-size: 1.8rem;
    }

    .health-ctr-txt {
        font-size: 1.8rem;
    }

}

@media screen and (max-width: 600px) {
    .main {
        margin: 10rem auto 0;
    }

    .breadcrumbs-list {
        padding: 0 1rem;
    }

    .breadcrumbs-list-item {
        font-size: 1.5rem;
    }

    .column-title {
        margin: 2rem auto 0;
    }

    .column-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .scroll-txt.sp-only {
        display: block;
    }

    .health-column-img {
        margin-bottom: 4rem;
    }

    .series-item {
        width: 100%;
    }

    .pc-img-only {
        display: none;
    }

    .sp-img-only {
        display: block;
    }
}