@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*---------------------------------------------------------------
　　　common
---------------------------------------------------------------*/
html {
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 0.625vw;
  }
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 10px;
  }
}

/* 固定
html { font-size: 62.5%; }
*/
.forSP {
  display: block;
}
@media screen and (min-width: 768px) {
  .forSP {
    display: none;
  }
}

.forPC {
  display: none;
}
@media screen and (min-width: 768px) {
  .forPC {
    display: block;
  }
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

body {
  background: #fff;
  margin: 0;
  padding: 0;
  font-size: 2.8rem;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #000;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 2rem;
  }
}

#contents {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  overflow: hidden !important;
  padding: 0;
  position: relative;
}

.inner {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 10rem 0;
  text-align: center;
}

.pz1 {
  position: relative;
  z-index: 5;
}

*::before,
*::after {
  content: "";
  display: block;
  position: absolute;
}

.line_under {
  width: 40%;
  max-width: 300px;
  margin: 4rem auto;
}

/*---------------------------------------------------------------
　　　header
---------------------------------------------------------------*/
header {
  position: relative;
  user-select: none;
}
header .mv {
  width: 100%;
  position: relative;
}

@media screen and (max-width: 767px) {
  nav {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
  }
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  border-top: 3px solid #2c3c67;
  border-bottom: 3px solid #2c3c67;
  position: relative;
  z-index: 100;
  background: white;
}
nav ul li {
  width: 33.3333333333%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  nav ul li:nth-last-child(-n+3) {
    border-top: 1px solid #2c3c67;
  }
}
@media screen and (min-width: 768px) {
  nav ul li {
    width: 16.6666666667%;
  }
}
nav ul li a {
  display: block;
  color: #2c3c67;
  font-family: "Gelasio", serif;
  font-weight: bold;
  transition: all 0.3s;
  font-size: 3rem;
  padding: 0.5rem 0;
}
@media screen and (min-width: 768px) {
  nav ul li a {
    font-size: 2rem;
    padding: 1rem 0;
  }
}
nav ul li a:hover {
  color: #c7c7bf;
}

/*---------------------------------------------------------------
    footer
---------------------------------------------------------------*/
footer {
  clear: both;
  text-align: center;
  color: #000;
  padding: 30px 0 100px;
  position: relative;
  background: #000;
  margin: 0 !important;
}
footer copyright {
  text-align: center;
  color: white;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 30px 0;
  }
}
footer a {
  display: inline-block;
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  color: white;
}

.pagetop {
  display: block;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: rgba(199, 199, 191, 0.6) url(../img/arrow.svg) no-repeat center center/contain;
  position: fixed;
  bottom: 14rem;
  right: 1rem;
  z-index: 10;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s, transform 1s;
}
@media screen and (min-width: 768px) {
  .pagetop {
    bottom: 6rem;
  }
}

.pagetop.active {
  opacity: 1;
  transform: translateY(0px);
}

/*---------------------------------------------------------------
    common
---------------------------------------------------------------*/
h2 {
  font-size: 6.5rem;
  font-family: "Gelasio", serif;
  width: 90%;
  margin: 0 auto 3rem;
  padding: 4rem 0 2rem;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 5.2rem;
  }
}

