
.latest_matches {
  width: 98%;
  margin: 20px auto;
  background: #fff;
  border: solid 0px #000;
  /*box-shadow: 1px 1px 3px #333;*/
  border-radius: 0;
}

.latest_matches .rank_head {
  font-size: 1.1rem;
  font-weight: bold;
  color: #111;
 
  border-bottom: solid 2px #000;
  padding: 6px 8px;
  margin-bottom: 4px;
}
.match_block{

}

.round_block{
width:98%;

}
.round_title{text-align: left;font-weight: bold;}
.round_block .match_rank{font-size: 0.7rem;}

.player_card_match {

border:solid 1px #ddd;
padding:4px;
width:24%;
 box-shadow: 0px 0px 3px #ccc;
padding:8px 12px;
}
.player_row{gap:4px;}

.player_card_top{
  /*background-color: #eee;*/
  height:20px;line-height: 20px;
}
.player_card_bottom{
  /*background-color: #ccc;*/
}


.player_card:hover {
  background: #fafafa;
}
.player_img_match {
width: 24px;border: solid 0px #fee;
}

.player_img_match img {
width:100%;
}

.player_info {

}


.player_card_match .match_rank{width:24px;font-size: 0.7rem;}

@media (max-width: 600px) {
  .player_name_match {
   font-size: 0.6rem;
  }
  .player_card_top{font-size: 1.3rem;}

.player_card_match{padding:2px 4px;}

}
/* 個別順位カラー */
.player_card_match:nth-of-type(1) .match_rank {
  color: #ffc300; /* 1位：金 */
}
.player_card_match:nth-of-type(2) .match_rank {
  color: #ccc; /* 2位：銀 */
}
.player_card_match:nth-of-type(3) .match_rank {
  color: #bb5b05; /* 3位：銅 */
}


.round_title:nth-of-type(1){margin-top:8px;}


















/* =========================
   今期個人ポイントランキング
========================= */
.flex{display: flex; flex-wrap: wrap;}
/* 共通スタイル */
.player_rank_list {
  width: 48%;
  margin: 16px auto;
  background: #fff;
  border-radius: 0px;
  

}

.player_rank_list .rank_head {
  font-size: 1.2rem;
  font-weight: bold;
  color: #111;
 
  border-bottom: solid 2px #000;
  padding: 6px 8px;
  margin-bottom: 8px;heght:48px;
}

/* =========================
   各プレイヤー1行レイアウト
========================= */
.player_card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
  transition: background 0.2s ease;
   height:56px;
}

.player_card:hover {
  background: #fafafa;
}

/* =========================
   ランク番号
========================= */
.player_rank {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0 4px;
  text-align: center;
  color: #333;
}

/* 個別順位カラー */
.player_card:nth-of-type(2) .player_rank {
  color: #ffc300; /* 1位：金 */
}
.player_card:nth-of-type(3) .player_rank {
  color: #ccc; /* 2位：銀 */
}
.player_card:nth-of-type(4) .player_rank {
  color: #bb5b05; /* 3位：銅 */
}

/* =========================
   選手画像
========================= */
.player_img_div {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player_img_div img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #ddd;
}

/* =========================
   選手名・チーム名
========================= */
.player_info {
  flex: 1;
  overflow: hidden;
}

