/* section-news.php — .news-section, .news-list */

/* --- Newsセクション --- */
.news-section {
    padding: 40px 16px;
    background-color: #fff;
}
.news-section-title {
    width: fit-content;
    margin: 0 auto 32px;
    text-align: center;
    line-height: 1;
}
.news-section-title img {
    display: block;
}
.news-list {
    margin-bottom: 32px;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    padding: 0;
    list-style: none;
}
.news-list__item:not(:last-child) {
    border-bottom: 1px solid #000;
}
.news-list__link {
    display: block;
    padding: 16px 54px 16px 0;
    position: relative;
    text-decoration: none;
    color: inherit;
}
.news-list__link time {
    display: block;
    margin-bottom: 4px;
    background-color: #000;
    font-size: 13px;
    line-height: 1;
    font-style: italic;
    font-weight: 200;
    color: #fff;
    width: fit-content;
    padding: 4px 6px;
    transition: background 0.2s ease;
}
.news-list__link p {
    margin: 0;
    font-size: 17px;
    line-height: 170%;
    transition: color 0.2s ease;
}
.news-list__link:hover {
    opacity: 1;
}
.news-list__link:hover time {
    background: var(--accent-blue);
}
.news-list__link:hover p {
    color: var(--accent-blue);
}
.news-list__link::after {
    content: "";
    display: block;
    width: 36px;
    height: 36px;
    background: var(--img-chevron-right) center center no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.news-more {
    display: flex;
    justify-content: center;
}
