*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  line-height: 1;
}
body {
  margin: 0;
  color: #fff;
  font-size: 1.6em;
  line-height: 1.7;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 10px 0 0;
  font-weight: 500;
  background-color: #000;
}
ul, li, ol, dl, dt, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}
figure {
  padding: 0;
  margin: 0;
}
.sp_block {
  display: none;
}
.pc_block {
  display: block;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.inner {
  width: 100%;
  max-width: 1100px;
  padding: 0 15px;
  margin: 0 auto;
}
img {
  width: auto;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  max-height: 100%;
}
a {
  color: #ff0184;
  text-decoration: none;
}
a img:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70 )";
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:hover {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: #d70184;
}
.fadeInTrigger, .fadeInUpTrigger {
  opacity: 0;
}
.blur_anime {
  opacity: 0;
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -ms-transition: -ms-transform 0.5s linear;
  transition: transform 0.5s linear;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.blur_show {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: .8s;
}
@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
.change-time1 {
  animation-delay: 0.2s;
}
.change-time2 {
  animation-delay: 0.4s;
}
.change-time3 {
  animation-delay: 0.6s;
}
.change-time4 {
  animation-delay: 0.8s;
}
.change-time5 {
  animation-delay: 1s;
}
.openbtn {
  display: none;
  position: fixed;
  /* [disabled]top: 10px; */
  /* [disabled]right: 10px; */
  z-index: 999;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 12px;
}
.openbtn span:nth-of-type(2) {
  top: 20px;
}
.openbtn span:nth-of-type(3) {
  top: 28px;
}
.openbtn.active span:nth-of-type(1) {
  top: 12px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 24px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
.openbtn::after {
  content: "MENU";
  color: #fff;
  font-size: 10px;
  margin: 0 auto;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 2px;
  letter-spacing: 2px;
  text-align: center;
}
.openbtn.active::after {
  content: "CLOSE";
}
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  display: block;
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*ヘッダー*/
#header {
  width: 100%;
  /* [disabled]display: flex; */
  justify-content: flex-end;
  align-items: center;
  background-color: #000;
  color: #fff;
  text-align: center;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999;
}
#header.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
#header.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#header .logo {
  position: absolute;
  left: 15px;
  width: 21%;
  z-index: 1;
  padding: 15px 10px;
  margin: 0;
  max-width: 300px;
}
#header.dnone {
  opacity: 0;
}
#header.dnone.panelactive {
  opacity: 1;
}
#navi {
  width: 100%;
}
#navi ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}
#navi ul li {}
#navi ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 15px;
  font-weight: 700;
  letter-spacing: 0.1rem;
  font-size: 16px;
  line-height: 1.3;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
