/* NEWS一覧 */

#news-list {
    max-width: 980px;
    margin: 0 auto;
    padding: 120px 20px;
}

#news-list .item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

#news-list .item img {
    width: 200px;
    height: 140px;
    object-fit: cover;
}

.item-cat {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 30px;
    color: #fff;
    font-size: 0.8rem;
}

#news-list .cat-news {
    background: #e8b5c8;
}

/* EVENT */
.cat-event {
    background: #c7b8e3;
}

/* BLOG */
.cat-blog {
    background: #d9c7a1;
}

#news-list .item-content {
    flex: 1;
}

#news-list .item-title {
    font-weight: bold;
    font-size: 18px;
}

#news-list .item-excerpt {
    font-size: 14px;
}


#news-list .item-date {
    font-size: 12px;
    color: #999;
}

/* スマホ */

@media (max-width:768px) {

    #news-list .item {
        flex-direction: column;
    }

    #news-list .item img {
        width: 100%;
        height: auto;
    }

}