@charset "UTF-8";

/* ------------------------------- 
お知らせ一覧ページ
------------------------------- */
/* カテゴリー一覧 */
.nav-news_cate {
    margin-bottom: 3rem;
}

.nav-news_cate .cate {
    text-decoration: none;
    color: #BBBBBB;
}

.nav-news_cate .active {
    color: var(--c-green);
    font-weight: 700;
    text-decoration: underline;
}

/* 記事一覧 */
.post_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.post_list-item {
    width: 100%;
}

.post_list .post_list-link {
    gap: 5px 0;
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
    text-decoration: none;
    padding: 1.2rem 2.2rem 1.3rem 0;
    background-image: repeating-linear-gradient(90deg, #d9d9d9, #d9d9d9 2px, transparent 2px, transparent 8px);
    background-position: left top;
    background-repeat: repeat-x;
    background-size: 100% 2px;
}

.post_list .post_list-link .com {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 5px 2rem;
}

.post_list .post_list-link .time {
    color: #bbb;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.post_list .post_list-link .title {
    display: block;
    margin: 0;
    font-weight: 700;
    line-height: 150%;
    color: var(--c-gry);
    text-decoration: underline;
}

.post_list .post_list-link .cate {
    color: var(--c-green);
}

.post_list .post_list-link::after {
    content: "";
    position: absolute;
    bottom: 1.2rem;
    right: 0;
    width: 15px;
    height: 15px;
    background-image: url(../img/common/ico-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    filter: invert(30%) sepia(12%) saturate(4657%) hue-rotate(105deg) brightness(101%) contrast(105%);
}

@media (min-width: 768px) {
    .post_list .post_list-link {
        padding: 1.2rem 5rem 1.3rem 2rem;
    }

    .post_list .post_list-link::after {
        right: 2rem;
        bottom: 0;
        top: 0;
        margin: auto 0;
    }

    .post_list .post_list-link .com {
        width: 100%;
        flex-wrap: nowrap;
    }

    .post_list .post_list-link .time {
        font-size: 1rem;
        font-weight: 500;
    }
}

/* ------------------------------- 
お知らせ詳細ページ
------------------------------- */
.news-detail .inner {
    max-width: 620px;
    margin: 0 auto 0;
}

.news-detail .inner .time {
    display: block;
    text-align: center;
    margin: 1rem 0;
    color: #bbb;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.news-detail .inner .title {
    display: block;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 150%;
    color: var(--c-gry);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    background-image: repeating-linear-gradient(90deg, #d9d9d9, #d9d9d9 1px, transparent 1px, transparent 5px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 2px;
}

.news-detail .inner .cate {
    display: inline-block;
    background: #B9E2CE;
    border-radius: 20px;
    padding: .3rem 2rem;
    color: var(--c-green);
    margin: 0;
}

.news-detail .inner .contents {
    margin-top: 2rem;
}

.news-detail .block-btn {
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .news-detail .inner .title {
        font-size: 1.75rem;
    }

    .news-detail .inner .contents {
        margin-top: 3rem;
    }
}