<br />
<b>Deprecated</b>:  The each() function is deprecated. This message will be suppressed on further calls in <b>/home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php</b> on line <b>456</b><br />
/* ==========================================================

			スライダー用css

========================================================== */
/* スライダー本体 */
.mod-slider {
	padding-bottom: 42px;
	margin-bottom: 18px;
}
.mod-slider__item {
	border: solid 1px #d8d8d8;
}

/* 矢印 */
.mod-slider__arrow {
	position: absolute;
	display: block;
	bottom: 0;
	background-color: transparent;
	border: none;
	cursor: pointer;
	fill: #8e8e8e;
}
/* < */
.mod-slider__arrow--prev {
	transform: rotate(-180deg);
}

/* 再生/停止ボタン */
.mod-slider__toggle {
	position: absolute;
	bottom: 9px;
	background-color: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
}
.mod-slider__toggle:hover {
	opacity: 0.6;
}
.mod-slider__toggle-icon {
	display: block;
	position: relative;
	background: rgb(199, 199, 199);
	background: linear-gradient(
		0deg,
		rgba(199, 199, 199, 1) 0%,
		rgba(254, 254, 254, 1) 100%
	);
	border: solid 1px #a8a8a8;
	border-radius: 5px;
	width: 25px;
	height: 20px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
/* 停止 */
.mod-slider__toggle-pause::before,
.mod-slider__toggle-pause::after {
	position: absolute;
	display: block;
	content: "";
	width: 2px;
	height: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: #7f7f7f;
}
.mod-slider__toggle-pause::before {
	left: 8px;
}
.mod-slider__toggle-pause::after {
	right: 8px;
}
/* 再生 */
.mod-slider__toggle-play::before {
	position: absolute;
	display: block;
	content: "";
	width: 10px;
	height: calc(tan(60deg) * 10px / 2);
	top: 50%;
	left: 8px;
	transform: translateY(-50%) rotate(90deg);
	background: #7f7f7f;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

/* ページネーション */
.mod-slider__pagination {
	position: absolute;
	width: fit-content;
	max-width: 500px;
	bottom: 12px;
	left: 50%;
	transform: translateX(-50%);
}
.mod-slider__pagination-dot {
	background: #c7c7c7;
	width: 7px;
	height: 7px;
	margin: 5px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	padding: 0;
}
.mod-slider__pagination-dot.is-active {
	background: #7f7f7f;
}
