<style>
body {
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
}



.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #000;
}
.bg-image img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
}
.overlay-container {
  max-width: 900px;
  margin: 0;
  padding: 0px;
  background-color: rgba(26, 26, 26, 0.3);
  color: #fff;
}
.page-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0px;
}
.highlight {
  background: linear-gradient(to bottom, #f6e27f, #d4af37, #8c6d1f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  white-space: nowrap;              /* ← 改行を防ぐ */
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: clamp(1.8rem, 6vw, 1.8rem);
}
.subhead {
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: bold;
  text-align: center;
  font-size: clamp(1.4rem, 4.5vw, 1.5rem);  /* ← 小さくなりすぎないように調整 */
  white-space: nowrap;                   /* ← 改行防止 */

  background: linear-gradient(to bottom, #444 0%, #888 25%, #ccc 50%, #888 75%, #444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
    background-color: rgba(26, 26, 26, 0.5);

}
.subcopy {
  margin-top: 5px;
  margin-bottom: 0px;
  text-align: center;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.03em;
}



.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}







/* 注目ファイター */

.featured-fighters {
  max-width: 960px;
  margin: 0 auto;
}
.fighter-heading {
  width: 100%;
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  border-left: 6px solid #C9A941;
  padding-left: 10px;
  margin: 1rem 0 0.3rem 60px;
  text-align: left;
}
.fighter-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 0;
}
.fighter-card {
  padding: 10px;
  background: linear-gradient(to bottom, #606060, #2D2D2D);
  border: 1px solid #333;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s ease;
  text-align: center;
  width: calc((100% - 2rem) / 3.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1),
              0 4px 8px rgba(0, 0, 0, 0.7),
              0 8px 16px rgba(0, 0, 0, 0.3);
}
.fighter-card:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
              0 6px 12px rgba(255, 215, 0, 0.3);
  border-color: #C9A941;
}
.fighter-thumb img {
  width: 100%;
  border-radius: 8px;
}
.fighter-name {
  margin: 3px -12px -5px -12px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: #F8F8F8;
  text-align: center;
  word-break: break-word;
  overflow: hidden;
  max-height: calc(1.2em * 2); /* 2行までに制限 */
  line-height: 1.2;
}
.fighter-record {
  margin: 5px -12px -5px -12px;
  font-size: 12px;
  font-weight: 500;
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: #F8F8F8;
  white-space: nowrap;
  text-align: center;
}
.fighter-profile {
  margin: 5px 0 0;
  font-size: 12px;
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: #ccc;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: justify; /* ✅追加：行頭のズレを均等揃えで吸収 */
  white-space: normal;
  hyphens: auto;
}

@media screen and (max-width: 768px) {
	
.fighter-name {
  font-size: 12px;
  font-weight: 600;
}

.fighter-record {
  font-size: 12px;
}

.fighter-profile {
  font-size: 12px;
}
  .featured-fighters {
    padding: 0;
  }
  .overlay-container {
    padding: 10px;
  }
  .fighter-heading {
  width: 100%;
  font-size: 1.2rem;
  color: #fff;
  border-left: 6px solid #C9A941;
  padding-left: 10px;
  margin: 2rem 0 0.3rem 45px;
  text-align: left;
}
}

.more-fighters-button {
  display: flex;
  justify-content: center;
  padding-right: 0;
  margin: 1rem 0 0;
}

.more-fighters-button .btn {
  display: inline-block;
  padding: 0.4rem 1rem;
  margin: 0 0.5rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  background: linear-gradient(to bottom, #f1e08a, #c9a941, #8c6d1f);
  color: #212121;
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease-in-out;
  font-size: 0.875rem;
}

.more-fighters-button .btn:hover {
  color: #fff;
  opacity: 0.9;
}


@media screen and (max-width: 540px) {
	
  .fighter-name {
    font-size: 12px;
	font-weight: 600;
  }
  .fighter-record {
    font-size: 12px;
  }
  .fighter-profile {
    font-size: 12px;
  }
  .fighter-cards {
    padding: 0;
    margin: 0;
    justify-content: space-between;
    gap: 0;
  }
  .fighter-card {
    width: calc(33.3333% - 4px);
  }
  .fighter-card:nth-child(2) {
    margin: 0 6px;
  }
  .fighter-heading {
    margin-left: 0;
  }
  .overlay-container {
    padding: 5px;
  }
}


/* ランキング */


.ranking-heading {
  width: 100%;
  font-size: 1.2rem;
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: #fff;
  border-left: 6px solid #C9A941;
  padding-left: 10px;
  margin: 1rem 0 -10px 60px;
  text-align: left;
}

.home-ranking-wrapper {
  display: block;
  width: calc((100% - 2rem) / 3.5 * 3 + 2rem); /* 3枚分＋gap 2つ */
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
}

.ranking-title {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  margin: 10px 0 0rem;
  padding: 0;
  text-align: left;
}

/* ランキング表デザイン：ランキングページと同一 */
.ranking-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 3px;
  margin-bottom: 0rem;
  border: none;
}
.ranking-table th {
  background-color: rgba(26, 26, 26, 0.7);
  color: #fff;
  padding: 0.5rem 0.8rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 0;
}
.ranking-table td {
  background-color: #f8f8f8;
  padding: 0.2rem 0.8rem;
  text-align: center;
  font-size: 0.95rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  color: #333333;
}
.ranking-table td a {
  font-weight: bold;
  text-decoration: none;
  color: #007acc;
}
.ranking-table td a:hover {
  text-decoration: underline;
}
.ranking-table th,
.ranking-table td {
  white-space: normal;       /* 改行OKにする */
  overflow: visible;         /* はみ出しを許可 */
  text-overflow: unset;      /* 「…」を無効化 */
  word-break: break-word;
}
.ranking-table th:nth-child(2) {
  text-align: center;
}
.ranking-table td:nth-child(2) {
  text-align: left;
}
.ranking-table td:nth-child(3),
.ranking-table td:nth-child(4) {
  font-weight: 600;
}
.rank-cell-1 img,
.rank-cell-2 img,
.rank-cell-3 img {
  width: 40px;
  height: auto;
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
}
.ranking-table tbody tr:hover td {
  background-color:#FFD700;
  transition: background-color 0.2s ease;
}
.ranking-table.fixed {
  table-layout: fixed;
  width: 100%;
}
.ranking-table.fixed th:nth-child(1), .ranking-table.fixed td:nth-child(1) { width: 10%; }
.ranking-table.fixed th:nth-child(2), .ranking-table.fixed td:nth-child(2) { width: 45%; }
.ranking-table.fixed th:nth-child(3), .ranking-table.fixed td:nth-child(3) { width: 25%; }
.ranking-table.fixed th:nth-child(4), .ranking-table.fixed td:nth-child(4) { width: 20%; }

