@charset "utf-8";

@font-face {
  font-family: 'BLG';
  src: url(../font/bleage_font.ttf);
  font-weight: normal;
}

.blg_txt {
  font-family: 'BLG';
  src: url(../font/bleage_font.ttf);
  font-weight: normal;
}

.Yu-Gothic {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
}

img {
  vertical-align: bottom;
  width: 100%;
}

p,
span,
h1,
h2,
h3,
h4,
div,
nav {
  font-family: 'Noto Sans JP', sans-serif;
  color: white;
}

html {
  scroll-padding-top: 0px;
  /* 固定ヘッダの高さ分 */
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  line-height: 1.6875;
  background-color: #ffffff;
}

/* ======================================== */
/* 共通CSS */
/* ======================================== */
.onlyPC {
  display: none;
}

@media (min-width: 700px) {
  .onlyPC {
    display: block;
  }
}

@media (min-width: 900px) {
  .onlyPC2 {
    display: none;
  }
}

@media (min-width: 700px) {
  .onlySP {
    display: none;
  }
}

section {
  max-width: 450px;
}

.wht_txt {
  color: #ffffff;
}

.ttl {
  font-size: 55.7rem;
}

/* ======================================== */
/* PC版の背景 */
/* ======================================== */
.body_contents {
  background-image: url(../img/pc_bg.webp);
  background-size: cover;
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.front_contents {
  margin: 0 auto;
  max-width: 450px;
  overflow: hidden;
  position: relative;
  background-color: #1A1A1A;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.59);
}

.pc_logo {
  display: none;
}

@media (min-width: 1100px) {
  .pc_logo {
    display: block;
    bottom: 4%;
    margin: auto 0;
    width: 29%;
    left: 4%;
    position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  }
}


/* ======================================== */
/* 固定ボタン*/
/* ======================================== */
#page-top {
  padding: 8px 0;
  background-color: #04040486;
  width: 100%;
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0px;
  z-index: 100;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　左の動き　*/

#page-top.LeftMove {
  animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.fixed_btn {
  background-color: rgb(243 26 24);
  width: 300px;
  padding: 8px;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.fixed_btn:hover {
  background-color: rgb(114, 2, 0);
}

/* ======================================== */
/* ヘッダー*/
/* ======================================== */
.header_contents {
  background-color: #070707e0;
  border-bottom: 0.5px solid #E8CB6A;
  position: fixed;
  z-index: 100;
  width: 100%;
  max-width: 450px;
}

.header_item1 {
  width: 110px;
}

.header_item1 a:hover {
  opacity: 0.5;
}

.header_item2 {
  width: 150px;
}

.header_item2 a:hover {
  opacity: 0.5;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  padding: 18px 10px 15px;
  align-items: center;
}

/* ======================================== */
/* 下から上がる動き*/
/* ======================================== */


.fade-in {
  opacity: 0;
  transform: scale(0.95);
}

.fade-in.active {
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ======================================== */
/* kv*/
/* ======================================== */
.kv_contents{
  margin-top: 6rem;
}
/* ======================================== */
/* 共通タイトル*/
/* ======================================== */

.com_ttl h2 {
  font-size: 2.5rem;
  text-align: center;
  margin: 10rem 0 0rem;
  line-height: 3.3rem;
}

.com_ttl p {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 5rem;
}

.section {
  width: calc(100% - 40px);
  margin: 0 auto;
  display: block;
}

.schedule_ttl {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.fiba_logo{
  width: 200px;
  display: block;
  margin:  3rem auto 2rem;
}
.fiba_txt{
  font-size: 1.4rem;
}
/* ======================================== */
/* 対戦カード*/
/* ======================================== */
.match_card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 0;
}

.club_item {
  text-align: center;
}

.vs_txt {
  font-size: 3rem;
}

.match_item-top{
  margin-top: 5rem;
}

.match_item {
  background-color: #ffffff;
  padding-bottom: 15px;
  border: 1.5px solid;
  /* 枠線の太さ */
  border-image: linear-gradient(45deg, #795b33, #5c4315) 1;
  margin-top: 2rem;
}

.match_item h3 {
  background-color: black;
  padding: 10px 0;
  text-align: center;
}

.match_gr {
  font-size: 1.2rem;
}

.match_logo {
  width: 60px;
}

.match_card div {
  color: black;
}

.club_item p {
  color: black;
  line-height: 1.2rem;
}

.match_num {
  font-size: 5rem;
}

.club_item p {
  font-weight: bold;
}

.match_btn {
  background-color: #000000;
  color: white;
  text-decoration: none;
  display: flex;
  padding: 10px;
  align-items: center;
  max-width: 280px;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.2rem;
  font-weight: bold;
  justify-content: center;
}

.match_btn img {
  width: 10px;
  display: block;
  margin-left: 20px;
}


.movie_btn {
  background-color: #DA0000;
  color: white;
  text-decoration: none;
  display: flex;
  padding: 10px;
  align-items: center;
  max-width: 280px;
  justify-content: center;
  margin: 1rem auto 0;
  font-size: 1.2rem;
  font-weight: bold;
  justify-content: center;

}

.movie_btn img {
  width: 10px;
  display: block;
  margin-left: 80px;
}

.all_schedule_btn {
  --g1: #ffffff;
  
  color: #000000;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;                 /* 文字と矢印の間隔 */
  padding: 15px 20px;
  margin: 3rem auto 0;
  max-width: 280px;
  font-size: 1.2rem;
  font-weight: bold;

  /* ← ベタ塗りのグラデ背景 */
  background: linear-gradient(90deg, var(--g1), var(--g1));

  /* 枠線グラデは使わない */
  border: none;
}

/* 矢印アイコン */
.all_schedule_btn img {
  width: 10px;
  display: block;
  margin: 0;                 /* 余計な押し出しは不要 */
}

.all_schedule_btn:hover{
  opacity: 0.6;
}

/* ======================================== */
/* 配信について*/
/* ======================================== */
.basket_live {
  max-width: 250px;
  display: block;
  margin: 0 auto;
}

.all_schedule_btn2 {
  background: #DA0000;
  color: #E4C767;
}
/* ======================================== */
/* 表*/
/* ======================================== */
:root {
  --gold1: #b58e27;
  --gold2: #eadca6;
  --line: #c7a64a;
  --bg: #111;
  --panel: #000;
}

/* 共通：タブセット */

.tabset h2 {
  font-size: 14px;
  letter-spacing: .12em;
  color: #aaa;
  margin: 0 0 10px;
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 5rem;
  position: relative;
  justify-content: center;
}

.tab-btn {
  appearance: none;
  border: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  background: #333;
  color: #bbb;
  transition: .2s;
  width: 100%;
  font-size: 1.4rem;
}

.tab-btn:hover{
  opacity: 0.6;
}

.tab-btn.is-active {
  color: #111;
  background: linear-gradient(90deg, var(--gold1), var(--gold2));
  position: relative;
}

.tab-btn.is-active::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -6px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--gold2);
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, .35));
  right: 0;
  left: 0;
  margin: auto;
}

