@charset "UTF-8";
.video-play {
	position: relative;
	display: inline-block;
}
.video-play::before,
.video-play::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.5s ease;
	display: block;
	opacity: 0.8;
}
.video-play::before {
	z-index: 2;
	background-color: rgba(255, 255, 255);
	border-radius: 50%;
	width: 64px;
	height: 64px;
}
.video-play::after {
	z-index: 3;
	background-color: #000;
	width: calc(24px / 2 * tan(60deg));
	height: 24px;
	margin-left: 2px;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.video-play:hover:before,
.video-play:hover::after {
	transform: translate(-50%, -50%) scale(1.1);
	opacity: 1;
}
.cm-play{
	text-align: center;
	margin: 35px 0px 20px 0px;
}