@charset "utf-8";

.slider {
	position: relative;
	width: 100%;
	max-height: 500px;
	overflow: hidden;
	font-size: 0;
}

/* ウィンドウサイズ930以下の場合 */
@media only screen and (max-width:1900px) {
	.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;
}

.slide img {
	width:100%;
}

/* prev&nextボタンの配置 */

.slider-arrow {
  position: absolute;
  display: block;
  margin-bottom: -50px;
  padding: 42px 19px;
  background-color: rgba(0,0,0,0.3);
  font-size: 15px;
	color: #fff;
	text-decoration: none;
}

.slider-arrow:hover {
	background-color: rgba(0,0,0,0.8);
}

.slider-arrow--right {
  bottom: 50%;	/*画面下端からの距離*/
  right: 0; /*画面右端からの距離*/
}

.slider-arrow--left {
  bottom: 50%;	/*画面下端からの距離*/
  left: 0;	/*画面左端からの距離*/
}

.slider-nav {
  position: absolute;
  bottom: 20px;	/*画面下端からの距離*/
}

.slider-nav__item {
  width: 15px;
  height: 15px;
  float: left;
  clear: none;
  display: block;
  margin: 0 5px;
  background: #FFF;
  
  -webkit-border-radius: 10px;
   -moz-border-radius: 10px;
	border-radius: 10px;
}

.slider-nav__item:hover {
  background: #F60;
}

.slider-nav__item--current {
  background: #F00;
}

.contents {
	width: 960px;
	margin: 30px auto 0;
}

.contents p {
	font-size: 18px;
	line-height: 24px;
}