@charset "utf-8";


#slider {
	position: relative;
	width: 100%;
	height: 600px;
	overflow: hidden;
	margin: 0 auto;
}
.box {
	width: 100%;
	height: 100%;
}

.box a {
	display: block;
	width: 100%;
	height: 100%;
	text-indent: -99999px;
	background-size: cover;
	background-position: center top;
}

.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;
	text-align: center;
}
.slide img {
	width: 100%;
}

/* prev&nextボタンの配置 */
.slider-arrow {
	position: absolute;
	display: block;
	margin-bottom: -20px;

	width: 50px;
	height: 50px;
	text-indent: -9999px;
}
.slider-arrow:hover {
	opacity: 0.8;
}

.slider-arrow--right, .slider-arrow--left {
	background-position: center center;
	background-size: contain;
}

.slider-arrow--right {
	bottom: 50%;	/*画面下端からの距離*/
	right: 0; /*画面右端からの距離*/
	background-image: url("../../img/arrow/next.png");
}

.slider-arrow--left {
	bottom: 50%;	/*画面下端からの距離*/
	left: 0;	/*画面左端からの距離*/
	background-image: url("../../img/arrow/prev.png");
}

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

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

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

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


@media only screen and (max-width: 479px) {
	#slider {
		margin-top:10px;
		height: 220px;
	}
	.slider-nav {
		display:none;/*画面下端からの距離*/
}
}