@charset "utf-8";
@font-face {
    font-family: 'BLG';
    src: url(../font/bleage_font.ttf);
    font-weight: normal;
}
img{
  vertical-align: bottom;
  width: 100%;
  height: auto;
}
p,span,h1,h2,h3,h4,div,nav{
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-feature-settings: "palt";
}
html {
  scroll-padding-top: 0px; /* 固定ヘッダの高さ分 */
  font-size: 62.5%;
  overflow-x: hidden;
}
body {
  line-height: 1.6875;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
.module_title{
  display: none;
}
.blg-font{
  font-family: 'BLG';
  src: url(font/bleage_font.ttf);
}
.color-white{
  color: white;
}
@media (min-width: 700px) {
.sp-br{
  display: none;
}
}
.pc-br{
  display: none;
}
@media (min-width: 700px) {
.pc-br{
  display: block;
}
}

@font-face {
  font-family: 'BN';
  src: url(../font/BebasNeue-Regular.ttf);
  font-weight: normal;
  }
  @font-face {
  font-family: 'GS';
  src: url(../font/GeneralSans-Semibold.ttf);
  }


/* /*================================================== */
/* KV */
/* /*================================================== */

.bn-txt{
  font-family:'BN';
}
.kv-contents{
  position: relative;
}
.kv-ttl{
  position: absolute;
  align-items: baseline;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 15px;
  font-weight: normal;
}
@media (min-width: 700px) {
  .kv-ttl{
    margin-left: 15%;
  }
}
@media (min-width: 1500px) {
  .kv-ttl{

  }
}
.kv-ttl h1{
  font-size: 8rem;
  font-weight: normal;
  line-height: 6rem;
  letter-spacing: 0.2rem;
}
@media (min-width: 700px) {
  .kv-ttl h1{
    font-size: 15rem;
    line-height: 13rem;
    letter-spacing: 0.5rem;
  }
}
.kv-ttl h2{
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}
@media (min-width: 700px) {
  .kv-ttl h2{
    font-size: 3rem;
    letter-spacing: 1.2rem;
  }
}


/*==================================================
動きの設定
===================================*/

/*背景色が伸びて出現（左から・右から）*/
.bgextendKv{
	animation-name:bgextendAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*はみ出た色要素を隠す*/
	opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bgappearKv{
	animation-name:bgextendAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes bgextendAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/*背景色が伸びて出現（左から）*/
.bgLRextendKv::before{
	animation-name:bgLRextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #A8A087;/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

/* スクロールをしたら出現する要素にはじめに透過0を指定*/
.bgappearTriggerKv,
.bgUDextendTriggerKv,
.bgDUextendTriggerKv,
.bgRLextendTriggerKv,
.bgLRextendTriggerKv{
    opacity: 0;
}


/* fadeup */
.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
  
  
  .fadeUpTrigger{
      opacity: 0;
  }



  /* 左から */

.fadeLeft{
  animation-name:fadeLeftAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeLeftAnime{
    from {
      opacity: 0;
    transform: translateX(-100px);
    }
  
    to {
      opacity: 1;
    transform: translateX(0);
    }
  }




/* ================================================== */
/* ================================================== */
/* タブの中身*/
/* ================================================== */
/* ================================================== */
.small-txt{
  font-size: 1.3rem;
  font-weight: 900;
}
.schedule-contents{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: calc(100% - 30px);
  margin: 0 auto;
  padding: 30px 0;
}
@media (min-width: 600px) {
  .schedule-contents{
    max-width: 900px;
    width: calc(100% - 0px);
    padding: 40px 0 100px;
    gap: 50px;
  }
}


.schedule-item,.schedule-item-east,.schedule-item-central,.schedule-item-west,.schedule-item-south{
  background-color: #fff;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.335);
  padding-bottom: 1rem;
  margin: 3rem 0 0;
}

.schedule-item-wrapper{
  display: flex;
  justify-content: space-around;
  gap: 10px;
  padding: 20px 0 30px;
  align-items: center;
}
@media (min-width: 700px) {
  .schedule-item-wrapper{
    justify-content: center;
    padding: 20px 10px;
    gap: 20px;
  }
}
.schedule-item-num{
  font-size: 4rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
}
@media (min-width: 700px) {
  .schedule-item-num{
    font-size: 5.5rem;
    line-height: 6rem;
  }
}
.schedule-item-logo img{
  width: 30px;
  display: block;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .schedule-item-logo img{
    width: 50px;
  }
}

.info{
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}
.schedule-item-logo p{
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  padding-top: 1rem;
}
@media (min-width: 700px) {
  .schedule-item-logo p{
    text-align: center;
    font-size: 1.4rem;
  }
}
.date{
  padding: 4px 0 6px;
  background-color:#313131;
  color: #fff;
  line-height: 2rem;
  font-size: 1.4rem;
  text-align: center;
  font-weight: 500;
}
@media (min-width: 700px) {
  .date{
    font-size: 1.6rem;
    padding: 5px 0 10px;
  }
}
.schedule-btn{
  display: block;
  padding: 4px 0;
  text-decoration: none;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.3rem;
  width: calc(100% - 20px);
  margin: 0 auto 10px;
  font-weight: 500;
  letter-spacing: 0.1rem;
}
@media (min-width: 700px) {
  .schedule-btn{
    font-size: 1.4rem;
    padding: 15px 0;
    margin: 0 auto 10px;
  }
}
@media (min-width: 700px) {
.info{
  font-size: 1.3rem;
}
}
.gym{
  text-align: center;
}
@media (min-width: 700px) {
  .gym{
    font-size: 1.3rem;
  }
}
.basket-live-btn{
  background-color: #C30100;
}
.youtube-btn{
  background-color:#960808;
}
.youtube-btn:hover{
  opacity: 0.6;
}
.box-score-btn-north,.box-score-btn-east,.box-score-btn-central,.box-score-btn-west,.box-score-btn-south{
  background-color:#808080;
  color: #ffffff;
}

.box-score-btn-north:hover,.box-score-btn-east:hover,.box-score-btn-central:hover,.box-score-btn-west:hover,.box-score-btn-south:hover{
  opacity: 0.6;
}

.js-based-schedule{
  display: none !important;
}
.js-based-schedule-east{
  display: none!important;
}
.js-based-schedule-central{
  display: none!important;
}
.js-based-schedule-west{
  display: none!important;
}
.js-based-schedule-south{
  display: none!important;
}
.num-home{
  padding-right: 10px;
  font-size: 1.8rem;
}
.num-away{
  padding-left: 10px;
  font-size: 1.8rem;
}
.vs{
  font-size: 1.8rem;
}
@media (min-width: 700px) {
.logo-home-north{
  padding-right: 1rem;
}
.logo-away-north{
  padding-left: 1rem;
}
}

/* タブ用コード */
.playerlist-contents{
  background-color: #ffffff;
}
.playerlist-button {
  margin: 5px;
  padding: 10px 20px;
  cursor: pointer;
}
.playerlist-content-item {
  display: none;
}
.playerlist-content-item.active {
  display: block;
}



.playerlist-tabs {
display: grid;
grid-auto-flow: column; 
gap: 10px; 
overflow-x: auto; 
width: calc(100% - 30px);
margin: 0rem auto 0;
max-width: 1200px;
font-family: 'BLG';
white-space: nowrap;
padding-top: 5rem;
}

.bottom-tabs{
  padding-bottom: 5rem;
}
.jp-txt{
  font-size: 1.1rem;
  font-weight: 900;
  white-space: nowrap;
  line-height: 1.3rem;
}
.tab-txt{
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  font-weight: 900;
}
.playerlist-tabs button.active{
  background-color: #A9A087;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
}

@media screen and (min-width: 700px) {
  .playerlist-tabs {
      width: calc(100% - 0px);
  }
}
.playerlist-tabs button {
padding: 16px 0px;
background-color: #ffffff;
cursor: pointer;
color: #A9A087;
border: 1px solid #A9A087;
font-size: 1.5rem;
border-radius: 999px;
}
@media screen and (min-width: 700px) {
  .playerlist-tabs button {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 700px) {
.playerlist-tabs button:hover {
background-color: #A9A087;
color: #fff;
}
}

.playerlist-tabs::-webkit-scrollbar{
display: none;
}

.playerlist-content{
  margin: 0rem auto;
  padding: 2rem 0 5rem;
}

@media screen and (min-width: 700px) {
  .playerlist-content-item{
    width: calc(100% - 0px);
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 0 auto;
  }
}

.schedule-wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: calc(100% - 20px);
  margin: 0 auto;
  gap: 10px;
}
@media screen and (min-width: 700px) {
.schedule-wrap{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
}

.game-ttl{
  font-size: 1.3rem;
}

/* -------------------------- */
/* 絞り機能コード */
/* -------------------------- */
.filter-container {
  margin: 0px auto;
  text-align: center;
  padding-top: 5rem;
}

#club-filter{
  padding: 20px;
  border-radius: 9999px;
  background-color: #202020;
  color: #ffffff;
  border: 0px solid #ffffff;
  outline: none;
  box-shadow: none;
}


#club-filter:hover{
  opacity: 0.5;
}
@media screen and (min-width: 700px) {
  #club-filter{
  padding: 20px;
  width: 400px;
  }
}
#club-filter:hover{
  cursor: pointer;
}
#reset-btn{
  color: #A9A087;
  display: flex;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  justify-content: center;
  margin-top: 2rem;
  margin: 2rem auto;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: underline;
}
#reset-btn img{
  width: 20px;
  display: block;
}
#reset-btn:hover{
  opacity: 0.5;
  cursor: pointer;
}


