/* Circular Content Carousel Style */

.ca-container{
	position:relative;
	margin:0 auto;
/*	width:990px; デフォ　ca-itemの横幅増やすと表示されるオブジェクトが増える*/
	width:786px;
	height:190px;
}



.ca-wrapper{
	width:100%;
	height:100%;
	position:relative;
}
.ca-item{
	position:relative;
	float:left;
	width:262px;
	height:190px;
	text-align:center;
}
.ca-item-main{
	position: absolute;
	width: 252px;
	background: #010101;
	overflow: hidden;
}


/*----- 「矢印」設定 -----*/
.ca-nav span{
	width:21px;
	height:41px;
	background:transparent url(../../images/arrows.png) no-repeat top left;
	position:absolute;
	top:50%;
	margin-top:-19px;
	left:-41px;
	text-indent:-9000px;
	opacity:0.7;
	cursor:pointer;
	z-index:100;
}
.ca-nav span.ca-nav-next{
	background-position:top right;
	left:auto;
	right:-31px;
}
.ca-nav span:hover{
	opacity:1.0;
}
