

/*---------------------------------------------------------
GLOBAL Style
------------------------------------------------------------*/
#hidden_slider{
  width: 800px;
  margin:0 auto;
}

#multiple .item{
  width: 150px;
  height: 200px;
  line-height: 200px;
  border: solid 1px #FFF;
}

.slide_visible{
  position: relative;
  width: 100%;
  overflow: hidden;
  margin:0 auto;
}

.slide_visible .item_wrapper{
  position: absolute;
  height:inherit;
  background-color:rgba(255,255,255,0.60);
}

/*アイテムの大きさは関数で指定*/
.slide_visible .item_wrapper .item{
  display: block;
  vertical-align: middle;
  text-align: center;
  font-weight: bold;
  background-color: rgba(255,255,255,0.80);
  color: #FFF;
  float: left;
  box-sizing: border-box;
	padding: 0 10px;
}

.slide_visible .item_wrapper .item img{
  max-width: 100%;
  height: auto;
}

/*フロート高さ算出*/
.slide_visible .item_wrapper:after,
.slide_pinpoint_option:after
{
  display: block;
  content: '.';
  clear: both;
  overflow: hidden;
  height:0;
}

/*オプションボタンの設定*/
.slide_displace_option{
  height:50px;
  position: absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
  z-index: 2;
}

.slide_show_next,
.slide_show_prev{
  height: 80px;
  width:80px;
  display: inline-block;
  color:#FFF;
  z-index:9999;
  background-color: #000;
  cursor:pointer;
  transition-duration: 0.5s;
}

/* SP */
@media all and (max-width: 740px) {
.slide_show_next,
.slide_show_prev{
  height: 40px;
  width:40px;
  background-color: #000;
	opacity: 0.8;
  background-size: contain;
}	
}/*spおわり*/

.slide_show_next:hover,
.slide_show_prev:hover{
  opacity:0.5;
}
.slide_show_next{
  background-image: url('../image/ico_arrow_next.png');
  background-repeat: no-repeat;
	background-position: center;
}

.slide_show_prev{
	float: right;
  background-image: url('../image/ico_arrow_prev.png');
  background-repeat: no-repeat;
	background-position: center;
}

/*直接指定ページャ*/
.type_icon{
  margin-top: 30px;
  text-align: center;
}

.type_icon > div{
  display: inline-block;
  height: 18px;
  width: 18px;
  cursor:pointer;
  opacity: 0.5;
}

.type_icon > div.hover,
.type_icon > div.current{
  opacity: 0.8;
}

.type_icon > div:after{
  content:'●';
  font-size: 10px;
  color: #252525;

}

.type_icon > div.current:after{
  content:'●';
  font-size: 10px;
  color: #252525;
}

/*キャプション機能*/
.slide_visible .add_caption .item{
  position: relative;
}

/*細かいレイアウトは個別で指定*/
.slide_visible .add_caption .item .slider_caption{
  position: absolute;
  bottom:0;
  left: 0;
}

/*サムネイルページャー*/
.ncbb_vs_thum{
  overflow: hidden;
  position: relative;
  height: inherit;
  width: 100%;
	padding: 10px 0;
	background: #353535;
		
}

.thum_wrap{
  display: block;
  position: absolute;
  left:0;
  transition:left 0.5s;
}

.thum_wrap:after{
  display: block;
  content: '.';
  height: 0;
  visibility: hidden;
  clear: both;
}

.thum_wrap .thum{
  display: block;
  float: left;
  max-height: 120px;
  overflow: hidden;
  line-height: 100%;

}

.thum_wrap .thum img{
  width:100%;
  height: auto;
  vertical-align: middle;
	margin: 0 10px;
}

.thum_wrap .current,
.thum_wrap .hover{
  background-color: #000;
}

.thum_wrap .current img,
.thum_wrap .hover img{
  opacity: 0.5;
}

.thum_btn{
  position: absolute;
  height: inherit;
  width: 100px;
  background: #000;
	opacity: 0.9;
}

.thum_btn:hover{
	cursor: pointer;
}

.thum_next{
  left:0;
  background-image: url(../image/ico_arrow_next.png);
  background-repeat: no-repeat;
  background-position: center;
}

.thum_prev{
  right:0;
  background-image: url(../image/ico_arrow_prev.png);
  background-repeat: no-repeat;
  background-position: center;
}
@media all and (max-width: 740px) {

.thum_wrap .thum img{
	margin: 0 3px;
}	
	
.thum_btn{
  position: absolute;
  height: inherit;
  width: 30px;
  background-size: contain;
	opacity: 0.9;
}
}