#navi ul li a span {
  color: #777777;
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0px;
  transition: .3s ease-in-out;
}
#navi ul li a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #ff0184;
  width: 100%;
  height: 0;
  transition: .3s ease-in-out;
}
#navi ul li a:hover:before {
  height: 100%;
  background-color: #ff0184;
}
#navi ul li a:hover span {
  color: #fff;
}
#navi ul li {
  text-align: center;
  width: 14.2%;
}
#navi ul li.twitter a::before, #navi ul li.insta a::before, #navi ul li.youtube a::before {
  display: none;
}
#navi ul li.twitter a, #navi ul li.insta a {
  margin: 0 auto;
  width: 50px;
  padding: 10px;
  background-image: none;
}
#navi ul li.youtube a {
  margin: 0 auto;
  width: 55px;
  padding: 10px;
  background-image: none;
}
#navi ul li.current a, #navi ul li a:hover {
  color: #fcff00;
}
#header.dnone #navi {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: all 0.4s;
}
#header.dnone.panelactive #navi {
  opacity: 1;
  z-index: 3;
  background-color: hsla(214, 62%, 32%, 0.95);
}
#header.dnone.panelactive #navi ul {
  display: block;
  width: 100%;
}
#header.dnone.panelactive #navi li {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.20);
  width: 100%;
  display: block;
}
#header.dnone.panelactive #navi li:last-child {
  border-bottom: 0;
}
#header.dnone.panelactive #navi li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  font-size: 2rem;
}
#header.dnone.panelactive #navi ul li.twitter a {
  margin: 0 auto;
  width: 80px;
}
/*footer*/
#pagetop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  cursor: pointer;
  z-index: 3;
  padding: 20px 10px 10px;
  font-weight: 800;
  color: #ff0184;
}
#pagetop:hover {
  opacity: 0.6;
  transform: translateY(-5px);
  transition: all 0.2s;
}
#pagetop:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 1.5em;
  height: 1.5em;
  border: 4px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
  position: absolute;
  left: 0px;
  top: 0px;
  margin: auto;
  right: 0px;
}
footer {
  border-top: 1px solid #e6e6e6;
  padding: 30px 0;
}
footer .logo {
  margin: 0 auto 40px;
  max-width: 290px;
}
footer .foot_nav li {
  display: inline-block;
}
footer .foot_nav li a {
  font-size: 14px;
  padding: 5px 10px 5px 0;
  display: block;
  position: relative;
  color: #1a1a1a;
  font-weight: 400;
}
footer .foot_nav li a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  margin-left: 3px;
  margin-bottom: 2px;
}
footer .foot_nav li a:hover {
  opacity: 0.7;
}
footer .copyright {
  font-size: 12px;
  font-weight: 400;
  display: block;
  text-align: center;
}
footer .copyright a {
  color: #C4C4C4;
  text-decoration: underline;
}
#main .mv {
  margin: 0;
  padding-top: 50px;
  text-align: center;
}
#main .mv img {
  margin: 0 auto;
}
#main .mv.pc_block {
  background-image: url(../images/main_bg.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding-bottom: 20px;
}
#main .mv.pc_block h1 {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
}
#main .mv.pc_block h2 {
  max-width: 1100px;
  width: 80%;
  margin: 0 auto;
}
section {
  padding: 80px 0;
}
section h2 {
  text-align: center;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 1.5px;
  text-shadow: 0px 0px 15px #fcff00;
}
section h2 span {
  display: block;
  font-size: 2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}
#news {
  padding: 30px 0;
  background-color: #000;
}
#news h2 {
  font-size: 3rem;
  letter-spacing: 1px;
}
#news .news-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
#news .news-wrap h2 {
  width: 30%;
  text-align: center;
}
#news .news-wrap .news-list {
  width: 70%;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #444;
  padding: 10px;
}
#news .news-wrap .news-list .news-list__item {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #444;
}
#news .news-wrap .news-list .news-list__date {
  font-size: 1.4rem;
  margin-right: 10px;
}
#news .news-wrap .news-list a {
  text-decoration: underline;
}
#about {
  background-image: url(../images/sec_bg01.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}
#about::before {
  background-color: hsla(311, 24%, 9%, 0.20);
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 0;
}
#about .inner {
  position: relative;
}
#about h3 {
  text-align: center;
  font-size: 2.3rem;
  text-shadow: 0px 0px 10px #000;
}
#about table {
  border-collapse: collapse;
  background-color: hsla(0, 0%, 0%, 0.30);
  margin-bottom: 30px;
}
#about table tr {
  border-bottom: 1px solid #9e518d;
}
#about table tr:last-child {
  border-bottom: 0;
}
#about table td {
  padding: 10px 0;
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
#lineup {
  background-image: url(../images/sec_bg02.png), url(../images/sec_bg03.png);
  background-repeat: no-repeat;
  background-position: left top, right bottom;
  background-size: 70% auto;
}
.icon_lineup {
  max-width: 120px;
  width: auto;
  position: absolute;
  top: -60px;
  left: 0px;
}
#lineup .lineup-box {
  background-color: hsla(0, 0%, 0%, 0.40);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}
#lineup .lineup-txt {
  margin-bottom: 30px;
  text-align: center;
  padding: 70px 20px 20px;
  position: relative;
}
#lineup .lineup-txt strong {
  font-size: 2rem;
}
#lineup .lineup-txt ul li {
  display: inline-block;
  font-size: 2rem;
}
#lineup .lineup-txt ul li:after {
  content: "／";
  padding: 0 5px;
}
#lineup .lineup-txt ul li:last-child::after {
  display: none;
}
#lineup .lineup-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#lineup .lineup-wrap li {
  width: 24%;
  text-align: center;
  margin-bottom: 30px;
  background-color: hsla(0, 0%, 0%, 0.40);
  margin-right: 1.3%;
}
#lineup .lineup-wrap li:nth-child(4n) {
  margin-right: 0;
}
#lineup .lineup-wrap li img {
  width: 100%;
}
#ticket {
  background-image: url(../images/sec_bg01.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}
