
/* 動画一覧全体 */
.movie-list .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
}

/* ページタイトル */
.movie-list .page-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: bold;
  color: #222;
}

/* グリッドレイアウト */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* 各動画カード */
.video-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1rem;
  background-color: #fafafa;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* 動画プレイヤー領域 */
.video-player {
  margin-bottom: 1rem;
}

.video-player iframe,
.video-player video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
}

/* タイトル */
.video-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #111;
}

/* 説明文 */
.video-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}
.video-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1rem;
}
