@charset "utf-8";
.section_game{
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .section_game {
    padding-bottom: 50px;
  }
}

/*
試合日程・結果リスト
*/
.game_list{
  gap:20px;
  display: flex;
  flex-direction: column;
  flex-wrap:wrap;
}

/*
試合日程・結果リスト widget
*/
.widget_game_board {
  position: relative;
}

.widget_game_board dl.host{
  display: flex;
  gap:0;
  border-radius: 15px 15px 0 0;
}

.widget_game_board dl.host .area {
  display: flex;
  align-items: center;
  width: 100%;
}

.widget_game_board dl.host dt {
  width: 140px;
  border-radius: 15px 0px 0px 0px;
  justify-content: center;
  padding: 0;
  background: var(--sub-clr);
  font-family: var(--sub);
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  padding-top: 0.15em;
}

.widget_game_board dl.host dt.visitor{
  background: #929292;
}

.widget_game_board dl.host dd{
  display: flex;
  align-items: center;
  width: calc(100% - 140px);
  text-align: left;
  background: #F9F9F9;
  padding: 0.9em 0;
  padding-left: 1em;
  line-height: 1.3;
  padding-right: 10px;
  border-radius: 0px 15px 0px 0px;
}

.widget_game_board dl.host dd i{
  width: 14px;
}

.widget_game_board dl.host dd span{
  width: calc(100% - 14px);
  padding-left: 0.5em;
  font-size: 1.6rem;
}

.widget_game_board .location {
  display: flex;
}

.widget_game_board .location .box1{
  width: 140px;
  border-radius: 15px 0px 0px 0px;
  justify-content: center;
  padding: 0;
  background: var(--sub-clr);
  font-family: var(--sub);
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
}

.widget_game_board .location .box2{
  width: calc(100% - 140px);
  border-radius: 0px 15px 0px 0px;
  background: #F9F9F9;
  padding: 10px 24px;
}

.widget_game_board .location .box2 .area{
  display: flex;
  gap:8px;
  padding-top: 5px;
}

.widget_game_board .location .box2 .area i{
  width: 14px;
  margin-top: 0.1em;
}

.widget_game_board .location .box2 .area i img{
  vertical-align: top;
}

.widget_game_board .location .box2 .area span{
  width: calc(100% - 14px);
  padding-left: 0em;
  font-size: 1.6rem;
  line-height: 1.5;
}


.widget_game_board .body {
  background: #fff;
  padding: 15px 55px;
  border-radius: 0px 0px 15px 15px;
  justify-content: space-between;
}

.widget_game_board .row{
  display: flex;
  flex-wrap:wrap;
}
.widget_game_board .date_tbd2{
  width: 100%;
  order: 2;
}
.widget_game_board .row .date_area{
  width:270px;
}

.widget_game_board .row .score_area {
  width: 290px;
  display: flex;
  padding-right: 10px;
  justify-content: center;
  flex-direction: column;
}

.widget_game_board .row .match_area {
  width: calc(100% - 290px - 270px - 205px);
}

.widget_game_board .row .action_area {
  width:205px;
}

/*日付*/
.widget_game_board .row .date_area{
  position: relative;
  display: flex;
  align-items: center;
}

.widget_game_board .row .date_area .section{
  font-size: 1.8rem;
  line-height: 1;
  text-align: left;
  color: #242424;
  font-weight: bold;
  margin-bottom: 10px;
}

.widget_game_board .row .date_area .date{
  display: flex;
  font-family: var(--sub);
  align-items: first baseline;
  line-height: 1;
  gap:8px;
}

.widget_game_board .row .date_area .date strong{
  font-weight: bold;
  font-size: 4.9rem;
  text-align: left;
  color: var(--sub-clr);
  line-height: 1;
}

.widget_game_board .row .date_area .date span{
  font-weight: bold;
  font-size: 1.6rem;
  text-align: left;
  color: var(--sub-clr);
  line-height: 1;
  margin-left: -0.4em;
}

.widget_game_board .row .date_area .kickoff{
  font-weight: bold;
  font-size: 2.2rem;
  min-height: 1em;
  text-align: left;
  color: var(--sub-clr);
  line-height: 1;
  font-family: var(--sub);
  display: flex;
  align-items: center;
}

/* 対戦エリア */
.widget_game_board .row .match_area {
  position: relative;
  display: flex;
  align-items: center;
}

.widget_game_board .row .match_area::after{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 100px;
  width: 1px;
  background: #DCDCDC;
}

