@charset "shift_jis";

/* * * * * * * * * * * * * * * * * * * *
 * page_link.css
 * * * * * * * * * * * * * * * * * * * */

/* ■■■■ ページ送り ■■■■ */
.list_page {
  margin: 15px auto;
  display: table;
  border-spacing: 2px;
  width: 80%;
}

.list_page > * {
  padding: 5px 0;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.list_page > div {
  border-radius: 2px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #859d9d), color-stop(0.06, #C3D8D8));
  background: -webkit-linear-gradient(top, #C3D8D8 6%, #859d9d 100%);
  background: -moz-linear-gradient(top, #C3D8D8 6%, #859d9d 100%);
  background: linear-gradient(to bottom, #C3D8D8 6%, #859d9d 100%);
  color: #333;
}

/* ■■■■　ボタン　■■■■ */
.list_page a {
  -webkit-border-radius: 2px 50% 50% 2px;
          border-radius: 2px 50% 50% 2px;
  width: 40px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #366), color-stop(0.53, #366), color-stop(0.50, #399), color-stop(0.01, #399));
  background: -webkit-linear-gradient(top, #399 1%, #399 50%, #366 53%, #366 100%);
  background: -moz-linear-gradient(top, #399 1%, #399 50%, #366 53%, #366 100%);
  background: linear-gradient(to bottom, #399 1%, #399 50%, #366 53%, #366 100%);
  color: #fff;
  text-decoration: none;
}
.list_page a.list_button_left {
  -webkit-border-radius: 50% 2px 2px 50%;
          border-radius: 50% 2px 2px 50%;
}
.list_page a svg {
  fill: #fff;
}

/* リンクを無効にする */
.list_page a.no-links {
  visibility: hidden;
}
.list_page a.no-links svg {
  fill: #363636;
}



.list_page select {
  padding:5px 1.5em 5px 1em;
  width: auto;
  background:#fff url(/css/icon_down_arrow.svg) no-repeat right center;
  -webkit-background-size: 1em;
          background-size: 1em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
