@charset "utf-8";

body{
  background: #000;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
}

img{
  width: 100%;
  height: auto;
}
a{
  text-decoration: none;
  color: #fff;
}
.spbr3,
.spbr4{
  display: none;
}
.btn a{
  text-align: center;
  display: block;
  margin: 0 auto;
  border: solid 1px #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding: 10px 0;
  transition: .3s;
  -webkit-transition: .3s;
  letter-spacing: 1px;
}
.btn.btn-back a{
  padding: 1em 0;
}
.btn a:hover{
  background: #fff;
  color: #000;
  transition: .3s;
  -webkit-transition: .3s;
}
.btn.jp a{
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
}
/***** fadeIn *****/
.fadeIn{
	opacity: 0;
	transform: translateY(50px);
	-webkit-transform: translateY(50px);
  transition: .6s;
  -webkit-transition: .6s;
}
.scrollIn{
	opacity: 1;
	transform: translateY(0);
  -webkit-transform: translateY(0);
  transition: .6s;
  -webkit-transition: .6s;
}
/***** fadeIn *****/

#wrapper{
  background: url(../img/bg.gif);
  background-size: 70px;
  overflow: hidden;
  color: #fff;
}

/***** loadeing *****/
#loading{
  display: block;
  position: fixed;
  width: 100%;
  height: 100dvh;
  background: url(../img/bg.gif);
  background-size: 70px;
  overflow: hidden;
  z-index: 1000;
  top: 0;
  left: 0;
}
#loading .loadingArea{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
#loading .loadingArea .loadingitem{
  position: relative;
}
#loading .loadingArea .loadingitem .loading-anim{
  margin: 50px 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: solid 1px #7b7b7b;
  border-top-color: #fff;
  animation: spin 1s infinite linear;
}
@keyframes spin{
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
#loading .loadingArea .loadingitem p{
  font-family: "Oswald", sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: center;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 3px;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
/***** loadeing *****/

/***** header *****/
#siteHeader{
  position: relative;
}
#siteHeader .main{
  overflow: hidden;
}
#siteHeader .main .kv{
  overflow: hidden;
}
#siteHeader .main .kv img{
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transition: 1s ease-out;
  -webkit-transition: 1s ease-out;
}
.anim1.anim2 #siteHeader .main .kv img{
  transform: scale(1);
  -webkit-transform: scale(1);
  transition: 2s ease-out;
  -webkit-transition: 2s ease-out;
}
#siteHeader .main-title{
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  left: 50%;
  top: 30%;
  width: 54%;
  text-align: center;
}
#siteHeader .main-title .main-title-item{
  overflow: hidden;
}
#siteHeader .main-title .main-title-item img{
  opacity: 0;
}
#siteHeader .main-title .main-title-item:nth-child(1){
  width: 62.7%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.anim1.anim2.anim3 #siteHeader .main-title .main-title-item:nth-child(1) img{
  animation: main-title1 1s ease forwards;
  opacity: 1;
}
@keyframes main-title1{
  0% {
    transform: translateY(31px);
  }
  100% {
    transform: translateY(0);
  }
}
.anim1.anim2.anim3.anim4 #siteHeader .main-title .main-title-item:nth-child(2) img{
  animation: main-title2 1s ease forwards;
  opacity: 1;
}
@keyframes main-title2{
  0% {
    transform: translateY(71px);
  }
  100% {
    transform: translateY(0);
  }
}
#siteHeader .scroll{
  transform: rotate(-90deg);
  display: block;
  position: absolute;
  top: auto;
  bottom: 77px;
  right: -35px;
  left: auto;
}
#siteHeader .scroll:before{
  content: "";
  position: absolute;
  width: 80px;
  height: 1px;
  background: #fff;
  top: 50%;
  animation: scroll-anime 2s ease-out 0s infinite normal;
  -webkit-animation: scroll-anime 2s ease-out 0s infinite normal;
}
#siteHeader .scroll p{
  font-size: 12px;
  font-family: "Oswald", sans-serif;
  font-weight: 200;
  padding-left: 90px;
}
@keyframes scroll-anime{
  0% {
    -webkit-transform: scaleX(0);
    -webkit-transform-origin: right;
  }
  30% {
    -webkit-transform: scaleX(1);
    -webkit-transform-origin: right;
  }
  50% {
    -webkit-transform: scaleX(1);
    -webkit-transform-origin: left;
  }
  80% {
    -webkit-transform: scaleX(0);
    -webkit-transform-origin: left;
  }
  100% {
    -webkit-transform: scaleX(0);
    -webkit-transform-origin: left;
  }
}
/***** header *****/

