/* News */
body#news .sub-nav-wrap {
    overflow: hidden;
}
body#news .sub-nav {
    border-bottom:none;
}
body#news .sub-nav::before {
    --sub-nav-left: 80%;
    --sub-nav-img: url(../_img/header/nav-bubble-white.svg);
}

body#news #fv + section {
    padding-top:0;
}


body#news .news-list {
	border-top: 1px solid var(--color-black);
}
body#news .news-list li {
	display:block;
	padding: 40px 0;
	border-bottom: 1px solid var(--color-black);
}
#news .news-list > li p.meta span:has(time) { 
    font-size: 18px;
    font-weight: bold;
}
#news .news-list > li p.meta span.category {
    display: inline-flex;
    width: 100px;
    --category-h: 30px;
    height: var(--category-h);
    line-height: var(--category-h);
    align-items: center;
    justify-content: center;
    border-radius: var(--button-radius);
    background-color: var(--color-gray);
    padding-top: 2px;
}
body#news .news-list li h2 {
	font-size:1.35em;
	margin-top:var(--padding);
}
body#news .news-list .news-txt {
    width: 81.4%;
    word-break: break-all;/*safari*/
    word-break: auto-phrase;
    letter-spacing: 0.05em;
    line-height: 2.1;
    margin-bottom: 15px;
}
body#news .news-list .news-2column {
    display: flex;
    gap: 20px;
}
body#news .news-list .news-2column figure {
    width: 240px;
    margin-top: 0;
}

/*  Paging */
.paging {
	padding:0;
	margin:40px 0 0 0;
	display: flex;
	gap: 5px;
	justify-content: center;
    font-family: "Nunito Sans", sans-serif;
}
.paging > :not(li) ,
.paging > li > * {
	min-width: 3em;
	aspect-ratio: 1;
	padding: 0;
	color: var(--color-black);
	background: var(--color-light-gray);
	transition: 0.2s;
    border-radius:100%;
	display: flex;
	align-items: center;
	justify-content: center;
    font-weight:bold;
}
.paging a:hover {
	filter:brightness(0.1);
}
.paging [aria-current="page"] {
	background: var(--main-color);
	font-weight: bold;
}
.paging > li {
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (max-width: 920px) {

}
@media (max-width: 720px) {
    body#news .news-list .news-2column {
        flex-direction: column;
    }
    body#news .news-list .news-2column figure {
        width: 100%;
    }
}
@media (max-width: 520px) {
}