/****************************************************/
/*ページネーション*/
/****************************************************/
.pc-only {
    display: block;
}
.sp-only {
    display: none;
}
body.device-smartphone .pc-only {
    display: none;
}
body.device-smartphone .sp-only {
    display: block;
}
.pagenation {
    color: #585858;
    margin: 0 0 30px;
}
/*件数表示*/
.pagenation_numbers {
    text-align: center;
    margin: 30px 0 20px;
}
/*ページ表示*/
.pagenation_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.pagenation_list li {
    margin: 20px 0;
}
.pagenation_list a {
    text-decoration: none;
    color: #585858;
    font-size: 1.2em;
}
/*ページ数とSP用矢印*/
.pagenation_list .number,
.pagenation_list .page_arrow.sp-only {
    margin: 0 10px 0 0;
    width: 50px;
    height: 50px;
    background: #d9e5ee;
    border-radius: 100%;
    transition-duration: .4s;
}
.pagenation_list .page_arrow.sp-only:hover,
.pagenation_list .number.not_selected:hover {
    background: #abc5dc;
}
.pagenation_list .number a,
.pagenation_list .page_arrow.sp-only a {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
/*選択中のページは反転*/
.pagenation_list .number.selected {
    background: #5d94b4;
}
.pagenation_list .number.selected a {
    color: white;
}
/*数字が飛んだときの「...」*/
.pagenation_list .between_dot {
    margin: 0;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
/*PC用設定*/
.pagenation_list .between_dot {
    margin: 0 10px 0 0;
}
.pagenation_list .page_arrow.next.pc-only {
    margin: 0 10px 0 0;
    height: 50px;
}
.pagenation_list .page_arrow.next.pc-only a {
    transition-duration: .4s;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.pagenation_list .page_arrow.next.pc-only a:hover {
    color: #ccc;
}
/*SP用-最初、最後のページでは矢印をグレーアウト*/
.pagenation_list .page_arrow.arrow_disabled {
    background: lightgray;
}
.pagenation_list .page_arrow.arrow_disabled a {
    color: gray;
}
.pagenation_list .page_arrow.arrow_disabled:hover {
    background: lightgray;
}