/***** navigation *****/
#navigation{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  background: #000;
  opacity: 0;
  z-index: 5;
  transition: .3s;
  -webkit-transition: .3s;
}
.admin-bar #navigation{
  top: 32px;
}
#navigation.fixed{
  opacity: 1;
  transition: .3s;
  -webkit-transition: .3s;
}
#navigation .spmenu{
  display: none;
}
#navigation ul{
  display: flex;
  justify-content: space-between;
  text-align: center;
  padding: 10px;
  max-width: 690px;
  margin: 0 auto;
}
#navigation ul li a{
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  padding: 0 28px;
  transition: .3s;
  letter-spacing: 1px;
}
.show-1 #navigation.top-menu ul li:nth-child(2) a,
.show-2 #navigation.top-menu ul li:nth-child(3) a,
.show-3 #navigation.top-menu ul li:nth-child(4) a,
.show-4 #navigation.top-menu ul li:nth-child(5) a,
.show-5 #navigation.top-menu ul li:nth-child(6) a{
  color: #f16f6f;
  transition: .3s;
}
/***** navigation *****/

/***** section *****/
.sectionItem .inner{
  padding: 0 100px 160px 100px;
  padding: 60px 100px;
  display: flex;
  justify-content: space-between;
}
/***** section *****/

/***** sectiontitle *****/
.sectiontitle{
  position: relative;
  height: 48px;
}
.sectiontitle h2{
  font-size: 48px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  letter-spacing: 5px;
  animation: glitch1 3s infinite;
  animation-direction: alternate;
  position: absolute;
  top: 0;
}
.sectiontitle h2:nth-child(2){
  color: #67f3da;
  animation: glitch2 3s infinite;
  animation-direction: alternate;
}
.sectiontitle h2:nth-child(3){
  color: #f16f6f;
  animation: glitch3 3s infinite;
  animation-direction: alternate;
}
.sectiontitle h2 span{
  opacity: 0;
}
.sectiontitle.scrollIn h2 span{
  opacity: 1;
  animation: sec-title 1s ease forwards;
}
@keyframes glitch1{
  0% {
    transform: none;
    opacity: 1;
  }
  2% {
    transform: none;
    opacity: 1;
  }
  4% {
    transform: none;
    opacity: 1;
  }
  6% {
    transform: none;
    opacity: 1;
  }
  8% {
    transform: none;
    opacity: 1;
  }
  10% {
    transform: none;
    opacity: 1;
  }
  12% {
    transform: none;
    opacity: 1;
  }
  14% {
    transform: none;
    opacity: 1;
  }
  16% {
    transform: none;
    opacity: 1;
  }
  18% {
    transform: none;
    opacity: 1;
  }
  20% {
    transform: none;
    opacity: 1;
  }
  22% {
    transform: skew(-0.5deg, -0.9deg);
    opacity: 0.75;
  }
  24% {
    transform: none;
    opacity: 1;
  }
  44% {
    transform: none;
    opacity: 1;
  }
  46% {
    transform: skew(0.8deg, -0.1deg);
    opacity: 0.75;
  }
  48% {
    transform: none;
    opacity: 1;
  }
  50% {
    transform: none;
    opacity: 1;
  }
  52% {
    transform: none;
    opacity: 1;
  }
  54% {
    transform: none;
    opacity: 1;
  }
  56% {
    transform: none;
    opacity: 1;
  }
  58% {
    transform: none;
    opacity: 1;
  }
  60% {
    transform: none;
    opacity: 1;
  }
  62% {
    transform: none;
    opacity: 1;
  }
  64% {
    transform: none;
    opacity: 1;
  }
  66% {
    transform: none;
    opacity: 1;
  }
  68% {
    transform: none;
    opacity: 1;
  }
  70% {
    transform: skew(-1deg, 0.2deg);
    opacity: 0.75;
    transform: none;
    opacity: 1;
  }
  72% {
    transform: none;
    opacity: 1;
  }
  92% {
    transform: none;
    opacity: 1;
  }
  94% {
    transform: skew(0.4deg, 1deg);
    opacity: 0.75; 
    transform: none;
    opacity: 1;
  }
  96% {
    transform: none;
    opacity: 1;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@keyframes glitch2{
  0% {
    transform: none;
    opacity: 0.25;
  }
  2% {
    transform: none;
    opacity: 0.25;
  }
  4% {
    transform: none;
    opacity: 0.25;
  }
  6% {
    transform: none;
    opacity: 0.25;
  }
  8% {
    transform: none;
    opacity: 0.25;
  }
  10% {
    transform: none;
    opacity: 0.25;
  }
  12% {
    transform: none;
    opacity: 0.25;
  }
  14% {
    transform: none;
    opacity: 0.25;
  }
  16% {
    transform: none;
    opacity: 0.25;
  }
  18% {
    transform: none;
    opacity: 0.25;
  }
  20% {
    transform: none;
    opacity: 0.25;
  }
  22% {
    transform: translate(-2px, -3px);
    opacity: 0.5;
  }
  24% {
    transform: none;
    opacity: 0.25;
  }
  44% {
    transform: none;
    opacity: 0.25;
  }
  46% {
    transform: translate(-5px, -2px);
    opacity: 0.5;
  }
  48% {
    transform: none;
    opacity: 0.25;
  }
  50% {
    transform: none;
    opacity: 0.25;
  }
  52% {
    transform: none;
    opacity: 0.25;
  }
  54% {
    transform: none;
    opacity: 0.25;
  }
  56% {
    transform: none;
    opacity: 0.25;
  }
  58% {
    transform: none;
    opacity: 0.25;
  }
  60% {
    transform: none;
    opacity: 0.25;
  }
  62% {
    transform: none;
    opacity: 0.25;
  }
  64% {
    transform: none;
    opacity: 0.25;
  }
  66% {
    transform: none;
    opacity: 0.25;
  }
  68% {
    transform: none;
    opacity: 0.25;
  }
  70% {
    transform: translate(-5px, -1px);
    opacity: 0.5;
    transform: none;
    opacity: 0.25;
  }
  72% {
    transform: none;
    opacity: 0.25;
  }
  92% {
    transform: none;
    opacity: 0.25;
  }
  94% {
    transform: translate(-2px, -6px);
    opacity: 0.5;
    transform: none;
    opacity: 0.25;
  }
  96% {
    transform: none;
    opacity: 0.25;
  }
  100% {
    transform: none;
    opacity: 0.25;
  }
}
@keyframes glitch3{
  0% {
    transform: none;
    opacity: 0.25;
  }
  2% {
    transform: none;
    opacity: 0.25;
  }
  4% {
    transform: none;
    opacity: 0.25;
  }
  6% {
    transform: none;
    opacity: 0.25;
  }
  8% {
    transform: none;
    opacity: 0.25;
  }
  10% {
    transform: none;
    opacity: 0.25;
  }
  12% {
    transform: none;
    opacity: 0.25;
  }
  14% {
    transform: none;
    opacity: 0.25;
  }
  16% {
    transform: none;
    opacity: 0.25;
  }
  18% {
    transform: none;
    opacity: 0.25;
  }
  20% {
    transform: none;
    opacity: 0.25;
  }
  22% {
    transform: translate(2px, 3px);
    opacity: 0.5;
  }
  24% {
    transform: none;
    opacity: 0.25;
  }
  44% {
    transform: none;
    opacity: 0.25;
  }
  46% {
    transform: translate(5px, 2px);
    opacity: 0.5;
  }
  48% {
    transform: none;
    opacity: 0.25;
  }
  50% {
    transform: none;
    opacity: 0.25;
  }
  52% {
    transform: none;
    opacity: 0.25;
  }
  54% {
    transform: none;
    opacity: 0.25;
  }
  56% {
    transform: none;
    opacity: 0.25;
  }
  58% {
    transform: none;
    opacity: 0.25;
  }
  60% {
    transform: none;
    opacity: 0.25;
  }
  62% {
    transform: none;
    opacity: 0.25;
  }
  64% {
    transform: none;
    opacity: 0.25;
  }
  66% {
    transform: none;
    opacity: 0.25;
  }
  68% {
    transform: none;
    opacity: 0.25;
  }
  70% {
    transform: translate(5px, 1px);
    opacity: 0.5;
    transform: none;
    opacity: 0.25;
  }
  72% {
    transform: none;
    opacity: 0.25;
  }
  92% {
    transform: none;
    opacity: 0.25;
  }
  94% {
    transform: translate(2px, 6px);
    opacity: 0.5;
    transform: none;
    opacity: 0.25;
  }
  96% {
    transform: none;
    opacity: 0.25;
  }
  100% {
    transform: none;
    opacity: 0.25;
  }
}
@keyframes sec-title{
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0px);
  }
}
/***** sectiontitle *****/

