.news-page {
	position: relative;
	overflow: visible;
	margin-top: 100px;
}

.news-page__inner {
	position: relative;
	z-index: 2;
	max-width: 1100px;
	margin: 0 auto;
}

.common-page-hero {
	overflow: visible !important;
}

.common-page-hero--news {
	padding-top: 180px;
}

.common-page-hero--news + .news-page {
	padding-top: 64px;
}

.news-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.news-list__item {
	border-bottom: 1px solid rgba(18, 59, 103, 0.16);
}

.news-list__item:first-child {
	border-top: 1px solid rgba(18, 59, 103, 0.16);
}

.news-list__link {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 36px;
	align-items: center;
	padding: 26px 0;
	color: inherit;
	text-decoration: none;
	transition: opacity 0.25s ease;
}

.news-list__link:hover {
	opacity: 0.65;
}

.news-list__date {
	color: var(--color-text);
	font-size: var(--font-size-body);
	font-weight: 500;
	letter-spacing: 0.02em;
}

.news-list__title {
	color: var(--color-primary);
	font-size: var(--font-size-body);
	font-weight: unset;
	line-height: 1.6;
}

.news-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	margin-top: 56px;
}

.news-pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 34px;
	color: #333;
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 50%;
}

.news-pagination .page-numbers.current {
	background: #123b67;
	color: #fff;
}

.news-pagination .prev,
.news-pagination .next {
	position: relative;
	width: 40px;
	height: 40px;
	min-width: 40px;
	background: #f0f0f0;
}

.news-pagination .prev::before,
.news-pagination .next::before {
	content: "";
	width: 9px;
	height: 9px;
	border-top: 2px solid #9a9a9a;
	border-right: 2px solid #9a9a9a;
}

.news-pagination .prev::before {
	transform: rotate(-135deg);
}

.news-pagination .next::before {
	transform: rotate(45deg);
}

.news-pagination .dots {
	color: #777;
}

.news-list__empty {
	text-align: center;
	color: var(--color-primary);
	font-weight: 700;
}

/* ページネーション部分 */
.news-page .note-interview-pagination {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 760px;
	margin: 56px auto 0;
}

.news-page .note-interview-pagination__numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.news-page .note-interview-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: #123b67;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
}

.news-page .note-interview-pagination .page-numbers.current {
	background: #004b8d;
	color: #fff;
}

.news-page .note-interview-pagination__arrow {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #f0f0f0;
	transform: translateY(-50%);
}

.news-page .note-interview-pagination__arrow--prev {
	left: 0;
}

.news-page .note-interview-pagination__arrow--next {
	right: 0;
}

.news-page .note-interview-pagination__arrow::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 9px;
	height: 9px;
	border-top: 2px solid #9a9a9a;
	border-right: 2px solid #9a9a9a;
}

.news-page .note-interview-pagination__arrow--prev::before {
	transform: translate(-35%, -50%) rotate(-135deg);
}

.news-page .note-interview-pagination__arrow--next::before {
	transform: translate(-65%, -50%) rotate(45deg);
}

.news-page .note-interview-pagination__arrow.is-disabled {
	opacity: 0.35;
	pointer-events: none;
}

.lower-common-header-deco-01 {
    --deco-x: -40px !important;
    --deco-y: -204px !important;
}
.lower-common-header-deco-02 {
    --deco-x: -80px !important;
    --deco-y: -317px !important;
}


@media (max-width: 767px) {
	.news-page {
		padding: 40px 0 100px;
	}

	.news-list__link {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 20px 0;
	}

	.news-pagination {
		gap: 12px;
		margin-top: 40px;
	}

	/* SPでのページ番号表示可変 */
	.news-page .note-interview-pagination {
		width: 100%;
		max-width: 100%;
		margin-top: 40px;
	}
	.news-page .note-interview-pagination__numbers {
		width: clamp(150px, 48vw, 240px);
		margin: 0 auto;

		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0;
	}
	.news-page .note-interview-pagination .page-numbers {
		flex: 0 0 auto;
		width: clamp(26px, 7vw, 34px);
		height: clamp(26px, 7vw, 34px);
		min-width: clamp(26px, 7vw, 34px);
		font-size: clamp(0.8rem, 2.6vw, 1rem);
		line-height: 1;
	}
	.news-page .note-interview-pagination .page-numbers.dots {
		width: auto;
		min-width: auto;
	}

	.news-deco-01,
	.news-deco-02,
	.news-deco-03,
	.news-deco-04,
	.news-deco-05 {
		display: none;
	}

}