.table-note {
  font-size: 0.9rem;
  color: #fff;
  margin: 0rem 0 0rem 0;
}

.name-wrapper {
  display: flex;
  align-items: center;
}

.name-wrapper img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.name-wrapper .fighter-name-rank {
  display: block;
  white-space: normal;
  word-break: break-word;
  line-height: 1.3;
  color: #007acc;
  font-weight: bold;
  font-size: 0.95rem;
}

.name-wrapper .fighter-name-rank a {
  font-weight: bold;
  text-decoration: none;
}

.name-wrapper .fighter-name-rank a:hover {
  text-decoration: underline;
}

.more-ranking-button {
  display: flex;
  justify-content: center;
  padding-right: 0;
  margin: 1rem 0 1rem;
}

.more-ranking-button .btn {
  display: inline-block;
  padding: 0.4rem 1rem;
  margin: 0 0.5rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  background: linear-gradient(to bottom, #f1e08a, #c9a941, #8c6d1f);
  color: #212121;
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease-in-out;
  font-size: 0.875rem;
}

.more-ranking-button .btn:hover {
  color: #fff;
  opacity: 0.9;
}





/* ===== NEWS cards (注目ファイターと同デザイン) ===== */

/* 横並びや幅は .fighter-cards / .fighter-card を流用 */
.home-news-section { /* セクションの間隔だけ微調整したい場合に使用 */
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

/* 画像比率を少しだけ安定させたい場合（任意） */
.news-thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px; /* fighter-thumbと同じ */
  object-fit: cover;
}

/* タイトルは2行想定（fighter-nameの制限を流用） */
.news-title {
  /* .fighter-name を併用しているので基本OK。必要なら上書き */
  margin: 4px -12px -2px -12px;
}

/* 日付・カテゴリの行 */
.news-meta {
  margin: 4px 0 0;
  font-size: 12px;
  color: #ddd;
  display: flex;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}
.news-meta .news-cat {
  background: rgba(0,0,0,0.25);
  border: 1px solid #333;
  padding: 1px 6px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1.6;
}

/* 抜粋は注目ファイターのプロフィールと同様に2行で省略 */
.news-excerpt {
  /* .fighter-profile を併用しているのでOK。必要なら上書き */
  margin-top: 6px;
}

.more-fighters-button.news-more {
  margin-bottom: 2rem; /* 下に余白を追加 */
}




@media screen and (max-width: 768px) {
  .ranking-heading {
	width: 100%;
    font-size: 1.2rem;
    color: #fff;
    border-left: 6px solid #C9A941;
    padding-left: 10px;
    margin: 2rem 0 -10px 45px;
    text-align: left;
  }
  
  .home-ranking-wrapper {
    flex-direction: column;
  }
  .ranking-card {
    flex: 1 1 100%;
  }
  .home-ranking-section .ranking-table th,
  .home-ranking-section .ranking-table td {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
  }

  .home-ranking-section .ranking-title {
    font-size: 1rem;
  }
  
  .home-ranking-section .fighter-name-rank {
    font-size: 0.8rem;
  }
}





@media screen and (max-width: 540px) {
	
.ranking-heading {
  margin: 2rem 0 0px 0px;
}

.home-ranking-section {
  margin-left: 0px !important;
  margin-right: 0px !important;
  padding: 0 !important;
  width: auto !important;
  max-width: none !important;
}

.home-ranking-wrapper {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}

.ranking-title {
  margin-left: 0 !important;
  padding-left: 5px !important;
}

.ranking-table {
  width: 100% !important;
  margin: 0 !important;
}

.home-ranking-section .ranking-table.fixed {
  table-layout: auto;
}

.home-ranking-section .ranking-table th:nth-child(1),
.home-ranking-section .ranking-table td:nth-child(1) {
  min-width: 50px;
}

.home-ranking-section .ranking-table th:nth-child(2),
.home-ranking-section .ranking-table td:nth-child(2) {
  min-width: 100px;
}

.home-ranking-section .ranking-table th:nth-child(3),
.home-ranking-section .ranking-table td:nth-child(3),
.home-ranking-section .ranking-table th:nth-child(4),
.home-ranking-section .ranking-table td:nth-child(4) {
  min-width: 70px;
}

.home-ranking-section .ranking-table th,
.home-ranking-section .ranking-table td {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  word-break: break-word;
}

.home-ranking-section .fighter-name-rank {
  font-size: 0.75rem;
}
}




</style>