#ticket::before {
  background-color: hsla(311, 24%, 9%, 0.20);
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 0;
}
#ticket .inner {
  position: relative;
}
.caption {
  padding-left: 1.8rem;
  text-indent: -1.8rem;
  margin-bottom: 30px;
}
#ticket h3 {
  font-size: 2.4rem;
  border-left: 7px solid #fff;
  border-bottom: 1px dotted #fff;
  padding-left: 15px;
  padding-bottom: 5px;
}
#ticket .price {
  background-color: #fff;
  margin: 0 auto 50px;
  color: #222;
  border-collapse: collapse;
  max-width: 700px;
}
#ticket .price td {
  padding: 10px;
  border: 2px solid #222;
  font-size: 2.3rem;
  font-weight: 700;
  position: relative;
}
#ticket .price td span {
  font-size: 1.8rem;
}
#ticket .price th {
  border: 2px solid #222;
  padding: 10px;
  background-color: #f0d9f4;
  font-size: 2.3rem;
  font-weight: 700;
}
#ticket .price tr:first-child th {
  background-color: #c4d9f4;
}
#ticket .price tr th.close {
  background-color: #aaa;
}
#ticket .price tr th.close span {
  display: block;
  background-color: #F7393D;
  color: #fff;
  font-size: 15px;
}
#ticket .price .soldout {
  position: absolute;
  width: 70%;
  text-align: center;
  top: 30%;
  left: 20px;
  transform: rotate(-10deg);
  background-color: rgba(210, 0, 3, 0.70);
  color: #fff;
  padding: 4px 10px;
  font-size: 0.9em;
  font-weight: bold;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
