@charset "UTF-8";

.news_post{
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    display: flex;
    flex-wrap: nowrap;
    justify-content: left;
    align-items: flex-start;
    border-bottom: solid 1px var(--border);
    gap: 1.5rem;
}

.news_post:last-child{
    padding-bottom: 0;
    border-bottom: unset;
}

.news_cat__area{
    max-width: 200px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.news_post time{
    font-family: var(--mincho);
    color: var(--blue);
}

.news_category__item{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.news_tit{
    width: 100%;
    transition: var(--transition);
}

.news_tit:hover{
    color: var(--blue);
    text-decoration: underline;
}

.news .more_bt{
    border-color: var(--blue);
    color: var(--blue);
}

@media screen and (min-width: 0px) {
   .news_post{
        gap: 0.5rem;
   }
}

@media screen and (min-width: 1024px) {
    .news_post{
        gap: 2.5rem;
    }    

}

/*====================================
カテゴリー
=====================================*/
a.news_category{
    padding: 4px 10px;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray);
    font-family: var(--mincho);
    font-size: 0.85em;
    font-weight: 500;
    line-height: 1;
    flex: unset;
}