/***** entry-list *****/
.box{
  width: 72.6%;
}
.entry-list .entry-item{
  position: relative;
}
.entry-list .entry-item:nth-child(1){
  padding-top: 0;
}
.entry-list .entry-item, 
.accordion .accordion-list .accordion-item{
  overflow: hidden;
  padding: 30px 0;
  position: relative;
  cursor: pointer;
}
.entry-list .entry-item{
  padding-right: 55px;
  transition: .3s;
  -webkit-transition: .3s;
}
.entry-list .entry-item:hover a:before{
  right: 15px;
  transition: .3s;
  -webkit-transition: .3s;
}
.entry-list .entry-item:before, 
.accordion .accordion-list .accordion-item:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  background: #767676;
}
.entry-list .entry-item a:before, 
.accordion .accordion-list .accordion-item .accordion-title:before{
  content: "";
  background: url(../img/arrow.png) no-repeat;
  background-size: 100%;
  position: absolute;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  top: 50%;
  right: 20px;
  width: 10px;
  height: 14px;
}
.entry-list .entry-item p.date{
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 18px;
  padding-bottom: 20px;
}
.entry-list .entry-item p.text{
  line-height: 1.5em;
}
/***** entry-list *****/

/***** accordion-list *****/
.accordion{
  position: relative;
}
.accordion:after{
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0;
  background: #767676;
}
.accordion .accordion-list .accordion-item .accordion-title{
  position: relative;
  line-height: 1.75em;
  cursor: pointer;
}
.accordion .accordion-list .accordion-item .accordion-title:before{
  background: url(../img/accordion_arrow.png) no-repeat;
  background-size: 100%;
  width: 14px;
  height: 10px;
  transition: .3s;
  -webkit-transition: .3s;
}
.accordion .accordion-list .accordion-item.open .accordion-title:before{
  transform: translateY(-50%) rotateX(180deg);
  transition: .3s;
  -webkit-transform: translateY(-50%) rotateX(180deg);
  -webkit-transition: .3s;
}

