/* 一覧ページスタイル */
/* .container {
    width: min(1440px, 95vw);
    max-width: none;
} */
.news-wrapper {
    margin: 20px 0 50px 0;
}
.channel-wrapper {
    padding-bottom:20px;
}
.news-head {
    font-size: 24px;
    font-weight: normal;
}
.news-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}
.news-title {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #D9D9D9;
    padding: 20px 10px;
    gap: 20px;
}
.news-datewrap {
    display: flex;
    gap: 20px;
    align-items: center;
    cursor: default;
}
.news-datewrap .news-data {
    font-size: 12px;
}
.news-datewrap .news-category {
    font-size: 10px;
    color: #F23041;
    padding: 3px 10px;
    text-align: center;
    border: 1px solid #F23041;
    font-weight: normal;
    width: 82px;
}
.news-link {
    flex: 1;
    transition: .2s;
}
.news-link:hover {
    opacity: .7;
}

.pagination {
    margin: 20px auto 50px;
    width: min(95vw, 100%);
}

.information-index__back {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

/* 記事ページスタイル　ここから */
.news-show_top {
    position: relative;
    margin: 100px 0 30px 20px;
}
.news-show_top::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 100%;
    background-color: #F23041;
    top: 0;
    left: -20px;
}
.news-show_title {
    margin: 1em 0;
    letter-spacing: 1px;
}
.news-maincontent {
    margin-bottom: 50px;
}
.news-image-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.news-image {
    position: relative;
    height: 100%;
    width: min(1000px, 100%);
    margin: 0 auto;
    object-fit: contain;
}
.news-text {
    line-height: 2;
    margin-top: 30px;
}

.news-text a{
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .contents-container {
        margin: 0 15px;
    }
    .news-wrapper {
        margin-bottom: 0;
    }
    .news-title {
        flex-direction: column;
        align-items: flex-start;
    }
    .news-show_title {
        letter-spacing: .5px;
    }
    .news-show_title h1 {
        font-size: 18px;
    }
    .news-image-wrap {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    .news-image {
        position: relative;
        height: 100%;
        width: min(1000px, 100%);
        margin: 0 auto;
        object-fit: contain;
    }
}
