@charset "UTF-8";

.news_post{
    margin: 0.75em 0;
    padding-bottom: 0.75em;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;
    border-bottom: solid 1px var(--border);
}

/* .news_post:last-child{
    padding-bottom: 0;
    border-bottom: unset;
} */

.news_cat__area{
    display: flex;
    flex-wrap: nowrap;
    justify-content: left;
    gap: 1em;
}

.news_tit{
    padding: 0.75em 0;
    flex: 1;
}

.news_tit:hover{
    color: var(--blue);
    text-decoration: underline;
    text-decoration-color: var(--blue);
}

@media screen and (min-width: 0px) {
  .news_tit{
    width: 100%;
    flex: unset;
   }

   .news_post{
        gap: 0em;
    }
}

@media screen and (min-width: 768px) {
    
}

@media screen and (min-width: 1024px) {
    .news_post{
        gap: 1.5em;
    }

    .news_tit{
        padding: 1em 0;
        flex: 1;
    }

    .news_post{
        gap: 1.5em;
    }

}

/*====================================
カテゴリー
=====================================*/
a.news_category{
    padding: 3px 10px;
    min-width: 100px;
    display: flex;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    background-color: #bce1f7;
    font-size: 0.85em;
    font-weight: 600;
    line-height: 1;
    flex: unset;
}

a.news_category.c_important{
    background-color: #fad0db;
}

a.news_category.c_koho{
    background-color: #b8e6c7;
}