.widget_game_board .row .match_area .match {
  display: flex;
  align-items: center;
  padding-left: 50px;
}

.widget_game_board .row .match_area .match .vs {
  font-weight: bold;
  font-size: 2.4rem;
  color: var(--main-clr);
  padding-right: 15px;
  font-family: var(--sub);
  white-space: nowrap;
}

.widget_game_board .row .match_area .match .logo {
  width: 97px;
}
.widget_game_board .row .match_area .match .logo img{
  max-width: 100%;
  width: auto;
}

.widget_game_board .row .match_area .match .team {
  font-weight: bold;
  font-size: 1.8rem;
  text-align: left;
  color: #242424;
  padding-left: 15px;
  line-height: 1.5;
}

/* スコア */
.widget_game_board .row .score_area {
  font-family: var(--sub);
  display: flex;
  align-items: center;
}

.widget_game_board .row .score_area  .score {
  display: flex;
  justify-content: center;
  font-weight: bold;
  align-items: center;
  gap:20px;
}

.widget_game_board .row .score_area  .score .side_a {
  font-size: 5rem;
  color: var(--sub-clr);
  line-height: 1;
}

.widget_game_board .row .score_area  .score .side_b {
  font-size: 5rem;
  line-height: 1;
}

.widget_game_board .row .score_area  .score .hype {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 7px;
  background: #242424;
}

.widget_game_board .row .score_area  .result{
  display: flex;
  justify-content: center;
}
.widget_game_board .row .score_area  .result span{
  padding:0.5em 1em 0.3em;
  line-height: 1;
  border-radius: 1em;
  font-weight: bold;
  font-size: 1.9rem;
}

.widget_game_board .row .score_area  .result span.status1,
.widget_game_board .row .score_area  .result span.win{
  background: var(--main-clr);
  border: 1px solid var(--main-clr);
  color: #fff;
}

.widget_game_board .row .score_area  .result span.status0,
.widget_game_board .row .score_area  .result span.lose{
  background: #929292;
  color: #fff;
  border: 1px solid #929292;
}

.widget_game_board .row .score_area  .result span.status2,
.widget_game_board .row .score_area  .result span.draw{
  background: #6680AC;
  color: #fff;
  border: 1px solid #6680AC;
}

.widget_game_board .row .score_area  .result span.pre{
  background: #fff;
  color: var(--main-clr);
  border: 1px solid var(--main-clr);
}

/* アクション */
.widget_game_board .row .action_area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.widget_game_board .row .action_area::after{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 100px;
  width: 1px;
  background: #DCDCDC;
}

.widget_game_board .row .action_area .inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:10px;
}

.widget_game_board .row .action_area .button {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  border-radius: 5px;
  width: 147px;
  padding: 0.25em;
  text-align: center;
}

