/* ニュース記事 */
.text-Erea.collapse {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: auto;
    max-height: calc(15px * 1.8 * 3);
    overflow: hidden;
}
.text-Erea.collapsing {
    height: calc(15px * 1.8 * 3);
    min-height: calc(15px * 1.8 * 3);
}
.text-Erea.collapse.show {
    max-height: unset;
    -webkit-line-clamp: unset;
}
@media (max-width: 768px) {
    .text-Erea.collapse {
        -webkit-line-clamp: 6;
        height: auto;
        max-height: calc(10px * 1.3 * 1.8 * 6);
    }
    .text-Erea.collapsing {
        height: calc(10px * 1.3 * 1.8 * 6);
        min-height: calc(10px * 1.3 * 1.8 * 6);
    }
}