/* ===== MOVIEページ ===== */
.movie-page {
  padding-top: calc(12% + 60px);
  overflow-y: auto;
  min-height: 100vh;
  padding-bottom: 120px;
}

/* ページタイトル */
.page-title {
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.15em;
  color: #222;
  margin-bottom: 60px;
}

/* タグボタン */
.movie-tags {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
}

.movie-tags button {
  background: none;
  border: none;
  font-size: 14px;
  letter-spacing: 0.15em;
  cursor: pointer;
  color: #444;
}

.movie-tags button.active {
  text-decoration: underline;
}

/* ===== 動画リスト ===== */
.movie-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  padding: 0 4%;
  justify-items: center;
}

/* 各動画ブロック */
.movie-item {
  display: none;
  width: 80%;
  max-width: 720px;
  text-align: center;
}

/* iframe */
.movie-item iframe {
  display: block;
  margin: 0 auto;
  width: 100%;
  aspect-ratio: 16 / 9;
}

/* 動画タイトル */
.movie-item .movie-title {
  margin-top: 8px;
  font-size: 14px;
  color: #444;
  text-align: center;
}

/* 選択カテゴリだけ表示 */
.movie-item.active {
  display: block;
}
