a{
	color: #FFF;
}
.slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

/* ウィンドウサイズ930以下の場合 */
@media only screen and (max-width:930px) {
	.slider {
		height: auto;
	}
}
/* 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;
  list-style-type: 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: 15%;	/*画面下端からの距離*/
  right: 10px; /*画面右端からの距離*/
}

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

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

.slider-nav__item {
  width: 15px;
  height: 15px;
  float: left;
  clear: none;
  display: block;
  margin: 0 5px;
  background: #FFF;
}

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

.slider-nav__item--current {
  background: #ef057e;
}