@charset "utf-8";


/*---------------------------------

スライドショー

---------------------------------*/
.bxSlider li{
	overflow:hidden;/*スマホ対応のため追加*/
	height:480px;
}

.bx-wrapper{
	position:relative;
//	top:-89px;
	height:480px;
}

.bx-controls-direction{
	display:none;
}

.bx-pager a {
	text-indent: -9999px;/*数字表示をブラウザ外に押しやる*/
	display: block;
	width: 8px;
	height: 8px;
	margin: 0 5px;
	-moz-border-radius: 4px;/*角丸指定 四隅を丸くすることで10pxの●に*/
	-webkit-border-radius: 4px;/*角丸指定*/
	border-radius: 4px;/*角丸指定*/
	box-shadow:0px 1px 2px 1px black;
	-webkit-box-shadow:0px 1px 2px 1px black;/*角丸指定*/
	outline:none;
}

.bx-pager-link{
	background-color:#fff;
}

.active {
	background: #aaa;
}


.bx-prev {
	left: 17px;
	background: url(prev-img.png) no-repeat;/*prev用画像*/
}
.bx-next {
	right: 17px;
	background: url(next-img.png) no-repeat;/*next用画像*/
}

.bx-controls-direction a {
	position: absolute;
	margin-top: -16px;
	width: 35px;/*使用画像に応じて指定*/
	height: 35px;/*使用画像に応じて指定*/
	text-indent: -9999px;/*画像置換のためテキストを押しやる*/
	z-index: 9999;
}


.bx-wrapper .bx-pager {
	text-align: center;
	position:relative;
	top:-30px;
}
.bx-wrapper .bx-pager .bx-pager-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}