/* 受付表示 - 受付終了 */
.accordion .accordion-list .accordion-item .accordion-title.closed:after{
  content: "受付終了";
  color:  #f16f6f;
  position: absolute;
  right: 2.5em;
  top: 50%;
  line-height: 0;
  font-weight: bold;
}
/* 受付表示 - 受付開始前 */
.accordion .accordion-list .accordion-item .accordion-title.pre-orders:after{
  content: "受付開始前";
  color: #F1f16f;
  position: absolute;
  right: 2.5em;
  top: 50%;
  line-height: 0;
  font-weight: bold;
}
/* 受付表示 - 受付中 */
.accordion .accordion-list .accordion-item .accordion-title.order-now:after{
  content: "受付中";
  color: #F1f16f;
  position: absolute;
  right: 2.5em;
  top: 50%;
  line-height: 0;
  font-weight: bold;
}

.accordion .accordion-list .accordion-item .accordion-title span{
  font-weight: 600;
  line-height: 1.75em;
  display: inline-block;
}
.accordion .accordion-list .accordion-item .accordion-info{
  font-size: 13px;
  line-height: 1.7em;
  padding-top: 20px;
  display: none;
}
/* 券売期間中アコーディオンオープン状態 */
.accordion .accordion-list .accordion-item.open-item .accordion-info{
  display: block;
}
/***** accordion-list *****/

/* movie */

 #movie .movie-wrapper .cs-text{
  border: 1px solid #666;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
 }
 #movie .movie-wrapper .cs-text p{
   position: relative;
 }
 #movie .movie-wrapper .cs-text p span{
  font-size: 1.4em;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  letter-spacing: 5px;
  animation: glitch1 3s infinite;
  animation-direction: alternate;
  display: block;

}
 #movie .movie-wrapper .cs-text p span:nth-child(2){
  color: #67f3da;
  animation: glitch2 3s infinite;
  animation-direction: alternate;
  position: absolute;
  top: 0;
}
 #movie .movie-wrapper .cs-text p span:nth-child(3){
  color: #f16f6f;
  animation: glitch3 3s infinite;
  animation-direction: alternate;
  position: absolute;
  top: 0;
}


/***** more-btn *****/
.more-btn{
  text-align: right;
  padding-top: 30px;
}
.more-btn a{
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 18px;
  position: relative;
  padding-right: 18px;
  display: flex;
  overflow: hidden;
  height: 18px;
  flex-flow: column;
  letter-spacing: 1px;
}
.more-btn a:after{
  content: "";
  background: url(../img/more_link.png);
  position: absolute;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  background-size: 100%;
  margin-left: 10px;
}
.more-btn a span{
  transition: .3s;
  -webkit-transition: .3s;
}
.more-btn a:hover span{
  transform: translateY(-18px);
  -webkit-transform: translateY(-18px);
}
/***** more-btn *****/

/***** news個別ページ *****/
.page .inner{
  padding-top: 100px;
}
#news-page .entry-item .text{
  padding-bottom: 20px;
  border-bottom: solid 1px;
  line-height: 1.75em;
}
#news-page .entry-item .body{
  padding-top: 20px;
}
#news-page .entry-item .body p{
  line-height: 1.75em;
  font-size: 15px;
  margin: 20px 0;
  padding-right: 0;
}
#news-page .entry-list .entry-item{
  padding-right: 0;
  cursor: none;
}
#news-page .entry-list .entry-item:before{
  content: none;
}
#news-page .entry-list .entry-item .single-content{
  margin-top: -20px;
}
#news-page .entry-item .body p a:before,
.entry-list .entry-item .single-content p a:before{
  content: none;
}

.single-content p a{
  text-decoration: underline;
}

