/* ============================================================
   GENRE LANDING PAGE — H/MIX GALLERY
   ============================================================ */

.genre-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
}

/* パンくず */
.genre-breadcrumb {
  font-size: 0.78rem;
  color: rgba(170, 210, 185, 0.5);
  margin-bottom: 2rem;
  font-family: 'Noto Sans JP', sans-serif;
}
.genre-breadcrumb a {
  color: rgba(170, 210, 185, 0.6);
  text-decoration: none;
}
.genre-breadcrumb a:hover { color: rgba(154, 223, 180, 0.9); }
.genre-breadcrumb__sep {
  margin: 0 0.4rem;
  opacity: 0.4;
}

/* ヒーロー */
.genre-hero {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 2rem 0;
}
.genre-hero__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: rgba(220, 235, 220, 0.95);
  margin: 0 0 0.4rem;
  letter-spacing: 0.04em;
}
.genre-hero__subtitle {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: rgba(170, 210, 185, 0.5);
  letter-spacing: 0.12em;
  margin: 0 0 0.8rem;
}
.genre-hero__count {
  font-size: 0.82rem;
  color: rgba(154, 223, 180, 0.7);
  font-family: 'Noto Sans JP', sans-serif;
}

/* 説明文 */
.genre-intro {
  margin-bottom: 2.5rem;
  padding: 0 0.5rem;
}
.genre-intro p {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 2;
  color: rgba(200, 215, 200, 0.85);
}

/* セクションタイトル */
.genre-section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(170, 210, 185, 0.7);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(80, 140, 100, 0.15);
  letter-spacing: 0.04em;
}

/* 代表曲リスト */
.genre-track-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.genre-track {
  border-bottom: 1px solid rgba(80, 140, 100, 0.08);
}
.genre-track__link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0.5rem;
  text-decoration: none;
  transition: background 0.15s;
  border-radius: 4px;
}
.genre-track__link:hover {
  background: rgba(80, 140, 100, 0.06);
}
.genre-track__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.9rem;
  color: rgba(220, 235, 220, 0.9);
  flex: 1;
}
.genre-track__title-en {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  color: rgba(170, 210, 185, 0.4);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.genre-track__duration {
  font-size: 0.75rem;
  color: rgba(170, 210, 185, 0.4);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  min-width: 3rem;
  text-align: right;
}

/* CTA */
.genre-cta {
  text-align: center;
  margin: 1.5rem 0 2.5rem;
}
.genre-cta__btn {
  display: inline-block;
  padding: 0.7rem 2rem;
  border: 1px solid rgba(80, 160, 110, 0.3);
  border-radius: 4px;
  color: rgba(154, 223, 180, 0.85);
  font-size: 0.85rem;
  font-family: 'Noto Sans JP', sans-serif;
  text-decoration: none;
  transition: all 0.2s;
}
.genre-cta__btn:hover {
  background: rgba(80, 160, 110, 0.1);
  border-color: rgba(80, 160, 110, 0.5);
  color: rgba(154, 223, 180, 1);
  text-decoration: none;
}

/* こんな用途に */
.genre-usecase-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.genre-usecase-list li {
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(80, 140, 100, 0.15);
  border-radius: 999px;
  font-size: 0.78rem;
  color: rgba(170, 210, 185, 0.65);
  font-family: 'Noto Sans JP', sans-serif;
}

/* 関連ジャンル */
.genre-related {
  margin-bottom: 2rem;
}
.genre-related__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.genre-related__link {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(80, 140, 100, 0.2);
  border-radius: 4px;
  color: rgba(154, 223, 180, 0.7);
  font-size: 0.82rem;
  font-family: 'Noto Sans JP', sans-serif;
  text-decoration: none;
  transition: all 0.15s;
}
.genre-related__link:hover {
  background: rgba(80, 140, 100, 0.08);
  border-color: rgba(80, 140, 100, 0.4);
  color: rgba(154, 223, 180, 1);
  text-decoration: none;
}

/* レスポンシブ */
@media (max-width: 600px) {
  .genre-page { padding: 1.5rem 1rem 4rem; }
  .genre-hero__title { font-size: 1.4rem; }
  .genre-track__title-en { display: none; }
  .genre-track__link { padding: 0.6rem 0.3rem; }
}
