.wrap {
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .wrap {
    min-width: 1120px;
  }
}

.loading {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background: #231814;
}

.loading__wrap {
  width: 100%;
}

.loading .logo {
  width: 200px;
  margin: 0 auto 20px;
}

.loading .progress-bar {
  width: 100%;
  height: 4px;
  background: #FFF;
}

.loading .progress-bar .bar {
  display: block;
  width: 0%;
  height: 4px;
  background: #A000FF;
}

.main-bg {
  background-position: 50% 50%;
  background-size: cover;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .main-bg {
    padding-bottom: 140px;
    padding-top: 30px;
    background-image: url(../img/main-bg.png);
    background-repeat: no-repeat;
  }
}

@media only screen and (max-width: 767px) {
  .main-bg {
    background-image: url(../img/sp_main-bg.png);
    background-size: 21px;
    padding-bottom: 30px;
  }
}

@media only screen and (min-width: 768px) {
  .section:not(.section-hero) {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media only screen and (min-width: 768px) {
  #feature,
  #music,
  #flow,
  #mode,
  #event,
  #reach,
  #spec,
  #spec02 {
    padding-top: 150px;
    margin-top: -150px;
  }
}

@media only screen and (max-width: 767px) {
  #feature,
  #music,
  #flow,
  #mode,
  #event,
  #reach,
  #spec,
  #spec02 {
    margin-left: -15px;
    margin-right: -15px;
    padding-top: 50px;
    margin-top: -50px;
  }
}

.headline__title {
  text-align: center;
}

.headline__title .jp {
  font-size: 2rem;
  font-weight: bold;
}

.headline__title .en {
  font-family: "Poppins", sans-serif;
  font-size: 3.6rem;
  font-weight: bold;
}

.headline__title + .lead {
  text-align: center;
  font-size: 1.8rem;
  padding: 20px 0 40px;
}

.second__title .jp {
  font-size: 2.4rem;
  font-weight: bold;
}

.second__title .en {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
}

.btn a {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  transition: 400ms;
  width: 100%;
  max-width: 260px;
  min-height: 60px;
  background: #000;
  color: #fff;
  padding: 10px 40px;
  font-size: 1.8rem;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
  border: #000 1px solid;
  border-radius: 10px;
}

@media only screen and (min-width: 768px) {
  .btn a:hover {
    background: #fff;
    color: #000;
  }
}

.btn a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("https://via.placeholder.com/700x500/CCC/FFFFFF/?text=aaaaa");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 20px;
  margin-left: 20px;
}