#ticket .ticket-wrap {
  padding: 20px;
  background-color: hsla(0, 0%, 0%, 0.30);
  margin-bottom: 30px;
  border-collapse: collapse;
}
#ticket .ticket-wrap h4, #ticket h4 {
  margin: 0 0 10px;
  display: inline-block;
  padding: 3px 10px;
  border: 2px solid #fff;
  font-size: 2rem;
}
#ticket .ticket-wrap table {
  border-collapse: collapse;
  margin-bottom: 30px;
}
#ticket .ticket-wrap table th {
  width: 20%;
  padding: 10px 5px;
  border-bottom: 1px solid #9e518d;
  font-weight: 700;
}
#ticket .ticket-wrap table td {
  width: 80%;
  padding: 10px 5px;
  border-bottom: 1px solid #aaa;
  font-weight: 700;
}
#ticket .ticket-btn {
  text-align: center;
  margin: 5px;
  display: inline-block;
  width: 48%;
}
#ticket .ticket-btn a {
  color: #222;
  border-radius: 30px;
  background-color: #fcff00;
  text-align: center;
  padding: 10px;
  font-weight: 700;
  position: relative;
  margin: 0 auto 10px;
  /* [disabled]width: 90%; */
  -webkit-box-shadow: 0px 3px #0282BE;
  box-shadow: 0px 5px #dccb00;
  font-size: 1.8rem;
  display: block;
  /* [disabled]max-width: 400px; */
}
#ticket .ticket-btn a:hover {
  background-color: #ffff91;
}
#ticket .ticket-btn a::after {
  content: "";
  position: relative;
  display: inline-block;
  left: 5px;
  bottom: 2px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #222;
  border-right: 3px solid #222;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.disabled a {
  opacity: .5;
  filter: grayscale(1);
  pointer-events: none;
  cursor: default;
}
#goods {
  background-color: #6e0184;
}
.comingsoon {
  text-align: center;
  font-size: 3rem;
  background-color: hsla(0, 0%, 100%, 0.20);
  line-height: 5;
}
#guide {
  background-image: url(../images/sec_bg02.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 40% auto;
}
#guide ul {
  margin: 0 0 30px;
}
#guide .guide-txt {
  margin: 0 auto 30px;
  max-width: 800px;
}
#guide ul li {
  text-indent: -1.8rem;
  padding-left: 1.8rem;
  text-align: justify;
}
@media screen and (max-width:1000px) {
  body {
    padding: 0;
  }
  .openbtn {
    display: block;
    right: -1px;
    top: 19px;
  }
  #header .logo {
    width: 30%;
  }
  #header #navi {
    display: none;
  }
  #header.panelactive #navi {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.4s;
    opacity: 1;
    z-index: 3;
    background-color: hsla(0, 0%, 8%, 0.95);
  }
  #header.panelactive #navi li a {
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    font-size: 1.8rem;
  }
  #header.panelactive #navi ul {
    display: block;
    width: 100%;
  }
  #header.panelactive #navi li {
    border-bottom: 1px solid #e6e6e6;
    width: 100%;
    display: block;
  }
  #header.panelactive #navi ul li.twitter, #header.panelactive #navi ul li.insta, #header.panelactive #navi ul li.youtube {
    display: inline-block;
    border: 0;
    width: auto;
  }
  #header.panelactive #navi ul li:last-child {
    border-bottom: 0;
  }
  #header {
    height: 60px;
    background-color: transparent;
  }
  #header.panelactive.dnone {
    display: flex;
  }
  #header.dnone {
    opacity: 1;
  }
  #header.panelactive, #navi ul {
    display: block;
  }
  #main .mv {
    background-color: #3b1329;
    padding-top: 0px;
  }
}
@media screen and (max-width:768px) {
  .inner {
    padding: 0 20px;
  }
  .sp_block {
    display: block;
  }
  .pc_block {
    display: none;
  }
  #header .logo {
    padding: 0;
    width: 50%;
  }
  footer .foot_nav {
    text-align: center;
  }
  footer .copyright {
    text-align: center;
  }
  section {
    padding: 30px 0;
  }
  #news {
    padding-top: 0px;
  }
  #news .news-wrap {
    display: block;
  }
  #news .news-wrap h2 {
    width: auto;
    text-align: left;
  }
  #news .news-wrap .news-list {
    width: 100%;
  }
  #news .news-wrap .news-list .news-list__date {
    margin: 0;
    display: block;
  }
  section h2 {
    font-size: 5rem;
  }
  section h2 span {
    font-size: 1.8rem;
  }
  #about, #ticket {
    background-attachment: scroll;
  }
  #about h3 {
    font-size: 1.8rem;
  }
  #about table th {
    width: 100%;
    display: block;
    background-color: hsla(0, 0%, 100%, 0.20);
  }
  #about table td {
    width: 100%;
    padding: 10px;
    display: block;
    margin-bottom: 20px;
  }
  #lineup .lineup-txt ul li {
    font-size: 1.6rem;
  }
  #lineup .lineup-txt ul li:after {
    padding: 0px;
  }
  #lineup .lineup-wrap li, #lineup .lineup-wrap li:nth-child(4n) {
    width: 32.4%;
    background-color: hsla(0, 0%, 0%, 0.40);
    margin-right: 1.3%;
    font-size: 1.3rem;
    line-height: 1.5;
  }
  #lineup .lineup-wrap li:nth-child(3n) {
    margin-right: 0px;
  }
  .icon_lineup {
    max-width: 90px;
    top: -26px;
    left: 0px;
    margin: auto;
    right: 0px;
  }
  #ticket h3 {
    font-size: 2rem;
    border-left: 7px solid #fff;
    border-bottom: 1px dotted #fff;
    padding-left: 15px;
    padding-bottom: 5px;
  }
  #ticket .price th {
    font-size: 2rem;
    font-weight: 700;
    width: 100%;
    display: block;
  }
  #ticket .price td {
    font-size: 2rem;
    font-weight: 700;
    width: 100%;
    display: block;
    border-top-width: 0;
    border-bottom-width: 0;
    text-align: center;
  }
  #ticket .ticket-wrap table th {
    width: 100%;
    padding: 5px;
    display: block;
    text-align: left;
    border-width: 0;
    background-color: hsla(0, 0%, 100%, 0.20);
    margin-top: 10px;
  }
  #ticket .ticket-wrap table td {
    padding: 10px 5px;
    width: 100%;
    font-weight: 700;
    display: block;
    border-bottom-width: 0;
  }
  #ticket .price .soldout {
    top: 30%;
    left: 0;
    right: 0;
    margin: auto;
  }
  #ticket .ticket-btn {
    margin: 0 auto 20px;
    display: block;
    width: 90%;
  }
  #guide ul li {
    font-size: 1.4rem;
  }
}