@charset "utf-8";

/* ------------------------------------------
                    共通
---------------------------------------------*/

/* ------------------------------------------
                    CATEGORY
---------------------------------------------*/
.news_items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.news_item {
    display: flex;
    gap: 60px;
    align-items: center;
    border-bottom: 1px dotted #ccc;
}
.news_item-img {
    width: 92px;
    height: 92px;
}
.news_item-img img {
    object-fit: fill;
    width: 100%;
    height: 100%;
}
.news_item-txt {
    display: flex;
    align-items: center;
    gap: 60px;
}
@media screen and (max-width: 767px) {
    .news_item {
        gap: 15px;
    }
    .news_item-txt {
        align-items: unset;
        flex-direction: column;
        gap: 15px;
    }
    
}
/* ------------------------------------------
                    ENTRIES
---------------------------------------------*/
/* ------------------------------------------
                    DATE
---------------------------------------------*/