/* CSS Document */
/* ページネーション */
:root {
	--contents-color: #383834;
}

.from_to {
	text-align: center;
	margin-bottom: 1em;
	color: #444;
}
.pagination {
	display: flex;
}
@media(max-width:767px) {
	.pagenation_box {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.pagination {
		justify-content: space-between;
		flex-wrap: wrap;
	}
}
@media(min-width:768px) {
	.pagenation_box {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.pagination {
		justify-content: center;
		gap: 10px;
	}
}
.pagination .page_number,
.pagination .now_page_number {
	display: inline-block;
	border: 1px solid var(--contents-color);
	/*border-radius: 10em;*/
	position: relative;
	background-color: #fff;
	transition: .3s all;
    font-family: "noto-sans-cjk-jp", sans-serif;
    font-weight: 400;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "palt" 1;
}
@media(max-width:1199px) {
	.pagination .page_number,
	.pagination .now_page_number {
		border-width: 0.2666666667vw;
	}
}

.pagination .page_feed > span,
.pagination .first_last_page > span,
.pagination .spacer > span {
	display: inline-block;
	position: relative;
}
@media(max-width:767px) {
	.pagination .page_number,
	.pagination .now_page_number,
	.pagination .page_feed > span,
	.pagination .first_last_page > span,
	.pagination .spacer > span {
		width: calc(92vw / 5.5);
		height: calc(92vw / 5.5);
	}
	.pagination .first {
		order: 1;
	}
	.pagination .last {
		order: 3;
	}
	.pagination .spacer {
		order: 0;
		width: 100%;
		height: 10px;
	}
}
@media(min-width:768px) {
	.pagination .page_number,
	.pagination .now_page_number,
	.pagination .page_feed > span,
	.pagination .first_last_page > span {
		width: 3em;
		height: 3em;
	}
	.pagination .spacer {
		display: none;
	}
}
.pagination .page_number {
	color: var(--contents-color);
}
.pagination .now_page_number {
	color: #fff;
	background-color: var(--contents-color);
}
.pagination .page_number > span,
.pagination .now_page_number > span {
	font-size: 80%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.pagination .page_number > span,
.pagination .page_feed,
.pagination .first_last_page {
	text-align: center;
	color: var(--contents-color)!important;
}
.pagination .first_last_page {
	opacity: .5;
}
.pagination .page_feed > span > span,
.pagination .first_last_page > span > span {
	font-size: 160%;
	font-weight: 600;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}


.pagenationbox {
	padding: min(60px, 10vw) 0;
}
