/*
========================
news-item
========================
*/
.news_item {
    width: 100%;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    padding: 16px 8px;
    gap: 8px;
    box-sizing: border-box;
}

.news_item:not(:last-child) {
    border-radius: 1px;
    border-bottom: 2px solid var(--wp--custom--color--sky--300);
}

.news_text_box {
    display: flex;
    gap: 12px;
}

.news_date {
    color: #232936;
    font-family: "Noto Sans JP";
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    white-space: nowrap;
}

.news_tag {
    padding: 4px 12px;
    box-sizing: border-box;
    background-color: var(--wp--custom--color--blue--400);
    color: var(--wp--custom--color--gray--50);
    font-family: "Noto Sans JP";
    font-size: 10px;
    text-align: center;
    font-weight: 700;
    border-radius: 999px;
    white-space: nowrap;
}

.news_title {
    color: var(--color-font-black, #232936);
    font-family: "Noto Sans JP";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: var(--2xl, 16px);
}

@media screen and (min-width:1280px) {
    .news_box {
        width: 100%;
    }

    .news_list {
        padding: 0;
    }

    .news_item {
        align-items: center;
        flex-direction: row;
        padding: 32px 16px;
        gap: 20px;
    }

    .news_text_box {
        align-items: center;
        gap: 20px;
    }

    .news_date {
        font-size: 16px;
        line-height: 20px;
    }

    .news_tag {
        padding: 6px 24px;
        font-size: 10px;
    }

    .news_title {
        font-size: 16px;
        line-height: 24px;
    }
}