/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@import url(https://fonts.googleapis.com/css?family=Exo+2:200i);
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

 :root {
  /* Set neon color */
  --neon-text-color: #914C7A;
  --neon-border-color: #08f;
}

body {
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-font-variant-ligatures: none;
  font-variant-ligatures: none;
  background-color: #03030F;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  font-family: YakuHanJP, 'Avenir', 游ゴシック体, YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 游ゴシック, 'Yu Gothic', メイリオ, Meiryo, sans-serif;
  color: #ffffff;
}

img, svg {
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a, a:hover {
  text-decoration: none;
  color: #ffffff;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.d-fl {
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}


/* 星空の背景のスタイル */

.stars {
  position: relative;
  width: 100%;
  /* 星空の横幅 */
  height: 100vh;
  /* 星空の縦幅 */
  background-image: -o-linear-gradient(bottom, #00dedc, #115d89, #080f1c);
  background-image: -webkit-gradient(linear, left bottom, left top, from(#00dedc), color-stop(#115d89), to(#080f1c));
  background-image: linear-gradient(0deg, #00dedc, #115d89, #080f1c);
  /* 星空の背景色 */
  overflow: hidden;
  /* 星が枠外にはみ出すのを防ぐ */
}


/* 星のスタイル */

.star {
  position: absolute;
  display: block;
  background-color: #fff;
  /* 星の色 */
  border-radius: 50%;
  -webkit-box-shadow: 0 0 4px 2px rgba(#fff, 0.2);
  box-shadow: 0 0 4px 2px rgba(#fff, 0.2);
  /* 星の影 */
  opacity: 0;
  -webkit-animation: twinkle 5s infinite;
  animation: twinkle 5s infinite;
}


/* 星がキラキラ光るアニメーション */

@-webkit-keyframes twinkle {
  0% {
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes twinkle {
  0% {
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.imageBg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

section #imageBg01 {
  background-image: url(../../assets/img/main_bg.jpg);
}

h1 {
  width: auto;
  padding-top: 12vh;
  height: 85vh;
  margin: 0 auto;
  text-align: center;
  -webkit-animation: zoomin 3s ease-out forwards;
  animation: zoomin 3s ease-out forwards;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -ms-filter: blur(6px);
    -webkit-filter: blur(6px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -ms-filter: blur(0px);
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
}

@keyframes zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -ms-filter: blur(6px);
    -webkit-filter: blur(6px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -ms-filter: blur(0px);
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
}

h1 img {
  width: auto;
  height: 100%;
  margin: 0 auto;
}

header {
  position: fixed;
  z-index: 999;
  width: 100%;
  right: 0;
  left: 0;
  padding: 20px 0;
}

.pc_nav {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
}

.pc_nav ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pc_nav ul li {
  font-size: 1.1rem;
  margin: 0 1.5%;
}

#news {
  padding-top: 100px;
  width: 95%;
  max-width: 900px;
  margin: 0 auto;
}

section>h2 {
  font-size: 4rem;
  font-family: 'Exo 2', sans-serif;
  letter-spacing: 5px;
  -webkit-animation: flicker 1.5s infinite alternate;
  animation: flicker 1.5s infinite alternate;
}

section>h2::-moz-selection {
  background-color: var(--neon-border-color);
  color: var(--neon-text-color);
}

section>h2::selection {
  background-color: var(--neon-border-color);
  color: var(--neon-text-color);
}

section>h2focus {
  outline: none;
}


/* Animate neon flicker */

@-webkit-keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: -0.2rem -0.2rem 1rem #fff, 0.2rem 0.2rem 1rem #fff, 0 0 2rem var(--neon-text-color), 0 0 4rem var(--neon-text-color), 0 0 6rem var(--neon-text-color), 0 0 8rem var(--neon-text-color), 0 0 10rem var(--neon-text-color);
  }
  20%, 24%, 55% {
    text-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: -0.2rem -0.2rem 1rem #fff, 0.2rem 0.2rem 1rem #fff, 0 0 2rem var(--neon-text-color), 0 0 4rem var(--neon-text-color), 0 0 6rem var(--neon-text-color), 0 0 8rem var(--neon-text-color), 0 0 10rem var(--neon-text-color);
  }
  20%, 24%, 55% {
    text-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

.news_content {
  margin: 40px 0;
   height: 215px;
    overflow-y: scroll;
}

.news_content li {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news_content li a time {
  font-size: 1.5rem;
  color: #FF79BD;
  letter-spacing: 2px;
}

.news_content li a h3 {
  font-size: 1.6rem;
  letter-spacing: 1.4px;
  position: relative;
}

.news_content li a h3::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #ffffff;
  bottom: -1px;
  /*アンダーラインがaタグの下端から現れる*/
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  /*変形の時間*/
}

.news_content li a h3:hover::after {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

#popup {
  display: none;
  /* label でコントロールするので input は非表示に */
}

.popup-open {
  cursor: pointer;
  /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}

.popup-overlay {
  display: none;
  /* input にチェックが入るまでは非表示に */
}

#popup:checked~.popup-overlay {
  display: block;
  z-index: 99999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  -webkit-animation: fadein 500ms forwards;
  animation: fadein 500ms forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.popup-window {
  width: 90vw;
  max-width: 560px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 6px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: fadein 500ms forwards;
  animation: fadein 500ms forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@keyframes fadein {
  100% {
    opacity: 1;
  }
}

.popup-window {
  color: #000;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 700px;
  padding: 20px 30px;
  background-color: #fff;
  overflow-y: auto;
  max-height: calc(100vh - 200px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.popup-text-content {}

.popup-text {
  color: #000;
  margin: 0;
  border-bottom: 1px solid #f72793;
  padding: 0 0 15px;
  margin: 0 0 15px;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}

.popup-text span {
  display: block;
}

.popup-window p {
  padding: 0.5em 0 0;
  font-size: 1.3rem;
  font-weight: 500;
}

.popup-text:not(:last-of-type) {
  margin-bottom: 1em
}

.popup-close {
  cursor: pointer;
  position: absolute;
  top: 3rem;
  right: 2rem;
}

#attention {
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
}

.popup-open {
  cursor: pointer;
  display: block;
  color: #fff;
  font-weight: bold;
  background: #FC2793;
  /* border: 2px solid #1492af; */
  text-align: center;
  text-decoration: none;
  padding: 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.popup-open p {
  padding: 15px 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ffffff;
  font-size: 1.5rem;
}

.popup-open p span {
  display: block;
  font-size: 1.2rem;
}

.popup-text-content h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 2em;
  background: #FC2793;
  color: #fff;
  padding: 0.4em 1em;
  display: block;
  line-height: 1.5;
  vertical-align: middle;
  border-bottom: none;
}

.popup-text-content p, .popup-text-content ul, .popup-text-content ul li {
  padding: 0.5em 0 0;
  font-size: 13px;
  font-weight: 500;
}

.popup-text-content ul li {
  text-indent: -1em;
  padding-left: 1em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.last_p {
  margin-top: 40px;
}

.last_p span {
  display: block;
  margin-top: 20px;
  text-align: right;
}

.popup-overlay {
  position: relative;
}

#ticket {
  padding-top: 100px;
  width: 95%;
  max-width: 900px;
  margin: 0 auto;
}

.ticket_box {
  width: 48%;
  max-width: 440px;
  margin: 0 auto 20px;
  border: 1px solid #fff;
  text-align: center;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: rgba(247, 247, 242, .05);
}

.ticket_box h3 {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #F979BD;
  font-size: 1.6rem;
}

.ticket_btn {
  padding: 15px 10px;
  width: 90%;
  margin: 15px auto;
  background-color: #F979BD;
  color: #fff;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.3rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 50px;
  letter-spacing: 2px;
}

.ticket_box p {
  font-size: 1.2rem;
}

#seat {
  padding-top: 100px;
  width: 95%;
  max-width: 900px;
  margin: 0 auto;
}

.seat_img {
  width: 95%;
  max-width: 700px;
  margin: 0 auto;
}

.ticket_wrapper, .seat_wrapper {
  margin: 40px 0;
}

.seat_wrapper p {
  width: 90%;
  max-width: 500px;
  margin: 30px auto 0;
  font-size: 1.4rem;
  line-height: 1.7;
  font-weight: 100;
}

.countdown_area {
  text-align: center;
  padding: 100px 0;
  width: 95%;
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.4rem;
  font-family: 'Exo 2', sans-serif;
  letter-spacing: 5px;
}
#time {
  padding-top: 100px;
  width: 95%;
  max-width: 900px;
  margin: 0 auto;
}

.countdown span {
  text-align: center;
  font-size: 3.4rem;
}

.sns_link {
  width: 50%;
  max-width: 60px;
  margin: 0 auto;
}

footer h2 {
  width: 50%;
  max-width: 220px;
  margin: 35px auto 55px;
}

footer h3 {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  opacity: .8;
  letter-spacing: 2px;
}

.copy {
  width: 90%;
  max-width: 900px;
  text-align: center;
  font-size: 1rem;
  margin: 0 auto;
  padding: 40px 0 20px;
}

.coming {
  opacity: .3;
}

.comp table {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
}

.comp table>tbody>tr {
  border-bottom: 1px solid rgb(255 255 255 / 56%);
}

.comp table tr th {
  width: calc(100%/6)
}

.comp table tr th, .comp table tr td {
  padding: 15px 2px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
}

.comp table tr td {
  font-size: 1.1rem;
}

.comp table tr th span {
  display: block;
  font-size: 1.1rem;
}

.comp {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: rgba(247, 247, 242, .05);
}

.outer-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
}

.outer-menu .checkbox-toggle {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
  width: 60px;
  height: 60px;
  opacity: 0;
}

.outer-menu .checkbox-toggle:checked+.hamburger>div {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.outer-menu .checkbox-toggle:checked+.hamburger>div:before, .outer-menu .checkbox-toggle:checked+.hamburger>div:after {
  top: 0;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.outer-menu .checkbox-toggle:checked+.hamburger>div:after {
  opacity: 0;
}

.outer-menu .checkbox-toggle:checked~.menu {
  pointer-events: auto;
  visibility: visible;
}

.outer-menu .checkbox-toggle:checked~.menu>div {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition-duration: 0.75s;
  -o-transition-duration: 0.75s;
  transition-duration: 0.75s;
}

.outer-menu .checkbox-toggle:checked~.menu>div>div {
  opacity: 1;
  -webkit-transition: opacity 0.4s ease 0.4s;
  -o-transition: opacity 0.4s ease 0.4s;
  transition: opacity 0.4s ease 0.4s;
}

.outer-menu .checkbox-toggle:hover+.hamburger {
  -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.outer-menu .checkbox-toggle:checked:hover+.hamburger>div {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}

.outer-menu .hamburger {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 60px;
  height: 60px;
  padding: 0.5em 1em;
  border-radius: 0 0.12em 0.12em 0;
  cursor: pointer;
  -webkit-transition: -webkit-box-shadow 0.4s ease;
  transition: -webkit-box-shadow 0.4s ease;
  -o-transition: box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease, -webkit-box-shadow 0.4s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.outer-menu .hamburger>div {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 100%;
  height: 2px;
  background: #fefefe;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.outer-menu .hamburger>div:before, .outer-menu .hamburger>div:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -10px;
  right: 0;
  width: 100%;
  height: 2px;
  background: inherit;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.outer-menu .hamburger>div:after {
  top: 10px;
}

.outer-menu .menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: 1px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.outer-menu .menu>div {
  width: 200vw;
  height: 200vw;
  color: #fefefe;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: rgba(247, 247, 242, .05);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.outer-menu .menu>div>div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.outer-menu .menu>div>div>ul {
  list-style: none;
  padding: 0 1em;
  margin: 0;
  display: block;
  max-height: 100vh;
}

.outer-menu .menu>div>div>ul>li {
  padding: 0;
  margin: 1em;
  font-size: 20px;
  display: block;
}

.outer-menu .menu>div>div>ul>li>a {
  position: relative;
  display: inline;
  cursor: pointer;
  -webkit-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

.outer-menu .menu>div>div>ul>li>a:hover {
  color: #e5e5e5;
}

.outer-menu .menu>div>div>ul>li>a:hover:after {
  width: 100%;
}

.outer-menu .menu>div>div>ul>li>a:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -0.15em;
  right: 0;
  width: 0;
  height: 2px;
  background: #e5e5e5;
  -webkit-transition: width 0.4s ease;
  -o-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

.b_ticket_flow_box {
  position: relative;
  margin: 30px 0;
}

.h_ticket {
  margin-top: 40px;
}

.h_ticket h3 {
  font-size: 2rem;
  padding-left: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  text-decoration: underline;
  font-weight: bold;
}

.h_ticket>details>p {
  margin: 15px 0;
  font-size: 1.6rem;
  letter-spacing: 1.4px;
  background: #fff;
  color: #1f1a42;
  padding: 2px 10px;
  display: inline-block;
  font-weight: 600;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.scroll {
  height: 0em;
  cursor: pointer;
  text-decoration: none;
  color: #F5F5F5;
}

.b_ticket_flow {
  padding-left: 3em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.b_ticket_flow li {
  font-size: 1.4rem;
  margin-top: 5px;
}

.arrow {
  position: absolute;
  top: 0em;
  left: 1em;
  -webkit-animation: 2s arrow-animation infinite ease-in-out;
  animation: 2s arrow-animation infinite ease-in-out;
  width: 0;
  height: 100%;
  border: 0.5px solid #F5F5F5;
}

.arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: -2px;
  width: 1px;
  height: 10px;
  border-top: 10px solid #F5F5F5;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
}

@-webkit-keyframes arrow-animation {
  0% {
    height: 0;
  }
  66% {
    height: 100%;
  }
}

@keyframes arrow-animation {
  0% {
    height: 0;
  }
  66% {
    height: 100%;
  }
}

.b_ticket_attention {
  font-size: 1.2rem;
  margin-bottom: 3px;
}

.b_ticket_attention li {
  margin-bottom: 5px;
}

.ticket_img_01 {
  width: 10%;
  margin-right: 2%;
}

.ticket_img_02 {
  width: 35%;
}

.ticket_img_content {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.b_ticket_attention {
  margin-top: 20px;
  font-size: 1.2rem;
}

summary {
  position: relative;
}

summary::after {
  content: '▷';
  position: absolute;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  font-size: 20px;
}

details[open] summary::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.ticket_img_content figcaption {
  margin-top: 2px;
}

.ticket_img_content h4 {
  margin: 15px 0;
  font-size: 1.8rem;
  letter-spacing: 1.4px;
  background: rgb(255,95,162);
    background: -moz-linear-gradient(-45deg, rgba(255,95,162,0.8) 0%, rgba(252,200,155,0.8) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(255,95,162,0.8) 0%,rgba(252,200,155,0.8) 100%);
    background: linear-gradient(135deg, rgba(255,95,162,0.8) 0%,rgba(252,200,155,0.8) 100%);
  color: #fff;
  padding: 2px 10px;
  display: inline-block;
  font-weight: 100;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.ticket_img_content h4 span {
  color: #fff;
  font-weight: 600;
}

@media screen and (min-width: 751px) {
  .pc_only {
    display: block;
  }
  .sp_only {
    display: none;
  }
}

@media screen and (max-width: 750px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  h1 {
    width: auto;
    padding-top: 0;
    height: 100vh;
    margin: 0 auto;
    text-align: center;
    -webkit-animation: zoomin 1.5s ease-out forwards;
    animation: zoomin 1.5s ease-out forwards;
  }
  @-webkit-keyframes fadein {
    0% {
      opacity: 0;
      -webkit-transform: scale(0.7);
      transform: scale(0.7);
    }
    100% {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  @-webkit-keyframes zoomin {
    0% {
      opacity: 0;
      -webkit-transform: scale(0.95);
      transform: scale(0.95);
      -ms-filter: blur(6px);
      -webkit-filter: blur(6px);
      filter: blur(6px);
    }
    100% {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
      -ms-filter: blur(0px);
      -webkit-filter: blur(0px);
      filter: blur(0px);
    }
  }
  @keyframes zoomin {
    0% {
      opacity: 0;
      -webkit-transform: scale(0.95);
      transform: scale(0.95);
      -ms-filter: blur(6px);
      -webkit-filter: blur(6px);
      filter: blur(6px);
    }
    100% {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
      -ms-filter: blur(0px);
      -webkit-filter: blur(0px);
      filter: blur(0px);
    }
  }
  #news {
    padding-top: 50px;
    width: 95%;
    max-width: 900px;
    margin: 0 auto;
  }
  #news {
    padding-top: 50px;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
  }
  .news_content li {
    margin-bottom: 15px;
    display: inline-block;
  }
  .news_content li a time {
    font-size: 1.2rem;
    color: #FF79BD;
    letter-spacing: 2px;
  }
  .news_content li a h3 {
    font-size: 1.4rem;
    letter-spacing: 1.4px;
    position: relative;
  }
  .news_content {
    margin: 30px 0;
        height: 215px;
    overflow-y: scroll;
  }
  section>h2 {
    font-size: 3.7rem;
    font-family: 'Exo 2', sans-serif;
    letter-spacing: 5px;
    text-align: center;
    -webkit-animation: flicker 1.5s infinite alternate;
    animation: flicker 1.5s infinite alternate;
  }
  .popup-open p {
    padding: 15px 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #ffffff;
    font-size: 1.4rem;
  }
  .popup-text {
    color: #000;
    margin: 0;
    border-bottom: 1px solid #f72793;
    padding: 0 0 15px;
    margin: 0 0 15px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
  }
  .ticket_box {
    width: 98%;
    max-width: 440px;
    margin: 0 auto 20px;
    border: 1px solid #fff;
    text-align: center;
    padding: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background-color: rgba(247, 247, 242, .05);
  }
  .ticket_btn {
    padding: 12px 10px;
    width: 90%;
    margin: 10px auto;
    background-color: #F979BD;
    color: #fff;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 1.2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 50px;
    letter-spacing: 2px;
  }
  .comp {
    width: 100%;
    margin: 0 auto;
    overflow-x: scroll;
  }
  .comp table {
    width: 700px;
  }
  .comp_attention {
    margin-bottom: 5px;
    text-align: right;
  }
  .seat_wrapper p {
    width: 100%;
    max-width: 500px;
    margin: 30px auto 0;
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 100;
  }
  .popup-window {
    color: #000;
    position: relative;
    top: 15%;
    left: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 700px;
    padding: 20px 30px;
    background-color: #fff;
    overflow-y: auto;
    max-height: calc(100vh - 200px);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    right: 0;
    margin: 0 auto;
  }
  .h_ticket h3 {
    font-size: 1.6rem;
    padding-left: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    text-decoration: underline;
    font-weight: bold;
  }
  .h_ticket>details>p {
    margin: 15px 0;
    font-size: 1.4rem;
    letter-spacing: 1.4px;
    background: #fff;
    color: #1f1a42;
    padding: 5px 10px;
    display: inline-block;
    font-weight: 600;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.3;
  }
  .b_ticket_flow {
    padding-left: 1.5em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .arrow {
    position: absolute;
    top: 0em;
    left: 0em;
    -webkit-animation: 2s arrow-animation infinite ease-in-out;
    animation: 2s arrow-animation infinite ease-in-out;
    width: 0;
    height: 100%;
    border: 0.5px solid #F5F5F5;
  }
  .b_ticket_flow li {
    font-size: 1.3rem;
    margin-top: 10px;
    padding-left: 1em;
    text-indent: -1em;
  }
  .ticket_img_content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .ticket_img_01 {
    width: 25%;
    margin-right: 4%;
  }
  .ticket_img_02 {
    width: 60%;
  }
  .ticket_img_content h4 {
    margin: 15px 0;
    font-size: 1.6rem;
    letter-spacing: 1.4px;
    background: rgb(255,95,162);
    background: -moz-linear-gradient(-45deg, rgba(255,95,162,0.8) 0%, rgba(252,200,155,0.8) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(255,95,162,0.8) 0%,rgba(252,200,155,0.8) 100%);
    background: linear-gradient(135deg, rgba(255,95,162,0.8) 0%,rgba(252,200,155,0.8) 100%);
    color: #fff;
    padding: 2px 10px;
    display: inline-block;
    font-weight: 100;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .ticket_img_content h4 span {
    display: block;
  }
  .b_ticket_attention li {
    margin-top: 10px;
    font-size: 1.1rem;
    padding-left: 1em;
    text-indent: -1em;
  }
}
.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center
}

.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 90%;
  max-width: 600px;
  padding: 30px 30px 15px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
  vertical-align: middle
}

.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  color: #95979c !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.modal-wrapper .modal-close:hover {
  color: #2b2e38 !important
}
.modal-content figcaption{
  font-size: 1.2rem;
  margin-top: 20px;
  color: #000;
}
.modal-content figcaption p small{
  font-size: 1rem;
  color: #FC2793;
}
.comp table tr a{
  text-decoration: underline;
}




