/* CSS Document */
.seriesBox {
	margin-bottom: 40px;
	position: relative;
}
.seriesBox.comingsoon .useBox,
.seriesBox.comingsoon h3 {
filter: blur(3px);
pointer-events: none;
}
.seriesBox.comingsoon::after {
	content: 'Coming Soon!';
	font-size: 80px;
	width: 100%;
	text-align: center;
	font-weight: bold;
	color: #fff;
	position: absolute;
  top: 50%;
  left: 50%;
  /* 中央寄せ */
  transform: translate(-50%, -50%) rotate(25deg);
	text-shadow: 0 1px 1px #000000;
}
@media screen and (max-width: 639px) {
.seriesBox.comingsoon::after {
	font-size: 50px;
	}
}

.seriesBox .series_ttl {
	font-size: 180%;
	font-weight: bold;
	margin-bottom: 8px;
}
.seriesBox .series_ttl::before {
	content: "";
	display: inline-block;
	width: 35px;
	height: 25px;
	background-image: url("../common/icon-tv.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 5px;
	vertical-align:bottom;
}
.seriesBox .series_ttl span{
	font-size: 70%;
}
@media screen and (max-width: 639px) {
.seriesBox .series_ttl span{
	display: block;
	margin-top: 5px;
}
}

.seriesBox .useBox {
	margin-bottom: 20px;
}
