/* ■■■■ページャー■■■■ */
ul.order {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

ul.order li {
    padding: 5px;
    list-style: none;
    display: block;
    border: 1px solid #999;
    width: 20px;
    text-align: center;
}

/* ページリンク */
ul.order li {
    position: relative;
}

ul.order li a {
    color: #333;
    text-decoration: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 2.4;
}

ul.order li:hover {
    background-color: #F0F0F0;
    color: #000;
    text-decoration: none;
}

/* prev */
ul.order li.prev {
    position: relative;
    border: 1px solid #999;
}

ul.order li.prev::before {
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    border-bottom: solid 1px #000;
    border-left: solid 1px #000;
    width: 7px;
    height: 7px;
    transform: rotate(45deg);
}

/* next */
ul.order li.next {
    padding: 5px 5px 5px 5px;
    position: relative;
}

ul.order li.next::after {
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    width: 7px;
    height: 7px;
    transform: rotate(45deg);
}

/* current */
ul.order li.current,ul.order li.current:hover {
    background-color: #999;
    border: none;
}