@charset "UTF-8";
/* ========================
画像付き カスタム投稿
======================== */

.news_post{
    padding: 1.5rem 0;
    display: flex;
    justify-content: left;
    align-items: center;
    border-bottom: solid 1px var(--border);
    gap: 1.5rem;
}

.news_post:first-child{
    padding-top: 0;
}

.news_post:last-child{
    padding-bottom: 0;
    border-bottom: unset;
}

.news_img{
    display: flex;
    width: 140px;
    height: 140px;
    min-width: 140px;
    min-height: 140px;
    aspect-ratio: 1 / 1;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.voice_img{
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news_img .news_link{
    width: 100%;
    height: 100%;
}

.news_img img,
.voice_img img{
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news_img:hover img{
    transform: scale(1.1);
}

.news_item{
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}

.news_cat__area{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}

.news_tit{
    padding: 1rem 0;
    transition: var(--transition);
}

.news_tit:hover{
    color: var(--blue);
    text-decoration: underline;
}

.news_bt__tit{
    flex-wrap: nowrap;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.news_bt__tit:hover{
    text-decoration: underline;
}

.news_bt__tit .circlearrow.arrow{
    border: solid 1px var(--blue);
    background-color: var(--white);
}

.news_bt__tit .circlearrow.arrow::before{
    background-color: var(--blue);
}

.news_bt__tit .circlearrow.arrow::after{
    border-top: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
}

.news_bt__tit:hover .circlearrow.arrow{
    background-color: var(--blue);
}

.news_bt__tit:hover .circlearrow.arrow::before{
    background-color: var(--white);
}

.news_bt__tit:hover .circlearrow.arrow::after{
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
}

@media screen and (min-width: 0px) {
    .news_tit{
        width: 100%;
    }

    .news_post{
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .news_item{
        width: 100%;
    }

    .news_bt__tit.pc{
        display: none;
    }

    .news_bt__tit.sp{
        margin-top: 1.5rem;
        display: flex;
        justify-content: flex-end;
    }
}

@media screen and (min-width: 768px) {
    .news_post{
        flex-wrap: nowrap;
    }

    .news_item{
        width: calc(100% - 140px);
    }
}

@media screen and (min-width: 1024px) {
    .news_post{
        flex-wrap: nowrap;
        gap: 1.5rem;
    }

    .news_bt__tit.sp{
        display: none;
    }

    .news_bt__tit.pc{
        display: flex;
    }
}

/*====================================
カテゴリー
=====================================*/
a.news_category__link{
    color: var(--blue);
    font-weight: 600;
    line-height: 1;
    flex: unset;
}