/* パネルの枠（ゴールド枠＋角丸） */
.panel {
  display: none;
  overflow: hidden;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.panel.is-active {
  display: block;
}

/* —— 対戦表（見本） —— */
.match-table {
  border-collapse: collapse;
  width: 100%;
}

.match-table th,
.match-table td {
  width: 12.5rem;
  height: 8.5rem;
  text-align: center;
  vertical-align: middle;
  border: 1px solid var(--line);
}

.match-table th {
  background: linear-gradient(54deg, #b68e26, var(--gold2));
  color: #111;
  font-weight: 800;
}

.match-table .logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.match-table .blank {
  background: #000000;
}

.match-table .vs {
  background: #2f2f2f;
  font-weight: 800;
}

/* —— 順位表（見本） —— */
.standings {
  width: 100%;
  border-collapse: collapse;
}

.standings th,
.standings td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
}

.standings thead th {
  background: linear-gradient(90deg, var(--gold1), var(--gold2));
  color: #111;
  text-align: left;
}

.standings .rank {
  width: 4.5em;
  text-align: right;
  color: #ddd;
}

.standings .team {
  display: flex;
  align-items: center;
  gap: 8px;
}

.standings .team img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.standings .num {
  text-align: right;
  width: 4em;
}

/* 細かい調整 */
.section-title {
  margin: 26px 0 12px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .08em;
}

.vs {
  color: white;
}

/* --------------------------- */
/* 順位表 */
/* --------------------------- */
:root {
  --ranking-gold1: #c49a2f;
  /* 左の金 */
  --ranking-gold2: #f2dc8e;
  /* 中央の光 */
  --ranking-gold3: #a88124;
  /* 右の金 */
  --ranking-line: #c7a64a;
  /* ゴールドの線色 */
  --ranking-bg: #111;
  /* ページ背景 */
  --ranking-panel: #0d0d0d;
  /* テーブル行の黒 */
  --ranking-text: #fff;
}

.ranking_box {
  background: transparent;
  border: 1px solid var(--ranking-line);
  overflow: hidden;
}

/* テーブル共通 */
.ranking_table {
  width: 100%;
  border-collapse: collapse;
  color: var(--ranking-text);
  background: var(--ranking-panel);
}

/* ヘッダー（行全体にグラデ） */
.ranking_head {
  background: linear-gradient(90deg,
      var(--ranking-gold1) 0%,
      var(--ranking-gold2) 40%,
      #d8bf6a 55%,
      var(--ranking-gold3) 100%);
}

.ranking_head th {
  padding: 16px 18px;
  font-weight: 800;
  color: #111;
  /* 金グラ上は黒字 */
  text-align: left;
  border-bottom: 1px solid var(--ranking-line);
}

.ranking_head_blank {
  width: 5rem;
}

/* ランク列分の空ヘッダー */
.ranking_head_team {
  text-align: center;
  font-size: 1.4rem;
}

.ranking_head_win,
.ranking_head_lose {
  text-align: center;
  font-size: 1.4rem;
}

/* 行 */
.ranking_row {
  border-bottom: 1px solid var(--ranking-line);
}

.ranking_row td {
  padding: 15px 8px;
  vertical-align: middle;
  background: #0f0f0f;
  /* ほぼ黒 */
}

/* ランク列 */
.ranking_rank {
  font-size: 1.4rem;
}

/* チーム名＋ロゴ */
.ranking_team {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ranking_logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.ranking_name {
  font-size: 1.3rem;
}

.ranking_head_team{}
/* 勝敗（右寄せ・等幅気味） */
.ranking_win,
.ranking_lose {
  font-size: 1.4rem;
  text-align: center;
}



/* ------------------------------- */
/* グループ */
/* ------------------------------- */
* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
}

/* コンテナ */
.team-list {
  max-width: 960px;
  margin: 0rem auto;
  padding: 0 16px;
  border: 1px solid var(--ranking-line);
}

/* 罫線（左右の細いガイドを再現） */
.team-list::before,
.team-list::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0 24px, var(--line-soft) 24px calc(100% - 24px), transparent);
  pointer-events: none;
}

.team-list::before {
  left: 24px
}

.team-list::after {
  right: 24px
}

/* リスト */
.team {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  padding: 15px 0px;
  background: var(--row);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.team_none{
  border-bottom: none;
}


/* 行間 */
.team::before {
  /* 行内の細い横ライン（スクショのうっすら線） */
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  bottom: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  pointer-events: none;
}

/* ロゴ */
.team-logo {
  width: 56px;
}

.team-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* テキスト */
.team-name {
  font-size: 1.4rem;
}

.team-name .country {
  color: var(--muted);
}


.b-maga_link{
  width: calc(100% - 40px);
  margin: 0 auto 3rem;
  display: block;
}
.b-maga_link:hover{
  opacity: 0.6;
}
.b-maga_link p{
  text-decoration: underline;
  font-size: 1.4rem;
  padding-top: 1rem;
}


/* ------------------- */
/* 固定ボタン */
/* ------------------- */
.fixed_btn {
    background-color: rgb(243 26 24);
    width: 300px;
    padding: 8px;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.wht_txt {
    color: #ffffff;
}

.icon_blank {
    width: 11px;
}