@charset "utf-8";

/** バージョン　1.00　2016.2.5
===================================*/
.slider {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
	margin: 0px 0px 0px 0px;
/  z-index: 1;
}


/* end */

.slides {
  height: 100%;
  /* Clear fix */
  overflow: hidden;
  *zoom: 1;
  /**
   * Prevent blinking issue
   * Not tested. Experimental.
   */
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}

.slide {
  height: 100%;
  float: left;
  clear: none;
}

.slide img {
	width:100%;
}

/* prev&nextボタンの配置 */
.slider-arrow {
  position: absolute;
  display: block;
  margin-bottom: -20px;
  padding: 15px;
  background-color: rgba(255,255,255,0.2);
  border-radius: 5px;
  font-size: 15px;
}
.slider-arrow:hover {
	background-color: rgba(255,255,255,0.5);
}

.slider-arrow--right {
  bottom: 50%;	/*画面下端からの距離*/
  right: 30px; /*画面右端からの距離*/
}

.slider-arrow--left {
  bottom: 50%;	/*画面下端からの距離*/
  left: 30px;	/*画面左端からの距離*/
}

.slider-nav {
  position: absolute;
  bottom: 14px;	/*画面下端からの距離*/
}

.slider-nav__item {
  width: 12px;
  height: 12px;
  float: left;
  clear: none;
  display: block;
  margin: 0 5px;
  background: #eee;
  border-radius: 12px;
}

.slider-nav__item:hover {
  background: #eb7d1c;
}

.slider-nav__item--current {
  background: #eb7d1c
}


@media only screen and (max-width: 799px){
.slider-nav__item {
  display: none;
}

}