@charset "UTF-8";

/* 動画リンク */
.video-link {
  color: #0066cc;
  text-decoration: none;
  transition: opacity 0.2s;
}

.video-link:hover {
  opacity: 0.7;
}

/* ポップアップオーバーレイ */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.popup-overlay.active {
  display: flex;
}

/* ポップアップコンテンツ */
.popup-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.popup-content video {
  width: 100%;
  display: block;
  max-height: 80vh;
}

/* 閉じるボタン */
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  color: #333;
  z-index: 10;
}

.close-btn:hover {
  background: white;
}

@media (max-width: 768px) {
  .popup-content {
    width: 95%;
  }

  .close-btn {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}