<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*-------------------------------------
	ページング関連
-------------------------------------*/

/* pager */
.pager {
    margin: 0;
    width: 100%;
    display: table;
}

.pager p b {
    margin: 0 1px;
    color: #999;
    font-size: 14px;
    font-weight: normal;
}

.pager p { font-size: 12px; }

/* 検索結果表示数 */
.pager .resultNum {
    width: 20%;
    text-align: left;
    display: table-cell;
    vertical-align: middle;
    padding-right:50px;
}

@media only screen and (max-device-width: 640px) {

    .pager .resultNum {
        width: 100%;
    }
}


/* 1ページに対する表示件数 */
.pager .displayNum {
    width: 100px;
    font-size: 14px;
    text-align: left;
    display: table-cell;
    vertical-align: middle;
}

.displayNum select {
    margin: 0;
    width: 80px;
}

/* ページャー */
.pager ol {
    margin: 0;
    width: 60%;
    text-align: center;
    list-style: none;
    display: table-cell;
    vertical-align: middle;
}

.pager li {
    display: inline;
    margin: 0 2px 5px;
}

.pager li a {
    width: 60px;
    height: 30px;
    color: #666;
    text-decoration: none;
    line-height: 30px;
    display: inline-block;
    background: #f2f2f2;
    border-radius: 5px;
}

.pager li a img {
    margin-top: -3px;
    width: auto;
    height: 14px;
    vertical-align: middle;
}

.pager li a:hover {
    color: #333;
    background: #E8F4FD;
}


.pager li.current {
    width: 28px;
    height: 28px;
    color: #000;
    font-weight: bold;
    text-align: center;
    line-height: 30px;
    display: inline-block;
    background: none;
    border-radius: 5px;
}
</pre></body></html>