@charset "UTF-8";


/* ---------------------
news 一覧
--------------------- */
.nav-news_cate>.flex {
    gap: 1rem;
    margin-bottom: 2rem;
}

.nav-news_cate .cate {
    letter-spacing: 0.1em;
    text-decoration: none;
    font-size: 0.875rem;
    color: #a5a5a5;
    position: relative;
    border: none;
}

.nav-news_cate .cate:before {
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -1rem;
    bottom: auto;
    margin: 0 auto;
    width: 10px;
    height: 6px;
    border-radius: 14px 14px 0 0;
    background: var(--c-blue);
}

.nav-news_cate .cate.active,
.nav-news_cate .cate:hover {
    border-bottom: solid 1px;
    color: var(--c-blue);
}

.nav-news_cate .cate.active::before,
.nav-news_cate .cate:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.post_list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.post_list .post_list-item {
    border-bottom: solid 1px #ECECEC;
}

.post_list .post_list-item>.flex {
    align-items: baseline;
    gap: 1rem 3%;
    align-items: flex-start;
}

.post_list .post_list-item .post_list-link {
    text-decoration: none;
    color: var(--c-black);
    padding: 1rem .5rem;
}

.post_list .post_list-item .thumbnail {
    width: 30%;
    aspect-ratio: 1/0.667;
    border: solid 1px #d9d9d9;
}

.post_list .post_list-item .txt {
    width: 67%;
    gap: .5rem;
    padding-bottom: 1rem;
}

time {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: #a5a5a5;
}

.cate {
    border: 1px solid #a5a5a5;
    padding: 1px 5px;
    font-size: 0.75rem;
}

.post_list .post_list-item .title {
    width: 100%;
    display: block;
    font-size: 0.875rem;
}

@media (min-width: 768px) {

    .post_list .post_list-item>.flex {
        align-items: unset;
    }

    .post_list .post_list-item .txt {
        align-content: center;
        padding-right: 65px;
    }

    .post_list .post_list-item .post_list-link {
        padding: 2vw;
        position: relative;
    }

    .post_list .post_list-item .post_list-link::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: 4vw;
        margin: auto 0;
        width: 40px;
        height: 7px;
        background-image: url(../img/common/arrow.svg);
        background-repeat: no-repeat;
        background-size: contain;
        filter: invert(77%) sepia(4%) saturate(13%) hue-rotate(327deg) brightness(89%) contrast(79%);
        transition: all 0.3s ease;
    }

}

@media (min-width: 1024px) {
    .post_list .post_list-item .post_list-link {
        padding: 1rem;
    }

    .post_list .post_list-item .post_list-link:hover {
        background: #EBF0F4;
    }

    .post_list .post_list-item .post_list-link:hover::after {
        right: 2vw;
    }

    .post_list .post_list-item .thumbnail {
        width: 25%;
    }

    .post_list .post_list-item .txt {
        width: 72%;
    }
}

/* ---------------------
news 詳細
--------------------- */
.news-detail {
    margin-top: 4rem;
}

.news-detail .cate {
    margin-right: .5rem;
}

.news-detail .title {
    font-size: 1.375rem;
    font-weight: 500;
    margin: 1rem 0 1.5rem;
    padding: 0 0 1.5rem;
    border-bottom: solid 1px #D9D9D9;
}

.news-detail .page-contents-inner {
    border-bottom: solid 1px #D9D9D9;
    padding-bottom: 2rem;
}

.news-detail .block-btn {
    margin-top: 2rem;
}

.news-detail .contents h3 {
    font-size: 1.25rem;
    padding: 1rem 0 1rem 30px;
    border-bottom: solid 1px #D9D9D9;
    position: relative;
}

.news-detail .contents h3:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    margin: auto 0;
    width: 11px;
    height: 22px;
    border-radius: 0 22px 22px 0;
    background: var(--c-blue);
}

.news-detail .contents h4 {
    font-size: 1.125rem;
    padding: 0 0 0 25px;
    border-left: solid 5px var(--c-blue);
}

@media (min-width: 1024px) {
    .news-detail .title {
        font-size: 2rem;
        margin: 1rem 0 3.5rem;
        padding: 0 0 2rem;
    }

    .news-detail .page-contents-inner {
        width: 80%;
        max-width: 1170px;
        margin: 0 auto;
    }

    .news-detail .contents {
        max-width: 768px;
        margin: 0 auto;
    }

    .news-detail .contents h3 {
        font-size: 1.5rem;
    }

    .news-detail .contents h4 {
        font-size: 1.25rem;
    }
}