.fanza-link-button {
  margin: 20px 0;
  text-align: center;
}

.fanza-link-button a {
  display: inline-block;
  background: linear-gradient(to right, #ff6666, #ff3333);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.fanza-link-button a:hover {
  background: linear-gradient(to right, #ff4444, #cc0000);
  transform: translateY(-2px);
}

/* タグ一覧（メーカー・監督・レーベル）の共通スタイル */
.tag-list,
.genre-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* 個別のリスト項目 */
.tag-list li,
.genre-list li {
  background: #f5f5f5;
  border-radius: 6px;
  padding: 0.4em 0.8em;
  list-style: none !important;
  margin: 0;
  position: relative;
}

/* マーカー（・）を完全に消す：一部ブラウザ対応 */
.tag-list li::marker,
.genre-list li::marker {
  content: "";
  display: none;
}

/* リンクスタイル */
.tag-list li a,
.genre-list li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.2s ease;
}

/* ホバー時の色変化 */
.tag-list li a:hover,
.genre-list li a:hover {
  color: #d6336c; /* FANZA寄りのピンク */
}

