@charset "UTF-8";
/* ===================================================================
slider-pro.css
=================================================================== */

.slick-initialized{
  display: block; /*slick-initializedが付与されたら表示*/
}
#slider-box {
	margin: 0 auto ;
	height: 340px;
}

.slider-pro {
	position: relative;
	margin: 0 auto;
}

.sp-slides-container {
	position: relative;
	margin: 0px auto 0 auto;
	background: #fff repeat-x;
}

.sp-mask {
	position: relative;
	overflow: hidden;
}

.sp-slides {
	position: relative;
	-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000;
}

.sp-slide {
	position: absolute;
}

.sp-image-container {
	overflow: hidden;
}

.sp-image {
	position: relative;
	display: block;
	border: none;
}


/* Buttons
--------------------------------------------------*/
.sp-buttons {
	position: relative;
	width: 100%;
	text-align: center;
	padding-top: 10px;
}

.sp-button {
	width: 10px;
	height: 10px;
	border: 1px solid #ccc;
	border-radius: 50%;
	margin: 4px;
	display: inline-block;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
}

.sp-selected-button {
	background-color: #ccc;
}

/* Arrows
--------------------------------------------------*/
.sp-fade-arrows {
	opacity: 0;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.sp-slides-container:hover .sp-fade-arrows {
	opacity: 1;
}

.sp-arrow {
	position: absolute;
	font-size: 30px;
	color: #FFF;
	text-shadow: 1px 1px 1px #888;
	cursor: pointer;
}

.sp-vertical .sp-arrow {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.sp-horizontal .sp-arrow {
	top: 50%;
	margin-top: -20px;
}

.sp-vertical .sp-arrow {
	left: 50%;
	margin-left: -10px;
}

.sp-previous-arrow:before {
	content: '\276e';
}

.ios .sp-previous-arrow:before,
.ie9 .sp-previous-arrow:before,
.ie8 .sp-previous-arrow:before,
.ie7 .sp-previous-arrow:before {
	content: '\25c0';
}

.ie8.sp-vertical .sp-previous-arrow:before,
.ie7.sp-vertical .sp-previous-arrow:before {
	content: '\25b2';
}

.sp-next-arrow:before {
	content: '\276f';
}

.ios .sp-next-arrow:before,
.ie9 .sp-next-arrow:before,
.ie8 .sp-next-arrow:before,
.ie7 .sp-next-arrow:before {
	content: '\25b6';
}

.ie8.sp-vertical .sp-next-arrow:before,
.ie7.sp-vertical .sp-next-arrow:before {
	content: '\25bc';
}

.sp-horizontal .sp-previous-arrow {
	left: 20px;
}

.sp-horizontal .sp-next-arrow {
	right: 20px;
}

.sp-vertical .sp-previous-arrow {
	top: 20px;
}

.sp-vertical .sp-next-arrow {
	bottom: 20px;
}

@media screen and (max-width: 1024px) {
	/* 769pxから1024pxまでのサイズ */
	.sp-button {
		width: 10px;
		height: 10px;
	}

	.sp-has-buttons {
		margin-bottom: 36px;
	}
}

@media screen and (max-width: 768px) {
/* 641pxから768pxまでのサイズ ipad　*/
	.sp-button {
		width: 10px;
		height: 10px;
	}

	.sp-has-buttons {
		margin-bottom: 38px;
	}
}

@media screen and (max-width: 640px) {
/* 640px未満のサイズ　スマートフォン */
#slider-box {
	height: auto;
}
	.sp-button {
		width: 10px;
		height: 10px;
	}

	.sp-has-buttons {
		margin-bottom: 40px;
	}

.sp-arrow {
	font-size: 20px;

}
}

