@charset "utf-8";
/* CSS Document */

/* スライドショー設定 */
@media only screen and (max-width:930px) {
	.slider {
		height: auto;
	}
}

.slider{
	width:100%;
	height:850px;
	overflow:hidden;
	position:relative;
	margin-bottom:15px;
}
.slides{
	height:100%;
	overflow:hidden;
}
.slide{
	height:100%;
	float:left;
	text-align: center;
	clear:none;
}
li.slide{
	list-style:none;
	margin:0;
	padding:0;
}
/* prev&nextボタンの配置 */
.slider-arrow {
  position: absolute;
  display: block;
  margin-bottom: -20px;
  padding: 15px;
  background-color: rgba(0,0,0,0.2);
  border-radius: 5px;
  font-size: 15px;
}
.slider-arrow:hover {
	background-color: rgba(255,100,0,0.5);
}

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

.slider-arrow--left {
  bottom: 50%;	/*画面下端からの距離*/
  left: 30px;	/*画面左端からの距離*/
}
.slider-nav {
  position: absolute;
  bottom: 20px;
}
.slider-nav__item {
  width: 10px;
  height: 10px;
  float: left;
  clear: none;
  display: block;
  margin: 0 5px;
  border: 1px solid #2e99d6;
}

.slider-nav__item:hover {
  background: #2e99d6;
}
.slider-nav__item--current {
  background: #2e99d6;
}

