<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 {
  text-align: center;
  line-height: 0.8;
}
.pager ul {
  display: inline-block;
  position: relative;
}
.pager li{
  display: inline-block;
  float: left;
  vertical-align: middle;
  margin-right: 15px;
}

.pager li.arrow i {
  border: solid #0f1456;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 5px;
}
.pager li.arrow span i {
  border: solid #cecece;
  border-width: 0 3px 3px 0;
}

.pager li.arrow i.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.pager li.arrow i.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.pager ul .arrow a,
.pager ul .arrow span{
  width: 12px;
  height: 40px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  font-size: 15px;
  background-color: inherit;
}


/* ボタン */
.pager ul li {}
.pager ul li:not(.arrow):first-child {
  margin-left: 0;
}
.pager ul li.arrow a{
  border: none;
}
.pager ul li a {
  display: table-cell;
  color: #fff;
  background-color: #0f1456;
  border: 1px solid #0f1456;
  text-decoration: none;
  width: 30px;
  height: 40px;
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
  font-weight: bold;
}

.pager ul li span {
  color: #9a9a9a;
  font-weight: bold;
  font-size: 15px;
}
.pager ul li:not(.arrow).current a {
  color: #0f1456;
  background: #ffffff;
  font-weight: bold;
  text-decoration: none;
}
</pre></body></html>