@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/*
 * 目次:
 * 1. 変数・ベース
 * 2. フロントページ
 * 3. 選手データ・戦績
 * 4. 円グラフ (pie chart)
 * 5. 棒グラフ (bar graph)
 * 6. テーブル・記録
 * 7. 楽曲・SNS
 * 8. 検索・カテゴリ・一覧
 * 9. イベント・ジム・その他
 * 10. レスポンシブ・ユーティリティ
 */

/* ==========================================================================
   1. 変数・ベース
   ========================================================================== */

:root {
  --kkg-win: #ea6f6f;
  --kkg-lose: #7377da;
  --kkg-draw: #77ea72;
  --kkg-record-font: fantasy;
  /* 現代UI用トークン */
  --kkg-primary: #6366f1;
  --kkg-primary-hover: #4f46e5;
  --kkg-surface: #ffffff;
  --kkg-surface-alt: #f8fafc;
  --kkg-border: #e2e8f0;
  --kkg-text: #1e293b;
  --kkg-text-muted: #64748b;
  --kkg-radius: 12px;
  --kkg-radius-sm: 8px;
  --kkg-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  --kkg-shadow-hover: 0 12px 24px -8px rgba(0, 0, 0, 0.15);
  --kkg-transition: 0.2s ease;
}

/* ==========================================================================
   2. フロントページ（現代UI）
   ========================================================================== */

.home-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Sans", "Noto Sans JP", sans-serif;
  color: var(--kkg-text);
}

/* トップ統計バッジ */
.home-stats {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, var(--kkg-primary) 0%, var(--kkg-lose) 100%);
  color: #fff;
  border-radius: var(--kkg-radius);
  box-shadow: var(--kkg-shadow);
}

.home-stats__value {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.home-stats__label {
  font-size: 0.9rem;
  opacity: 0.95;
}

/* セクション */
.home-section {
  margin-bottom: 2.5rem;
}

.home-section:last-of-type {
  margin-bottom: 0;
}

/* セクション見出し（現代） */
.home-page .frontpage-header {
  position: relative;
  padding: 0 0 0.6rem;
  margin-bottom: 1.25rem;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--kkg-text);
  border-bottom: 3px solid var(--kkg-border);
}

.home-page .frontpage-header a {
  color: inherit;
  text-decoration: none;
  border-bottom: none;
  padding-bottom: 0;
  transition: color var(--kkg-transition);
}

.home-page .frontpage-header a:hover {
  color: var(--kkg-primary);
}

.home-page h3.frontpage-header {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.home-section-note {
  text-align: right;
  margin: -0.25rem 0 1rem;
  font-size: 0.85rem;
  color: var(--kkg-text-muted);
}

/* カードグリッド（選手・イベント・ジム）PCは4列・タブレット以下はメディアクエリで対応 */
.home-page .custom-post-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: flex-start;
}

.home-page .all_related_post_innner_content {
  width: calc((100% - 3.75rem) / 4); /* 4列（gap 1.25rem × 3） */
  min-width: 140px;
  background: var(--kkg-surface);
  border-radius: var(--kkg-radius);
  overflow: hidden;
  box-shadow: var(--kkg-shadow);
  border: 1px solid var(--kkg-border);
  transition: transform var(--kkg-transition), box-shadow var(--kkg-transition);
  padding: 0;
  text-align: center;
}

.home-page .all_related_post_innner_content:hover {
  transform: translateY(-4px);
  box-shadow: var(--kkg-shadow-hover);
}

.home-page .all_related_post_innner_content > a:first-of-type {
  display: block;
  overflow: hidden;
  background: var(--kkg-surface-alt);
}

.home-page .all_related_post_innner_content img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.home-page .all_related_post_innner_content .thumnail-link {
  display: block;
  padding: 0.6rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--kkg-text);
  text-decoration: none;
  transition: color var(--kkg-transition);
}

.home-page .all_related_post_innner_content .thumnail-link:hover {
  color: var(--kkg-primary);
}

span.thumbnail img {
  height: 250px;
  object-fit: cover;
  margin: 0 auto;
  display: block;
}

/* ランキングバッジ */
.home-page .ranking-container {
  position: relative;
}

.home-page .ranking {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--kkg-radius-sm);
  backdrop-filter: blur(4px);
}

/* ページネーション */
.home-page .pagenation-warpper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 1.5rem;
}

.home-page .pagenation-warpper a.page-numbers,
.home-page .pagenation-warpper span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  color: var(--kkg-text);
  text-decoration: none;
  border: 1px solid var(--kkg-border);
  border-radius: var(--kkg-radius-sm);
  font-size: 0.9rem;
  transition: background var(--kkg-transition), border-color var(--kkg-transition), color var(--kkg-transition);
}

.home-page .pagenation-warpper a.page-numbers:hover {
  background: var(--kkg-surface-alt);
  border-color: var(--kkg-primary);
  color: var(--kkg-primary);
}

.home-page .pagenation-warpper span.page-numbers.current {
  background: var(--kkg-primary);
  border-color: var(--kkg-primary);
  color: #fff;
}

/* 検索フォームエリア */
.home-page .toppage-searchform-wapper {
  margin: 0;
  padding: 1.5rem;
  background: var(--kkg-surface-alt);
  border-radius: var(--kkg-radius);
  border: 1px solid var(--kkg-border);
}

.home-page .toppage-search-form form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.home-page .toppage-search-form input[type="text"] {
  flex: 1;
  min-width: 180px;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--kkg-border);
  border-radius: var(--kkg-radius-sm);
  font-size: 1rem;
  transition: border-color var(--kkg-transition), box-shadow var(--kkg-transition);
}