.widget_game_board .row .action_area .button.event{ background: #4791DB;}
.widget_game_board .row .action_area .button.buy{ background: #D8A643;}
.widget_game_board .row .action_area .button.info{ background: #248260;}


@media screen and (max-width: 1400px) {

  .widget_game_board .row .date_area{
    width:240px;
  }

  .widget_game_board .row .score_area {
    width: 270px;
  }

  .widget_game_board .row .match_area {
    width: calc(100% - 240px - 270px - 170px);
  }

  .widget_game_board .row .action_area {
    width:170px;
  }

  .widget_game_board .row .match_area .match {
    padding-left: 30px;
  }

}
@media screen and (max-width: 1300px) {

  .widget_game_board .row .date_area{
    width:200px;
  }

  .widget_game_board .row .score_area {
    width: 220px;
  }

  .widget_game_board .row .match_area {
    width: calc(100% - 200px - 220px - 170px);
  }

  .widget_game_board .body {
    padding: 15px 2vw;
  }

  .widget_game_board .row .date_area .section {
    font-size: 1.4vw;
  }

  .widget_game_board .row .date_area .kickoff {
    font-size: 1.7vw;
  }

  .widget_game_board .row .date_area .date strong {
    font-size: 3.1vw;
  }

  .widget_game_board .row .score_area  .result span{
    font-size: 1.5vw;
  }


  .widget_game_board .row .match_area .match {
    display: flex;
    align-items: center;
    padding-left: 2vw;
  }

  .widget_game_board .row .match_area .match .vs {
    font-size: 1.8vw;
  }

  .widget_game_board .row .match_area .match .team {
    font-size: 1.4vw;
  }

  .widget_game_board .row .score_area .score .side_a,
  .widget_game_board .row .score_area .score .side_b {
    font-size: 3.2vw;
  }

}

@media screen and (max-width: 1200px) {

  .widget_game_board {
    position: relative;
  }

  .widget_game_board .location {
    display: flex;
  }

  .widget_game_board .location .box1{
    width: 140px;
    border-radius: 15px 0px 0px 0px;
    padding: 9px 0 8px;
    background: var(--sub-clr);
    font-family: var(--sub);
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    color: #fff;
  }

  .widget_game_board .location .box2{
    width: calc(100% - 140px);
    border-radius: 0px 15px 0px 0px;
    background: #F9F9F9;
    padding: 10px 24px;
  }

  .widget_game_board .location .box2 .area {
    display: flex;
    gap: 8px;
  }

  .widget_game_board .body {
    padding: 20px 20px;
    padding-bottom: 35px;
  }

  .widget_game_board .row{
    display: flex;
    flex-wrap:wrap;
    flex-direction: column;
  }

  .widget_game_board .row .score_area {
    padding-right: 0;
  }

  .widget_game_board .row .date_area,
  .widget_game_board .row .score_area ,
  .widget_game_board .row .match_area ,
  .widget_game_board .row .action_area {
    width:100%;
    justify-content: center;
    flex-wrap:wrap;
    order: 5;
  }


  .widget_game_board .row .date_area{
    margin-bottom: 10px;
    order: 1;
  }

  .widget_game_board .row .date_area .inner{
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap:wrap;
    align-items: baseline;
    gap:0 1em;
  }

  .widget_game_board .row .date_area .section{
    font-size: 1.8rem;
    width: 100%;
    text-align: center;
  }

  .widget_game_board .row .date_area .date{
    align-items: baseline;
    gap:8px;
  }

  .widget_game_board .row .date_area .date strong{
    font-size: 4rem;
  }

  .widget_game_board .row .date_area .date span{
    font-size: 1.6rem;
    margin-left: 0em;
  }

  .widget_game_board .row .date_area .kickoff{
    font-size: 2.2rem;
  }

  /* 対戦エリア */
  .widget_game_board .row .match_area{
    margin-bottom: 10px;
  }

  .widget_game_board .row .match_area::after{
    display: none;
  }

  .widget_game_board .row .match_area .match .team {
    font-size: 1.8rem;
    padding-left: 0;
  }

  .widget_game_board .row .match_area .match .vs {
    font-size: 2.4rem;
    padding-right: 9px;
  }

  .widget_game_board .row .match_area .match .team {
    font-size: 1.8rem;
    padding-left: 13px;
  }

  .widget_game_board .row .match_area .match .logo{
    width: auto;
  }

  /* スコア */
  .widget_game_board .row .score_area {
    margin-bottom: 30px;
  }

  .widget_game_board .row .score_area .inner {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .widget_game_board .row .score_area  .score {
    gap:20px;
  }

  .widget_game_board .row .score_area  .score .side_a {
    font-size: 5rem;
  }

  .widget_game_board .row .score_area  .score .side_b {
    font-size: 5rem;
  }

  .widget_game_board .row .score_area  .score .hype {
    width: 26px;
    height: 7px;
  }

  /* アクション */
  .widget_game_board .row .action_area::after{
    display: none;
  }

  .widget_game_board .row .action_area{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:10px;
  }

  .widget_game_board .row .action_area .button {
    font-size: 1.6rem;
  }

  .widget_game_board .row .action_area .inner{
    gap:10px;
    flex-direction: row;
  }

}
@media screen and (max-width: 768px) {
  .widget_game_board .body {
    padding: 20px 2.7vw 20px;
  }

  .widget_game_board .row .match_area .match .logo {
    width: auto;
    max-width: 13%;
  }

  .widget_game_board dl.host dt{
    font-size: 3.5vw;
    padding:0.2em 0 0;
    width: 30%;
  }

  .widget_game_board dl.host dd{
    width: calc(100% - 30%);
    padding: 0.9vw 1em;
  }
  .widget_game_board dl.host dd i {
    width: 0.8em;
  }

  .widget_game_board dl.host dd span{
    font-size: 2.8vw;
    width: calc(100% - 0.8em);
  }

  .widget_game_board .row .date_area .section {
    font-size: max(1.6rem, 2.8vw);
  }

  .widget_game_board .row .date_area .date strong {
    font-size: max(3rem, 6.25vw);
  }

  .widget_game_board .row .date_area .date span {
    font-size: max(1.3rem, 2.2vw);
  }

  .widget_game_board .row .date_area .kickoff {
    font-size: max(2rem, 3.4vw);
  }

  .widget_game_board .row .match_area .match .team {
    font-size: max(1.4rem, 2.8vw);
    line-height: 1.3;
  }

  .widget_game_board .row .match_area .match .vs {
    font-size: max(2rem, 3.7vw);
  }

  .widget_game_board .row .score_area .score .side_a {
    font-size: max(3.5rem, 7.8125vw);
  }

  .widget_game_board .row .score_area .score .side_b {
    font-size: max(3.5rem, 7.8125vw);
  }

  .widget_game_board .row .score_area  .result span{
    font-size: max(1.5rem, 2.9vw);
  }

  .widget_game_board .row .action_area .button {
    font-size: max(1.2rem, 3.2vw);
  }

  .widget_game_board .row .action_area .inner{
    gap:2%;
  }

  .widget_game_board .row .action_area .button {
    width: 8em;
  }

}

/*
flow15 順位
*/
/* ラップ */
.rank_table_wrap {
  overflow-x: auto;
  margin-bottom: 50px;
}

/* テーブル */
.rank_table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.rank_table th,
.rank_table td {
  padding: 12px 10px;
  text-align: center;
  background: #fff;
  font-size: 1.6rem;
  vertical-align: middle;
  font-weight: bold;
}

.rank_table th{
  white-space: nowrap;
}

.rank_table td{
  border-right: 1px solid #fff;
}

.rank_table td img {
  width: auto;
  max-width: 31px;
  height: auto;
  mix-blend-mode: multiply;
}

.rank_table tr:nth-child(odd) td{
  background: #EDEFF4;
}

.rank_table tr:nth-child(even) td{
  background: #F9FAFB;
}

.rank_table tr.current td{
  background: #F5C6DB !important;
}

.rank_table .td01 {
  position: relative;
  width: 55px;
  border-right: none;
}

.rank_table .td02 {
  position: relative;
  width: 60px;
  text-align: right;
  padding: 12px 10px;
  border-right: none;
}

.rank_table .td03 {
  text-align: left;
  white-space: nowrap;
}

.rank_table .td01::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #FFFFFF;
}

.rank_table thead th {
  background: var(--sub-clr);
  color: #fff;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .rank_table .th01,
  .rank_table .td01 {
    position: sticky;
    left: 0;
    z-index: 3;
  }

  .rank_table .th02,
  .rank_table .td02 {
    position: sticky;
    left: 50px; /* td01の幅分 */
    z-index: 2;
  }

  /* ヘッダーを少し上に */
  .rank_table thead th {
    z-index: 5;
  }
}

#section_game_rank2 .msg1{
  margin-bottom: 30px;
}


/*section_latestgame*/
.section_latestgame{
  position: relative;
  padding-top: 80px;
  padding-bottom: 50px;
}

.lower_contents_head.abs{
  position: absolute;
  left:0;
  top:0;
  width: 100%;
  z-index: 3;
}

.lower_contents_head.abs .breadcrumb ol>li a,
.lower_contents_head.abs .breadcrumb ol>li{
  color:#fff;
}

.lower_contents_head.abs .breadcrumb li + li::before {
  color: #fff;
}

.section_latestgame .ttl_l{
  position: relative;
  font-size: 3rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 0px;
  z-index: 2;
}

.section_latestgame .ttl_m{
  position: relative;
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
  z-index: 2;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .section_latestgame .ttl_l{
    font-size: 4.2vw;
  }

  .section_latestgame .ttl_m{
    font-size: 3.5vw;
    margin-bottom: 25px;
  }

}

/*ウジェット：得点ボード*/
.widget_board {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding-top: 40px;
  padding-bottom: 50px;
}

.widget_board .team{
  text-align: center;
  width: 20%;
}

.widget_board .team .logo .img {
  /*border-radius: 50%;*/
  overflow: hidden;
  width: 121px;
  margin: 0 auto;
  margin-bottom: 5px;
}
.widget_board .team .logo .img.bdr {
  border: 1px solid #707070;
}

.widget_board .team .name{
  font-size: 1.6rem;
  line-height: calc(26 / 16);
  white-space: nowrap;
}

.widget_board .panel .head{
  font-family: var(--sub);
  text-align: center;
  display: flex;
  justify-content: center;
  font-weight: bold;
  gap:1em;
}

.widget_board .panel .head p.date{font-size: 2.1rem;}
.widget_board .panel .head p.date small{font-size: 1.2rem;}
.widget_board .panel .head p.kickoff{ font-size: 2.1rem;}
.widget_board .panel .ttl{
  font-size: 1.6rem;
  text-align: center;
  font-weight: bold;
}

.widget_board .panel .score{
    display: flex;
    min-width: 560px;
    align-items: center;
    gap: 30px;
    margin: 0 auto;
    justify-content: center;
    margin-left: -3%;
}

.widget_board .panel .score .total{
  font-size: 5.9rem;
  font-weight: bold;
  font-family: var(--sub);
}

.widget_board .panel .score .total.us{
  color: var(--sub-clr);
}

.widget_board .panel .score .term {
  text-align: center;
  white-space: nowrap;
  width: 218px;
}

.widget_board .panel .score .term .first{
  border-bottom: 1px solid #242424;
  line-height: 1;
  padding:0 20px;
  padding-bottom: 0.8em;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.widget_board .panel .score .term .latter{
  line-height: 1;
  padding:0 20px;
  padding-top: 0.8em;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.widget_board .panel .score .term .first .point,
.widget_board .panel .score .term .latter .point{
  font-size: 2.4rem;
  font-weight: bold;
  font-family: var(--sub);
  width: calc((100% - 2.5em) / 2);
  text-align: center;
}

.widget_board .panel .score .term .first .label,
.widget_board .panel .score .term .latter .label{
  font-size: 1.9rem;
  padding: 0;
  width: 2.5em;
  font-weight: bold;
  text-align: center;
}

.widget_board_wrap dl.host{
  display: flex;
  justify-content: center;
  gap:0;
}

.widget_board_wrap dl.host dt {
  width: 140px;
  border-radius: 15px 0px 0px 0px;
  justify-content: center;
  background: var(--sub-clr);
  font-family: var(--sub);
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  padding-top: 0.15em;
}

.widget_board_wrap dl.host dd{
  display: flex;
  align-items: center;
  width: calc(100% - 140px);
  text-align: left;
  background: #F9F9F9;
  padding: 0.9em 0;
  padding-left: 1em;
  line-height: 1.3;
  padding-right: 10px;
  border-radius: 0px 15px 0px 0px;
}


.widget_board_wrap dl.host dd .area {
  display: flex;
  width: 100%;
}

.widget_board_wrap dl.host dd i{
  width: 14px;
}

.widget_board_wrap dl.host dd span{
  width: calc(100% - 14px);
  padding-left: 0.5em;
  font-size: 1.6rem;
}


.widget_board_wrap .result{
  display: flex;
  justify-content: center;
}

.widget_board_wrap .result span{
  padding:0.5em 1em 0.3em;
  line-height: 1;
  border-radius: 1em;
  font-weight: bold;
  font-size: 1.9rem;
  min-width: 144px;
  text-align: center;
}
.widget_board_wrap .result span.status1,
.widget_board_wrap .result span.win{
  background: var(--main-clr);
  border: 1px solid var(--main-clr);
  color: #fff;
}
.widget_board_wrap .result span.status0,
.widget_board_wrap .result span.lose{
  background: var(--sub-clr);
  color: #fff;
  border: 1px solid var(--sub-clr);
}
.widget_board_wrap .result span.status2,
.widget_board_wrap .result span.draw{
  background: #6680AC;
  color: #fff;
  border: 1px solid #6680AC;
}

@media screen and (max-width: 1100px) {

  .widget_board .panel .score .term{
    width: 150px;
  }

  .widget_board .panel .score .term .first{
    padding: 0 10px 0.5em;
  }
  .widget_board .panel .score .term .latter{
    padding: 0.5em 10px 0;

  }

  .widget_board .panel .head p.date {
    font-size: 1.7rem;
  }

  .widget_board .panel .head p.date small {
    font-size: 1rem;
  }
  .widget_board .panel .head p.kickoff {
    font-size: 1.7rem;
  }

  .widget_board .panel .ttl{
    font-size: 1.3rem;
  }

  .widget_board .panel .score .total {
    font-size: 5rem;
  }

  .widget_board .panel .score .term .first .point,
  .widget_board .panel .score .term .latter .point{
    font-size: 1.7rem;
  }

  .widget_board .panel .score .term .first .label,
  .widget_board .panel .score .term .latter .label{
    font-size: 1.5rem;
  }

  .widget_board_wrap dl.host dt{
    font-size: 1.3rem
  }

  .widget_board_wrap dl.host dd{
    font-size: 1.2rem;
  }

  .widget_board .team .name{
    font-size: 1.2rem;
    white-space: normal;
  }

  .widget_board{
    gap: 2%;
    padding: 30px 20px 30px;
  }

  .widget_board {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 0 0 20px 20px;
  }

  .widget_board .panel {
    width: 62.5%;
  }

  .widget_board .team {
    width: 19.5%;
  }

  .widget_board .panel .score {
      min-width: 0;
      gap: 0.5em;
  }

  .widget_board .team .logo .img{
    width: 100%;
  }

}
@media screen and (max-width: 768px) {
  .widget_board .panel .head {
    display: block;
  }
  .widget_board{
    gap: 2%;
    padding:20px 2.7vw;
  }

  .widget_board .panel .head p.date {
    font-size: 3.8vw;
  }

  .widget_board .panel .head p.date small {
    font-size: 1.8vw;
  }

  .widget_board .panel .head p.kickoff {
    font-size: 2.8vw;
    margin-top: -10px;
  }

  .widget_board .panel .ttl{
    font-size: 2.3vw;
  }

  .widget_board .panel .score .total {
    font-size: 6.25vw;
  }

  .widget_board .panel .score .term {
    width: 50%;
  }


  .widget_board .panel .score .term .first{
    padding: 0 0.4em 0.5em;
  }
  .widget_board .panel .score .term .latter{
    padding: 0.5em 0.4em 0;

  }


  .widget_board .panel .score .term .first .label,
  .widget_board .panel .score .term .latter .label{
    font-size: 2.3vw;
    padding: 0 0.5em;
  }


   .widget_board .panel .score .term .first .point,
  .widget_board .panel .score .term .latter .point{
    width: calc((100% - 3.5em) / 2);
     font-size: 2.9vw;
  }

  .widget_board .panel .score .term .first .label,
  .widget_board .panel .score .term .latter .label {
    font-size: 2.3vw;
    width: 3.5em;
  }

  .widget_board_wrap dl.host dt{
    font-size: 3.5vw;
    padding:0.2em 0 0;
    width: 30%;
  }

  .widget_board_wrap dl.host dd{
    width: calc(100% - 30%);
    padding: 0.9vw 1em;
  }

  .widget_board_wrap dl.host dd i {
    width: 0.8em;
  }

  .widget_board_wrap dl.host dd span{
    font-size: 2.8vw;
    width: calc(100% - 0.8em);
  }

  .widget_board_wrap .result span{
    padding:0.5em 1em 0.3em;
    font-size: 3vw;
    min-width: 100px;
  }

/*   .widget_board_wrap dl.host dt{
    font-size: 2vw;
  }

  .widget_board_wrap dl.host dd{
    font-size: 2.3vw;
  }
 */
  .widget_board .team .name{
    font-size: 2vw;
  }
}
@media screen and (max-width: 600px) {
  .widget_board{
    gap: 1%;
    padding:20px 2vw;
  }

  .widget_board .panel .score .total {
    font-size: 7vw;
  }
}

#section_member_group1{
  padding-top: 30px;
  padding-bottom: 100px;
}
#section_member_group2{
  padding-bottom: 50px;
}

@media screen and (max-width: 1024px) {

  #section_member_group1{
    padding-top: 20px;
    padding-bottom: 50px;
  }
  #section_member_group2{
    padding-bottom: 0px;
  }

}

