/*!
*  - v1.5.0



/* 基本構造
--------------------------------------------------*/
.slider-pro {
	position: relative;
	margin: 0 auto;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.sp-slides-container {
	position: relative;
}

.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;
}

.sp-no-js {
	overflow: hidden;
	max-width: 100%;
}


/* セレクトボタン
--------------------------------------------------*/
.sp-buttons {
	position: relative;
	width: 100%;
	text-align: center;
	padding-top: 10px;
}

.sp-rtl .sp-buttons {
	direction: rtl;
}

.sp-full-screen .sp-buttons {
	display: none;
}


/* セレクトボタンカラー
--------------------------------------------------*/

.sp-button {
	width: 10px;
	height: 10px;
	border: 2px solid #0000b6;
	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: #0000b6;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.sp-button {
		width: 14px;
		height: 14px;
	}
}

@media only screen and (min-width: 568px) and (max-width: 768px) {
	.sp-button {
		width: 16px;
		height: 16px;
	}
}

@media only screen and (min-width: 320px) and (max-width: 568px) {
	.sp-button {
		width: 18px;
		height: 18px;
	}
}


/* ネクストボタン
--------------------------------------------------*/
.sp-previous-arrow,
.sp-next-arrow {
  position: absolute;
  top: 50%;
  left: auto;
  right: auto;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #0000b6;
  border-radius: 50%;
  transition: 0.15s linear;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0; /* ← これをゼロに */
}

/* ホバー時 */
.sp-previous-arrow:hover,
.sp-next-arrow:hover {
  opacity: 0.5;
  background: #0000b6;
}

/* Font Awesome 矢印 */
.sp-previous-arrow::before,
.sp-next-arrow::before {
  font-family: "Font Awesome 6 Free";
  color: #fff;
  content: '\f054';
  font-size: 20px;
  font-weight: 900;
}

/* 左矢印は回転だけに専念 */
.sp-previous-arrow::before {
  transform: rotate(180deg);
}

/* 位置調整（左右方向） */
.sp-previous-arrow {
  left: 30%;
  margin-left: -22.79vw;
}

.sp-next-arrow {
  right: 30%;
  margin-right: -22.79vw;
}


/* アニメーション next ボタンクリック時に左へ bounce
--------------------------------------------------*/
