@charset "UTF-8";

.news_post{
    margin: 1em 0;
    padding-bottom: 1em;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;
    border-bottom: solid 1px var(--border);
    gap: 1.5em;
}

.news_post:last-child{
    padding-bottom: 0;
    border-bottom: unset;
}

.news_cat__area{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em 1.5em;
}

.news_tit{
    padding: 1em 0;
    transition: var(--transition);
}

.news_tit:hover{
    color: var(--blue);
    text-decoration: underline;
}

@media screen and (min-width: 0px) {
  .news_tit{
    width: 100%;
    flex: unset;
   }

   .news_post{
        gap: 0.5em;
   }
}

@media screen and (min-width: 768px) {

}

@media screen and (min-width: 1024px) {
    .news_tit{
        flex: 1;
    }

    .news_post{
        gap: 2.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;
}

.important_c a.news_category{
    background-color: #fad0db;
}

.koho_c a.news_category{
    background-color: #b8e6c7;
}

.event_news_c a.news_category{
    background-color: #fff7b8;
}