p {
  text-align: center;
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
p strong {
  color: #c50404;
}

.btn {
  display: block;
  background: #c50404;
  color: white;
  font-weight: bold;
  border-radius: 4rem;
  padding: 0.3rem 0 0.6rem;
  transition: all 0.3s;
  text-align: center;
  margin: 1rem 0;
}
.btn:hover {
  background: black;
}
.btn.yet {
  background: gray;
  pointer-events: none;
}

.maintxt {
  padding: 10rem 2rem 3rem;
  font-size: 3rem;
  margin: auto;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .maintxt {
    width: 80%;
    font-size: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .maintxt {
    width: 80%;
    font-size: max(2.4rem, 18px);
  }
}

.live {
  padding-bottom: 10rem;
}
.live .half {
  border: 1px solid white;
  padding: 10rem 0 0;
  position: relative;
  margin-top: 10rem;
  /*&::before,
  &::after {
      content: "";
      display: block;
      width: 40%;
      height: 100%;
      position: absolute;
  }
  &::before {
  }
  &::after {
      background: url(../img/30.svg) no-repeat bottom right -3rem / contain;
      bottom: 0;
      right: 0;
      z-index: 1;
  }*/
}
.live .deco {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .live .deco {
    width: 90%;
  }
}
@media screen and (min-width: 1024px) {
  .live .deco {
    width: 80%;
  }
}
.live .live01, .live .live02 {
  width: 100%;
  margin: 0 auto 30rem;
  position: relative;
  /*
  &::before {
      content: "";
      display: block;
      width: 110%;
      aspect-ratio: 1/1;
      position: absolute;
      background-image: radial-gradient(rgb(69, 216, 181) 9%, rgb(83, 230, 144 , 0.9) 39%, rgba(255, 255, 255, 0) 65%);
      top: 50%;
      left: -5%;
      z-index: -1;
      //transform: translateY(-50%);
      animation: horizontal 1s ease-in-out infinite alternate;
  }
  */
}
@media screen and (min-width: 768px) {
  .live .live01, .live .live02 {
    width: 90%;
    max-width: 90rem;
    margin: 0 0 30rem auto;
  }
}
@media screen and (min-width: 1024px) {
  .live .live01, .live .live02 {
    width: 90%;
    max-width: 80rem;
    margin: 0 0 30rem auto;
  }
}
.live .live01 ul, .live .live02 ul {
  width: 110%;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: -5%;
  z-index: -1;
  transform: translateY(-50%);
}
.live .live01 ul li, .live .live02 ul li {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  position: absolute;
  transform-origin: center center;
}
.live .live01 ul li span, .live .live02 ul li span {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  transform-origin: center center;
}
.live .live01 ul li:nth-child(1), .live .live02 ul li:nth-child(1) {
  animation-duration: 1.1s;
}
.live .live01 ul li:nth-child(2), .live .live02 ul li:nth-child(2) {
  animation-duration: 1.4s;
}
.live .live01 ul li:nth-child(3), .live .live02 ul li:nth-child(3) {
  animation-duration: 1.7s;
}
.live .live01::after, .live .live02::after {
  content: "";
  display: block;
  width: 70%;
  height: 100%;
  position: absolute;
  background: url(../img/20.svg) no-repeat top left/contain;
  top: 0;
  left: -3rem;
  z-index: 1;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .live .live01::after, .live .live02::after {
    width: 100%;
    height: 120%;
    left: 0;
    transform: translate(-60%, -40%);
  }
}
.live .live01 h3, .live .live02 h3 {
  position: relative;
  width: 70%;
  margin: 0 auto 1rem;
  color: #fff;
  -webkit-filter: drop-shadow(0px 2px 8px rgba(4, 173, 133, 0.9)); /* SafariなどのWebkitブラウザ用 */
  filter: drop-shadow(0px 2px 8px rgba(4, 173, 133, 0.9));
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .live .live01 h3, .live .live02 h3 {
    width: 60%;
  }
}
.live .live01 ul li {
  animation: horizontal 8s ease-in-out infinite alternate;
  background-image: radial-gradient(rgba(69, 216, 181, 0.3) 9%, rgba(83, 230, 144, 0.3) 39%, rgba(255, 255, 255, 0) 65%);
}
.live .live01 ul li span {
  animation: vertical 7s ease-in-out infinite alternate;
  background-image: radial-gradient(rgba(69, 216, 181, 0.3) 9%, rgba(83, 230, 144, 0.3) 39%, rgba(255, 255, 255, 0) 65%);
}
.live .live02 {
  margin: 0 auto 20rem 0;
  /*&::before {
      background-image: radial-gradient(rgb(246, 135, 135) 9%, rgb(255, 214, 185 , 0.9) 39%, rgba(255, 255, 255, 0) 65%);
  }*/
}
.live .live02::after {
  background: url(../img/30.svg) no-repeat bottom right/contain;
  left: auto;
  top: auto;
  bottom: 0;
  right: -3rem;
  z-index: 1;
  transform: translateY(45%);
}
@media screen and (min-width: 768px) {
  .live .live02::after {
    width: 100%;
    right: 0;
    transform: translate(60%, 40%);
  }
}
.live .live02 h3 {
  -webkit-filter: drop-shadow(0px 2px 8px rgba(223, 73, 73, 0.9)); /* SafariなどのWebkitブラウザ用 */
  filter: drop-shadow(0px 2px 8px rgba(223, 73, 73, 0.9));
}
.live .live02 ul li {
  animation: horizontal 6s ease-in-out infinite alternate !important;
  background-image: radial-gradient(rgba(246, 135, 135, 0.3) 9%, rgba(255, 214, 185, 0.5) 39%, rgba(255, 255, 255, 0) 65%) !important;
}
.live .live02 ul li span {
  animation: vertical 7s ease-in-out infinite alternate !important;
  background-image: radial-gradient(rgba(246, 135, 135, 0.3) 9%, rgba(255, 214, 185, 0.5) 39%, rgba(255, 255, 255, 0) 65%) !important;
}
@keyframes horizontal {
  0% {
    transform: translateX(-4rem) scale(1.1);
  }
  100% {
    transform: translateX(4rem) scale(0.9);
  }
}
@keyframes vertical {
  0% {
    transform: translateY(-5rem);
  }
  100% {
    transform: translateY(5rem);
  }
}
.live p {
  font-size: max(2rem, 20px);
  padding-bottom: 1rem;
  letter-spacing: 0;
  color: #333;
  position: relative;
  z-index: 10;
}
.live p.day {
  font-size: 5.6rem;
  color: #fff;
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 1024px) {
  .live p.day {
    font-size: 4.6rem;
  }
}
.live p.day small {
  font-size: 0.75em;
}
.live p.place {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 5.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.4);
  padding-bottom: 3rem;
}
@media screen and (min-width: 1024px) {
  .live p.place {
    font-size: 4.6rem;
  }
}
.live p.place span {
  font-size: 0.75em;
  display: block;
}
.live p.time {
  font-size: 2.8rem;
}
@media screen and (min-width: 1024px) {
  .live p.time {
    font-size: 2rem;
  }
}
.live p.price {
  font-size: 2.8rem;
}
@media screen and (min-width: 1024px) {
  .live p.price {
    font-size: 2rem;
  }
}
.live p.price small {
  display: block;
  line-height: 1.4;
  font-size: 0.75em;
}

.ticket {
  padding: 0 0 10rem;
}
.ticket .fc {
  border: 5px solid #c50404;
  color: #c50404;
  width: 80%;
  max-width: 1000px;
  margin: auto auto 5rem;
  font-size: 3.2rem;
  font-weight: bold;
  padding: 0.5em;
}
@media screen and (min-width: 768px) {
  .ticket .fc {
    margin: auto auto 4rem;
  }
}
.ticket .fc h3 {
  display: inline-block;
  background: #fff;
  line-height: 1;
  padding: 0 1em;
  transform: translate(-50%, -100%);
  position: absolute;
}
.ticket .fc p {
  margin-top: 1rem;
}
.ticket ul {
  width: 90%;
  max-width: 500px;
  margin: auto;
}
.ticket ul li {
  margin-bottom: 2rem;
}
.ticket ul li a {
  display: block;
  background: #c50404;
  color: #fff;
  border-radius: 6rem;
  padding: 3rem 1rem;
  font-weight: bold;
  font-size: 3.2rem;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .ticket ul li a {
    font-size: 3.2rem;
    padding: 2rem 1rem;
  }
}
.ticket ul li a span {
  display: block;
  font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
  .ticket ul li a span {
    font-size: 1.8rem;
  }
}
.ticket ul li a.yet {
  pointer-events: none;
  background: rgba(44, 60, 103, 0.3);
}
.ticket ul li a:hover {
  transform: translateY(-1rem);
}