﻿
.slider {
	position: relative;
	width: 600px;
	height: 400px;
	overflow: hidden;
}


.slides {
	height: 100%;


	/* Clear fix */
	@include clearfix();


	/**
	 * Prevent blinking issue
	 * Not tested. Experimental.
	 */
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
}


.slide {
	height: 100%;
	float: left;
	clear: none;
	margin-left: 0px;
}


.ttl {
	background-color: #ddd;	
	color: #333;
	}

.slider-arrows {}


.slider-arrow {
	position: absolute;
	display: block;
	margin-bottom: -20px;
	padding: 10px;
}

a.slider-arrow {
	font-size: 2.0rem;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	}

a.slider-arrow:hover {
	color: #3984ac;
	}

.slider-arrow--right { bottom: 50%; right: 10px; }
.slider-arrow--left { bottom: 50%; left: 10px; }




.slider-nav {
	position: absolute;
	bottom: 5px;
}


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


.slider-nav__item:hover { background: #ccc; }
.slider-nav__item--current { background: #3984ac; }
