/* ── YouTube サムネイル ── */
.youtube-thumb {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.youtube-thumb img {
  display: block;
  width: 135px;
  height: 135px;
  object-fit: cover;
  border-radius: 4px;
}
.youtube-thumb::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 24px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  pointer-events: none;
  transition: background 0.2s;
}
.youtube-thumb:hover::after {
  background: rgba(0, 0, 0, 0.8);
}

/* ── YouTube モーダル オーバーレイ ── */
/* 初期状態は非表示 */
.youtube-modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 1em;
  box-sizing: border-box;
  z-index: 9999;
  overflow: auto;
}
/* open クラス付きで中央表示 */
.youtube-modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── モーダル内コンテンツ ── */
.youtube-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  margin: auto;
  background: transparent;
  box-sizing: border-box;
}

/* ── 動画ラッパー（16:9比率固定） ── */
.youtube-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;      /* 9/16 × 100% */
  background: #000;
}
.youtube-frame-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── 閉じるボタン ── */
/* ビューポート右上よりさらに下に、大きく表示 */
.youtube-modal-close {
  position: fixed;
  top: 60px;               /* さらに下に配置（前回の40px→60px） */
  right: 10px;
  display: inline-block;
  padding: 0.6em 0.8em;     /* さらに大きいクリックエリア */
  font-size: 5em;           /* さらに大きいサイズ */
  line-height: 1;
  color: #fff;              /* 白色 */
  background: none;
  border: none;
  cursor: pointer;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
  z-index: 10001;
}
.youtube-modal-close:hover {
  color: #ddd;
}