/* ----------------------- */
/* 会場 */
/* ----------------------- */
.note{
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}
.venue-small-text{
  font-size: 1.2rem;
  text-align: center;
}
.venue-contents{
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: calc(100% - 20px);
  margin: 0 auto;
  gap: 10px;
  padding: 30px 0;
}
@media (min-width: 700px) {
  .venue-contents{
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 900px;
    padding: 40px 0 30px;
  }
}
.venue-link{
  text-decoration:underline;
  text-underline-offset: 0.2em;
  color: #000000;
}
.venue-link:hover{
  opacity: 0.5;
}
.venue-item-club{
  font-size: 1rem;
  padding-bottom: 15px;
  text-align: center;
}
.venue-item-gym{
  font-weight: bold;
  padding: 0 10px;
  margin: 0 auto;
  text-align: center;
}
.venue-item{
  font-size: 1.4rem;
  background-color: #fff;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.05);
}
.venue-item img{
  width: 80px;
  display: block;
  margin: 0 auto;
  padding-top: 15px;
}
.venue-item-ttl{
  background-color: #313131;
  color: #fff;
  padding: 8px 0px;
  text-align: center;
  font-size: 1.3rem;
}

.venue-note{
  font-size: 1.5rem;
  font-weight: 600;
}
.venue-ttl{
  font-size: 4rem;
  line-height: 4rem;
  font-weight: normal;
}
@media (min-width: 700px) {
  .venue-ttl{
    font-size: 6rem;
    line-height: 6rem;
  }
}
.venue-sub-ttl{
  font-size: 2rem;
}
@media (min-width: 700px) {
.venue-sub-ttl{
  padding-top: 5px;
  font-size: 2rem;
  letter-spacing: 0.3rem;
}
}



.news_img{
  width: calc(100% - 20px);
  margin: 0 auto 5rem;
  display: block;
}

@media (min-width: 700px) {
  .news_img{
    max-width: 900px;
    width: calc(100% - 0px);
  }
}