/**
 * autoplay が効かない環境（例: iOS 省電力モード）向けの再生オーバーレイ
 */
.wp-video {
  position: relative;
  width: 100% !important;
}

.wp-video video {
  width: 100% !important;
  height: auto !important;
}

.wp-video-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.wp-video-play-overlay[hidden] {
  display: none !important;
}

.wp-video-play-overlay__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.25);
  cursor: pointer;
  color: #111;
  transition: transform 0.15s ease, background 0.15s ease;
}

.wp-video-play-overlay__btn:hover,
.wp-video-play-overlay__btn:focus-visible {
  transform: scale(1.05);
  background: #fff;
}

.wp-video-play-overlay__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.wp-video-play-overlay__btn svg {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  margin-left: 0.2rem;
}