/* ---------------------------------------------------
mixin
---------------------------------------------------- */
/*-------------------------------------------
common
-------------------------------------------*/
.c-title__h2.c-stl-en {
  position: relative;
  font-size: 3.2rem;
  font-family: "Inter", sans-serif;
  padding-bottom: 0.6em;
}
@media screen and (max-width: 768px) {
  .c-title__h2.c-stl-en {
    font-size: 2rem;
  }
}
.c-title__h2.c-stl-en .u-jp {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .c-title__h2.c-stl-en .u-jp {
    font-size: 1rem;
  }
}

.js-header {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.8s, visibility 0.8s ease;
  transition: opacity 0.8s, visibility 0.8s ease;
  margin-top: -80px;
}
.js-header.is-show {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

/*-------------------------------------------
kv
-------------------------------------------*/
.kv-wrapper {
  width: 100vw;
}
.kv-wrapper > figure {
  width: 100%;
}
.kv-wrapper > figure > img {
  width: 100%;
}

/*-------------------------------------------
concept
-------------------------------------------*/
#concept {
  background: url("../img/bg_concept01.webp") no-repeat center center;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  #concept {
    background-size: cover;
  }
}

.c-concept-copy {
  padding: 50px;
}
@media screen and (max-width: 1024px) {
  .c-concept-copy {
    padding: 50px 30px;
    margin: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-concept-copy {
    padding: 30px 20px;
    margin: 0;
  }
}
.c-concept-copy .c-text p {
  color: #fff;
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .c-concept-copy .c-text p {
    text-align: left;
  }
}
.c-concept-copy .c-text:last-child {
  margin-bottom: 0;
}

/*-------------------------------------------
about
-------------------------------------------*/
#about .c-title__h3 {
  border: none;
  padding-bottom: 0;
}

/*-------------------------------------------
linklist
-------------------------------------------*/
.c-linklist {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .c-linklist {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .c-linklist {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-linklist > li {
  padding: 2px;
}
.c-linklist > li > a {
  display: grid;
  place-content: center;
  width: 100%;
  position: relative;
  background: #fff;
  border: #272727 1px solid;
  border-radius: 30px;
  color: #272727;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  padding: 12px 24px 12px 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .c-linklist > li > a {
    padding: 8px 20px 8px 8px;
  }
}
.c-linklist > li > a:after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #272727;
  border-right: 2px solid #272727;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .c-linklist > li > a:after {
    width: 5px;
    height: 5px;
    right: 15px;
  }
}
@media (hover: hover) {
  .c-linklist > li > a:hover:after {
    right: 15px;
  }
}

/*-------------------------------------------
ticket
-------------------------------------------*/
.c-img-ticket01 {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .c-img-ticket01 {
    margin-bottom: 20px;
  }
}
.c-img-ticket01 > img {
  width: 90%;
}
@media screen and (max-width: 1024px) {
  .c-img-ticket01 > img {
    width: 100%;
  }
}

/*-------------------------------------------
event
-------------------------------------------*/
.c-img-event01 {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .c-img-event01 {
    margin-bottom: 10px;
  }
}
.c-img-event01 > img {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .c-img-event01 > img {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .c-img-event01 > img {
    width: 100%;
  }
}

#event .contents-inner + .contents-inner {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #event .contents-inner + .contents-inner {
    margin-top: 40px;
  }
}
#event .c-title__h3 {
  border: none;
  padding-bottom: 0;
}

/*-------------------------------------------
schedule
-------------------------------------------*/
.c-read-schedule01 {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .c-read-schedule01 {
    grid-template-columns: 3fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .c-read-schedule01 {
    grid-template-columns: 1fr;
  }
}
.c-read-schedule01 .c-text {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .c-read-schedule01 .c-caption > ul {
    width: 90%;
    margin: 0 auto;
  }
}
.c-read-schedule01 .c-caption > ul > li {
  border: #000 3px solid;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .c-read-schedule01 .c-caption > ul > li {
    padding: 5px;
  }
}
.c-read-schedule01 .c-caption > ul > li.white {
  background: #fff;
  color: #000;
}
.c-read-schedule01 .c-caption > ul > li.black {
  background: #000;
  color: #fff;
}
.c-read-schedule01 .c-caption > ul > li + li {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .c-read-schedule01 .c-caption > ul > li + li {
    margin-top: 5px;
  }
}

.c-img-schedule01 > img {
  width: 100%;
}

/*-------------------------------------------
player
-------------------------------------------*/
.c-img-player01 {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .c-img-player01 {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .c-img-player01 > img {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .c-img-player01 > img {
    width: 100%;
  }
}

/*-------------------------------------------
goods
-------------------------------------------*/
.c-img-goods01 {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .c-img-goods01 {
    margin-bottom: 10px;
  }
}
.c-img-goods01 > img {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .c-img-goods01 > img {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .c-img-goods01 > img {
    width: 100%;
  }
}

/*-------------------------------------------
comingsoon
-------------------------------------------*/
.c-comingsoon {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .c-comingsoon {
    gap: 10px;
  }
}
.c-comingsoon > li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #000;
  aspect-ratio: 3/1;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .c-comingsoon > li {
    aspect-ratio: 9/7;
    padding: 10px;
  }
}
.c-comingsoon > li .c-category {
  color: #a4a4a4;
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  line-height: 1.2;
  margin-top: -1em;
}
.c-comingsoon > li .c-category .stl-jp {
  display: block;
  font-size: 0.9rem;
  padding-left: 0.3em;
}
@media screen and (max-width: 1024px) {
  .c-comingsoon > li .c-category .stl-jp {
    padding-left: 0.1em;
  }
}
.c-comingsoon > li:after {
  position: absolute;
  left: 50%;
  bottom: 10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  content: "COMING SOON";
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  text-align: center;
  white-space: nowrap;
}
.c-comingsoon.column1 {
  width: 50%;
  grid-template-columns: 1fr;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-comingsoon.column1 {
    width: 60%;
  }
}

/*-------------------------------------------
team26
-------------------------------------------*/
.c-img-fanclub01 {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .c-img-fanclub01 {
    margin-bottom: 10px;
  }
}
.c-img-fanclub01 > img {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .c-img-fanclub01 > img {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .c-img-fanclub01 > img {
    width: 100%;
  }
}

/*-------------------------------------------
notice
-------------------------------------------*/
#notice .c-title__h3 {
  border: none;
  padding-bottom: 0;
}

.c-notice-gate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
.c-notice-gate > li {
  background: #eee;
  padding: 0.5em 1em;
}
@media screen and (max-width: 768px) {
  .c-notice-gate > li {
    padding: 0.3em 0.5em;
  }
}
.c-notice-gate > li + li {
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .c-notice-gate > li + li {
    margin-left: 5px;
  }
}

.c-notice-rule {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 50px;
  margin: 10px 0;
}
@media screen and (max-width: 768px) {
  .c-notice-rule {
    width: 90%;
    grid-column-gap: 10px;
  }
}

/*-------------------------------------------
map
-------------------------------------------*/
.c-img-map01 {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .c-img-map01 {
    margin-bottom: 10px;
  }
}/*# sourceMappingURL=top.css.map */