/* ----------------------------------------------------
  動画一覧ページ
---------------------------------------------------- */
.thumbnail-img-wrap {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	background-color: #000000;
	border-radius: 5px;
	overflow: hidden;
}
.thumbnail-img-wrap img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	border-radius: 0;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}


/* ----------------------------------------------------
  動画閲覧ページ
---------------------------------------------------- */
#videoplayer-wrapper {
  width: 100%;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  background-color: #000000;
  color: #FFFFFF;
}
#videoplayer-back {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  /*position: absolute;*/
}
#videoplayer-wrapper .mejs__container {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#videoplayer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#videoplayer-wrapper .thumbanner {
  height: 100%;
}
#videoplayer-wrapper .playicon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ----------------------------------------------------
  動画閲覧画面  1024px幅以下
---------------------------------------------------- */
@media screen and (max-width: 1024px) {
  #videoplayer-wrapper {
    max-width: calc(90vh * 16 / 9);
  }
}