#section_game_group1{
  padding-top: 30px;
  padding-bottom: 100px;
}
#section_game_group2{
  padding-bottom: 50px;
}

@media screen and (max-width: 1024px) {

  #section_game_group1{
    padding-top: 20px;
    padding-bottom: 50px;
  }
  #section_game_group2{
    padding-bottom: 0px;
  }

}

/* .team_head{
  display: flex;
} */


/* .team_head::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 1px;
  background: #fff;
}
 */

.team_head{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8em 0;
  display: flex;
  gap:20px;
  background: var(--sub-clr);
}

/* .team_head::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 1px;
  background: #fff;
}
 */

.team_head .logo{
  width: 60px;
}

.team_head .name {
  font-size: 2.4rem;
  color: #fff;
  font-weight: bold;
}

.member_list .team {
  position: relative;
  width: 50%;
/*   display: flex;
  flex-direction: column; */
  gap: 0;
  background: #EDEFF4;
}

.member_list .team_left::after{
  content: '';
  position: absolute;
  top: 0;
  right: -1px;
  height: 100%;
  width: 1px;
  background: #fff;
}


.member_list .team .item{
  display: flex;
  padding: 10px 0;
}

.member_list .team>.item:nth-child(even){
  background: #F9FAFB;
}

.member_list .team >.item>.num{
  width: 120px;
  display: flex;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  justify-content: center;
  font-family: var(--sub);
}

