/*====================================================
お知らせ一覧
====================================================*/
.news__list {
	display: grid;
	row-gap: 30px;
}
.news__listLink {
	display: grid;
	grid-template-columns: 140px 1fr;
	column-gap: 20px;
	padding-left: 10px;
	border-left: 2px solid #e60012;
}
@media screen and (max-width: 767px) {
	.news__listLink {
		grid-template-columns: 1fr;
		row-gap: 5px;
	}
}

.news__listTime {
	position: relative;
}
.news__listTitle {
	position: relative;
}

/* ページネーション
----------------------------------------------- */
.news__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	text-align: center;
	margin-top: 90px;
}

@media screen and (max-width: 767px) {
	.news__nav {
		margin-top: 32px;
	}
}

.news__nav .page-numbers {
	display: inline-block;
	padding: 0.5em 0.916em;
	line-height: 1;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: #6c6f71;
}
.news__nav .current {
	font-weight: 700;
	color: #de0012;
}
.page-numbers.dots {
	vertical-align: text-bottom;
}
.news__nav .next,
.news__nav .prev {
	aspect-ratio: 1;
	width: 41px;
	background-image: url(../img/arrow3_r.png);
	background-repeat: no-repeat;
	background-size: contain;
	border: none;
}
.news__nav .next {
	margin-left: 9px;
}
.news__nav .prev {
	margin-right: 9px;
	transform: rotate(180deg);
}
.news__nav .next:hover,
.news__nav .prev:hover {
	width: 41px;
	background-color: transparent;
	background-image: url(../img/arrow3_w.png);
	background-repeat: no-repeat;
	background-size: contain;
}

/*====================================================
お知らせ詳細
====================================================*/
.news-single__inner {
	max-width: 1300px;
	width: 100%;
	padding: 90px 30px 140px;
	margin-inline: auto;
}
@media screen and (max-width: 767px) {
	.news-single__inner {
		padding-top: 15%;
		padding-bottom: 20%;
	}
}

.news-single__date {
	color: #6c6f71;
	font-size: clamp(12px, 16 / 1440 * 100vw, 16px);
	font-weight: 400;
	letter-spacing: 0.02em;
	flex-shrink: 0;
	display: inline-block;
}

.news-single__ttl {
	font-weight: 700;
	letter-spacing: 0.02em;
	font-size: clamp(18px, 25 / 1440 * 100vw, 25px);
	padding-top: clamp(10px, 17 / 1440 * 100vw, 17px);
	padding-bottom: 30px;
	border-bottom: 1px solid #d8d8d8;
}
@media screen and (max-width: 767px) {
	.news-single__ttl {
		padding-bottom: 20px;
	}
}

.news-single__content {
	--spaceSize: 50px;
	margin-top: var(--spaceSize);
	padding-bottom: var(--spaceSize);
	border-bottom: 1px solid #d8d8d8;
}

@media screen and (max-width: 767px) {
	.news-single__content {
		--spaceSize: 20px;
	}
}

/* コンテンツ用スタイル
----------------------------------------------- */
.news-single__content {
	color: #2b2b2b;
}
.news-single__content > p {
	/* padding-bottom: 0.8em; */
}
