/*カルーセルの箱*/
#carousel{
	width:100%;
	height:100%;
	display:block;
	margin-top:30%;
}


/* 上側のはみ出す部分を白くする */
.whitebox {
    background-color: white;
    margin : 0;
    padding: 0;
    width: 100%;
    height: 100%;
    opacity:0.6;
    filter:alpha(opacity=60);
    -ms-filter: "alpha( opacity=60 )";
    /* 上にかぶせる */
    position: absolute;
    z-index: 10;
    /* マウスイベントが下のリンクに反応するようにする */
    pointer-events: none;
}

.whitebox-left {
    margin-left: -400%;
	margin-top:55%;
    padding-left: 300%;
}

.whitebox-right {
    margin-left: 100%;
	margin-top:55%;
    padding-right: 300%;
}

/* 上側を両端まで表示させる */
.slick-list { 
    overflow: visible;
}
/* サムネイル */
.slick-thumb {
    width:75%;
    cursor:pointer;
}

/* 上下の間の調整 */
.slick-slider {
    margin-bottom: 15px;
}

/* 矢印ボタンの位置調整 */
#slide_upper {
    position:relative;
}
 .slick-prev, .slick-next {
    width:30px;
    height:30px;
    margin: 0px 50px;
}
.slick-prev:before, .slick-next:before {
    content:"";
}