.member_list .team>.item>.name{
  font-size: 1.6rem;
  width: calc(100% - 120px);
}

.member_list .team>.item>.name a{
  text-decoration: underline;
}

.member_list .team>.item>.name .badge{
  background: #248260;
  color: #fff;
  line-height: 1;
  padding: 0.2em 0.5em 0.05em;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: var(--sub);
  display: inline-block;
  margin-left: 0.5em;
}
.member_list .row{
  position: relative;
  display: flex;
}
.member_list .row .team:nth-child(1)::after{
  content: '';
  position: absolute;
  top: 0;
  right: 0px;
  height: 100%;
  width: 1px;
  background: #fff;
}


.member_table {
  width: 100%;
  border-collapse: collapse;
}

.member_table .item {
  width: 50%;
  padding: 12px 16px;
  vertical-align: middle;
}

.member_table .row{
  display: flex;
}

.member_table .num {
  width: 120px;
  font-family: var(--sub);
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.member_table .name {
  width: calc(100% - 120px);
  font-size: 1.6rem;
}

.member_table tr:nth-child(even) .item {
  background: #F9FAFB;
}

.member_table tr:nth-child(odd) .item {
  background: #EDEFF4;
}

.member_table tr td:nth-child(1){
  border-right: 1px solid #fff;
}

.member_table .name .badge{
  background: #248260;
  color: #fff;
  line-height: 1;
  padding: 0.2em 0.5em 0.05em;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: var(--sub);
  display: inline-block;
  margin-left: 0.5em;
}

.member_table .name a{
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {

/*   .member_table .team {
    width: 100%;
  }

  .member_table .row .team:nth-child(1){
    margin-bottom: 20px;
  }

  .member_table .team .item{
    display: flex;
    padding: 10px 0;
  }
 */
  .team_head{
    display: flex;
  }

  .team_head{
    position: relative;
    display: flex;
    align-items: center;
  }

  .member_table .team>.item:nth-child(even){
    background: #F9FAFB;
  }

  .member_table .num{
    width: 120px;
    display: flex;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    justify-content: center;
    font-family: var(--sub);
  }

  .member_table .name {
    font-size: 1.6rem;
    width: 80%;
  }

  .member_table .name a{
    text-decoration: underline;
  }

  .member_table .name .badge{
    background: #248260;
    color: #fff;
    line-height: 1;
    padding: 0.2em 0.5em 0.05em;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: var(--sub);
    display: inline-block;
    margin-left: 0.5em;
  }

}
@media screen and (max-width: 768px) {

  .member_table .item{
    align-items: center;
  }

  .member_table .num {
    width: 20%;
    font-size: 3.8vw;
  }

  .member_table .name{
    font-size: 3vw;
  }

  .member_table .name .badge {
    font-size:2.5vw;
    padding-top: 0.5em;
  }

}

/*
ギャラリー
 */
.gallery_list{
  margin:60px auto 80px;
  max-width: 1320px;
  display: flex;
  flex-wrap:wrap;
  gap:60px
}

.gallery_list>li{width: calc((100% - 120px) / 3);}

@media screen and (max-width: 1024px) {
  .gallery_list{
    margin:50px auto;
    gap:30px
  }
  .gallery_list>li{width: calc((100% - 30px) / 2);}
}



/*
スコア
*/
#section_score1{
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  #section_score1{
    margin-bottom: 40px;
  }
}

