


/* ////////////////////////////////////////////////
# NEWS一覧
//////////////////////////////////////////////// */
.news-sec{
    border-top: 2px solid var(--main-color);
    border-bottom: 2px solid var(--main-color);
}
.news-sec__in{
    padding: 25px 0;
}
.news-sec a{
    color: var(--main-color);
}
.news-sec a.inactive{
    color: #000;
}
.news-list-item{
    font-size: 12px;
    line-height: 2;
}
.news-list-item a{
    display: flex;
    gap: 40px;
    position: relative;
    padding: 16px 60px 16px 30px;
}
.news-list-item a.inactive::after{
    display: none;
}
@media (hover: hover) {
    .news-list-item{
        line-height: 1.6;
    }
    .news-list-item a:hover{
      background: var(--beige-color);
    }
    .news-list-item a.inactive:hover{
        background: none;
        opacity: 1;
    }
    .pagination button:hover{
        background: var(--main-color);
        color: #fff;
    }
    .pagination button.first:hover {
        background: var(--main-color);
    }
    .pagination button.first:hover::before,
    .pagination button.first:hover::after {
        background: url(../images/arrow_prev_single_white.png)no-repeat center / 5px 11px;
    }
    .pagination button.prev:hover {
        background: var(--main-color) url(../images/arrow_prev_single_white.png)no-repeat center / 5px 11px;
    }
    .pagination button.next:hover{
        background: var(--main-color) url(../images/arrow_next_single_white.png)no-repeat center / 5px 11px;
    }
   .pagination button.end:hover {
        background: var(--main-color) url(../images/arrow_next_double_white.png)no-repeat center / 10px 11px;
    }
}
.news-list-item a::after{
    content: "";
    display: block;
    width: 8px;
    height: 16px;
    background: url(../images/arrow_next_single_red.png)no-repeat center / 6px 11px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.news-list-item:nth-child(n+2){
    border-top: 1px solid #dbdbd7;
}
.news-sec .news-date{
    flex-shrink: 0;
    min-width: 8em;
		color: #000;
}
/* pagination */
.pagination{
    display: flex;
    justify-content: center;
    margin-top: 70px;
    margin-bottom: 20px;
    gap: 10px;
}
.pagination a {
    display: block;
}
.pagination button {
    appearance: none;
    border-radius: 0;
    outline: none;
    border: none;
    background: var(--beige-color);
    /* padding: 12px ; */
    width: 30px;
    height: 30px;
    line-height: 0;
    cursor: pointer;
    transition: 0.2s;
    font-size: 12px;
    font-weight: bold;
    color: var(--main-color);
}

.pagination button.first {
    background: var(--beige-color);
    position: relative;
}
.pagination button.first::before {
    content: "";
    display: block;
    width: 5px;
    height: 11px;
    background: url(../images/arrow_prev_single_red.png)no-repeat center / 5px 11px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-60%, -50%);
}
.pagination button.first::after {
    content: "";
    display: block;
    width: 5px;
    height: 11px;
    background: url(../images/arrow_prev_single_red.png)no-repeat center / 5px 11px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-40%, -50%);
}
.pagination button.prev {
    background: var(--beige-color) url(../images/arrow_prev_single_red.png)no-repeat center / 5px 11px;
}
.pagination button.prev:disabled {
    display: none;
}
.pagination button.next {
    background: var(--beige-color) url(../images/arrow_next_single_red.png)no-repeat center / 5px 11px;
}
.pagination button.end {
    background: var(--beige-color) url(../images/arrow_next_double_red.png)no-repeat center / 10px 11px;
}
.pagination button.is-active {
    color: #000;
}
@media screen and (max-width: 767px) {
	.news-sec__in {
    padding: 10px 0;
	}
	.news-list-item a{
		gap: 10px;
		padding: 19px 27px 19px 0;
		flex-direction: column;
	}
    .news-list-item a::after {
        display: none;
    }
    .news-title {
        position: relative;
    }
    .news-title::after {
        content: "";
        display: block;
        width: 4px;
        height: 8px;
        background: url(../images/arrow_next_single_red.png)no-repeat center / 6px 11px;
        position: absolute;
        top: 50%;
        right: -27px;
        transform: translateY(-50%);
    }
    .inactive .news-title::after{
        display: none;
    }
	.pagination {
    margin-top: 32.5px;
    margin-bottom: 0px;
    gap: 10px;
	}

}


/* ////////////////////////////////////////////////
# NEWS詳細
//////////////////////////////////////////////// */
.news-detail-head{}
.news-detail-date{
    text-align: right;
    font-size: 12px;
    margin-top: 34px;
}
.post-img{
    margin: 32px auto 0;
		max-width: 600px;
}
.post-img img{
    width: 100%;
}

.post__content .c-txt{
    margin-top: 36px;
}
.post__content .c-txt:first-of-type{
    margin-top: 0;
}

.post-sec{
    border-bottom: 1px solid #000;
    padding-top: 50px;
    padding-bottom: 74px;
}
.back-btn-sec{
    margin-top: 32px;
}
.back-btn-link{
    display: block;
    margin: 0 auto;
    width: fit-content;
    font-weight: 700;
}
.back-btn-link a{
    color: var(--main-color);
    position: relative;
    padding-left: 25px;
		font-size: 12px;
}
.back-btn-link a::before{
    content: "";
    display: block;
    width: 8px;
    height: 16px;
    background: url(../images/arrow_prev_single_red.png)no-repeat center / 5px 11px;
    position: absolute;
    top: 2px;
    left: 0;
}
.sec-title{
	position: relative;
	font-weight: 700;
}

@media screen and (max-width: 767px) {
	.post-sec{
    padding-top: 37px;
    padding-bottom: 37px;
	}
	.post__content .c-txt {
    margin-top: 30px;
	}
	.post-img {
		padding: 0 18px;
	}
	.back-btn-sec {
    margin-top: 20px;
	}
	.l-page-sec__in {
		padding-bottom: 0;
	}
    #news-detail .l-page-sec__in{
        padding-top: 30px;
    }
    .news-detail-date{
        margin-top: 32px;
    }
}


/* ニュース詳細ページ（記事ページ） */
.post__content p{
    margin-top: 36px;
    font-size: 12px;
    line-height: 2;
}
.post__content img{
    margin: 32px auto 0;
}
.post__content ul{
    margin-top: 36px;
    font-size: 12px;
}
.post__content li {
    position: relative;
    padding-left: .8rem;
    margin: 0.5rem 0;
    line-height: 1.6;
}
.post__content li::before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0.85em;
    width: 3px;
    height: 3px;
    background: #000;
    border-radius: 50%;
    transform: translateY(-50%);
}
.post__content a {
    color: var(--main-color);
    text-decoration: underline;
    font-weight: 700;
}

@media screen and (max-width: 767px){
    .post__content p,.post__content ul,.post__content img{
        margin-top: 30px;
    }
    .post__content img{
        padding: 0 18px;
        max-width: 100%;
    }
    .post__content a {
        margin-top: 26px;
    }
}
