/* 動画ゲート用オーバーレイテキスト */
.video-gate-overlay-text {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  z-index: 9999;
  cursor: pointer;
  text-align: center;
  pointer-events: auto;
}
/* 動画再生ゲート用オーバーレイ */
.video-gate-overlay {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 480px;
  margin: 32px auto;
  cursor: pointer;
  pointer-events: auto;
}
.video-gate-overlay::after {
  content: '注意事項に同意してください';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  z-index: 10;
  pointer-events: none;
  text-align: center;
}
.video-gate-overlay video,
.video-gate-overlay .youtube-placeholder {
  pointer-events: none;
  filter: blur(2px) grayscale(0.5);
}