.table_head .team_head{
  position: relative;
}

.table_head .team_head::after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background: #fff;
}


.score_table01_wrap{
  margin-top: 35px;
}

.table_head{
  display: flex;
  position:relative;
}

.score_table01 thead th{
  width: 50%;
}

.score_table01 tr td{
  background: #F9FAFB;
  vertical-align: middle;
}
.score_table01 tr:nth-child(odd) td{
  background: #EDEFF4;
}

.score_table01 tbody th{
  background: var(--main-clr);
  color: #fff;
  font-size: 2rem;
  text-align: center;
  padding: 0.2em;
  vertical-align: middle;
}

.score_table01 th:not(:last-child),
.score_table01 tbody th:not(:last-child){
  border-right: 1px solid #fff;
}

.score_table01 td{
  text-align: center;
  font-size: 2.4rem;
  font-family: var(--sub);
  font-weight: bold;
  padding: 0.2em;
  border-right: 1px solid #fff;
}

.score_table01 td.ttl,
.score_table01 td.ttl{
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  width: 40%;
}

.score_table01 td.ttl .sp,
.score_table01 td.ttl .sp{
  font-size: 2rem;
}

.score_table01 td.result{
  text-align: center;
  font-size: 5rem;
  font-family: var(--sub);
  font-weight: bold;
}

