@charset "utf-8";


/*============================================================
main
============================================================*/
/* news */
.news__wrapper {
    background-color: var(--colorSecondary);
    padding-top: 50px;
}

.title--secondaryColor span::after {
    background: var(--colorPrimary);
}

.newsArticle {
    background-color: var(--colorSecondary);
    padding: 30px 8.5% 0 8.5%;
}

.newsArticle:last-of-type {
    padding: 30px 8.5%;
}

.newsTopic {
    font-size: 1.5rem;
    font-weight: 600;
}

.newsTopic time {
    margin-right: 10px;
}

.newsTxt {
    font-size: 1.2rem;
    text-align: justify;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 10px;
}

.brPc {
    display: none;
}

/* news pc */
@media screen and (min-width: 769px) {
    .newsArticle {
        padding: 80px 8.5% 0 8.5%;
    }

    .newsArticle:last-of-type {
        padding: 80px 8.5%;
    }

    .newsTopic {
        font-size: 2.0rem;
    }

    .newsTxt {
        font-size: 1.5rem;
        margin-top: 15px;
    }

    .brPc {
        display: block;
    }

}/* px 769px */