html.lock-scroll ,body.lock-scroll {
  overflow-y: hidden; /* スクロールをロック */
}

#player {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.hidden {
    display: none;
}
#skip-button {
  display: none;
  align-items: center;
  border: 1px solid #ffffff;
  /* border-radius: 34px; */
  bottom: 10px;
  color: #ffffff;
  font-size: 14px;
  /* font-weight: 700; */
  padding: 5px;
  line-height: 1.5;
  position: absolute;
  left: 5%;
  width: 120px;
  z-index: 9999;
  cursor: pointer !important;
  /* display: block; */
}
#skip-button.show {
  display: block;
}

/* 黒いオーバーレイ */
#overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 99;
}

/* オーバーレイが表示されるときのクラス */
#overlay.show {
  display: block;
    opacity: 1;  /* 80%の不透明度で表示 */
    transition: opacity 0s ease-in-out;
}


#video-cover {
  display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
}
#video-cover.show {
  display: block;
}

