@charset "UTF-8";

@media (min-aspect-ratio: 8/5) {
}

@media (max-aspect-ratio: 3/2) {
}

html,body{
  padding:0;
  margin:0;
  height:100%
}

.main {
  position:relative;
  width:100%;
  height:100%;
  background-color:#ffffff;
  height: 100vh;
  padding: 0;
}

#ext-volume-panel {
  height:3px;
  background: rgba(192, 192, 192, 0.3);
  border: none;
}
#ext-volume-panel .ui-slider-handle {
  height:3px;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: 1.5px;
  background: rgb(204, 204, 204);
}

#mask {
  background:
	url('../img/end.png'), /* 背景画像 */ 
	rgb(0, 0, 0); /* 背景色 */
  /* 画像の表示設定 */
  background-repeat: no-repeat; /* 画像を繰り返さない */
  background-position: center center; /* 画像を要素の中央に配置 */
  background-size: contain; /* 画像をアスペクト比を保ったまま要素内に収める */
  position:absolute;
  top:0;
  left:0;
  width:100%; height:100%;
  z-index:100;
  color: rgb(250, 250, 250);
}

#mask h3 {
  position: absolute;
  bottom: 10px;   /* 下からの余白 */
  right: 10px;    /* 右からの余白 */
  margin: 0;
}

.player-container {
  position: relative;
  overflow: hidden;
}
.player-label {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 100;
  padding: 0;
  color: white;
  background: rgb(255, 0, 0);
  text-align:center;
  vertical-align:middle;
}
.player-label>span {
  display: block;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  line-height:1;
  margin: 0;
  padding: 0;
}

/* banner slideshow */
.banner-slideshow {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.banner-slideshow .banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.0s ease;
  z-index: 0;
}

.banner-slideshow .banner.active {
  opacity: 1;
  z-index: 1;
}
a.disabled-link {
  pointer-events: none;
  cursor: default;
}
