@charset "UTF-8";
/*------------------------------------
　　　			slider
------------------------------------*/
.wideslider {
  width: 100%;
  text-align: left;
  position: relative;
  overflow: visible;
  margin-bottom: 40px;
}

.wideslider__list {
  display: block;
  overflow: hidden;
  float: left;
  font-size: 0;
  text-align: center;
}

.wideslider__list:after {
  content: "";
  height: 0;
  clear: both;
  display: block;
  visibility: hidden;
}

.wideslider__item {
  float: left;
  display: inline;
  overflow: hidden;
}

.wideslider__item img {
  display: none;
  width: 100%;
  height: auto;
  padding: 0 3px;
}

.wideslider__base {
  top: 0;
  position: absolute;
}

.wideslider__wrap {
  top: 0;
  position: absolute;
  overflow: hidden;
}

.slider_prev,
.slider_next {
  top: 0;
  overflow: hidden;
  position: absolute;
  z-index: 100;
  cursor: pointer;
}

.slider_prev {
  background: #fff url("../img/btn_slider_prev.png") no-repeat right center;
}

.slider_next {
  background: #fff url("../img/btn_slider_next.png") no-repeat left center;
}

.pagination {
  display: none;
}

@media screen and (max-width: 767px) {
  .wideslider__item img {
    padding: 0;
  }
  .pagination {
    display: block;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    text-align: center;
    position: absolute;
    z-index: 200;
    line-height: 1;
  }
  .pagination a {
    display: inline-block;
    margin: 0 5px;
    width: 10px;
    height: 10px;
    overflow: hidden;
    background: #666;
    border-radius: 10px;
  }
  .pagination a.active {
    background: #000;
  }
}
