@CHARSET "UTF-8";

div#pagenation {
  display: -webkit-flex; /* Safari */
  display: flex;
  -webkit-justify-content: center; /* Safari */
  justify-content:         center;
}

div#pagenation ul {
  float: left;
  list-style: none;
}

div#pagenation span {
  float: left;
}

div#pagenation span a {
  border: 1px solid #CECECE;
  margin: 0 3px;
  padding: 3px 8px;
  display: block;
  text-decoration: none;
  color: #666666;
  background: #fff;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}

div#pagenation span.active a,
div#pagenation span a:hover {
  border: solid 1px #666666;
  color: #FFFFFF;
  background: darkgray;
}
.pc{
  display: block;
}
.sp{
  display: none;
}

@media screen and ( max-width:767px) {
  div#pagenation {
    width: 100%;
  }
  .prev{
    width: 30%;
    text-align: center;
  }
  .next{
    width: 30%;
    text-align: center;
  }
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
}


