@charset "UTF-8";
a.play{
	pointer-events: none;
}
.upload_video a.play,
.upload_both a.play{
	display: none;
}
/** iPad **/
@media only screen and (min-width: 768px) and (max-width: 959px){
}
/** smart phone **/
@media screen and (max-width: 767px){
	.upload_video a.play,
	.upload_both a.play{
		display: block;
		pointer-events: auto;
	}
	.upload_both a.play{
		position: relative;
	}
	.upload_both a.play:before{
		content: "";
		background-image: url(../images/play_icon.png);
		background-repeat: no-repeat;
		background-size: contain;
		width: 120px;
		display: block;
		height: 120px;
		position: absolute;
		left: 50%;
		top: 50%;
		margin-top: -60px;
		margin-left: -60px;
	}
	.upload_video video,
	.upload_both video{
		display: none;
	}
}