.player_name {
  font-size: 0.8rem;
  font-weight: bold;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player_team {
  font-size: 0.7rem;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =========================
   ポイント
========================= */
.player_point {
  font-weight: bold;
  font-size: 0.9rem;
  min-width: 90px;
  text-align: right;
}

.player_point_match {
  font-weight: bold;
  font-size: 0.7rem;
  height:24px;line-height: 24px;
  text-align: right;
  margin-left:8px;
   font-size: 1.0rem;
}


/* =========================
   レスポンシブ対応
========================= */
@media (max-width: 600px) {
  .player_rank_list {
    width: 98%;
  }
  .player_card {
    gap: 8px;
    padding: 8px 10px;
  }
  .player_img_div img {
    width: 40px;
    height: 40px;
  }
  .player_name {
    font-size: 0.9rem;
  }
  .player_point {
    font-size: 0.8rem;
    min-width: 70px;
  }
    .player_point_match {
    font-size: 0.6rem;

  
  }
}

.plus {
  color: #007700;
  font-weight: bold;
}

.minus {
  color: #cc0000;
  font-weight: bold;
}


/* =========================
   最新チームランキング
========================= */

/* 上位3チームを強調（まず共通色） */
 .team_rank{
  color: #333; /* 基本ゴールド */
  font-weight: bold;
}

/* 個別順位カラー（後で上書き） */
.team_card:nth-of-type(1) .team_rank {
  color: #ffc300; /* 1位：赤 */
}
.team_card:nth-of-type(2) .team_rank {
  color: #ccc; /* 2位：オレンジ */
}
.team_card:nth-of-type(3) .team_rank {
  color: #bb5b05;; /* 3位：黄色 */
}


.team_rank_list {
  width: 48%;
  margin: 16px auto;
  
  background: #fff;
  border-radius: 0px;

}

.team_rank_list .rank_head {
  font-size: 1.2rem;
  font-weight: bold;
  color: #111;
  background-color: #fff;
  border-bottom:solid 2px #000;
  padding: 6px 8px;
  margin-bottom: 8px;
heght:48px;

}

/* =========================
   各チーム1行レイアウト
========================= */
.team_card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 12px;
  border-bottom: 1px solid #eee;
  transition: background 0.2s ease;
  height:56px;
}

.team_card:hover {
  background: #fafafa;
}

/* =========================
   ランク番号
========================= */
.team_rank {
  font-size: 1.1rem;
  font-weight: bold;
  
  padding:0 4px;
  text-align: center;
}

/* =========================
   チームロゴ
========================= */
.team_img_div {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team_img_div img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =========================
   チーム名
========================= */
.team_name {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 500;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
}

/* =========================
   チームポイント
========================= */
.team_point {
  font-weight: bold;
  font-size: 1.1rem;
  min-width: 90px;
  text-align: right;
}



/* =========================
   レスポンシブ対応
========================= */
@media (max-width: 600px) {
  .team_rank_list {
 width:98%;
  }
  .team_card {

  }
  .team_img_div {

  }
  .team_img_div img {

  }
  .team_name {
   
  }
  .team_point {

  }
}




h2{
font-size: 1.4rem;

}

/* ▼ スマホ対応 */
@media screen and (max-width: 600px) {
h2 {
 font-size: 1.0rem;
}
}

.rank-badge {
  position: absolute;
  top: -8px;
  left: -10px;
  padding: 3px 6px;
  font-size: 0.9em;
  font-weight: bold;
  border-radius: 8px;
  color: #fff;
  z-index: 10;
}

.onair-badge {
  position: absolute;
  top: -28px;
  left: -3px;
  height:28px;
  padding: 3px 6px;
  font-size: 0.9em;
  font-weight: bold;
  border-radius: 6px 6px 0 0;
  color: #fff;
  background-color: #ff3030;
  z-index: 10;
  font-size: 0.8rem;
}
.end-badge{
position: absolute;
   top: -28px;
  left: -3px;
  height:28px;
  padding: 3px 6px;
  font-size: 0.9em;
  font-weight: bold;
  border-radius: 6px 6px 0 0;
  color: #fff;
  background-color: #333;
  z-index: 10;
}

.m-rr {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 40px;
  z-index: 9;
}

.rank-default {
  background-color: #999;   /* グレー */
  color: #fff;
}
.rank-1 {
  background-color: #FFD700; /* 金 */
  color: #000;
}
.rank-2 {
  background-color: #C0C0C0; /* 銀 */
  color: #000;
}
.rank-3 {
  background-color: #CD7F32; /* 銅 */
  color: #fff;
}


.list_card {
  border: 3px solid #555;
  padding: 12px;
  margin-top: 32px;
  margin-bottom: 12px;
  border-radius: 3px;
  background-color: #fff;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
 position: relative;
}

.list_card_person {
  border: 0px solid #333;
  padding: 0px;
  margin-bottom: 12px;
  border-radius: 3px;
  background-color: #fff;
  width:24%;

 position: relative;
}

.person_img{position: relative;margin-bottom: -4px;}
.person_img img{width:100%;}

/* ▼ スマホ対応 */
@media screen and (max-width: 600px) {
.list_card_person{
  width: 32%;
}
}

.artist_rank_area{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
gap:3px;
}


.img_belt {
  position: absolute;
  bottom: 6px;
  width: 100%;
  padding: 2px 0 1px 0;
  color: #F12C47;
  background-color: rgba(255,255,255,0.8);
  font-style: italic;
  font-size: 0.8rem;
  line-height: 1.2rem;
  text-align: center;
font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
}

.img-vote-cnt {
  position: absolute;
  bottom: 32px;
  right: 0;
  background-color: rgba(0,0,0,0.6);
  border-radius: 3px 0 0 3px;
  padding: 4px 8px 2px 8px;
  color: #FFF;
  font-size: 0.9rem;
  line-height: 1.2;
}

.list_card_person .name{
text-align: center;
}

.list_title {
  font-size: 1.0em;
  font-weight: bold;
  margin-bottom: 5px;
  
}

.list_box {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.list_left {
 
}

.list_img_div {
  width: 100px;
  padding-top:4px;

  position: relative; /* ← これを必ず追加 */
}
.list_img_div img{
border:solid 1px #ccc;}

.list_img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.list_right {
  margin-left:8px;
  flex: 1;
  display: flex;
  flex-direction: column;
   
 
}


.list_inform{
line-height: 1.0em;
  font-weight: bold;
  font-size: 1.4rem;
    display: flex;
  flex-direction: column;
}
.list_inform:not(:first-child){
margin-top: 4px;
}


.list_right table{
  font-size: 1.1rem;border-collapse:collapse;width:70%;
}
.list_right tr{
  border-bottom:solid 1px #999;
}

.list_right th{
  text-align: left;
}

.list_right td{
  padding:4px 2px;font-weight: bold;
}

.list_info {
  font-size: 0.9em;
  margin-bottom: 6px;
}


.list_income_c{
  color:#FF4747;font-weight: bold;
  font-size: 1.3rem;
}
.list_hs{
  font-size: 50%;
}

.list_th{
  width:30%;font-weight: normal;line-height: 1em;
}
.list_th_c{
  width:33%;font-weight: normal;font-size: 0.8rem;
}
/* ▼ スマホ対応 */
@media screen and (max-width: 600px) {
.list_left {
 width:50px;
}

.list_inform{
line-height: 1.0em;
  font-weight: bold;
  font-size: 1.0rem;
}


.list_img {
  max-width: 60%;
  
  height: auto;
  border-radius: 4px;
}

}





.ra-more {
 
  margin:12px auto;
  width: 50%;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #000;
  color: #FFF;
  border-radius: 5px;
  text-align: center;
}
/* ▼ スマホ対応 */
@media screen and (max-width: 600px) {
.ra-more {
 width:80%;
}

}




.tv_list_title{
font-size: 1.0rem;
border-bottom: solid 2px #333;
}
.switch_area{
  
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
gap:3px;
}

.switch_box{

  border:solid 1px #333;
  text-align: center;
  padding: 2px 15px;
  margin: 0 3px 0 0;
  font-size: 1.2rem;
  border-radius: 1px;
  font-size: 0.8rem;
}

.switch_box-on {
  background-color: #333;
  color: #FFF;
 

}

.switch_box-off {
  background-color: #FFF;
  color: #333;
  border:1px #333 solid;

}
a.switch_box-on {
  color: #fff !important;
}

a.switch_box-off {
  color: #000 !important;
}