@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-image: url(../img/bg_schedule.webp);
  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: 3px 3px 5px rgba(0, 0, 0, 0.05);
  padding-bottom: 1rem;
  width: calc(100% - 30px);
  margin: 3rem auto 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: 60px;
  display: block;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .schedule-item-logo img{
    width: 80px;
  }
}

.info{
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
}
.schedule-item-logo p{
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  padding-top: 1rem;
}
@media (min-width: 700px) {
  .schedule-item-logo p{
    text-align: center;
    font-size: 1.4rem;
  }
}
.date{
  padding: 12px;
  background-color:#A8A087;
  color: #fff;
  line-height: 2rem;
  font-size: 2rem;
  text-align: center;
  font-weight: 500;
}
@media (min-width: 700px) {
  .date{
    font-size: 3rem;
    padding: 20px;
  }
}
.schedule-btn{
  display: block;
  padding: 10px 0;
  text-decoration: none;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.3rem;
  width: calc(100% - 20px);
  margin: 0 auto 20px;
  font-weight: 500;
}
@media (min-width: 700px) {
  .schedule-btn{
    font-size: 1.4rem;
    padding: 15px 0;
    margin: 0 auto 10px;
  }
}
@media (min-width: 700px) {
.info{
  font-size: 3rem;
}
}
@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:#202020;
  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;
}
.js-based-schedule-east{
  display: none;
}
.js-based-schedule-central{
  display: none;
}
.js-based-schedule-west{
  display: none;
}
.js-based-schedule-south{
  display: none;
}
.num-home{
  padding-right: 10px;
}
.num-away{
  padding-left: 10px;
}
@media (min-width: 700px) {
.logo-home-north{
  padding-right: 1rem;
}
.logo-away-north{
  padding-left: 1rem;
}
}

/* タブ用コード */
.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: 7rem auto 0;
max-width: 1200px;
font-family: 'BLG';
white-space: nowrap;
}
.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: #A8A087;
  color: #fff;
  font-size: 3rem;
  letter-spacing: 0.2rem;
}

@media screen and (min-width: 700px) {
  .playerlist-tabs {
      width: calc(100% - 0px);
  }
}
.playerlist-tabs button {
padding: 20px 30px;
background-color: #1A1A1A;
cursor: pointer;
color: #A8A087;
line-height: 1.8rem;
border: 0.8px solid #A8A087;
}
@media screen and (min-width: 700px) {
  .playerlist-tabs button {
    font-size: 3rem;
  }
}
@media screen and (min-width: 700px) {
.playerlist-tabs button:hover {
background-color: #A8A087;
color: #fff;
}
}

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

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

@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;
  }
}

@media screen and (min-width: 700px) {
.schedule-wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
}