.score_table01 tfoot tr:nth-child(1){
  position: relative;

}

.score_table01 tfoot tr:nth-child(1)::after{
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  height: 1px;
  width: 100%;
  background:  #929292;
}

@media screen and (max-width: 1024px) {
  .table_head .team_head .logo {
      max-width: 60px;
      width: 25%;
  }
}
@media screen and (max-width: 768px) {
  .score_table01 tbody th{
    font-size: 3.8vw;
  }

  .score_table01 td {
    font-size: 3.8vw;
  }
  .score_table01 td.ttl{
    font-size: 3.6vw;
  }
  .score_table01 td.ttl .sp{
    font-size: 4vw;
  }

  .score_table01 td.ttl,
  .score_table01 td.ttl{
    width: 35%;
  }

  .score_table01 td.result{
    font-size: 7.5vw;
  }
}

/*テーブル2*/
.score_table02{
  text-align: center;
}

.score_table02 td{
  background: #EDEFF4;
  padding: 17px 0.1em;
  vertical-align: middle;
  border-right: 1px solid #fff;
}
.score_table02 td:last-child{
  border-right: 0;
}

.score_table02 tr:nth-child(odd) td{
  background: #F9FAFB;
}

.score_table02  td.player{
  font-size: 1.8rem;
  vertical-align: top;
}