.home-page .toppage-search-form input[type="text"]:focus {
  outline: none;
  border-color: var(--kkg-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.home-page .toppage-search-form input[type="submit"] {
  padding: 0.6rem 1.25rem;
  background: var(--kkg-primary);
  color: #fff;
  border: none;
  border-radius: var(--kkg-radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--kkg-transition);
}

.home-page .toppage-search-form input[type="submit"]:hover {
  background: var(--kkg-primary-hover);
}

.home-page .toppage-search-form p {
  font-size: 0.9rem;
  color: var(--kkg-text-muted);
  margin: 0;
}

/* バックボーン検索 select */
.home-page .toppage-searchform-wapper select {
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--kkg-border);
  border-radius: var(--kkg-radius-sm);
  font-size: 1rem;
  min-width: 200px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.home-page .toppage-searchform-wapper input[type="submit"] {
  padding: 0.6rem 1.25rem;
  background: var(--kkg-primary);
  color: #fff;
  border: none;
  border-radius: var(--kkg-radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

/* 検索結果カード */
.home-page .top-search-result {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.home-page .top-search-result article {
  width: calc(33.333% - 0.67rem);
  min-width: 200px;
  padding: 1rem;
  background: var(--kkg-surface);
  border-radius: var(--kkg-radius);
  border: 1px solid var(--kkg-border);
  transition: box-shadow var(--kkg-transition);
}

.home-page .top-search-result article:hover {
  box-shadow: var(--kkg-shadow-hover);
}

.home-page .top-search-result article .thumnail-link {
  font-weight: 600;
  color: var(--kkg-text);
}

.home-page .top-search-result article .thumnail-link:hover {
  color: var(--kkg-primary);
}

/* バックボーン検索結果 */
.home-page .home-section--backbone article {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--kkg-border);
}

.home-page .home-section--backbone article:last-child {
  border-bottom: none;
}

.home-page .home-section--backbone article h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.home-page .home-section--backbone article h3 a {
  color: var(--kkg-text);
  text-decoration: none;
}

.home-page .home-section--backbone article h3 a:hover {
  color: var(--kkg-primary);
}

/* NEWS フィードリスト */
.home-page .feed-list-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-page .feed-list-wrap .feed-list {
  width: calc(33.333% - 0.67rem);
  min-width: 260px;
  box-sizing: border-box;
}

.home-page .feed-list {
  background: var(--kkg-surface);
  border-radius: var(--kkg-radius);
  overflow: hidden;
  border: 1px solid var(--kkg-border);
  transition: box-shadow var(--kkg-transition);
}

.home-page .feed-list:hover {
  box-shadow: var(--kkg-shadow-hover);
}

.home-page .feed-list .date {
  display: block;
  font-size: 0.8rem;
  color: var(--kkg-text-muted);
  margin-bottom: 0.25rem;
}

.home-page .feed-list a {
  color: var(--kkg-text);
  text-decoration: none;
  font-weight: 600;
}

.home-page .feed-list a:hover {
  color: var(--kkg-primary);
}

.home-page .feed-list .thumbnail {
  display: block;
  overflow: hidden;
  background: var(--kkg-surface-alt);
}

.home-page .feed-list .thumbnail img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.home-page .feed-list .card__text {
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: var(--kkg-text-muted);
  line-height: 1.5;
}

/* 後方互換: 従来の top-page-info クラスが他で使われている場合 */
p.top-page-info {
  text-align: center;
  margin: 1em;
  font-family: inherit;
}

/* ==========================================================================
   2.5 選手プロフィールページ（page_html.py 出力）現代UI
   ========================================================================== */

.fighter-profile--modern {
  max-width: 1000px;
  width: 100%;
  min-width: 0; /* flex 内で縮小できるように */
  margin: 0 auto 2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Sans", "Noto Sans JP", sans-serif;
  color: var(--kkg-text, #1e293b);
  box-sizing: border-box;
}

/* スマホ: テーブルがはみ出さないようプロフィール全体をスクロール可能に（ラッパー未導入の旧投稿用フォールバック） */
@media screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
  .fighter-profile--modern {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }
}

.fighter-profile--modern .fighter-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--kkg-surface-alt, #f8fafc);
  border-radius: var(--kkg-radius, 12px);
  border: 1px solid var(--kkg-border, #e2e8f0);
  margin-bottom: 1.5rem;
}

.fighter-profile--modern .left-container {
  flex-shrink: 0;
  margin: 0;
}

.fighter-profile--modern .left-container img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--kkg-radius, 12px);
  display: block;
}

.fighter-profile--modern .fighter-info {
  flex: 1;
  min-width: 200px;
  position: relative;
  padding: 0 0 0 1rem;
  border: none;
}

.fighter-profile--modern .fighter-info::before,
.fighter-profile--modern .fighter-info::after {
  display: none;
}

.fighter-profile--modern .fighter-info .profile-text {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.fighter-profile--modern .champions {
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  background: var(--kkg-surface, #fff);
  border-radius: var(--kkg-radius, 12px);
  border: 1px solid var(--kkg-border, #e2e8f0);
}

.fighter-profile--modern .champions .description-text {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
}

.fighter-profile--modern .champions ul {
  padding-left: 1.25rem;
  margin: 0;
}

.fighter-profile--modern .fighter-sns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.fighter-profile--modern .flowbtn {
  width: 48px;
  height: 48px;
  font-size: 1.25rem;
  border-radius: var(--kkg-radius-sm, 8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fighter-profile--modern .flowbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fighter-profile--modern .flowbtn svg {
  width: 24px;
  height: 24px;
  bottom: 0;
}

.fighter-profile--modern .fighter_rocord_all {
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  background: var(--kkg-surface, #fff);
  border-radius: var(--kkg-radius, 12px);
  border: 1px solid var(--kkg-border, #e2e8f0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.fighter-profile--modern .fighter_record_row {
  margin-bottom: 1.5rem;
  padding: 1rem 1.5rem;
  background: var(--kkg-surface-alt, #f8fafc);
  border-radius: var(--kkg-radius, 12px);
  border: 1px solid var(--kkg-border, #e2e8f0);
}

.fighter-profile--modern .fighter_record_row h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}

.fighter-profile--modern .fighter-table-record {
  margin-bottom: 1.5rem;
}

.fighter-profile--modern .fighter-table-record .content {
  margin: 0 0 1.5rem;
  padding: 1.25rem;
  background: var(--kkg-surface, #fff);
  border-radius: var(--kkg-radius, 12px);
  border: 1px solid var(--kkg-border, #e2e8f0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.fighter-profile--modern .c-title {
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--kkg-text, #1e293b);
  border-bottom: 2px solid var(--kkg-border, #e2e8f0);
}

/* 戦績テーブル: ラッパー（スマホで body 幅を超えず横スクロール） */
.fighter-profile--modern .record-table-wrap {
  margin-top: 1.5rem;
  width: 100%;
  max-width: 100%;
  min-width: 0; /* flex 子で縮小できるように */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overflow-y: visible;
}

.fighter-profile--modern .record-table-wrap .c-title,
.fighter-profile--modern .record-table-wrap table.kick_boxing_records,
.fighter-profile--modern .record-table-wrap table.mma_records {
  margin-top: 0;
}

/* スマホ: ラッパーがある場合はプロフィール全体の横スクロールをやめ、テーブル部分だけスクロール */
@media screen and (max-width: 767px) {
  .fighter-profile--modern:has(.record-table-wrap) {
    overflow-x: visible;
  }
  .fighter-profile--modern .record-table-wrap {
    width: 100%;
    max-width: 100%;
  }
}

.fighter-profile--modern table.mma_records,
.fighter-profile--modern table.kick_boxing_records {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  background: var(--kkg-surface, #fff);
  border-radius: var(--kkg-radius, 12px);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.fighter-profile--modern table.mma_records tbody tr,
.fighter-profile--modern table.kick_boxing_records tbody tr {
  border-bottom: 1px solid var(--kkg-border, #e2e8f0);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.fighter-profile--modern table.mma_records tbody tr:last-child,
.fighter-profile--modern table.kick_boxing_records tbody tr:last-child {
  border-bottom: none;
}

.fighter-profile--modern table.mma_records tbody tr:hover,
.fighter-profile--modern table.kick_boxing_records tbody tr:hover {
  background: var(--kkg-surface-alt, #f8fafc);
}

.fighter-profile--modern table.mma_records tbody tr:first-child:hover,
.fighter-profile--modern table.kick_boxing_records tbody tr:first-child:hover {
  background: var(--kkg-primary, #6366f1);
}

.fighter-profile--modern table.mma_records td,
.fighter-profile--modern table.kick_boxing_records td {
  padding: 0.75rem 1rem;
  vertical-align: middle;
}

.fighter-profile--modern table.mma_records td:first-child,
.fighter-profile--modern table.kick_boxing_records td:first-child {
  width: 1%;
  white-space: nowrap;
  font-weight: 600;
}

.fighter-profile--modern table.mma_records td:nth-child(2),
.fighter-profile--modern table.kick_boxing_records td:nth-child(2) {
  min-width: 8rem;
}

.fighter-profile--modern table.mma_records td a,
.fighter-profile--modern table.kick_boxing_records td a {
  color: var(--kkg-primary, #6366f1);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.fighter-profile--modern table.mma_records td a:hover,
.fighter-profile--modern table.kick_boxing_records td a:hover {
  color: var(--kkg-primary-hover, #4f46e5);
  text-decoration: underline;
}

.fighter-profile--modern .youtube-video-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
}

.fighter-profile--modern .youtube-video-wrapper iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--kkg-radius-sm, 8px);
}

.fighter-profile--modern .youtube-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.fighter-profile--modern .description-text {
  margin-bottom: 0.5rem;
}

.fighter-profile--modern .description-record-all {
  font-size: 0.85rem;
  color: var(--kkg-text-muted, #64748b);
  margin-top: 0.5rem;
}

/* 現代UI: WIN/LOSE/DRAW サマリ（カード風） */
.fighter-profile--modern .fighter_rocord_all {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  background: var(--kkg-surface, #fff);
  border-radius: var(--kkg-radius, 12px);
  border: 1px solid var(--kkg-border, #e2e8f0);
  box-shadow: var(--kkg-shadow);
}

.fighter-profile--modern .fighter_rocord_all_win,
.fighter-profile--modern .fighter_rocord_all_lose,
.fighter-profile--modern .fighter_rocord_all_draw {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--kkg-radius-sm, 8px);
  font-weight: 600;
  min-width: 4.5rem;
  justify-content: center;
}

.fighter-profile--modern .fighter_rocord_all_win {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.35);
}

.fighter-profile--modern .fighter_rocord_all_lose {
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.35);
}

.fighter-profile--modern .fighter_rocord_all_draw {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.35);
}

.fighter-profile--modern .fighter_rocord_all_win > span:first-child,
.fighter-profile--modern .fighter_rocord_all_lose > span:first-child,
.fighter-profile--modern .fighter_rocord_all_draw > span:first-child {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.fighter-profile--modern .fighter_rocord_all_win > span:last-child,
.fighter-profile--modern .fighter_rocord_all_lose > span:last-child,
.fighter-profile--modern .fighter_rocord_all_draw > span:last-child {
  font-size: 0.95rem;
  opacity: 0.95;
}

/* 現代UI: 戦績内訳バー（横棒） */
.fighter-profile--modern .fighter_record_chart {
  display: flex;
  width: 100%;
  height: 2.5rem;
  border-radius: var(--kkg-radius-sm, 8px);
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
  margin-top: 0.5rem;
}

.fighter-profile--modern .fighter_record_block_box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 100%;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.fighter-profile--modern .fighter_record_block_box:hover {
  opacity: 0.9;
}

.fighter-profile--modern .fighter_record_chart .fighter_record_block_box:nth-child(1) {
  background: #15803d;
}

.fighter-profile--modern .fighter_record_chart .fighter_record_block_box:nth-child(2) {
  background: #2563eb;
}

.fighter-profile--modern .fighter_record_chart .fighter_record_block_box:nth-child(3) {
  background: #b91c1c;
}

.fighter-profile--modern .fighter_record_chart .fighter_record_block_box:nth-child(4) {
  background: #7c3aed;
}

.fighter-profile--modern .fighter_record_block_box .value {
  position: static;
  transform: none;
  font-size: 0.75rem;
  white-space: nowrap;
}

/* 戦績テーブル: ヘッダー行（1行目） */
.fighter-profile--modern table.kick_boxing_records tbody tr:first-child td,
.fighter-profile--modern table.mma_records tbody tr:first-child td {
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.fighter-profile--modern table.kick_boxing_records tbody tr:first-child td a,
.fighter-profile--modern table.mma_records tbody tr:first-child td a {
  color: inherit;
}

/* 戦績テーブル: 勝敗バッジ風（WIN/LOSE/DRAW） */
.fighter-profile--modern table.kick_boxing_records td.win,
.fighter-profile--modern table.mma_records td.win {
  background-color: #fef2f2;
  color: #b91c1c;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
}

.fighter-profile--modern table.kick_boxing_records td.win ~ td,
.fighter-profile--modern table.mma_records td.win ~ td {
  background-color: #fef2f2;
}

.fighter-profile--modern table.kick_boxing_records td.lose,
.fighter-profile--modern table.mma_records td.lose {
  background-color: #eef2ff;
  color: #4f46e5;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
}

.fighter-profile--modern table.kick_boxing_records td.lose ~ td,
.fighter-profile--modern table.mma_records td.lose ~ td {
  background-color: #eef2ff;
}

.fighter-profile--modern table.kick_boxing_records td.draw,
.fighter-profile--modern table.mma_records td.draw {
  background-color: #f0fdf4;
  color: #15803d;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
}

.fighter-profile--modern table.kick_boxing_records td.draw ~ td,
.fighter-profile--modern table.mma_records td.draw ~ td {
  background-color: #f0fdf4;
}

/* 戦績テーブル: 日付・大会列の文字色 */
.fighter-profile--modern table.kick_boxing_records td.win ~ td,
.fighter-profile--modern table.kick_boxing_records td.lose ~ td,
.fighter-profile--modern table.kick_boxing_records td.draw ~ td,
.fighter-profile--modern table.mma_records td.win ~ td,
.fighter-profile--modern table.mma_records td.lose ~ td,
.fighter-profile--modern table.mma_records td.draw ~ td {
  color: var(--kkg-text, #1e293b);
}

.fighter-profile--modern table.kick_boxing_records td:nth-child(6),
.fighter-profile--modern table.mma_records td:nth-child(6) {
  color: var(--kkg-text-muted, #64748b);
  font-size: 0.8125rem;
}

/* 戦績セクション: ラッパーを1枚のカードに（見出し＋テーブル） */
.fighter-profile--modern .record-table-wrap {
  background: var(--kkg-surface, #fff);
  border-radius: var(--kkg-radius, 12px);
  border: 1px solid var(--kkg-border, #e2e8f0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.fighter-profile--modern .record-table-wrap .c-title {
  padding: 1rem 1.25rem 0.75rem;
  margin: 0;
  border-radius: var(--kkg-radius, 12px) var(--kkg-radius, 12px) 0 0;
}

.fighter-profile--modern .record-table-wrap table.kick_boxing_records,
.fighter-profile--modern .record-table-wrap table.mma_records {
  border-radius: 0 0 var(--kkg-radius, 12px) var(--kkg-radius, 12px);
  border: none;
  border-top: 1px solid var(--kkg-border, #e2e8f0);
}

/* グローバル: record-table-wrap 単体（プロフィール外でも崩れない） */
.record-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* 円グラフ・棒グラフを現代UIに合わせる */
.fighter-profile--modern .fighter-table-record .box {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: var(--kkg-radius-sm, 8px);
  border: 1px solid var(--kkg-border, #e2e8f0);
}

.fighter-profile--modern .fighter-table-record .bar-graph-wrap {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: var(--kkg-radius-sm, 8px);
  border: 1px solid var(--kkg-border, #e2e8f0);
  background: var(--kkg-surface, #fff);
}

.fighter-profile--modern .fighter-table-record #pie-chart .percent-title .text,
.fighter-profile--modern .fighter-table-record #bar-graph .graph span {
  font-size: 0.9rem;
}

/* SNS セクション（空でも高さを確保） */
.fighter-profile--modern .fighter-sns {
  min-height: 2.5rem;
  padding: 0.75rem 0;
}

.fighter-profile--modern .description-text + .fighter-sns {
  margin-top: 0.25rem;
}

/* ==========================================================================
   3. 選手データ・戦績
   ========================================================================== */

.fighter-wrap {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

div.fighter-wrap > .left-container {
  margin: 0 auto;
}

.left-container > img {
  padding: 0.5em;
}

.fighter-info {
  position: relative;
  text-align: left;
  padding: 0.25em 1em;
}

.fighter-info::before,
.fighter-info::after {
  content: "";
  width: 20px;
  height: 30px;
  position: absolute;
  display: inline-block;
}

.fighter-info::before {
  border-left: 1px solid #5767bf;
  border-top: 1px solid #5767bf;
  top: 0;
  left: 0;
}

.fighter-info::after {
  border-right: 1px solid #5767bf;
  border-bottom: 1px solid #5767bf;
  bottom: 0;
  right: 0;
}

.fighter-info p,
.fighter-info > p {
  margin: 0;
  padding: 0;
}

.fighter-info > p {
  margin-bottom: 0.1em;
}

div#toc {
  display: none;
}

/* チャンピオンリスト */
div.champions > ul {
  padding: 0;
  position: relative;
}

div.champions > ul > li {
  color: black;
  border-left: 8px solid orange;
  background: whitesmoke;
  margin-bottom: 5px;
  line-height: 1.5;
  border-radius: 0 15px 15px 0;
  padding: 0.5em;
  list-style-type: none !important;
}

/* 試合結果セル共通 */
td.win,
td.lose,
td.draw {
  position: relative;
  border-radius: 5px;
  width: 30%;
  padding: 10px 0;
  text-align: center;
}

td.win {
  background-color: var(--kkg-win);
  color: white;
}

td.win::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: calc(50% - 10px);
  right: -10px;
  border: 10px solid transparent;
  border-left-color: var(--kkg-win);
}

td.win ~ td {
  background-color: #ffe2e2;
}

td.lose {
  background-color: var(--kkg-lose);
  color: white;
}

td.lose::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: calc(50% - 10px);
  right: -10px;
  border: 10px solid transparent;
  border-left-color: var(--kkg-lose);
}

td.lose ~ td {
  background-color: #e0e1ff;
}

td.draw {
  background-color: var(--kkg-draw);
  color: black;
}

td.draw::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: calc(50% - 10px);
  right: -10px;
  border: 10px solid transparent;
  border-left-color: var(--kkg-draw);
}

td.draw ~ td {
  background-color: #e8e8e8;
}

td.before-game,
td.invalid-game {
  background-color: #efe2e2;
}

/* タイトル・説明 */
p.title-percentage {
  margin: 0;
  font-weight: bold;
  font-size: xx-large;
}

p.title-percentage > span {
  font-size: 17px;
}

p.title-count {
  margin: 0;
  text-align: center;
}

p.title-count > span {
  font-size: 14px;
}

p.description-text {
  border-bottom: 3px dotted #4d9bc1;
}

p.description-text > span {
  font-size: 14px;
}

p.description-record-all {
  text-align: right;
  font-size: 14px;
}

span.post-date {
  display: none;
}

.content {
  margin-top: 3em;
  margin-bottom: 3em;
}

.percent-title {
  display: flex;
  justify-content: center;
}

.percent-title > span {
  margin-left: 0.3em;
  padding: 0.1em;
}

/* WIN/LOSE/DRAW サマリ */
.fighter_rocord_all {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
}

.fighter_rocord_all_win,
.fighter_rocord_all_lose,
.fighter_rocord_all_draw {
  padding: 0.5em;
  font-family: var(--kkg-record-font);
  font-style: italic;
  width: 24%;
}

.fighter_rocord_all_win {
  background: var(--kkg-win);
}

.fighter_rocord_all_lose {
  background: var(--kkg-lose);
}

.fighter_rocord_all_draw {
  background: var(--kkg-draw);
}

div.fighter_rocord_all > div > span:first-child {
  padding-right: 0.2em;
  font-size: xxx-large;
  font-weight: bold;
}

img.alternative-img {
  border-radius: 75px;
  height: 150px;
  width: 150px;
  object-fit: cover;
}

/* ==========================================================================
   4. 円グラフ (pie chart)
   ========================================================================== */

@media screen and (min-width: 751px) {
  .pie-chart-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.box {
  position: relative;
  min-width: 200px;
  width: 33.3333333333%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 750px) {
  .box {
    width: 100%;
  }
  .box + .box {
    margin-top: 20px;
  }
}

@media screen and (min-width: 751px) {
  .box + .box {
    margin-left: 20px;
  }
}

.box .percent {
  position: relative;
  width: 150px;
  height: 150px;
}

.box .percent svg {
  position: relative;
  width: 150px;
  height: 150px;
  transform: rotate(-90deg);
}

.box .percent svg circle {
  position: relative;
  fill: none;
  stroke-width: 10;
  stroke: #f3f3f3;
  stroke-dasharray: 440;
  stroke-dashoffset: 0;
  stroke-linecap: round;
}

.box .percent .number {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
}

.box .percent .number .title {
  font-size: 50px;
}

.box .percent .number .title span {
  font-size: 22px;
}

.box .text {
  padding: 10px 0 0;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}

.box.blue .percent .line-blue {
  stroke: #03a9f4;
  animation: circleAnim 2s forwards;
}

.box.red .percent .line-red {
  stroke: #ff3051;
  animation: circleAnim 3s forwards;
}

.box.green .percent .line-green {
  stroke: #1fd26c;
  animation: circleAnim 4s forwards;
}

@keyframes circleAnim {
  0% { stroke-dasharray: 0 440; }
  99.9%, 100% { stroke-dasharray: 440 440; }
}

/* 円グラフ 0-100% オフセット (pie chart stroke-dashoffset) */
.line-0 { stroke-dashoffset: calc(440 - (440 * 0) / 100) !important; }

.line-1 { stroke-dashoffset: calc(440 - (440 * 1) / 100) !important; }
.line-2 { stroke-dashoffset: calc(440 - (440 * 2) / 100) !important; }
.line-3 { stroke-dashoffset: calc(440 - (440 * 3) / 100) !important; }
.line-4 { stroke-dashoffset: calc(440 - (440 * 4) / 100) !important; }
.line-5 { stroke-dashoffset: calc(440 - (440 * 5) / 100) !important; }
.line-6 { stroke-dashoffset: calc(440 - (440 * 6) / 100) !important; }
.line-7 { stroke-dashoffset: calc(440 - (440 * 7) / 100) !important; }
.line-8 { stroke-dashoffset: calc(440 - (440 * 8) / 100) !important; }
.line-9 { stroke-dashoffset: calc(440 - (440 * 9) / 100) !important; }
.line-10 { stroke-dashoffset: calc(440 - (440 * 10) / 100) !important; }
.line-11 { stroke-dashoffset: calc(440 - (440 * 11) / 100) !important; }
.line-12 { stroke-dashoffset: calc(440 - (440 * 12) / 100) !important; }
.line-13 { stroke-dashoffset: calc(440 - (440 * 13) / 100) !important; }
.line-14 { stroke-dashoffset: calc(440 - (440 * 14) / 100) !important; }
.line-15 { stroke-dashoffset: calc(440 - (440 * 15) / 100) !important; }
.line-16 { stroke-dashoffset: calc(440 - (440 * 16) / 100) !important; }
.line-17 { stroke-dashoffset: calc(440 - (440 * 17) / 100) !important; }
.line-18 { stroke-dashoffset: calc(440 - (440 * 18) / 100) !important; }
.line-19 { stroke-dashoffset: calc(440 - (440 * 19) / 100) !important; }
.line-20 { stroke-dashoffset: calc(440 - (440 * 20) / 100) !important; }

.line-21 { stroke-dashoffset: calc(440 - (440 * 21) / 100) !important; }
.line-22 { stroke-dashoffset: calc(440 - (440 * 22) / 100) !important; }
.line-23 { stroke-dashoffset: calc(440 - (440 * 23) / 100) !important; }
.line-24 { stroke-dashoffset: calc(440 - (440 * 24) / 100) !important; }
.line-25 { stroke-dashoffset: calc(440 - (440 * 25) / 100) !important; }
.line-26 { stroke-dashoffset: calc(440 - (440 * 26) / 100) !important; }
.line-27 { stroke-dashoffset: calc(440 - (440 * 27) / 100) !important; }
.line-28 { stroke-dashoffset: calc(440 - (440 * 28) / 100) !important; }
.line-29 { stroke-dashoffset: calc(440 - (440 * 29) / 100) !important; }
.line-30 { stroke-dashoffset: calc(440 - (440 * 30) / 100) !important; }
.line-31 { stroke-dashoffset: calc(440 - (440 * 31) / 100) !important; }
.line-32 { stroke-dashoffset: calc(440 - (440 * 32) / 100) !important; }
.line-33 { stroke-dashoffset: calc(440 - (440 * 33) / 100) !important; }
.line-34 { stroke-dashoffset: calc(440 - (440 * 34) / 100) !important; }
.line-35 { stroke-dashoffset: calc(440 - (440 * 35) / 100) !important; }
.line-36 { stroke-dashoffset: calc(440 - (440 * 36) / 100) !important; }
.line-37 { stroke-dashoffset: calc(440 - (440 * 37) / 100) !important; }
.line-38 { stroke-dashoffset: calc(440 - (440 * 38) / 100) !important; }
.line-39 { stroke-dashoffset: calc(440 - (440 * 39) / 100) !important; }
.line-40 { stroke-dashoffset: calc(440 - (440 * 40) / 100) !important; }
.line-41 { stroke-dashoffset: calc(440 - (440 * 41) / 100) !important; }
.line-42 { stroke-dashoffset: calc(440 - (440 * 42) / 100) !important; }
.line-43 { stroke-dashoffset: calc(440 - (440 * 43) / 100) !important; }
.line-44 { stroke-dashoffset: calc(440 - (440 * 44) / 100) !important; }
.line-45 { stroke-dashoffset: calc(440 - (440 * 45) / 100) !important; }
.line-46 { stroke-dashoffset: calc(440 - (440 * 46) / 100) !important; }
.line-47 { stroke-dashoffset: calc(440 - (440 * 47) / 100) !important; }
.line-48 { stroke-dashoffset: calc(440 - (440 * 48) / 100) !important; }
.line-49 { stroke-dashoffset: calc(440 - (440 * 49) / 100) !important; }
.line-50 { stroke-dashoffset: calc(440 - (440 * 50) / 100) !important; }
.line-51 { stroke-dashoffset: calc(440 - (440 * 51) / 100) !important; }
.line-52 { stroke-dashoffset: calc(440 - (440 * 52) / 100) !important; }
.line-53 { stroke-dashoffset: calc(440 - (440 * 53) / 100) !important; }
.line-54 { stroke-dashoffset: calc(440 - (440 * 54) / 100) !important; }
.line-55 { stroke-dashoffset: calc(440 - (440 * 55) / 100) !important; }
.line-56 { stroke-dashoffset: calc(440 - (440 * 56) / 100) !important; }
.line-57 { stroke-dashoffset: calc(440 - (440 * 57) / 100) !important; }
.line-58 { stroke-dashoffset: calc(440 - (440 * 58) / 100) !important; }
.line-59 { stroke-dashoffset: calc(440 - (440 * 59) / 100) !important; }
.line-60 { stroke-dashoffset: calc(440 - (440 * 60) / 100) !important; }
.line-61 { stroke-dashoffset: calc(440 - (440 * 61) / 100) !important; }
.line-62 { stroke-dashoffset: calc(440 - (440 * 62) / 100) !important; }
.line-63 { stroke-dashoffset: calc(440 - (440 * 63) / 100) !important; }
.line-64 { stroke-dashoffset: calc(440 - (440 * 64) / 100) !important; }
.line-65 { stroke-dashoffset: calc(440 - (440 * 65) / 100) !important; }
.line-66 { stroke-dashoffset: calc(440 - (440 * 66) / 100) !important; }
.line-67 { stroke-dashoffset: calc(440 - (440 * 67) / 100) !important; }
.line-68 { stroke-dashoffset: calc(440 - (440 * 68) / 100) !important; }
.line-69 { stroke-dashoffset: calc(440 - (440 * 69) / 100) !important; }
.line-70 { stroke-dashoffset: calc(440 - (440 * 70) / 100) !important; }
.line-71 { stroke-dashoffset: calc(440 - (440 * 71) / 100) !important; }
.line-72 { stroke-dashoffset: calc(440 - (440 * 72) / 100) !important; }
.line-73 { stroke-dashoffset: calc(440 - (440 * 73) / 100) !important; }
.line-74 { stroke-dashoffset: calc(440 - (440 * 74) / 100) !important; }
.line-75 { stroke-dashoffset: calc(440 - (440 * 75) / 100) !important; }
.line-76 { stroke-dashoffset: calc(440 - (440 * 76) / 100) !important; }
.line-77 { stroke-dashoffset: calc(440 - (440 * 77) / 100) !important; }
.line-78 { stroke-dashoffset: calc(440 - (440 * 78) / 100) !important; }
.line-79 { stroke-dashoffset: calc(440 - (440 * 79) / 100) !important; }
.line-80 { stroke-dashoffset: calc(440 - (440 * 80) / 100) !important; }
.line-81 { stroke-dashoffset: calc(440 - (440 * 81) / 100) !important; }
.line-82 { stroke-dashoffset: calc(440 - (440 * 82) / 100) !important; }
.line-83 { stroke-dashoffset: calc(440 - (440 * 83) / 100) !important; }
.line-84 { stroke-dashoffset: calc(440 - (440 * 84) / 100) !important; }
.line-85 { stroke-dashoffset: calc(440 - (440 * 85) / 100) !important; }
.line-86 { stroke-dashoffset: calc(440 - (440 * 86) / 100) !important; }
.line-87 { stroke-dashoffset: calc(440 - (440 * 87) / 100) !important; }
.line-88 { stroke-dashoffset: calc(440 - (440 * 88) / 100) !important; }
.line-89 { stroke-dashoffset: calc(440 - (440 * 89) / 100) !important; }
.line-90 { stroke-dashoffset: calc(440 - (440 * 90) / 100) !important; }
.line-91 { stroke-dashoffset: calc(440 - (440 * 91) / 100) !important; }
.line-92 { stroke-dashoffset: calc(440 - (440 * 92) / 100) !important; }
.line-93 { stroke-dashoffset: calc(440 - (440 * 93) / 100) !important; }
.line-94 { stroke-dashoffset: calc(440 - (440 * 94) / 100) !important; }
.line-95 { stroke-dashoffset: calc(440 - (440 * 95) / 100) !important; }
.line-96 { stroke-dashoffset: calc(440 - (440 * 96) / 100) !important; }
.line-97 { stroke-dashoffset: calc(440 - (440 * 97) / 100) !important; }
.line-98 { stroke-dashoffset: calc(440 - (440 * 98) / 100) !important; }
.line-99 { stroke-dashoffset: calc(440 - (440 * 99) / 100) !important; }
.line-100 { stroke-dashoffset: calc(440 - (440 * 100) / 100) !important; }

/* ==========================================================================
   5. 棒グラフ (bar graph)
   ========================================================================== */
.bar-graph-wrap {
  position: relative;
  height: 350px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background: repeating-linear-gradient(-45deg, #eaf3f8, #eaf3f8 5px, #fff 5px, #fff 13px);
}

.bar-graph-wrap .graph {
  height: 50px;
  position: absolute;
  left: 0;
  border-radius: 0 4px 4px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  animation: graphAnim 2.5s forwards;
}

.bar-graph-wrap .graph span {
  font-size: 14px;
  white-space: pre;
  background-color: #000;
  color: #fff;
  padding: 0.2em;
}

@media screen and (max-width: 750px) {
  .bar-graph-wrap .graph span {
    font-size: 12px;
  }
}

.bar-graph-wrap .graph.blue { top: 5%; background: #03a9f4; }
.bar-graph-wrap .graph.green { top: 25%; background: #1fd26c; }
.bar-graph-wrap .graph.purple { top: 45%; background: #9d1fd2; }
.bar-graph-wrap .graph.red { top: 65%; margin: auto; background: #ff3051; }
.bar-graph-wrap .graph.yellow { top: 85%; background: #ffc748; }

/* 棒グラフ 0-100% 幅 (bar graph width) */
.parallel-0 { width: 0% !important; }

.parallel-1 { width: 1% !important; }
.parallel-2 { width: 2% !important; }
.parallel-3 { width: 3% !important; }
.parallel-4 { width: 4% !important; }
.parallel-5 { width: 5% !important; }
.parallel-6 { width: 6% !important; }
.parallel-7 { width: 7% !important; }
.parallel-8 { width: 8% !important; }
.parallel-9 { width: 9% !important; }
.parallel-10 { width: 10% !important; }
.parallel-11 { width: 11% !important; }
.parallel-12 { width: 12% !important; }
.parallel-13 { width: 13% !important; }
.parallel-14 { width: 14% !important; }
.parallel-15 { width: 15% !important; }
.parallel-16 { width: 16% !important; }
.parallel-17 { width: 17% !important; }
.parallel-18 { width: 18% !important; }
.parallel-19 { width: 19% !important; }
.parallel-20 { width: 20% !important; }
.parallel-21 { width: 21% !important; }
.parallel-22 { width: 22% !important; }
.parallel-23 { width: 23% !important; }
.parallel-24 { width: 24% !important; }
.parallel-25 { width: 25% !important; }
.parallel-26 { width: 26% !important; }
.parallel-27 { width: 27% !important; }
.parallel-28 { width: 28% !important; }
.parallel-29 { width: 29% !important; }
.parallel-30 { width: 30% !important; }
.parallel-31 { width: 31% !important; }
.parallel-32 { width: 32% !important; }
.parallel-33 { width: 33% !important; }
.parallel-34 { width: 34% !important; }
.parallel-35 { width: 35% !important; }
.parallel-36 { width: 36% !important; }
.parallel-37 { width: 37% !important; }
.parallel-38 { width: 38% !important; }
.parallel-39 { width: 39% !important; }
.parallel-40 { width: 40% !important; }

.parallel-41 { width: 41% !important; }
.parallel-42 { width: 42% !important; }
.parallel-43 { width: 43% !important; }
.parallel-44 { width: 44% !important; }
.parallel-45 { width: 45% !important; }
.parallel-46 { width: 46% !important; }
.parallel-47 { width: 47% !important; }
.parallel-48 { width: 48% !important; }
.parallel-49 { width: 49% !important; }
.parallel-50 { width: 50% !important; }
.parallel-51 { width: 51% !important; }
.parallel-52 { width: 52% !important; }
.parallel-53 { width: 53% !important; }
.parallel-54 { width: 54% !important; }
.parallel-55 { width: 55% !important; }
.parallel-56 { width: 56% !important; }
.parallel-57 { width: 57% !important; }
.parallel-58 { width: 58% !important; }
.parallel-59 { width: 59% !important; }
.parallel-60 { width: 60% !important; }
.parallel-61 { width: 61% !important; }
.parallel-62 { width: 62% !important; }
.parallel-63 { width: 63% !important; }
.parallel-64 { width: 64% !important; }
.parallel-65 { width: 65% !important; }
.parallel-66 { width: 66% !important; }
.parallel-67 { width: 67% !important; }
.parallel-68 { width: 68% !important; }
.parallel-69 { width: 69% !important; }
.parallel-70 { width: 70% !important; }
.parallel-71 { width: 71% !important; }
.parallel-72 { width: 72% !important; }
.parallel-73 { width: 73% !important; }
.parallel-74 { width: 74% !important; }
.parallel-75 { width: 75% !important; }
.parallel-76 { width: 76% !important; }
.parallel-77 { width: 77% !important; }
.parallel-78 { width: 78% !important; }
.parallel-79 { width: 79% !important; }
.parallel-80 { width: 80% !important; }
.parallel-81 { width: 81% !important; }
.parallel-82 { width: 82% !important; }
.parallel-83 { width: 83% !important; }
.parallel-84 { width: 84% !important; }
.parallel-85 { width: 85% !important; }
.parallel-86 { width: 86% !important; }
.parallel-87 { width: 87% !important; }
.parallel-88 { width: 88% !important; }
.parallel-89 { width: 89% !important; }
.parallel-90 { width: 90% !important; }
.parallel-91 { width: 91% !important; }
.parallel-92 { width: 92% !important; }
.parallel-93 { width: 93% !important; }
.parallel-94 { width: 94% !important; }
.parallel-95 { width: 95% !important; }
.parallel-96 { width: 96% !important; }
.parallel-97 { width: 97% !important; }
.parallel-98 { width: 98% !important; }
.parallel-99 { width: 99% !important; }
.parallel-100 { width: 100% !important; }

@keyframes graphAnim {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

/* ==========================================================================
   6. テーブル・記録
   ========================================================================== */

table.mma_records {
  margin: 0 auto;
  width: 100%;
  table-layout: fixed;
  box-shadow: 4px 2px 18px 0 darkgrey;
  text-align: center;
}

table.mma_records > tbody > tr {
  background: #fff !important;
  border-bottom: 1px solid black;
}

.eye-catch-wrap {
  display: none;
}

.fighter_record_row {
  margin-bottom: 1.5em;
}

@keyframes expand {
  from { width: 0%; }
  to { width: 100%; }
}

@media screen and (min-width: 768px) {
  @keyframes expand {
    from { width: 0%; }
    to { width: calc(100% - 75px); }
  }
}

.fighter_record_chart {
  overflow: hidden;
  width: 0%;
  animation: expand 1.5s ease forwards;
  display: flex;
  justify-content: center;
}

.fighter_record_row + .fighter_record_row .fighter_record_chart {
  animation-delay: 0.2s;
}

.fighter_record_row + .fighter_record_row + .fighter_record_row .fighter_record_chart {
  animation-delay: 0.4s;
}

.fighter_record_block {
  display: block;
  height: 100px;
  color: #fff;
  font-size: 0.75em;
  float: left;
  background-color: var(--kkg-win);
  border-right: 1px solid #fff;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.fighter_record_block:nth-of-type(1)::before {
  content: "KO勝ち";
  display: block;
  text-align: center;
}

.fighter_record_block:nth-of-type(2),
.legend li:nth-of-type(2)::before {
  background-color: var(--kkg-win);
}

.fighter_record_block:nth-of-type(2)::before {
  content: "一本勝ち";
  display: block;
  text-align: center;
}

.fighter_record_block:nth-of-type(3),
.legend li:nth-of-type(3)::before {
  background-image: linear-gradient(to right, var(--kkg-win) 0%, var(--kkg-draw) 100%);
}

.fighter_record_block:nth-of-type(3)::before {
  content: "判定勝ち";
  display: block;
  text-align: center;
}

.fighter_record_block:nth-of-type(4),
.legend li:nth-of-type(4)::before {
  background-color: var(--kkg-lose);
}

.fighter_record_block:nth-of-type(4)::before {
  content: "KO負け";
  display: block;
  text-align: center;
}

.fighter_record_block:nth-of-type(5),
.legend li:nth-of-type(5)::before {
  background-color: var(--kkg-lose);
}

.fighter_record_block:nth-of-type(5)::before {
  content: "一本負け";
  display: block;
  text-align: center;
}

.fighter_record_block:nth-of-type(6),
.legend li:nth-of-type(6)::before {
  background-image: linear-gradient(to right, var(--kkg-lose) 0%, var(--kkg-draw) 100%);
}

.fighter_record_block:nth-of-type(6)::before {
  content: "判定負け";
  display: block;
  text-align: center;
}

.fighter_record_block:hover {
  opacity: 0.65;
}

.value {
  display: block;
  line-height: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ==========================================================================
   7. 楽曲・SNS
   ========================================================================== */

.song-info {
  margin: 1em;
}

ul.music-links {
  list-style: none;
  display: flex;
  justify-content: space-around;
}

.entrance-music {
  margin: 0.5em;
}

ul.music-links li a svg {
  display: block;
  width: 2em;
  height: 2em;
  margin: 0 auto;
}
.snsbtniti {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  max-width: 350px;
  margin: 0 auto;
}

ul.snsbtniti {
  padding: 0 !important;
  list-style-type: none !important;
}

.snsbtniti li {
  flex: 0 0 33%;
  text-align: center !important;
}

div.fighter-sns {
  display: flex;
  justify-content: space-around;
}

.flowbtn {
  font-family: 'Noto Sans Japanese', sans-serif;
  position: relative;
  display: inline-block;
  width: 100px;
  height: 95px;
  font-size: 30px;
  border-radius: 10px;
  overflow: hidden;
  color: #fff !important;
  transition: 0.5s;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 1px 2px #999;
  margin-bottom: 10px;
}

.flowbtn svg {
  position: relative;
  bottom: 30px;
}

.flowbtn div {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
}

.flowbtn:hover {
  transform: translateY(-5px);
  text-decoration: none;
  cursor: pointer;
}

/* インスタ・Amazonのアイコンを少し大きく */
.flowbtn i.fa-brands.fa-instagram,.flowbtn i.fa-brands.fa-amazon {
  font-size: 35px;
}

/* エックス背景 */
.my_x1 {
  background: #000;
}

/* Instagram紫グラデ背景 */
.my_instagram1 {
 background: linear-gradient(45deg, rgba(254,212,117,1) 0%,rgba(229,61,93,1) 50%,rgba(194,49,134,1) 70%,rgba(156,56,187,1) 100%);
}

/* Facebook背景 */
.my_facebook1 {
  background: #1877f2;
}

/* YouTube背景 */
.my_youtube1 {
  background: #da1725;
}

/* TikTok背景 */
.my_tiktok1 {
  background: #000;
}

/* Amazon背景 */
.my_amazon1 {
  background: #ff9900;
}

/* LINE背景 */
.my_line1 {
  background: #00b900;
}

/* ピンタレスト背景 */
.my_pinterest1 {
  background: #bd081c;
}

/* はてブ背景 */
.my_hatena1 {
  background: #1ba5dc;
}
/* はてブビックリマーク */
.my_hatena1 .fa-b::after {
  content: "!";
  padding-left: 5px;
}

/* Pocket背景 */
.my_pocket1 {
  background: #ef3f56;
}

/* Feedly背景 */
.my_feedly1 {
  background: #6cc655;
}

/* 楽天ROOM背景 */
.my_rakutenroom1 {
  background: #c61d79;
}

/* リンクドイン背景 */
.my_linkedin1 {
  background: #0a66c2;
}

/* ディスコード背景 */
.my_discord1 {
  background: #7289da;
}

/* Podcast背景 */
.my_podcast1 {
  background: #813BF2;
}

.fa-brands, .fab{
	font-family: "Font Awesome 6 Brands";
}

.percent-title > span {
    padding-top: 0px;
}

/* 検索  function */
form.my_searchform {
  display: flex;
  flex-wrap: inherit;
  width: 100%;
}

form.my_searchform > input,
form.my_searchform > select {
  margin: 0.1em;
}

/* 検索結果-タグ */
a.entry-card-wrap.a-wrap.border-element.cf {
    width: 49%;
}

div#list {
  display: flex;
  width: 100%;
  flex-flow: wrap;
}

div.category-wrap > li {
  list-style: none;
  padding: 0.5em;
  white-space: nowrap;
  margin: 0.1em;
  overflow: hidden;
  font-weight: bold;
  width: 24%;
  border: 1px solid #ded8d8;
}

.category-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

div.related_post_wrap {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  width: 98%;
  max-width: 98%;
}

div.related_post_innner_content {
  width: 25%;
  margin: 0.1em;
}

div.all_related_post_innner_content {
  width: calc((100% - 3rem) / 4); /* PCで4列（gap 1rem × 3） */
  min-width: 140px;
  margin: 0;
  text-align: center;
}

div.gym_all_related_post_innner_content {
  width: 24%;
  margin: 0.1em;
  text-align: left;
  height: 25em;
}

.gym_all_related_post_innner_content p {
  margin: 0.2em;
}

img.attachment-thumbnail,
img.attachment-post-thumbnail {
  height: 200px;
  width: 100%;
  object-fit: scale-down;
}

a.all_related_post_fighter {
  display: block;
  font-size: 16px;
}

ul.page-numbers {
  display: flex;
  align-items: center;
  flex-basis: content;
  padding: 2em;
  list-style: none;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  justify-content: center;
}

span.page-numbers.current {
  font-size: x-large;
  border: 1px solid #898383;
}

/* Yotuube */

.youtube-video-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.video-container {
    width: 570px;
    height: 480px;
    margin: 0 auto;
}

.video-container .video {
    position: relative;
    padding-bottom: 0%;
    margin-top: 0px;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: 100%;
    width: 100%;
}

iframe.youtube_player{
	position: unset;
	width: 100%;
    height: 100%;
}

/* 選手一覧ページ（all_player / player_list ショートコード）現代UI */
.kakutougi-player-list {
  max-width: 1100px;
  margin: 0 auto 2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Sans", "Noto Sans JP", sans-serif;
  color: var(--kkg-text, #1e293b);
}

.kakutougi-player-list__toolbar {
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--kkg-surface-alt, #f8fafc);
  border: 1px solid var(--kkg-border, #e2e8f0);
  border-radius: var(--kkg-radius, 12px);
}

.kakutougi-player-list__toolbar form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.kakutougi-player-list__toolbar select {
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border: 1px solid var(--kkg-border, #e2e8f0);
  border-radius: var(--kkg-radius-sm, 8px);
  font-size: 0.95rem;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.kakutougi-player-list__toolbar select:focus {
  outline: none;
  border-color: var(--kkg-primary, #6366f1);
}

.kakutougi-player-list__toolbar input[type="submit"] {
  padding: 0.5rem 1.25rem;
  background: var(--kkg-primary, #6366f1);
  color: #fff;
  border: none;
  border-radius: var(--kkg-radius-sm, 8px);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.kakutougi-player-list__toolbar input[type="submit"]:hover {
  background: var(--kkg-primary-hover, #4f46e5);
}

.kakutougi-player-list__grid.custom-post-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: flex-start;
}

.kakutougi-player-list .all_related_post_innner_content {
  width: calc((100% - 3.75rem) / 4);
  min-width: 140px;
  background: var(--kkg-surface, #fff);
  border-radius: var(--kkg-radius, 12px);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--kkg-border, #e2e8f0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding: 0;
  text-align: center;
}

.kakutougi-player-list .all_related_post_innner_content:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.15);
}

.kakutougi-player-list .all_related_post_innner_content > a:first-of-type {
  display: block;
  overflow: hidden;
  background: var(--kkg-surface-alt, #f8fafc);
}

.kakutougi-player-list .all_related_post_innner_content img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.kakutougi-player-list .all_related_post_innner_content .thumnail-link {
  display: block;
  padding: 0.75rem 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--kkg-text, #1e293b);
  text-decoration: none;
  transition: color 0.2s ease;
}

.kakutougi-player-list .all_related_post_innner_content .thumnail-link:hover {
  color: var(--kkg-primary, #6366f1);
}

.kakutougi-player-list__pagination {
  margin-top: 2rem;
}

.kakutougi-player-list__pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0;
  width: auto;
  max-width: none;
}

.kakutougi-player-list__pagination ul.page-numbers li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.kakutougi-player-list__pagination a.page-numbers,
.kakutougi-player-list__pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  color: var(--kkg-text, #1e293b);
  text-decoration: none;
  border: 1px solid var(--kkg-border, #e2e8f0);
  border-radius: var(--kkg-radius-sm, 8px);
  font-size: 0.9rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  box-sizing: border-box;
}

.kakutougi-player-list__pagination a.page-numbers:hover {
  background: var(--kkg-surface-alt, #f8fafc);
  border-color: var(--kkg-primary, #6366f1);
  color: var(--kkg-primary, #6366f1);
}

.kakutougi-player-list__pagination span.page-numbers.current {
  background: var(--kkg-primary, #6366f1);
  border-color: var(--kkg-primary, #6366f1);
  color: #fff;
  font-weight: 600;
}

/* 省略記号「…」はボタン風にしない */
.kakutougi-player-list__pagination span.page-numbers.dots {
  min-width: auto;
  border: none;
  background: transparent;
  color: var(--kkg-text-muted, #64748b);
  cursor: default;
}

/* 「次へ」「前へ」はやや余白を多めに */
.kakutougi-player-list__pagination a.next.page-numbers,
.kakutougi-player-list__pagination a.prev.page-numbers {
  padding: 0 0.75rem;
}

@media screen and (max-width: 834px) {
  .kakutougi-player-list .all_related_post_innner_content {
    width: calc(50% - 0.625rem);
  }
}

@media screen and (max-width: 480px) {
  .kakutougi-player-list .all_related_post_innner_content {
    width: 100%;
  }
}

/* 詳細、カテゴリー選手（階級別） */
.custom-post-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
}

div.custom-post-wrap > div > a{
	display:block;
}

div.custom-post-wrap > div > a {
    display: block;
    margin: 0 auto;
    text-align: center;
}

/* チャンピオン */


table.champion_data tr td:nth-of-type(1) {
    background-color: #ecb769;
    color: white;
    border: solid 1px #927141;
}
table.champion_data th, table.champion_data td {
    border-radius: 5px;
    text-align: center;
    background-color: #e4d4bc;
    border: solid 1px #af9d85;
}
table.champion_data {
    border-collapse: separate;
    border-spacing: 5px;
    width: 100%;
}


p.champion_title {
    margin: 0;
    position: relative;
	padding: 0px 0px 0px 2em;
}

p.champion_title:before {
    top: -1.25em;
    border: 1em solid transparent;
    border-bottom: 1.5em solid currentColor;
}
p.champion_title:before, p.champion_title:after {
    position: absolute;
    left: 0px;
    width: 0px;
    height: 0px;
    content: "";
    color: #e2c127;
}

p.champion_title:after {
    top: 0.25em;
    border: 0.5em solid transparent;
    border-left: 1em solid currentColor;
    border-right: 1em solid currentColor;
}

/* 9. NEWS / YouTube / EVENT / GYM など */

ul.feed-list-wrap {
    display: flex;
    justify-content: space-between;
    list-style: none;
    flex-wrap: wrap;
}
li.feed-list{
	width:30%;
}
.video-list-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

div.video-list-wrap > div {
  width: 45%;
}

article.event div.entry-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.event-sensyu-wrap {
    width: 45%;
    text-align: center;
    border-bottom: 1px solid #b6b6b6;
    padding-bottom: 0.1em;
}

a.event-sensyu-name {
    text-decoration: none;
}

.event-record-inner-wrap {
    display: flex;
    justify-content: space-between;
}

.event-record-win,
.event-record-lose,
.event-record-draw,
.event-record-backborn {
  padding: 0.5em;
  font-family: var(--kkg-record-font);
  font-style: italic;
  width: 24%;
}

.event-record-win { background: var(--kkg-win); }
.event-record-lose { background: var(--kkg-lose); }
.event-record-draw { background: var(--kkg-draw); }
.event-record-backborn { background: #a6a7c4; }

.event-image-wrap {
    text-align: center;
    margin: 0 auto;
    padding-top: 1em;
}

.single-fight__event-info {
    padding: 1em 1.5em;
    margin: 2em 0;
    background-color: #f6faee;
    border-left: solid 10px #a5a6a2;
    color: #000000;
}

.event-sensyu-wrap img {
    height: 280px;
}

/* イベント一覧ページ */
.event-page {
  margin-bottom: 2rem;
}

.event-page__title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  text-align: center;
}

.event-page__empty {
  text-align: center;
  color: #666;
  padding: 2rem;
}

.event-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1rem;
}

.event-wrapper .event-card {
  padding: 0;
  width: 50%;
  line-height: 1.4;
  margin-bottom: 0;
}

.event-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.event-card__link:hover {
  border-color: var(--kkg-lose, #7377da);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.event-card__thumb {
  overflow: hidden;
  background: #f5f5f5;
}

.event-card__thumb img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.event-card__title {
  margin: 0.75rem 1rem 0;
  font-size: 1.1rem;
  line-height: 1.3;
}

.event-card__date {
  margin: 0.25rem 1rem 1rem;
  font-size: 0.9em;
  color: #666;
}

.stripe_style01 {
    padding: 0.7em 0.5em 0.7em 1.5em;
    position: relative;
}

.stripe_style01::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 100%;
    background-image: linear-gradient(135deg, #ffffff 35.71%, #333333 35.71%, #333333 50%, #ffffff 50%, #ffffff 85.71%, #333333 85.71%, #333333 100%);
    background-size: 9.90px 9.90px;
}

h2.stripe_style01 a {
    text-decoration: none;
    color: black;
}

/* ジム一覧ページ */
.gym-page {
  margin-bottom: 2rem;
}

.gym-page__title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  text-align: center;
}

.gym-page__filters {
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.gym-filters__row {
  margin-bottom: 1rem;
}

.gym-filters__row:last-child {
  margin-bottom: 0;
}

.gym-filters__heading {
  display: block;
  font-weight: bold;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.gym-filters__label {
  display: block;
}

.gym-filters__select {
  min-width: 200px;
  padding: 0.4em 0.6em;
  border: 1px solid #ced4da;
  border-radius: 4px;
}

.gym-filters__checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.gym-filters__checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: normal;
  cursor: pointer;
}

.gym-filters__submit-row {
  margin-top: 1rem;
}

.gym-filters__submit {
  padding: 0.5em 1.5em;
  background: var(--kkg-lose, #7377da);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.gym-filters__submit:hover {
  opacity: 0.9;
}

.gym-page__count {
  margin-bottom: 1rem;
  color: #666;
}

.gym-page__empty,
.gym-page__hint {
  text-align: center;
  color: #666;
  padding: 2rem;
}

.gym-list.custom-post-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}

.gym-card .gym-card__label {
  font-weight: bold;
  font-size: 0.9em;
}

.gym-card__tags a,
.gym-card__address {
  font-size: 0.9em;
}

div.gym-img-wrap img {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  display: block;
  padding: 0.5em;
}

div.gym-location {
    margin: 1em;
}

div.gym-location iframe {
    width: 100%;
    height: 400px;
}

ul.gym-list{
	display: flex;
    flex-wrap: wrap;
    justify-content: left;
}

ul.gym-list li {
    margin: 0.2em;
    width: 250px;
	list-style:none;
}

ul.gym-list li a{
	display: block;
	text-align: center;
}

ul.gym-list li a img{
	display: block;
	text-align: center;
	margin: 0 auto;
}

/* ==========================================================================
   10. レスポンシブ・ユーティリティ
   ========================================================================== */

@media screen and (max-width: 1023px) {
  /*必要ならばここにコードを書く*/
	div.related_post_innner_content{
		width:48%;
	}
	div.all_related_post_innner_content {
		width:48%;
	}
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
	/* トップ	 */
	.frontpage-header {
	  padding: 0;
	}
	div.top-search-result article {
		width: 50%;
	}
	div.pagenation-warpper a.page-numbers {
		height: 60px;
		width: 60px;
		line-height: 58px;
	}

	div.category-wrap > li{
		width: 48%;
	}
	div.related_post_innner_content{
		width:100%;
	}
	div.all_related_post_innner_content {
		width: 100%;
	}
	form.my_searchform {
    	flex-wrap: wrap;
    }
	.widget-entry-cards.card-large-image .a-wrap {
       width: 48%;
	}
    /* twitter-timeline*/
	div.twitter-timeline{
		width:100%;
	}
	
	/* youtube	*/
	.video-container {
		width: 100%;
		height: 350px;
		margin: 0 auto;
	}
   /* win-lose-draw */
	div.fighter_rocord_all > div > span:first-child {
		font-size: x-large;
	}
	
   /* NEWS*/
	li.feed-list{
		width:45%;
	}
    /* EVENT */
	.event-record-inner-wrap {
		flex-direction: column;
	}
	.event-record-win {
		width: 80%;
		margin:0 auto;
	}
	.event-record-lose {
		width: 80%;
		margin:0 auto;
	}
	.event-record-draw {
		width: 80%;
		margin:0 auto;
	}
	.event-record-backborn {
		width: 80%;
		margin:0 auto;
	}
	
	.event-wrapper .event-card {
		width: 100%;
	}
	/* EVENT */
	
	/* 	GYM */
	div.gym_all_related_post_innner_content {
		width: 100%;
		margin: 0.1em;
		text-align: left;
		height: 25em;
	}

	/* フロントページ現代UI レスポンシブ（タブレット） */
	.home-page .all_related_post_innner_content {
		width: calc(50% - 0.625rem);
	}
	.home-page .top-search-result article {
		width: 100%;
	}
	.home-page .feed-list-wrap .feed-list {
		width: 100%;
		min-width: 0;
	}
}

@media screen and (max-width: 480px) {
	.home-page .all_related_post_innner_content {
		width: 100%;
	}
	.home-page .home-stats {
		flex-direction: column;
		align-items: center;
		gap: 0.25rem;
	}
}

.floating-list {
    position: fixed;
    display: block;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.floating-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.floating-list li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.floating-list li:last-child {
    border-bottom: none;
}

button#close-floating-list{
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button.youtube-search-btn {
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    padding: 1em;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 2em auto;
}