.single-content .movie_wrapper{
	position: relative;
	padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    z-index: 1;
}
.single-content .movie_wrapper iframe{
	position: absolute;
	top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.page_content .btn a{
  width: 30%;
  margin: 0;
}
.page_content .pager{
  min-height: 3em;
}
.page_content .pager .nav-links{
  padding: 30px 0;
  width: 30%;
  display: flex;
  justify-content: space-between;
}
.page_content .pager .page-numbers{
  display: none;
}
.page_content .pager a.next,
.page_content .pager a.prev{
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 18px;
  position: relative;
  display: flex;
  overflow: hidden;
  height: 18px;
  flex-flow: column;
  letter-spacing: 1px;
}
.page_content .pager a span{
  transition: .3s;
  -webkit-transition: .3s;
}
.page_content .pager a:hover span{
  transform: translateY(-18px);
  -webkit-transform: translateY(-18px);
}
.page_content .pager a.next span{
  padding-right: 20px;
}
.page_content .pager a.prev span{
  padding-left: 20px;
}
.page_content .pager a.prev:before,
.page_content .pager a.next:before{
  content: "";
  background: url(../img/arrow.png) no-repeat;
  background-size: 100%;
  position: absolute;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  top: 50%;
  right: 0;
  width: 10px;
  height: 14px;
}
.page_content .pager a.prev:before{
  background: url(../img/prev_arrow.png) no-repeat;
  background-size: 100%;
  left: 0;
}



/***** news個別ページ *****/

/***** schedule *****/
#schedule .inner{
  display: block;
  padding: 120px 100px;
  padding-bottom: 60px;
  text-align: center;
}
#schedule .date{
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-size: 40px;
  padding-bottom: 20px;
}
#schedule .date small{
  font-family: "Oswald", sans-serif;
  font-size: 58%;
  font-weight: 500;
}
#schedule h2{
  font-size: 60px;
  padding-bottom: 20px;
}
#schedule span{
  opacity: 0;
}
#schedule .scrollIn span{
  opacity: 1;
  animation: sec-title 1s ease forwards;
}
#schedule .place{
  font-size: 30px;
  font-weight: bold;
  font-size: 30px;
}
#schedule .time{
  padding-bottom: 20px;
}
#schedule .time{
  font-size: 24px;
}
#schedule .info{
  font-size: 12px;
}
/***** schedule *****/

/***** ticket *****/
#ticket .ticket-type{
  background: #3e3e3e;
  background: #6a6a6a;
  padding: 20px;
  margin-bottom: 40px;
}
#ticket .ticket-type .type{
  border-bottom: solid 1px #6a6a6a;
  border-bottom: solid 1px #969696;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
#ticket .ticket-type .type.last{
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
#ticket .ticket-type .btn{
  float: none;
}
#ticket .ticket-type .type .note{
  padding-top: 10px;
}
#ticket .btn-list{
  overflow: hidden;
}
#ticket .btn{
  float: left;
  width: 33%;
  box-sizing: border-box;
  padding-top: 20px;
  padding-right: 20px;
}
#ticket .btn1{
  float: none;
}
#ticket .btn a span.en{
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding-right: 2px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
}
#ticket .btn:nth-child(2){
  padding-right: 0;
}
#ticket .accordion:after{
  content: none;
}
#ticket .accordion .accordion-list .accordion-item{
  background: #000;
  margin-bottom: 20px;
  padding: 30px;
  border: 1px solid #666;
}
#ticket .accordion .accordion-list .accordion-item.active-item{
  background: #3e3e3e;
}
#ticket .accordion .accordion-list .accordion-item .accordion-info{
  font-size: 16px;
}
#ticket .accordion .accordion-list .accordion-item:before{
  content: none;
}
#ticket .accordion .accordion-list .accordion-item .accordion-title:before{
  right: 0;
}
#ticket .note, 
#ticket .ticket-note{
  font-size: 13px;
  line-height: 2em;
/*   padding-top: 30px; */
}
#ticket .ticket-note{
  padding-top: 10px;
  padding-bottom: 25px;
  border-bottom: 1px solid #666;
}
#ticket .ticket-note li,
#ticket .note li{
  text-indent: -1em;
  padding-left: 1em;
}
#ticket .accordion .accordion-list .accordion-item .accordion-info .ticket-accordion-none{
  padding-top: 20px
}
/***** ticket *****/

/***** attention *****/
#attention .accordion .accordion-list .accordion-item .accordion-info ul li{
  text-indent: -1em;
  padding-left: 1em;
}
#attention .accordion .accordion-list .accordion-item .accordion-info ul li.btn{
  text-indent: 0;
}
#attention .accordion .accordion-list .accordion-item .accordion-info ul{
  padding-bottom: 20px;
}
#attention .accordion .accordion-list .accordion-item .accordion-info ul .btn{
  width: 50%;
  box-sizing: border-box;
  padding-top: 10px;
  padding-left: 0;
}
#attention .accordion .accordion-list .accordion-item .accordion-info ul .note{
  padding-top: 10px;
}
#attention .accordion .accordion-list .accordion-item .accordion-info ul .note a.link{
  border-bottom: solid 1px #fff;
}

