@charset "UTF-8";

.news_list article{
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: solid 1px var(--border);
}

.news_list article:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: unset;
}

.news_post{
    display: flex;
    justify-content: left;
    align-items: flex-start;
    gap: 1.5rem;
}

.news_cat__area{
    width: 200px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.news_tit{
    width: 100%;
    transition: var(--transition);
}

.news_tit:hover{
    color: var(--green);
    text-decoration: underline;
}

@media screen and (min-width: 0px) {

   .news_post{
        gap: 0.5rem;
        flex-wrap: wrap;
   }
}

@media screen and (min-width: 768px) {
    .news_post{
        flex-wrap: nowrap;
    } 
}

@media screen and (min-width: 1024px) {
    .news_post{
        gap: 2.5rem;
    }    

}

/*====================================
カテゴリー
=====================================*/
a.news_category{
    padding-top: 3px;
    width: 100%;
    min-width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--green);
    font-size: 0.85em;
    line-height: 1;
    letter-spacing: 1px;
}