/* ========================================
 * 🖼️ サブページ：Column（一覧）
 * ========================================
 */
 #newslist .newslist .cnts-main > ul {
    width: 100%;
    list-style: none;
    padding-left: 0;
    margin: 0;
    padding-bottom: 6rem;
}
#newslist .newslist .cnts-main .article > div {
    display: flex;
    flex-direction: row;
    padding: 2.5rem 0;
    border-bottom: 1px solid #1D1B14;
    line-height: 2.25;
}
#newslist .newslist .cnts-main .article:first-child > div {
    display: flex;
    flex-direction: row;
    padding: 2.5rem 0;
    border-top: 1px solid #1D1B14;
}
#newslist .newslist .cnts-main .article > div .article-time {
    font-weight: 500;
    width: 20%;
}
#newslist .newslist .cnts-main .article > div .article-text {
    position: relative;
    width: 80%;
}
#newslist .newslist .cnts-main .article > div .article-text a,
#newslist .newslist .cnts-main .news-pagination-wrapper ul a{
    color: #1D1B14;
    text-decoration: none;
}
#newslist .newslist .cnts-main .article > div .article-text a.icon-link,
#newslist .newslist .cnts-main .article > div .article-text a.icon-pdf {
    padding-left: 35px;
}
#newslist .newslist .cnts-main .article > div .article-text a.icon-link::before {
    content: "";
    background-image: url("../../images/common/icon-link.svg");
    background-size: cover;
    background-position: center;
    position: absolute;
}
#newslist .newslist .cnts-main .article > div .article-text a.icon-pdf::before {
    content: "";
    background-image: url("../../images/common/icon-pdf.svg");
    background-size: cover;
    background-position: center;
    position: absolute;
}
#newslist .newslist .cnts-main .article > div .article-text a.icon-link::before,
#newslist .newslist .cnts-main .article > div .article-text a.icon-pdf::before {
    top: 8px;
    left: 0;
    width: 25px;
    height: 70%;
}
#newslist .newslist .cnts-main .news-pagination-wrapper ul {
    width: 100%;
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    font-weight: 500;
}
#newslist .newslist .cnts-main .news-pagination-wrapper ul span.current {
    color: #ffffff;
    background: #1D1B14;
}
#newslist .newslist .cnts-main .news-pagination-wrapper ul span.current,
#newslist .newslist .cnts-main .news-pagination-wrapper ul a.page-numbers,
#newslist .newslist .cnts-main .news-pagination-wrapper ul .dots {
    border: 1.5px solid #1D1B14;
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
#newslist .newslist .cnts-main .news-pagination-wrapper ul a.next,
#newslist .newslist .cnts-main .news-pagination-wrapper ul a.prev{
    border: none;
    font-size: 1.6rem;
}
#newslist .newslist .cnts-main .news-pagination-wrapper ul a.page-numbers:hover{
    background: #F8F8F8;
    opacity: 1;
}
#newslist .newslist .cnts-main .news-pagination-wrapper ul a.next:hover,
#newslist .newslist .cnts-main .news-pagination-wrapper ul a.prev:hover{
    background:none;
    opacity: 0.7;
}
@media screen and (max-width: 959px) {
    #newslist .newslist .cnts-main .news-pagination-wrapper ul{
        justify-content: center;
    }
}
@media screen and (max-width: 599px) {
    #newslist .newslist .cnts-main > ul{
        font-size: 0.9rem;
    }
    #newslist .newslist .cnts-main .article > div{
        padding: 1.5rem 0;
        line-height: 2;
    }
    #newslist .newslist .cnts-main .article > div .article-time{
        width: 7rem;
    }
    #newslist .newslist .cnts-main .news-pagination-wrapper ul{
        gap: 0.6rem;
    }
    #newslist .newslist .cnts-main .news-pagination-wrapper ul span.current,
    #newslist .newslist .cnts-main .news-pagination-wrapper ul a.page-numbers,
    #newslist .newslist .cnts-main .news-pagination-wrapper ul .dots {
        width: 8.5vw;
        height: 8.5vw;
        font-size: 0.9rem;
    }
    #newslist .newslist .cnts-main .article > div .article-text a.icon-link::before,
    #newslist .newslist .cnts-main .article > div .article-text a.icon-pdf::before{
    top: 2px;
    width: 23px;
    height: 23px;
    }
}

 /* ========================================
 * 🖼️ サブページ：Column（詳細）
 * ========================================
 */
 #newsdetail .breadcrumb ul {
    list-style: none;
    padding-left: 0;
    padding-top: 1rem;
    margin: 0;
    font-size: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 0;
}
#newsdetail .breadcrumb ul li{
    white-space: normal;
}
#newsdetail .breadcrumb ul li span {
    padding: 0 0.3rem;
}
#newsdetail .breadcrumb ul li a{
    color: #1D1B14;
}
#newsdetail .newsdetail .article-time {
    font-size: 1rem;
    font-weight: 500;
}
#newsdetail .newsdetail .article-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
    padding: 2rem 0;
    border-bottom: 1.5px solid #1D1B14;
    line-height: 1.7;
}
#newsdetail .newsdetail .article-text {
    padding: 4rem 0;
    line-height: 2.25;
    font-size: 1rem;
    border-bottom: 1.5px solid #1D1B14;
}
#newsdetail .newsdetail .pagination-wrap {
    padding-top: 4rem;
    display: flex;
    justify-content: space-between;
    font-size: 1.12rem;
}
#newsdetail .newsdetail .pagination-wrap a {
    /* color: #1D1B14; */
    line-height: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    margin: auto;
}
#newsdetail .newsdetail .pagination-wrap .prev-link{
    padding-left: 1.5rem;
}
#newsdetail .newsdetail .pagination-wrap .prev-link i{
    position: absolute;
    top: 8px;
    left: 0;
}
#newsdetail .newsdetail .pagination-wrap .next-link{
    padding-right: 1.5rem;
}
#newsdetail .newsdetail .pagination-wrap .next-link i{
    position: absolute;
    top: 8px;
    right: 0;
}
#newsdetail .newsdetail .pagination-wrap a i {
    font-size: 1.3rem;
}
#newsdetail .newsdetail .pagination-wrap a .fa-solid:before {
    display: inline-block;
}
@media screen and (min-width: 1331px) {
    #newsdetail #newsdetail-header .pc-none{
        display: none;
    }
    #newsdetail #newsdetail-header .sp-none{
        display: block;
    }
}
@media screen and (max-width: 1330px) {
    #newsdetail #newsdetail-header .sub-header{
        padding-bottom: 8rem;
    }
    #newsdetail #newsdetail-header .pc-none{
        display: block;
        padding: 0 5% 4rem;
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    #newsdetail #newsdetail-header .sp-none{
        display: none;
    }
}
@media screen and (max-width: 700px) {
    #newsdetail #newsdetail-header .sub-header{
        padding-bottom: 6rem;
    }
}
@media screen and (max-width: 599px) {
    #newsdetail #newsdetail-header .sub-header{
        padding-bottom: 4rem;
    }
    #newsdetail .newsdetail .article-title{
        font-size: 1.2rem;
    }
    #newsdetail .newsdetail .cnts-main .article-text {
        font-size: 0.9rem;
        padding: 2rem 0;
        line-height: 2;
    }
    #newsdetail .newsdetail .cnts-main .article-text img {
        width: 100%;
        height : auto;
    }
    #newsdetail .newsdetail .pagination-wrap a,
    #newsdetail .newsdetail .pagination-wrap a i{
        font-size: 1rem;
    }
    #newsdetail .newsdetail .pagination-wrap .prev-link i,
    #newsdetail .newsdetail .pagination-wrap .next-link i{
        top:10px;
    }
}