/* ページネーション — Fluent(控えめ) */
.c-pagination {
	margin-top: 24px !important;
	gap: 4px;
	justify-content: center;
	align-items: center;
	border: none;
	padding: 3px 4px;
	background: rgba(248, 250, 252, 0.7);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: 4px;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
	width: fit-content;
	margin-left: auto !important;
	margin-right: auto !important;
}
.c-pagination .page-numbers {
	width: 30px !important;
	min-width: 30px !important;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 500;
	color: #64748b;
	background: transparent;
	border: none;
	border-radius: 8px;
	text-decoration: none;
	transition: all .2s ease;
}
.c-pagination .page-numbers:hover {
	color: #1e293b;
	background: rgba(255, 255, 255, 0.7);
}
.c-pagination .page-numbers.current {
	color: #fff;
	font-weight: 700;
	background: #1e3a5f;
	border-radius: 8px;
}
.c-pagination .page-numbers.prev,
.c-pagination .page-numbers.next {
	width: auto;
	height: 30px;
	padding: 0 12px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 600;
	color: #475569;
	background: rgba(255, 255, 255, 0.5);
}
.c-pagination .page-numbers.prev:hover,
.c-pagination .page-numbers.next:hover {
	color: #1e293b;
	background: rgba(255, 255, 255, 0.8);
}
.c-pagination__dot {
	background: none !important;
	border: none !important;
	color: #cbd5e1;
	font-size: 12px;
	letter-spacing: 3px;
	width: auto !important;
}
.c-pagination:has(.page-numbers:only-child) {
	display: none;
}
.home .c-pagination {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}