.score_table02  td.goal i.replace{
  aspect-ratio: 22 / 16;
  background-image: url(../svg/icon_replace.svg);
  background-size: 100%;
  width: 22px;
  height: 16px;
  display: inline-block;
}

.score_table02 td.player{
  font-size: 1.8rem;
  /* width: calc((100% - 120px - 120px - 353px) / 2); */
}

.score_table02 td.player1,
.score_table02 td.player2{
  width: 28%;
}

.score_table02 td.goal{
  font-size: 1.8rem;
  font-weight: bold;
  width: 120px;
}

.score_table02 td.score{
  width: 353px;
}


.score_table02 td.score>.box{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap:30px;
}

.score_table02 td.score>.box>.score{
  font-weight: bold;
  font-size: 2.4rem;
  font-family: var(--sub);
  padding: 0;
  line-height: 1;
}

.score_table02 td.score>.box>time{
  font-weight: bold;
  font-size: 1.8rem;
}

.score_table02_head{
  text-align: center;
  font-size: 2.2rem;
  padding: 20px 0 18px;
}
@media screen and (max-width: 1100px) {
  .score_table02 td.player1, .score_table02 td.player2 {
    width: 30%;
  }
}

@media screen and (max-width: 1024px) {
  .score_table02 td {
    padding: 1em 0.1em;
  }
  .score_table02 td.player1,
  .score_table02 td.player2 {
    width: 32%;
  }

  .score_table02  td.goal i.replace{
    width: 1em;
    height: auto;
  }

  .score_table02 td.goal {
    font-size: 2.2vw;
    font-weight: bold;
    width: 1.5em;
  }
  .score_table02 td.goal small{
    font-size: 1.8vw;
  }

  .score_table02 td.score {
    width: 19%;
    transform: translateY(0em);
  }

  .score_table02 td.score>.box>.score{
    font-size: 2.9vw;
    transform: translateY(0em);
  }

  .score_table02 td.score>.box>time {
    font-size: 2.2vw;
  }

  .score_table02 td.score>.box{
    gap:0.5em;
  }

  .score_table02 td.player {
    font-size: 2.8vw;
  }
}

#section_score2 .note_list{
  display: flex;
  gap: 10px 30px;
  flex-wrap:wrap;
  margin-top: 40px;
}

#section_score2 .note_list>li{
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  gap:0.2em;
  align-items: center;
}

#section_score2 .note_list>li .replace{
  aspect-ratio: 22 / 16;
  background-image: url(../svg/icon_replace.svg);
  width: 22px;
  height: 16px;
  display: inline-block;
}

#section_score2 .note_list>li .replace img{
  vertical-align: middle;
}
@media screen and (max-width: 768px) {

  #section_score2 .note_list{
    flex-direction: column;
    gap:0.1em;
  }

  #section_score2 .note_list>li{
    font-size: max(1.4rem, 2vw);
  }
}

