@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;
}

.site_name{
    padding: 2px 9px;
    display: flex;
    border-radius: 3px;
    align-items: center;
    justify-content: center;
    border: solid 1px var(--border);
    background-color: var(--white);
    font-size: 0.85em;
    line-height: 1;
}

@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: 1.5em;
    }

}

/*====================================
採用 お知らせ
=====================================*/
.tab_recruit .news_post{
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;
    /* gap: 1.5em; */
}

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

.tab_recruit .news_post__area{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.tab_recruit .news_post__area___cat {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75em;
}

.tab_recruit .news_post__area___title {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.5em;
}

.tab_recruit .news_tit{
    padding: 1em 0;
	color: var(--black);
    /* flex: 1; */
}

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

@media screen and (max-width: 768px) {
	.tab_recruit .news_post__area___title {
        align-items: flex-start;
        gap: 0;
        flex-direction: column;
    }
}

/*====================================
カテゴリー
=====================================*/
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;
}

.tab_recruit .shisetsu a.news_category {
    border: none;
    background-color: #e9ebf2;
    color: var(--black);
    border-radius: 2px;
}