/* ページネーション ---------------------- */
.paging {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 68px;
    gap: 20px;
}

.paging li {
    height: 48px;
}

.paging li > a,
.paging li > span {
    width: 100%;
    min-width: 48px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    padding: 0 0.7em;
	user-select: none;
}

.paging li > a {
    background: var(--medium-grey);
}

.paging li > a:hover {
    background: var(--dark-grey);
    transition: 0.3s ease-out;
}

.paging li > span {
    background: var(--light-grey);
}

.paging li > a .arrow-prev::before {
    content: "";
    width: 1em;
    height: 1em;
    display: inline-block;
	background: url(../img/common/arrow_left_white.svg) center / contain no-repeat;
}
.paging li > a .arrow-next::before {
    content: "";
    width: 1em;
    height: 1em;
    display: inline-block;
	background: url(../img/common/arrow_right_white.svg) center / contain no-repeat;
}