.hero{
    background-image: url(../img/top/main-bg.webp);
    background-size: cover;
    background-attachment: fixed; 
    background-position: center center;
    background-color: #C10011;
  
  /* background:#000; */
}
.hero__grid{
  display:grid;
  grid-template-columns: 1fr 385px;
  gap: 0;
  align-items: stretch;
  max-width: 2000px;
  margin: 0 auto;
}

.hero-slider{
  position:relative;
  overflow:hidden;
  background:#111;
  /* max-width: 1080px; */
}
.hero-slider__track{
  display:flex;
  transition: transform .5s ease;
  will-change: transform;
}
.hero-slider__slide{
  min-width:100%;
  /* aspect-ratio: 16/9; */
  position:relative;
}
.hero-slider__slide img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.hero-slider__btn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:44px;height:44px;
  border:0;
  background: rgba(0,0,0,.45);
  color:#fff;
  font-size:28px;
  cursor:pointer;
 content: "";
      background-size: 35px;
    background-repeat: no-repeat;
    background-position: center;
}
.hero-slider__btn--prev{
  left:10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M24 0v24H0V0h24Z'/%3E%3Cpath fill='%23ffffff' d='M7.94 13.06a1.5 1.5 0 0 1 0-2.12l5.656-5.658a1.5 1.5 0 1 1 2.121 2.122L11.122 12l4.596 4.596a1.5 1.5 0 1 1-2.12 2.122L7.938 13.06Z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-slider__btn--next{
  right:10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M24 0v24H0V0h24Z'/%3E%3Cpath fill='%23ffffff' d='M16.06 10.94a1.5 1.5 0 0 1 0 2.12l-5.656 5.658a1.5 1.5 0 1 1-2.121-2.122L12.879 12 8.283 7.404a1.5 1.5 0 0 1 2.12-2.122l5.658 5.657Z'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-slider__dots{
  position:absolute;
  left:0; right:0;
  bottom:10px;
  display:flex;
  justify-content:center;
  gap:8px;
}
.hero-slider__dot{
  width:10px;height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.8);
  background: transparent;
  cursor:pointer;
}
.hero-slider__dot.is-active{ background:#fff; }

/*--------------------
  GAME
 ----------------------*/
.match-wrap{
  padding: 25px 25px 25px;
  background-color: #000000;
}
  /* PCã¯Swiperè¦‹ãŸç›®ã‚’ç¸¦ãƒªã‚¹ãƒˆåŒ–ï¼ˆSwiperã¯JSã§destroyã™ã‚‹ï¼‰ */
  .match-swiper{
    display:block;
    height: 100%;
  }
  .match-swiper-wrapper{
    /* display: flex;
    flex-flow: column;
    height: 524px;
    justify-content: space-between; */
    height: 100%;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 25px;
  }
  .match-swiper .match-swiper-slide{
    width:auto !important;
    height: auto;
  }

  .match-arrow{ display:none; } /* PCã§çŸ¢å°ã„ã‚‰ãªã„ãªã‚‰ */

  .match-card{
  display: flex;
  flex-flow: column;
  text-decoration:none;
  justify-content: center;
  color:#fff;
  background-image: url('../img/top/bg-game.webp');
  background-size: cover;
  padding: 10px;
  /* height: 163px;
  width: 300px; */
  height: 100%;
  width: 100%;
}
.match-card p{
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  margin-top: 5px;
}
.match-fin{
  background-image: url('../img/top/bg-game-fin.webp');

}
.match-card__date{font-family: var(--font-jost);font-weight: 600;letter-spacing:.06em;font-size: 17px;text-align: center;}
.match-card__row{
  display:grid;
  grid-template-columns: 80px auto 80px;
  gap: 0px;
  align-items:center;
  margin-top: 2px;
  font-weight: normal;
  line-height: 1.3;
}
.match-card__team{font-weight:800;font-size:12px;opacity:.9;text-align: center;}
.match-card__team div{width: 50px;height: 50px;margin: auto;text-align: center;display: flex;align-items: center;}
.match-card__team > p{
    font-size: 14px;
    font-weight: normal;
}

.match-card__team.game_eq img{ width: 52px;}
.match-card__score{font-family: var(--font-jost);font-weight: 700;font-size:40px;text-align:center;line-height: 1.2;letter-spacing: 1px;/* width: 182px; */}
.match-card__score span{
  display: block;
  font-size: 16px;
}
.match-card__meta{font-family: var(--font-base);margin-top:8px;font-size: 14px !important;font-weight: normal;background-color: #000000;line-height: 1em;padding: 5px 0;width: 130px;margin: 8px auto 0;}


@media (min-width: 1680px) {
    .hero__grid{
    grid-template-columns: 1fr 460px;
  }
  .match-card__row {
    grid-template-columns: 110px auto 110px;
  }
  .match-card__date {
      font-size: 22px;
  }
  .match-card p {font-size: 18px;margin-bottom: 4px;margin-top: 5px;}

  .match-card__score {
      font-size: 44px;
  }
  .match-card__score span {
      font-size: 24px;
  }
  .match-card__meta {
      font-size: 19px !important;
  }
  

}
@media (max-width: 1090px) {
  .hero__grid{
    grid-template-columns: 1fr;
    max-width: 1090px;
  }
  
  .match-wrap {
      padding: 25px 0;
      overflow: hidden;
  }
  .match-swiper-wrapper {
      height: auto;
      flex-flow: row;
      max-width: 1080px;
      display: flex;
      justify-content: center;
      gap: 5px;
  }
}
@media (max-width: 1080px) {
  .match-wrap {
      padding: 16px 0;
      overflow: hidden;
  }
  .match-card{
    height: 163px;
    width: 335px;
  }


}

@media (max-width: 900px) {
  .match-swiper{
    overflow:hidden;    
    padding: 0 18px; 
  }

  .match-swiper-wrapper {
    justify-content: space-between;
    gap: 0;
    display:flex;
    gap:12px;
    overflow-x:auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type:x mandatory;
    padding: 0px 0;
  }
  .match-arrow{
    display: block;
    position:absolute;
    top:50%;
    transform: translateY(-50%);
    width: 27px;
    height: 36px;
    border:0;
    background: rgba(255,0,0,.85);
    color:#fff;
    font-size: 30px;
    line-height: 16px;
    cursor:pointer;
    z-index:5;
    content: '';
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
    transition: opacity 0.25s ease;
  }
  .match-arrow--prev{
    left:0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M24 0v24H0V0h24Z'/%3E%3Cpath fill='%23ffffff' d='M7.94 13.06a1.5 1.5 0 0 1 0-2.12l5.656-5.658a1.5 1.5 0 1 1 2.121 2.122L11.122 12l4.596 4.596a1.5 1.5 0 1 1-2.12 2.122L7.938 13.06Z'/%3E%3C/g%3E%3C/svg%3E");
  }
  .match-arrow--next{
    right:0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M24 0v24H0V0h24Z'/%3E%3Cpath fill='%23ffffff' d='M16.06 10.94a1.5 1.5 0 0 1 0 2.12l-5.656 5.658a1.5 1.5 0 1 1-2.121-2.122L12.879 12 8.283 7.404a1.5 1.5 0 0 1 2.12-2.122l5.658 5.657Z'/%3E%3C/g%3E%3C/svg%3E");
  }
  .match-arrow.is-disabled {
    opacity: 0.3;
    pointer-events: none;
  }
  .match-swiper .match-swiper-slide{
    flex: 0 0 auto;
    scroll-snap-align:center;
  }

  .match-card{
    width: 335px;
  }

  .match-arrow{
    display:grid;
  }



}
@media (max-width: 450px) {

  .match-card__score {
    font-size: 35px;
  }
  .hero-slider__btn {
      width: 30px;
      height: 30px;
      background-size: 20px;
  }

}
@media (max-width: 340px) {
  .match-swiper{
    overflow:hidden;    
    padding: 0 10px; 
  }
    .match-card{
    width: 300px;
  }

}


/*--------------------
 SPONCER
 ----------------------*/
.top-sponsor {
  overflow: hidden;
  padding: 0px 0;
}
/* animation: sliderAnimation1 90s -45s linear infinite;
    -webkit-animation: sliderAnimation1 90s -45s linear infinite;
    height: 140px; */
    
.sponsor-track{
  overflow:hidden;
  width:100%;
}

.sponsor-track{
  display:flex;
  width:max-content;
  animation:sponsorScroll 40s linear infinite;
}

.sponsor-track img{
  height: 144px;
  width:auto;
  flex-shrink:0;
}

@keyframes sponsorScroll{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}




/*--------------------
  NEWS
 ----------------------*/

.news{
  padding: 80px 0 150px;
}
.news_wrap{
  display:grid;
  grid-template-columns: 385px 1fr;
  /* gap:60px; */
}
.news-left{
  display:flex;
  flex-direction:column;

}
.news-left .dtl-btn{ margin: auto 0 0;}

.news-right{
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.news-item a{
  display:flex;
  align-items:center;
  justify-content: space-around;
  gap: 15px;
  padding:20px;
  background:#fff;
  border-radius: 8px;
  transition:transform 0.2s ease;
}

.news-item a:hover p{
  /* text-decoration: underline; */
  /* transform:translateY(-4px); */
}

.news-cate{
  border: 1px solid var(--ember-color);
  color:var(--ember-color);
  border-radius: 200px;
  width: 170px;
  text-align: center;
  line-height: 35px;
  font-size: 14px;

}
.news-item time{
  color: #B4B4B4;
  font-size: 14px;
  font-family: var(--font-jost);

}
.news-item p{
  width: 486px;
}
.news-item p span{
  background: linear-gradient(#001a43, #001a43) 0 100% / 0 1px no-repeat;
  transition: background .3s cubic-bezier(0.25,0.5,0.5,1);
}
.news-item p:hover span{
  background-size: 100% 1px;
}

.news-link{
  display:inline-flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:#222;
}

.news-link:hover{
  text-decoration: underline;
  text-underline-offset: 6px;
}

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


  .news_wrap{
    grid-template-columns: 30% 70%;
  }

}

@media (max-width: 768px) {
  .news_wrap {
        grid-template-columns: 1fr;
    }
  .news{
    padding: 40px 0 150px;
    position: relative;
  }  
  .news_wrap{
    grid-template-columns: 1fr;
  }
  .news-item a {
    flex-flow: wrap;
    justify-content: flex-start;
    gap: 8px;
    padding:20px 15px;
  }
  .news-cate{
    width: 85px;
    line-height: 28px;
    font-size: 13px;

  }

  .news-item p{
    width: 100%;
  }
  .news-left .dtl-btn{
    position: absolute;
    right: 10px;
    bottom: 80px;
  }


}


/*--------------------
  MEMBER
 ----------------------*/
.member{
  background-color: var(--ember-color);
  padding: 90px 0 60px;
  border-radius: 80px 80px 0 0;
  margin: -80px 0 0;
}
.member__head{
  margin: 0 auto 10px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}


.member-nav{
  display:flex;
  gap:10px;
}


.member-nav button{
  width: 52px;
  height: 52px;
  border-radius:50%;
  border:none;
  background:#fff;
  cursor:pointer;
  text-align: center;
}
.member-nav button img{
  display: inline-block;
}
.member-item{
  /* width: 280px !important; */
  padding: 10px 0 0;
}

.member-item a{
  text-decoration:none;
  color:#fff;
}
.member-card{
  /* background:#f3f3f3;
  border-radius:12px;
  padding:14px; */
  position:relative;
}
.member-card span {
    font-family: var(--font-jost);
    flex-shrink: 0;
    font-size: 40px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    color: #333333;
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
}

.member-card__img {
  /* position: absolute; */
  inset: 0;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  transition: opacity 0.35s ease, transform 0.35s ease;
  border-radius: 10px;
}

.member-card__img--main {
  opacity: 1;
}

.member-card__img--hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
}

.member-card:hover .member-card__img--main {
  opacity: 0;
  /* transform: scale(1.03); */
}

.member-card:hover .member-card__img--hover {
  opacity: 1;
  /* transform: scale(1.03); */
}

.member-number{
  position:absolute;
  top: 18px;
  left: 18px;
  font-size:40px;
  font-weight:700;
  color:#333;
  font-weight:700;
  font-family: var(--font-jost);
  font-style: italic;
}

.member-name{
  text-align:center;
  margin-top:12px;
  font-size:20px;
  font-weight:700;
  font-family: var(--font-jost);

}

/* hover */
.member-item a{
  transition: all 0.5s;
  display: block;
}

.member-item a:hover{
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);   
}


.member-btn{
  display: flex;
  justify-content: center;
  margin: 70px 0 0;
}
.member-btn .dtl-btn{ color: #FFF;}

.member-btn .dtl-btn span:first-child{
  background: linear-gradient(#ffffff, #ffffff) 0 100% / 0 1px no-repeat;
}
.member-btn .dtl-btn:hover span:first-child{
  background-size: 100% 1px;
}

.member-btn .dtl-btn-arrow{border: 1px solid #FFF;}
.member-btn .dtl-btn-arrow::after {
  background:  #FFF;
}
.member-btn .dtl-btn:hover .dtl-btn-arrow::after {
  transform: scale(1, 1);
}

.member-btn .dtl-btn:hover .dtl-btn-arrow{
  border-color:#FFF;
}
.member-btn .dtl-btn-arrow::before{
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.90392 13L14.7998 7.02167M14.7998 7.02167L8.90392 1M14.7998 7.02167L0.999806 7.02167' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.member-btn .dtl-btn:hover .dtl-btn-arrow::before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.90392 13L14.7998 7.02167M14.7998 7.02167L8.90392 1M14.7998 7.02167L0.999806 7.02167' stroke='%23E50014' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

@media (max-width: 768px) {
  .member {
      padding: 40px 0 40px;
      border-radius: 40px 40px 0 0;
      margin: -40px 0 0;
      position: relative;
  }



}

/*--------------------
  VISION
 ----------------------*/

.vision{
  /* background-color:#FFD7DD; */
  background: #FFD7DD80;
  background-image: url("../img/top/bg-vision.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* height: 500px; */
  padding: 90px 0;
}

.vision .container{
  max-width: 1020px;
}
.vision-wrap{
  display:grid;
  grid-template-columns: 1fr 325px;
  gap: 135px;
  justify-content: space-between;
}
.vision .title-grade .en{
  background: linear-gradient(90deg,#D82632 0%,#F78C09 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.vision .title-grade .jp{
  font-size: 26px;
  font-weight: bold;
}
.vision p {
    font-weight: 500;
    margin: 30px 0;
    line-height: 2.1em;
}
.vision-image{
  width: 325px;
}
.vision-image img{
  box-shadow:0 8px 24px rgba(228,92,92,0.24);
  border-radius: 20px;
}


.vision-text .dtl-btn-arrow::before{
  background-image:url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.90392 13L14.7998 7.02167M14.7998 7.02167L8.90392 1M14.7998 7.02167L0.999806 7.02167' stroke='url(%23g)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cdefs%3E%3ClinearGradient id='g' x1='7.89981' y1='1' x2='7.8998' y2='13' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D13C6E'/%3E%3Cstop offset='1' stop-color='%23F3AD58'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}
.vision-text .dtl-btn:hover .dtl-btn-arrow{
  border:1px solid transparent;
}
.vision-text .dtl-btn-arrow::after {
  background: linear-gradient(to right, #D13C6E, #F3AD58);
}



@media (max-width: 768px) {

  /* VISION */
  .vision{
    padding: 40px 0;
  }
  .vision .title-grade .jp{
    font-size: 19px;
    margin-top: 10px;
  }
  .vision p {
    margin: 15px 0;
  }
  .vision-wrap{
    grid-template-columns: 1fr;
    gap: 20px;
    justify-content: center;
  }
  .vision-image {
    text-align: center;
    margin: auto;
  }
  .vision-dtl-btn{
    display: flex;
    justify-content: center;

  }

}

@media (max-width: 340px) {
  .vision-image {
      width: 300px;
  }
}

/*--------------------
  VISION PRE
 ----------------------*/

.vision_pre{
  /* background-color:#FFD7DD; */
  background: #FFD7DD;
  background-image: url("../img/top/bg-vision2.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* height: 500px; */
  padding: 60px 0;
}
.vision__card {
  position: relative;
  max-width: 860px;
  width: 100%;
  padding: 40px 40px;
  background: #f5f5f5;
  border-radius: 24px;
  text-align: center;
  overflow: hidden;
  margin: auto;
}

.vision__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/top/vision-mark.webp') center/ 385px no-repeat;
  pointer-events: none;
}

.vision__card .title-grade .en{
  background: linear-gradient(90deg, #D13C6E 0%, #F3AD58 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.vision__card .title-grade .jp{
  font-size: 26px;
  font-weight: bold;
}
.vision__card  p {
  font-weight: 500;
  margin: 10px 0 20px;
  line-height: 2.1em;
}
.vision__card .dtl-btn-arrow::before{
  background-image:url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.90392 13L14.7998 7.02167M14.7998 7.02167L8.90392 1M14.7998 7.02167L0.999806 7.02167' stroke='url(%23g)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cdefs%3E%3ClinearGradient id='g' x1='7.89981' y1='1' x2='7.8998' y2='13' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D13C6E'/%3E%3Cstop offset='1' stop-color='%23F3AD58'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}
.vision__card .dtl-btn:hover .dtl-btn-arrow{
  border:1px solid transparent;
}
.vision__card .dtl-btn-arrow::after {
  background: linear-gradient(to right, #D13C6E, #F3AD58);
}


@media (max-width: 768px) {
  .vision_pre{
    padding: 40px 0;
  }

  .vision__card p {
    margin: 10px 0;
  }
  .vision-dtl-btn{
    display: flex;
    justify-content: center;

  }
  .vision__card {
    padding: 60px 15px;
  }



}
@media (max-width: 767px) {
  .vision__card {
    padding: 30px 10px;
  }

  .vision__card {
    padding: 30px 0px;
  }
  .vision_pre .title-grade .jp{
    font-size: 24px;
    margin-top: 10px;
  }
  .vision__card p {
    line-height: 1.8em;
  }


}
@media (max-width: 330px) {
  .vision_pre .title-grade .jp{
    font-size: 20px;
  }  
  .vision__card p{
    font-size: 15px;
    letter-spacing: -0.03em;
  }
}
/*--------------------
  SNS
 ----------------------*/
.top-sns .top-sns-wrap{
  max-width: 1020px;
}
.top-sns-wrap{
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.top-sns-wrap p{
  font-weight: 500;
   line-height: 2.1em;
}
.top-sns-right ul{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.top-sns-right ul li img{
  width: 48px;
}

.top-sns{
  padding: 55px 0;

}

@media (max-width: 768px) {
  /* SNS */
  .top-sns-wrap{
  flex-flow: row;
  }

}
@media (max-width: 768px) {
  .top-sns .cmn-title {
        margin-bottom: 0px;
    }
  .top-sns-wrap{
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  }
 .top-sns-wrap > div{
   width: 100%;

  }
  .top-sns-left{ margin-bottom: 30px;}
  .top-sns-wrap p{
    text-align: center;
  }
  .top-sns-right ul{
  justify-content: center;
  /* width: 100%; */
  }


}




/*--------------------
  KEEP EMBER
 ----------------------*/
.marquee{
  overflow:hidden;
  white-space:nowrap;
}

.marquee-track{
  display:inline-flex;
  gap: 50px;
  animation:scrollText 60s linear infinite;
  height: 114px;
}


.marquee span{
  font-family: var(--font-jost);
  font-size: 105px;
  font-weight: bold;
  background: linear-gradient(90deg,#F56906 1%,#E84015 30%,#E60012 57%,#960000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  display: inline-block;
}
.marquee span:after {
    content: "";
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top;
    background-image: url(../img/top/women.svg);
    height: 100%;
    display: inline-block;
    width: 85px;
    vertical-align: middle;
    top: -9px;
    position: relative;
    margin: 0 0 0 10px;
}

@keyframes scrollText{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

/*--------------------
  SPONCER　LIST
 ----------------------*/
.bottom-sponsor{

  background-image: url(../img/top/bg-sponcer.webp);
  background-size: cover;
  padding: 90px 0 60px;
  /* border-radius: 80px 80px 0 0; */
}
.bottom-sponsor .member__head{
  margin: 0 auto 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.sponsor-btn a{
  color: #FFF;
}

.sponsor-btn .dtl-btn-arrow,.sponsor-btn .dtl-btn:hover .dtl-btn-arrow{border: 1px solid #FFF;}

.sponsor-btn .dtl-btn-arrow::before{
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.90392 13L14.7998 7.02167M14.7998 7.02167L8.90392 1M14.7998 7.02167L0.999806 7.02167' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.sponsor-btn .dtl-btn-arrow::after {
  background:  #FFF;
}
.sponsor-btn .dtl-btn:hover .dtl-btn-arrow::before{
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.90392 13L14.7998 7.02167M14.7998 7.02167L8.90392 1M14.7998 7.02167L0.999806 7.02167' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.sponsor-btn .dtl-btn span:first-child{
  background: linear-gradient(#ffffff, #ffffff) 0 100% / 0 1px no-repeat;
}
.sponsor-btn .dtl-btn:hover span:first-child{
  background-size: 100% 1px;
}


.sponsor__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.bottom-sponsor ul{
  background-color: #FFF;
  border-radius: 70px;
  padding: 50px 35px;
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 15px;
}

.bottom-sponsor ul li{
}
.bottom-sponsor ul li img{
  /* width: 100%; */
  /* max-width: 116px; */
  /* text-align: center; */
}
@media (max-width: 768px) {

  .sponsor__head h2{
    width: 100%;
  }
 
  .bottom-sponsor{
    padding: 20px 0 80px;
    /* border-radius: 40px 40px 0 0; */
    position: relative;
  }
  .bottom-sponsor ul{
    border-radius: 20px;
    padding: 15px;
    gap: 10px;
    margin-top: 0px;
    grid-template-columns: repeat(4, 1fr);
  }

  .bottom-sponsor ul li{
  }
  .sponsor-btn{
    position: absolute;
    bottom: 15px;
    width: 90%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  
  .bottom-sponsor ul{
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }
  


}

  /* PC　*/




@media (max-width: 1024px) {


}


@media (min-width: 901px){



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

  .marquee span {
      font-size: 75px;
  }

  .marquee-track{height: 84px;}

  .marquee span:after {
    width: 65px;
    top: -7px;
  }

}

/* @media (max-width: 1024px){
} */