#attention .faq{
  font-size: 14px;
  line-height: 1.5em;
  padding: 50px 0 20px;
}
#attention .accordion .accordion-list .accordion-item .faq-ac{
  display: flex;
}
#attention .accordion .accordion-list .accordion-item li{
}
#attention .accordion .faq-area .accordion-list .accordion-item  li{
  border-bottom: 1px solid #666;  
  padding-bottom: 0.5em;
}
#attention .accordion .accordion-list .accordion-item .faq-ac.faq-q{
    padding: 1em 0 0.5em;
    margin-bottom: 0.5em;
}
#attention .accordion .accordion-list .accordion-item .accordion-title .faq-ac{
  align-items: center;
}
#attention .accordion .accordion-list .accordion-item .faq-ac .faq-en{
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin-top: -2px;
}
#attention .accordion .accordion-list .accordion-item .faq-ac .faq-jp{
  padding-left: 20px;
  padding-right: 54px;
}
#attention .accordion .accordion-list .accordion-item .faq-ac .btn-list{
  overflow: hidden;
  margin: 0 -10px 5px;
}
#attention .accordion .accordion-list .accordion-item .faq-ac .btn-list .btn{
  float: left;
  width: 50%;
  box-sizing: border-box;
  padding: 10px;
}
#attention .accordion .accordion-list .accordion-item .btn a,
#attention .accordion .accordion-list .accordion-item .faq-ac .btn-list .btn a{
  font-size: 13px;
}
#attention .accordion .accordion-list .accordion-item .accordion-info .faq-box p{
  padding-bottom: 20px;
}
#attention .accordion .accordion-list .accordion-item .accordion-info .faq-box p:last-child{
  padding-bottom: 0;
}
#attention .accordion .accordion-list .accordion-item .accordion-info .faq-box p a{
  border-bottom: solid 1px #fff;
}
#attention .accordion .accordion-list .accordion-item .accordion-info .faq-box p.pdng{
  padding-top: 10px;
  padding-bottom: 10px;
}
/***** attention *****/

/***** movie *****/
.movie-wrapper{
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  z-index: 1;
}
.movie-wrapper iframe{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
/***** movie *****/

/***** floating-banner *****/
.floating-banner{
  position: fixed;
  right: 0;
  bottom: 30px;
  z-index: 100;
  color: #000;
  background-color: rgba(225, 225, 225, 0.8);
  text-align: center;
  opacity: 0;
  transform-origin: right bottom;
  transform: scale(1.3);
}
.floating-banner.--is_show{
  opacity: 1;
  transition: .3s;
  -webkit-transition: .3s;
}
.floating-banner h2{
  font-size: 13px;
  color: #fff;
  background: #292929;
  background-color: rgba(36, 36, 36, 0.8);
  padding: 10px;
}
.floating-banner .banner{
  padding: 10px;
}
.floating-banner .banner a{
  color: #000;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 20px;
  display: inline-block;
  position: relative;
}
.floating-banner .banner a span{
  display: inline-block;
  animation: glitch1 3s infinite;
  animation-direction: alternate;
  position: relative;
  z-index: 2;
}
.floating-banner .banner a span:nth-child(2){
  color: #67f3da;
  animation: glitch2 3s infinite;
  animation-direction: alternate;
  position: absolute;
  top: 0;
  left: 0;
}
.floating-banner .banner a span:nth-child(3){
  color: #f16f6f;
  animation: glitch3 3s infinite;
  animation-direction: alternate;
  position: absolute;
  top: 0;
  left: 0;
}

/***** floating-banner *****/

/***** siteNav *****/
#siteNav{
  position: fixed;
  right: 35px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  top: 50%;
  opacity: 0;
}
#siteNav .siteNav-list li{
  padding: 9px 0;
  width: 20px;
}
#siteNav .siteNav-list li a{
  position: absolute;
  width: 20px;
  height: 1px;
  background: #6d6d6d;
}
.show-1 #siteNav .siteNav-list li:nth-child(1) a,
.show-2 #siteNav .siteNav-list li:nth-child(2) a,
.show-3 #siteNav .siteNav-list li:nth-child(3) a,
.show-4 #siteNav .siteNav-list li:nth-child(4) a,
.show-5 #siteNav .siteNav-list li:nth-child(5) a{
  background: #fff;
}
#siteNav .siteNav-list li a span{
  display: none;
}
/***** siteNav *****/

/***** footerNav *****/
#footerNav{
  opacity: 0;
  transition: .3s;
  -webkit-transition: .3s;
}
#siteNav.--is_show,
#footerNav.--is_show{
  opacity: 1;
  transition: .3s;
  -webkit-transition: .3s;
}
#footerNav .sns{
  position: fixed;
  width: 38px;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
