@charset "utf-8";

/* ------------------------------
    お知らせ一覧
--------------------------------- */
.news-list__area {
    padding-top: 40px;
    padding-bottom: 100px;
}
.news__list {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.news__item {
    border-bottom: 1px solid var(--color-font);
    padding-top: 1.5em;
    padding-bottom: 1.5em;
}
.news__summary {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1.5em;
}
.news__title {
    font-weight: 500;
}
.news__text {
    margin-top: 1rem;
    font-size: var(--font-size-sp-text);
}
.news__img {
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;

    img {
        border-radius: 10px;
        width: 100%;
        max-width: 500px;
        object-fit: cover;
    }
}
@media (min-width: 768px) {
    .news-list__area {
        padding-top: 60px;
        padding-bottom: 120px;

        margin-left: auto;
        margin-right: auto;
        max-width: 700px;
    }
    .news__list {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .news__item {
        font-size: var(--font-size-sub-midashi);
        padding-top: 3em;
        padding-bottom: 3em;
    }
    .news__text {
        font-size: var(--font-size-pc-text);
    }
    .news__img {
        margin-top: 1.25rem;

        img {
            border-radius: 30px;
            max-width: unset;
        }
    }
}
@media (min-width: 1600px) {
    .news-list__area {
        max-width: 800px;
    }
}
@media (min-width: 2000px) {
    .news-list__area {
        max-width: 1000px;
    }
}