/*gallery.js付属CSS*/

img {
  vertical-align: bottom;
  border: 0;
}

.over img {
  filter: alpha(opacity=75);
  opacity: 0.75;
}

.thumb ul {
  font-size: 0;
  padding: 10px 0 0 0;
  margin: 0;
}

.thumb li {
  display: block;
  float: left;
  list-style: none;
  padding: 0;
  margin: 0 6px 0 0;
  border: 1px solid #c3c3c3;
}

.slide {
  margin-right: auto;
  margin-left: auto;
}

.gallery .photo {
  position: relative;
}

.photo img {
  border: 1px solid #c3c3c3;
  padding: 0;
  margin: 0;
  display: none;
}

.thumb li.nomargin {
  margin: 0;
}

.prev {
  position: absolute;
  top: 45%;
  left: 0px;
  color: #fff;
  z-index: 5;
  cursor: pointer;
  width: 30px;
  display: block;
  height: 30px;
}

.next {
  position: absolute;
  top: 45%;
  right: 0px;
  color: #fff;
  z-index: 5;
  cursor: pointer;
  width: 30px;
  display: block;
  height: 30px;
}

/*.prev i, .next i {*/
/*  font-size: 20px;*/
/*  background-color: #848484;*/
/*  border-radius: 100%;*/
/*  padding: 4px 8px 3px 6px;*/
/*}*/

.prev:after {
  content: '';
  width: 12px;
  height: 12px;
  border: 0;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  -ms-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  position: absolute;
  top: 50%;
  left: 11px;
  right: auto;
  margin-top: -4px;
}

.next:after {
  content: '';
  width: 12px;
  height: 12px;
  border: 0;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 14px;
  left: auto;
  margin-top: -4px;
}