#footerNav .sns li{
  padding: 10px;
}
#footerNav .sns li a{
  display: block;
  width: 18px;
  height: 19px;
  text-indent: -999px;
  overflow: hidden;
  transition: .3s;
  -webkit-transition: .3s;
}
#footerNav .sns li.x a{
  background: url(../img/icon_x.png) no-repeat center center;
  background-size: 37px;
  background-position: right;
}
#footerNav .sns li.ig a{
  background: url(../img/icon_ig.png) no-repeat center center;
  background-size: 37px;
  background-position: right;
}
#footerNav .sns li.tt a{
  background: url(../img/icon_tiktok.png) no-repeat center center;
  background-size: 37px;
  background-position: right;
}
#footerNav .sns li.yt a{
  background: url(../img/icon_yt.png) no-repeat center center;
  background-size: 37px;
  background-position: right;
}
#footerNav .sns li.fb a{
  background: url(../img/icon_fb.png) no-repeat center center;
  background-size: 37px;
  background-position: right;
}
#footerNav .sns li.line a{
  background: url(../img/icon_line.png) no-repeat center center;
  background-size: 37px;
  background-position: right;
}
#footerNav .sns li.x a:hover,
#footerNav .sns li.ig a:hover,
#footerNav .sns li.tt a:hover,
#footerNav .sns li.yt a:hover,
#footerNav .sns li.fb a:hover,
#footerNav .sns li.line a:hover{
  background-position: left;
}
/***** footerNav *****/

/***** footer *****/
footer{
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  padding: 30px 0;
  border-top: solid 1px #fff;
  margin-top: 60px;
}
footer .logo{
  width: 6.3%;
  margin: 0 auto;
}
footer .sns-link{
  display: flex;
  justify-content: center;
  padding: 30px 0;
}
footer .sns-link li a{
  overflow: hidden;
  height: 12px;
  display: flex;
  flex-flow: column;
  letter-spacing: 1px;
  margin: 0 15px;
}
footer .sns-link li a span{
  transition: .3s;
  -webkit-transition: .3s;
}
footer .sns-link li a:hover span{
  transform: translateY(-12px);
  -webkit-transform: translateY(-12px);
}
footer .copy{
  color: #6d6d6d;
}
/***** footer *****/

@media (max-width: 980px){
  .sectiontitle h2{
    font-size: 40px;
  }
  .box{
    width: 70%;
  }
  .entry-list .entry-item p.date{
    padding-bottom: 10px;
  }
  #ticket .accordion .accordion-list .accordion-item{
    padding: 20px;
  }
  #ticket .btn{
    width: 50%;
  }
}

@media (max-width: 768px){
  #schedule .inner{
    padding: 120px 60px;
    padding-bottom: 60px;
  }
  #schedule h2{
    padding-bottom: 20px;
  }
  #schedule .place{
    font-size: 23px;
  }
  #schedule .time{
    font-size: 20px;
  }
  .sectionItem .inner{
    display: block;
    padding-right: 60px;
    padding-left: 60px;
  }
  .sectiontitle h2{
    font-size: 48px;
  }
  .box{
    width: 100%;
    padding-top: 50px;
  }
  #news-page .text{
    font-size: 15px;
    line-height: 1.75em;
  }
  .page .inner{
    padding: 100px 60px;
    padding-bottom: 40px;
  }
  .page_content .pager,
  .page_content .btn a{
    margin: 0 auto;
  }
  #news.page_content .btn a{
    margin: 0 auto;
  }
  #siteNav{
    right: 21px;
  }
  #siteNav .siteNav-list li{
    width: 10px;
  }
  #siteNav .siteNav-list li a{
    width: 10px;
  }
  #footerNav{
    left: 27px;
  }
  #footerNav .sns{
    left: 10px;
  }
  footer .logo{
    width: 10%;
  }
}

@media (max-width: 640px){
  .spbr3{
    display: block;
  }
  #schedule h2{
    font-size: 50px;
  }
  #schedule .info{
    line-height: 1.5em;
  }
  #ticket .accordion .accordion-list .accordion-item .accordion-info{
    padding-right: 30px;
  }
  #attention .accordion .accordion-list .accordion-item .faq-ac .btn-list .btn{
    float: none;
    width: 55%;
  }
  .floating-banner{  
    transform: scale(1);
  }
}

@media (max-width: 480px){
  .spbr4{
    display: block;
  }
  #siteHeader .main-title{
    width: 90%;
  }
  #siteHeader .main-title .main-title-item:nth-child(1){
    margin-bottom: 15px;
  }
  #siteHeader .main .kv{
    position: relative;
    height: 100vh;
    height: 100svh;
    max-height: 200vw;
  }
  #siteHeader .main .kv .kv-img{
