/* ========================================
   🎬 ファーストビュー視聴ボタン（ページ上部固定）
   ======================================== */
.firstview-watch-btn {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ff4081;
  text-align: center;
  padding: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.firstview-watch-btn a {
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
  text-decoration: none;
  display: inline-block;
}

/* ========================================
   🎯 CTAボタン群（動画・購入・コメント）
   ======================================== */
.video-button-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}

.video-button-column a {
  display: block;
  width: 90%;
  max-width: 400px;
  background: #ff4081;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: background 0.3s ease;
}

.video-button-column a:hover {
  background: #e91e63;
}

/* 🎯 CTAボタン（横並び用） */
.video-button-column {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 24px 0;
}

.video-button-column a {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  background-color: #0077cc;
  transition: background-color 0.2s ease;
  text-align: center;
}

.video-button-column a:hover {
  background-color: #005fa3;
}

/* 🔴 サンプル動画補助ボタン */
.video-button-column a.btn-watch {
  background-color: #e53935;
}
.video-button-column a.btn-watch:hover {
  background-color: #c62828;
}

/* 🛒 単品購入ボタン */
.video-button-column a.btn-purchase {
  background-color: #2e7d32;
}
.video-button-column a.btn-purchase:hover {
  background-color: #1b5e20;
}

/* 💬 コメントボタン */
.video-button-column a.btn-comment {
  background-color: #9b59b6;
}
.video-button-column a.btn-comment:hover {
  background-color: #8e44ad;
}

/* ========================================
   📱 モバイル対応（CTAボタン縦並び）
   ======================================== */
@media (max-width: 600px) {
  .video-button-column {
    flex-direction: column;
    align-items: stretch;
  }

  .video-button-column a {
    width: 100%;
    font-size: 18px;
  }
}

/* ========================================
   🧩 セクションタイトル（見出し）
   ======================================== */
.section-title {
  font-size: 1.2em;
  margin-top: 24px;
  margin-bottom: 12px;
  border-left: 4px solid #ff4081;
  padding-left: 8px;
}

/* ========================================
   🏷️ ジャンルタグ（回遊リンク）
   ======================================== */
.tag-grid.genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
  justify-content: center;
}

.tag-button {
  background: #f0f0f0;
  color: #333;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9em;
  text-decoration: none;
  transition: background 0.2s ease;
}

.tag-button:hover {
  background: #e0e0e0;
}

/* ========================================
   🧼 リンク下線の強制削除（テーマ干渉対策）
   ======================================== */
.video-button-column a,
.firstview-watch-btn a,
.tag-button,
.btn-review-toggle {
  text-decoration: none !important;
}


.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  justify-content: center;
  align-items: center;
}

.meta-item {
  font-size: 0.95em;
  background: #f9f9f9;
  padding: 8px 12px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
/* 📝 レビュー表示セクション */
.related-reviews {
  margin-top: 20px;
  padding: 10px 15px;
  background: #f9f9f9;
  border-left: 4px solid #c2185b;
  border-radius: 6px;
}

.related-reviews ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.related-reviews li {
  margin-bottom: 12px;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 8px;
}

.related-reviews li a {
  font-weight: bold;
  color: #c2185b;
  text-decoration: none;
}

.related-reviews li a:hover {
  text-decoration: underline;
}

/* 💡 レビュー件数ボタン（上部に表示） */
.review-button-area {
  margin: 20px 0;
  text-align: center;
}

.btn-review-toggle {
  display: inline-block;
  background: #fce4ec;
  color: #c2185b;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-review-toggle:hover {
  background: #f8bbd0;
}

/* 🧾 レビュー抜粋 */
.related-reviews p {
  font-size: 0.9em;
  color: #666;
  margin: 4px 0 0;
}
