
/* ================================
   YouTube ギャラリー全体レイアウト
   ================================ */
.youtube-wrapper{
  width:100%;
  max-width:1280px;
  margin:0 auto;
}

.youtube-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* PCは3列固定 */
  gap: 16px;
  margin: 16px 0;
}

/* ================================
   各アイテム
   ================================ */
.youtube-item {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.youtube-item:hover {
  transform: translateY(-3px);
}

/* ================================
   サムネイル（16:9 固定）
   ================================ */
.youtube-thumb {
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}

.youtube-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================================
   再生アイコン
   ================================ */
.youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: url('https://www.osccl.com/img/play-icon.png') no-repeat center center;
  background-size: contain;
  transform: translate(-50%, -50%);
  opacity: 0.85;
  pointer-events: none;
}

/* ================================
   タイトル
   ================================ */
.youtube-title {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  font-weight: 500;
}

/* ================================
   チャンネル名タイトル
   ================================ */

.yt-title{
  font-weight:bolder;
}

/* ================================
   スマホ（720px以下）は2列
   ================================ */
@media (max-width: 720px) {
  .youtube-list {
    grid-template-columns: repeat(2, 1fr); /* スマホは2列 */
    gap: 14px;
  }

  .youtube-title {
    font-size: 14px;
  }

  .youtube-play {
    width: 48px;
    height: 48px;
  }
}