/*
    height: 100vh;
    height: 100svh;
*/
    width: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  #siteHeader .main .kv img{
    height: 100vh;
    height: 100svh;
    max-height: 200vw;
    width: auto;
  }
  #siteHeader .scroll{
    display: none;
  }
  #navigation.fixed{
    display: block;
    right: 10px;
    width: 100%;
    height: 40px;
    top: 0;
    z-index: 5;
  }
  #navigation.fixed.open{
    height: auto;
    background: #000;
  }
  #navigation.open .spmenu:before{
    top: 19px;
    transform: rotate(25deg);
    -webkit-transform: rotate(25deg);
  }
  #navigation.open .spmenu:after{
    top: 19px;
    transform: rotate(-25deg);
    -webkit-transform: rotate(-25deg);
  }
  #navigation.open .spmenu span{
    display: none;
  }
  #navigation.open ul{
    height: 100%;
    opacity: 1;
    display: block;
  }
  #navigation .spmenu{
    display: block;
    height: 40px;
    width: 60px;
    cursor: pointer;
    position: relative;
    margin: 0 0 0 auto;
  }
  #navigation .spmenu:before, 
  #navigation .spmenu:after, 
  #navigation .spmenu span{
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    width: 40px;
    top: 22px;
    left: 8px;
    background: #fff;
    overflow: hidden;
    transition: .5s;
    -webkit-transition: .5s;
  }
  #navigation .spmenu:before{
    top: 15px;
  }
  #navigation ul{
    padding: 37px;
    overflow: hidden;
    transition: .5s;
    -webkit-transition: .5s;
    display: none;
    opacity: 0;
  }
  #navigation ul li{
    padding-bottom: 30px;
  }
  #navigation ul li a{
    font-size: 30px;
  }
  #schedule .inner{
    padding-right: 35px;
    padding-left: 35px;
  }
  #schedule .date{
    font-size: 30px;
    padding-bottom: 15px;
  }
  #schedule .time{
    padding-bottom: 15px;
  }
  #schedule h2{
    font-size: 33px;
    padding-bottom: 15px;
  }
  #schedule .place, 
  #schedule .address{
    padding-bottom: 15px;
  }
  #schedule .place{
    font-size:  21px;
  }
  .sectionItem .inner{
    display: block;
    padding-right: 35px;
    padding-left: 35px;
  }
  .box{
    padding-top: 40px;
  }
  .entry-list .entry-item p.date{
    padding-bottom: 5px;
  }
  .entry-list .entry-item p.text{
    font-size: 13px;
  }
  .entry-list .entry-item, 
  .accordion .accordion-list .accordion-item{
    padding: 15px 0;
  }
  .entry-list .entry-item{
    padding-right: 30px;
  }
  .entry-list .entry-item a:before, 
  .accordion .accordion-list .accordion-item .accordion-title:before{
    right: 0;
    width: 7px;
    height: 11px;
  }
  .accordion .accordion-list .accordion-item .accordion-title,
  .accordion .accordion-list .accordion-item .accordion-info{
    padding-right: 30px;
  }
  .accordion .accordion-list .accordion-item .accordion-info,
  #ticket .accordion .accordion-list .accordion-item .accordion-info{
    padding-top: 5px;
    font-size: 13px;
  }
  .accordion .accordion-list .accordion-item .accordion-title{
    font-size: 13px;
    padding-right: 5em;
  }
  .accordion .accordion-list .accordion-item .accordion-title.closed:after,
  .accordion .accordion-list .accordion-item .accordion-title.order-now:after,
  .accordion .accordion-list .accordion-item .accordion-title.pre-orders:after{
    right: 1.5em;
    font-size: 90%;
  }
  
  .accordion .accordion-list .accordion-item .accordion-title:before{
    width: 11px;
    height: 7px;
  }
  #attention .accordion .accordion-list .accordion-item .accordion-info ul .btn{
    width: 100%;
  }
  #ticket .btn{
    float: none;
    width: 100%;
    padding-top: 10px;
    padding-right: 0;
  }
  #ticket .ticket-type .type h3{
    line-height: 1.5em;
  }
  #ticket .ticket-type .btn {
    padding-top: 20px;
  }
  #attention .accordion .accordion-list .accordion-item .faq-ac .faq-jp{
    padding-right: 0;
  }
  #attention .accordion .accordion-list .accordion-item .faq-ac .btn-list .btn{
    width: 100%;
  }
  #news-page .text,
  #news-page .entry-item .body p{
    font-size: 13px;
  }
  .page_content .pager,
  .page_content .btn a{
    width: 50%;
  }
  .page_content .pager a,
  .page_content .btn a{
    font-size: 15px;
    height: 15px;
  }
  #siteNav{
    right: 11px;
  }
  #footerNav{
    left: 15px;
  }
  #footerNav .sns{
    width: 35px;
    left: 0;
  }
  #footerNav .sns li a{
    width: 15px;
  }
  #footerNav .sns li.x a,
  #footerNav .sns li.ig a,
  #footerNav .sns li.tt a,
  #footerNav .sns li.yt a,
  #footerNav .sns li.fb a,
  #footerNav .sns li.line a{
    background-size: 30px;
  }
  #footerNav .sns li.x a:hover,
  #footerNav .sns li.ig a:hover,
  #footerNav .sns li.tt a:hover,
  #footerNav .sns li.yt a:hover,
  #footerNav .sns li.fb a:hover,
  #footerNav .sns li.line a:hover{
    background-size: 30px;
  }
  footer .logo{
    width: 15%;
  }
  footer .sns-link{
    display: block;
    margin-bottom: -10px;
  }
  footer .sns-link li{
    padding-bottom: 10px;
  }
}



