.btn-b a {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  transition: 400ms;
  width: 100%;
  max-width: 260px;
  min-height: 60px;
  background: linear-gradient(to right, #46A3FF, #00E2FB);
  color: #fff;
  padding: 10px 40px;
  font-size: 2.4rem;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50px;
  padding-right: 10px;
}

@media only screen and (min-width: 768px) {
  .btn-b a:hover {
    background: linear-gradient(to right, #46A3FF, #00E2FB);
    color: #fff;
    opacity: 0.7;
  }
}

.btn-b a::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url("https://static.thenounproject.com/png/1480285-200.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 30px;
  margin-left: 20px;
}

input,
select,
textarea {
  outline: none;
}

input,
textarea {
  margin: 0;
  font-size: 100%;
}

input,
select {
  vertical-align: middle;
}

button {
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 0;
}

@media only screen and (min-width: 768px) {
  .store-search {
    margin: 17px auto 0;
    width: 1020px;
    height: 80px;
    color: #FFF;
    background: url("../img/search_bg.png") no-repeat center center;
    background-size: 1020px auto;
    box-shadow: 2px 2px 0 #000;
    position: absolute;
    bottom: 1.7%;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
    z-index: 90;
  }
}

@media only screen and (max-width: 767px) {
  .store-search {
    background-image: url(../img/sp_form_bg.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 100% 100%;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
    width: 88%;
    z-index: 998;
    padding: 3.5% 6.5% 5.6% 2.5%;
    margin-left: 1%;
  }
}

.store-search .boxSearch {
  position: relative;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 768px) {
  .store-search .boxSearch {
    background: url("../img/search_bdr_pc.png") no-repeat center center;
    background-size: 1009px 90%;
  }
}

@media only screen and (min-width: 768px) {
  .store-search .boxSearch form {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.store-search .boxSearch select {
  max-width: 100%;
  font-weight: 600;
  background: #FFF;
  cursor: pointer;
}

@media only screen and (min-width: 768px) {
  .store-search .boxSearch select {
    height: 28px;
    border: solid 2px #CCC;
    border-radius: 4px;
  }
}

@media only screen and (max-width: 767px) {
  .store-search .boxSearch select {
    width: 100%;
    font-size: 3.8vw;
    padding: 0 5px;
    height: 7.5vw;
    border: none;
  }
}

@media only screen and (min-width: 768px) {
  .store-search .boxSearch select.kisyu {
    min-width: 315px;
    font-size: 1.6rem;
    margin-right: 10px;
  }
}

.store-search .searchTitle {
  margin-right: 10px;
  font-size: 2.2rem;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .store-search .searchTitle {
    width: 47%;
    margin: 0 auto 4.7%;
    line-height: 1;
    padding-left: 16px;
  }
}

@media only screen and (min-width: 768px) {
  .store-search dl {
    display: flex;
    align-items: center;
  }
}

@media only screen and (max-width: 767px) {
  .store-search dl {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
  }
}

@media only screen and (max-width: 767px) {
  .store-search dl:not(:last-of-type) {
    margin-bottom: 3%;
  }
}

.store-search dl dt {
  margin-right: 5px;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .store-search dl dt {
    color: #fff;
    width: 19%;
    text-align: left;
    font-size: 3.4vw;
  }
}

@media only screen and (max-width: 767px) {
  .store-search dl dd {
    width: calc(81% - 5px);
  }
}

@media only screen and (min-width: 768px) {
  .store-search dl .store-search .boxSearch dd {
    display: flex;
    align-items: center;
  }
}

@media only screen and (min-width: 768px) {
  .store-search button {
    margin-left: 15px;
    width: 74px;
    height: 34px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #FFF;
    background: #E84F66;
    border: solid 2px #FFF;
    border-radius: 17px;
    box-shadow: 2px 2px 0 #000;
    cursor: pointer;
  }
}

@media only screen and (max-width: 767px) {
  .store-search button {
    width: 77%;
    margin: 3.6% auto 0;
    padding-left: 5px;
  }
}

.page--top .section-hero {
  position: relative;
}

.page--top .section-hero::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 9;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: 100%;
}

/* @media only screen and (max-width: 767px) {
  .page--top .section-hero::after {
    background-image: url(../img/fire_sp.png);
    z-index: 0;
  }
}
 */
@media only screen and (min-width: 768px) {
  .page--top .section-hero::before {
    content: "";
    display: block;
    width: 100%;
    height: 1vw;
    background-image: url(../img/bar.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    position: absolute;
    bottom: 0;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    z-index: 99;
  }
}

.page--top .section-hero .content {
  position: relative;
  overflow: hidden;
}
/* @media only screen and (max-width: 767px) {
  .page--top .section-hero .content {
    padding-bottom: 75vw;
  }
} */
/* @media only screen and (min-width: 768px) {
     .page--top .section-hero .content .hero-bg {
      padding-top: 9%;
    }
}  */
/* @media only screen and (max-width: 767px) {
  .page--top .section-hero .content .hero-bg {
    padding-top: 9%;
  }
} */


/* .page--top .section-hero .content .top_main {
  z-index: 2;
} */
 @media only screen and (min-width: 768px) {
  .page--top .section-hero .content .top_main {
    top: 0;
    right: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .page--top .section-hero .content .top_main {
    width: 100%;
    top: 0%;
    right: 0%;
  }
}
.page--top .section-hero .content .top_bg {
  z-index: 4;
}
 @media only screen and (min-width: 768px) {
  .page--top .section-hero .content .top_bg {
    top: 0;
    right: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .page--top .section-hero .content .top_bg {
    width: 100%;
    top: 0%;
    right: 0%;
  }
}










.page--top .section-hero .content .main-logo {
  position: absolute;
  top: 68%;
  left: 33%;
  width: 28.638%;
  z-index: 20;
/*   -webkit-transform: translate(-50%, -25%) scale(1) rotate(0deg);
  transform: translate(-50%, -25%) scale(1) rotate(0deg); */
}

@media only screen and (max-width: 767px) {
  .page--top .section-hero .content .main-logo {
    width: 45%;
    top: 46.3%;
    left: 27.7%;
  }
}

.page--top .section-hero .content .main-logo span {
  display: none;
}

.page--top .section-hero .content .cam {
  position: absolute;
  z-index: 10;
}
@media only screen and (min-width: 768px) {
  .page--top .section-hero .content .cam {
    bottom: 24%;
    left: 11.5%;
    width: 20.7%;
  }
}
@media only screen and (max-width: 767px) {
  .page--top .section-hero .content .cam {
    top: auto;
    left: 6%;
    right: auto;
    width: 44%;
    bottom: 58.7vw;
  }
}

.page--top .section-hero .content .camplete {
  position: absolute;
  z-index: 10;
}
@media only screen and (min-width: 768px) {
  .page--top .section-hero .content .camplete {
    bottom: 11%;
    right: 13.5%;
    width: 16.7%;
  }
}
@media only screen and (max-width: 767px) {
  .page--top .section-hero .content .camplete {
    bottom: 26.5%;
    top: auto;
    left: 7.7%;
    right: auto;
    width: 48%;
  }
}

.page--top .section-hero .content .movie {
  position: absolute;
  z-index: 10;
}

@media only screen and (min-width: 768px) {
  .page--top .section-hero .content .movie {
    bottom: 10.8%;
    left: 12%;
    width: 19.7%;
  }
}

@media only screen and (max-width: 767px) {
  .page--top .section-hero .content .movie {
    bottom: 58.5vw;
    left: 49%;
    padding: 0 2.1vw;
    width: 45.4%;
  }
}

.page--top .section-hero .content .movie .playbtn {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 18%;
  padding-top: 18%;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 20px;
}

@media only screen and (max-width: 767px) {
  .page--top .section-hero .content .movie .playbtn {
    width: 12%;
    padding-top: 12%;
    border-radius: 20px;
  }
}

.page--top .section-hero .content .movie .playbtn::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.7vw 0 0.7vw 1.2vw;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .page--top .section-hero .content .movie .playbtn::before {
    border-width: 1.5vw 0 1.5vw 2.5vw;
  }
}

.page--top .section-hero .content .chara {
  position: absolute;
}

.page--top .section-hero .content .chara_txt {
  z-index: 10;
}

@media only screen and (min-width: 768px) {
  .page--top .section-hero .content .chara_txt {
    bottom: 40.2%;
    right: 35.8%;
    width: 10.703%;
  }
}

@media only screen and (max-width: 767px) {
  .page--top .section-hero .content .chara_txt {
    width: 20.603%;
    top: 5.7%;
    right: 19.7%;
  }
}




.page--top .section-hero .content .chara_chibi_da {
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .page--top .section-hero .content .chara_chibi_da {
    bottom: 14%;
    right: 31%;
    width: 7.5%;
  }
}
@media only screen and (max-width: 767px) {
  .page--top .section-hero .content .chara_chibi_da {
    width: 20.603%;
    top: 38.4%;
    right: auto;
    left: 16.4%;
  }
}

.page--top .section-hero .content .chara_chibi_ih {
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .page--top .section-hero .content .chara_chibi_ih {
    bottom: 20%;
    right: 34%;
    width: 8%;
  }
}

@media only screen and (max-width: 767px) {
  .page--top .section-hero .content .chara_chibi_ih {
    width: 21.3%;
    top: 40%;
    left: 1.5%;
  }
}
.page--top .section-hero .content .chara_chibi_ka {
  z-index: 5;
}
@media only screen and (min-width: 768px) {
  .page--top .section-hero .content .chara_chibi_ka {
    top: 56.7%;
    right: 22.6%;
    width: 10%;
    height: 22vw;
  }
}
@media screen and (max-width: 940px) {
  .page--top .section-hero .content .chara_chibi_ka {
    min-height: 340px;
  }
}
@media only screen and (max-width: 767px) {
  .page--top .section-hero .content .chara_chibi_ka {
    width: 26.7%;
    top: 30.8%;
    left: 35%;
  }
}

.page--top .section-hero .content .chara_chibi_za .chara_chibi_on {
  z-index: 4;
}
 @media only screen and (min-width: 768px) {
  .page--top .section-hero .content .chara_chibi_za {
    bottom: 13%;
    right: 17.2%;
    width: 7.4%;
  }
}
@media only screen and (max-width: 767px) {
  .page--top .section-hero .content .chara_chibi_za {
    width: 20%;
    top: 38%;
    right: 21.4%;
    z-index: 4;
  }
}

.page--top .section-hero .content .chara_chibi_on {
  z-index: 4;
}
@media only screen and (min-width: 768px) {
  .page--top .section-hero .content .chara_chibi_on {
    bottom: 13.5%;
    right: 11.6%;
    width: 6.5%;
  }
}
@media only screen and (max-width: 767px) {
    .page--top .section-hero .content .chara_chibi_on {
      width: 16.6%;
      top: 40%;
      right: 0;
      z-index: 2;
  }
}

@media only screen and (min-width: 768px) {
  .page--top .section-hero .content .chara_chibi_wh {
    bottom: 22%;
    right: 15%;
    width: 6%;
  }
}
@media only screen and (max-width: 767px) {
  .page--top .section-hero .content .chara_chibi_wh {
    width: 16%;
    top: 40%;
    right: 12%;
    z-index: 3;
  }
}
