*, *: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;
}
body {
  margin: 0;
  color: #fff;
  line-height: 1.7;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  padding: 0;
  background-color: #0A0A2F;
  font-size: 15px;
  background-image: -webkit-linear-gradient(270deg, rgba(10, 10, 47, 1.00) 0%, rgba(3, 0, 206, 1.00) 100%);
  background-image: -moz-linear-gradient(270deg, rgba(10, 10, 47, 1.00) 0%, rgba(3, 0, 206, 1.00) 100%);
  background-image: -o-linear-gradient(270deg, rgba(10, 10, 47, 1.00) 0%, rgba(3, 0, 206, 1.00) 100%);
  background-image: linear-gradient(180deg, rgba(10, 10, 47, 1.00) 0%, rgba(3, 0, 206, 1.00) 100%);
  background-attachment: fixed;
}
ul, li, ol, dl, dt, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}
figure {
  padding: 0;
  margin: 0;
}
table {
  border-collapse: collapse;
  border-bottom-color: #767676;
}
h5 {
  font-size: 18px;
  padding: 0;
  margin: 10px 0;
}
.sp {
  display: none;
}
.pc {
  display: block;
  text-shadow: 0px 0px 0px;
}
.display_ib {
  display: inline-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: #ffffff;
  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: #fff;
}
.disabled a, .disabled.btn_ticket, .disabled p {
  opacity: 0.6;
  pointer-events: none;
  cursor: default;
  filter: grayscale(100%);
}
.openbtn {
  display: none;
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 999;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #fff;
}
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #005af1;
  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: #005af1;
  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%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  text-align: center;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999;
  background-color: #fc5af1;
  height: 60px;
}
#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 {
  z-index: 1;
  margin: 0 auto;
  padding: 5px 10px 10px 20px;
  /* [disabled]max-width: 360px; */
}
#header .logo a {
  display: block;
}
#header .logo img {
  vertical-align: middle;
}
#header.dnone {
  opacity: 0;
}
#header.dnone.panelactive {
  opacity: 1;
}
#header .head_logo {
  width: 30%;
  max-width: 410px;
}
#navi {}
#navi.fixed {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 10;
  width: 100%;
  -webkit-box-shadow: 0px 1px 3px #201E2C;
  box-shadow: 0px 1px 3px #201E2C;
}
#navi ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
#navi ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 15px 10px;
  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:hover {
  color: #005af1;
}
#navi ul li {
  text-align: center;
}
#navi ul li.x a {
  margin: 0 auto;
  width: 50px;
  padding: 10px;
  background-image: none;
}
#navi ul li.twitter a, #navi ul li.insta a {
  margin: 0 auto;
  width: 55px;
  padding: 10px;
  background-image: none;
}
#navi ul li.icon_youtube a {
  margin: 0 10px 0 0;
  width: 55px;
  padding: 10px;
  background-image: none;
}
#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 #7782a8;
  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, #header.dnone.panelactive #navi ul li.x a {
  margin: 0 auto;
  width: 100px;
}
#top {
  position: relative;
  margin: 0;
  padding: 60px 0 0;
}
#top .top_tilte {
  margin: auto;
  max-width: 900px;
  position: absolute;
  z-index: 2;
  top: 30%;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 80%;
}
#top .top_img img {
  width: 100%;
  max-width: none;
}
#top .data_warap {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 1%;
  width: 90%;
}
#top .data_warap .ticket_box img {
  /* [disabled]margin-top: -20px; */
  width: 100%;
}
#slide {
  /* [disabled]height: 53vw; */
  margin-inline: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
}
#slide .slick-img img {
  width: 100%;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
#slide {
  opacity: 0;
  transition: opacity .3s linear;
}
#slide.slick-initialized {
  opacity: 1;
}
.attention_box {
  background-color: #fff;
  margin: 1% auto 0;
  width: 100%;
  color: #222;
  padding: 10px;
  border: 3px solid #E8005C;
  position: relative;
  font-size: 1.1vw;
  text-align: center;
}
.attention_box p {
  margin: 0;
  padding: 0;
}
.attention_box a {
  text-decoration: underline;
  color: #E8005C;
}
.attention_box strong {
  color: #E8005C;
}
.attention_box::after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../images/icon_attention.png);
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  display: block;
  background-size: contain;
  left: -10px;
  top: -9px;
}
section {
  margin: 0;
  padding: 80px 0;
}
.top section {
  padding: 30px 0;
}
.sec_h3 {
  /* [disabled]border-left: 5px solid #005af1; */
  color: #fff;
  font-size: 40px;
  padding: 40px 0 5px 40px;
  letter-spacing: 4px;
  line-height: 1.5;
  background-image: url(../images/ttl_bg.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: auto 70px;
  text-shadow: 2px 2px #045cfe;
}
.sec_h3 span {
  font-weight: normal;
  display: block;
  color: #ffff35;
  font-size: 15px;
}
.sec_h4 {
  text-align: center;
  padding: 10px 0;
  font-size: 30px;
  border-bottom: 1px solid #005af1;
}
.sec_h5 {
  background-color: #005af1;
  padding: 10px 0;
  text-align: center;
  font-size: 23px;
  margin-bottom: 20px;
  color: #FFFFFF;
}
.comingsoon {
  text-align: center;
  font-size: 20px;
  letter-spacing: 2px;
}
#top_news {
  /* [disabled]background-color: #201E2C; */
  padding-top: 30px;
}
#top_news h2.lead {
  margin-bottom: 0;
}
#top_news .lead {
  text-align: center;
  line-height: 2;
  margin-bottom: 80px;
}
.bnr_slide .slide_item {
  padding: 0 5px;
}
#news ul {
  max-height: 196px;
  overflow-y: scroll;
  padding: 10px;
  border: 1px solid #767676;
}
#news li {
  border-bottom: 1px solid #767676;
  position: relative;
  padding: 10px 20px;
}
#news li a {
  text-decoration: underline;
  color: #FFF;
}
#news li::before {
  content: "";
  position: absolute;
  display: inline-block;
  left: 3px;
  box-sizing: border-box;
  width: 6px;
  height: 6px;
  border: 6px solid transparent;
  border-left: 6px solid #005af1;
  top: 40%;
}
#news li a:hover {
  /* [disabled]background-color: hsla(0, 0%, 100%, 0.10); */
  opacity: 0.7;
}
#news li small {
  padding-right: 10px;
  font-size: 14px;
}
#news .btn_news {
  text-align: right;
}
#news .btn_news a {
  padding: 5px 15px;
  border: 1px solid #fff;
  display: inline-block;
  position: relative;
}
#news .btn_news a:hover {
  background-color: hsla(0, 0%, 100%, 0.10);
}
#news .btn_news a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.top_bnr {
  max-width: 800px;
  margin: 0 auto 30px;
}
.top_bnr a {
  display: block;
  margin: 0 auto 10px;
}
.outline_box {
  padding: 20px;
  background-color: hsla(0, 0%, 0%, 0.70);
  margin-bottom: 50px;
}
.sponsor_box {
  padding: 20px;
  background-color: #FFFFFF;
  margin-bottom: 50px;
  color: #191919;
}
.sponsor_box .logo_item {
  text-align: center;
  margin-bottom: 40px;
}
.sponsor_box .logo01 {
  max-width: 250px;
  margin: 0 auto 40px;
}
.sponsor_box .logo01 img {
  margin: 20px 0;
}
.sponsor_box .logo_item figcaption {
  font-size: 20px;
  text-align: center;
  /* [disabled]padding: 20px 0; */
}
.sponsor_box .sec_h5 {
  color: #19191A;
  font-size: 20px;
  background-color: hsla(161, 43%, 52%, 0.20);
}
#sponsor .logo_flex {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 20px auto;
  flex-wrap: wrap;
  max-width: 800px;
  padding-top: 40px;
}
#sponsor .logo_flex p {
  padding: 0 20px;
}
#sponsor .logo_flex figure {}
#sponsor .logo_flex figcaption {
  margin: auto 0 0;
  font-size: 15px;
  width: 100%;
  display: block;
}
#sponsor .logo_flex .logo_item {
  width: 30%;
  display: flex;
  /* [disabled]flex-wrap: wrap; */
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#sponsor .logo_flex .logo_item:nth-child(n+4) img {
	max-width: 200px;
	width: 100%;
	display: block;
}
#sponsor .logo_item .topjapan {
  background-color: #000000;
  color: #EDC968;
  padding: 20px 0;
  font-size: 18px;
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
#sponsor .logo_flex .logo_item img {
	max-width: 100%;
	height: 100px;
	object-fit: contain;
	margin-bottom: 20px;
}
#sponsor .logo_flex .logo_item.logo02 img {
  max-width: 100%;
}
.sponsor_list {
  margin-bottom: 40px;
}
.sponsor_list li {
  position: relative;
  display: inline;
  font-size: 14px;
}
.sponsor_list li::after {
  padding: 0 3px;
  content: "／";
}
.sponsor_list li:last-child::after {
  display: none;
}
.outline_box table th {
  padding: 10px;
  width: 15%;
  border-bottom: 1px solid #767676;
}
.outline_box table td {
  padding: 10px;
  border-collapse: collapse;
  border-bottom: 1px solid #767676;
}
.btn_detail {
  display: inline-block;
}
.btn_detail a, .outline_box .btn_detail a {
  padding: 5px 20px;
  display: inline-block;
  background-color: #fff;
  position: relative;
  color: #201E2C;
  text-decoration: none;
  border: 1px solid #59D5FF;
  -webkit-box-shadow: 2px 2px #59D5FF;
  box-shadow: 2px 2px #59D5FF;
}
.btn_detail a:hover, .outline_box .btn_detail a:hover {
  opacity: 1;
  color: #201E2C;
  background-color: #FFF020;
}
.btn_detail a::after, .btn_pr::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #201E2C;
  border-right: 2px solid #201E2C;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 10px;
}
#outline, #ticket, #faq, #seat, #photo {
  /* [disabled]background-image: url(../images/sec_bg01.jpg); */
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
}
#highlight, #access, #sponsor {
  /* [disabled]background-image: url(../images/sec_bg02.jpg); */
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
}
#highlight .highlight_list li {
  font-size: 18px;
  /* [disabled]text-indent: -18px; */
  margin-bottom: 17px;
  padding-left: 34px;
}
#highlight .highlight_list li span {
  display: inline-block;
  background-color: #005af1;
  padding: 0 5px;
  color: #fff;
  margin-right: 8px;
  -webkit-box-shadow: 2px 2px #FFFFFF;
  box-shadow: 2px 2px #FFFFFF;
  margin-left: -34px;
}
#highlight .highlight_list li strong {
  color: #FFF020;
}
#highlight .acc_title {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: 0;
}
#highlight .acc_title .sec_h5 {
  padding: 10px 30px 10px 10px;
  background-color: #7F7F7F;
}
#highlight .acc_title .closed {
  background-color: #E4383A;
  color: #fff;
  padding: 0 5px;
  display: inline-block;
  font-size: 15px;
  margin-right: 10px;
}
#highlight .acc_title:before {
  background: #fff;
}
#highlight .acc_title:after {
  background: #fff;
}
#highlight .acc_title:hover .sec_h5 {
  background-color: #A5A5A5;
}
#highlight .acc_txt {
  border-width: 0;
  padding-top: 20px;
}
.youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 10px;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.caption li {
  text-indent: -16px;
  padding-left: 16px;
}
#highlight .btn_seat a {
  font-size: 18px;
  margin: auto auto 20px;
  display: block;
  width: 90%;
  max-width: 600px;
  text-align: center;
  padding: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0px 3px #969696;
  box-shadow: 0px 3px #969696;
  color: #201E2C;
}
#highlight .btn_ticket a {
  font-size: 18px;
  margin: auto auto 20px;
  display: block;
  width: 90%;
  max-width: 600px;
  text-align: center;
  padding: 20px;
  background-color: #DC0000;
  -webkit-box-shadow: 0px 3px #A70000;
  box-shadow: 0px 3px #A70000;
  color: #fff;
}
#stage .stage_time td {
  /* [disabled]border-bottom-width: 0; */
}
.td01 {
  text-align: center;
  width: 5%;
}
.td02 {
  width: 5%;
  text-align: center;
}
.td03 {
  width: 20%;
}
.td04 {
  width: 40%;
}
.td05 {
  width: 30%;
}
#seat .seat_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}
#seat .seat_wrap .seat_item .seat_title {
  padding: 10px;
  background-color: #59beae;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
#seat .seat_wrap .seat_item {
  width: 32%;
  background-color: #fff;
  margin: 0 2% 20px 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
#seat .seat_wrap .seat_item:nth-child(3n) {
  margin-right: 0;
}
#seat .seat_wrap .seat_item:nth-of-type(odd) .seat_title {
  background-color: #9cb1d8;
}
#seat .seat_wrap .seat_title .seat_area {
  width: 78%;
  /* [disabled]border-bottom: 1px dotted #090526; */
  padding: 0;
  /* [disabled]display: flex; */
  justify-content: space-between;
  align-items: center;
  /* [disabled]margin-bottom: 10px; */
}
#seat .seat_wrap .seat_title .seat_area p {
  display: block;
  /* [disabled]color: #090526; */
  font-weight: bold;
  font-size: 20px;
  line-height: 0;
  margin-right: 5px;
  padding: 0;
  width: auto;
}
#seat .seat_wrap .seat_title .seat_price {
  color: #090526;
  font-size: 18px;
  display: block;
  margin-right: 10px;
  line-height: 1.5;
}
#seat .seat_wrap .seat_title .seat_tag {
  width: 20%;
  display: inline-block;
  font-size: 13px;
}
#seat .seat_wrap .seat_title .seat_tag img {
  vertical-align: top;
  width: auto;
}
#seat .seat_wrap .icon .seat_title .seat_tag {
  width: 35%;
  display: flex;
  justify-content: space-between;
}
#seat .seat_wrap .icon .seat_title .seat_area {
  width: 63%;
}
#seat .seat_wrap .seat_title .seat_tag div {
  width: 49%;
}
#seat .seat_wrap .seat_detail {
  padding: 0 20px;
  color: #090526;
  font-size: 14px;
}
#seat .seat_wrap p a {
  text-decoration: underline;
  color: #E4383A;
}
#seat .seat_wrap .seat_detail .soldout, #seat .seat_wrap .seat_detail .closed {
  position: relative;
}
#seat .seat_wrap .seat_detail .soldout img, #seat .seat_wrap .seat_detail .closed img {
  opacity: 0.5;
}
#seat .seat_wrap .seat_detail .soldout::after {
  content: "完売";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #414141;
  color: #fff;
  display: block;
  padding: 10px;
  width: 60%;
  height: 50px;
  text-align: center;
  font-size: 16px;
}
#seat .seat_wrap .seat_detail .closed::after {
  content: "受付終了";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #414141;
  color: #fff;
  display: block;
  padding: 10px;
  width: 60%;
  height: 50px;
  text-align: center;
  font-size: 16px;
}
#seat .seat_wrap .btn_ticket, #ticket .btn_ticket {
  margin: auto auto 20px;
  display: block;
  width: 90%;
  text-align: center;
  padding: 10px;
  background-color: #E4383A;
  -webkit-box-shadow: 0px 3px #9F2728;
  box-shadow: 0px 3px #9F2728;
}
#highlight .btn_seat a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #201E2C;
  border-right: 2px solid #201E2C;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: 0 5px;
}
#highlight .btn_ticket a::after, #ticket .btn_ticket::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: 0 5px;
}
#seat .seat_wrap .btn_ticket::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: 0 5px;
}
#highlight .btn_seat a:hover, #highlight .btn_ticket a:hover, #seat .seat_wrap .btn_ticket:hover, #ticket .btn_ticket:hover {
  opacity: 0.7;
}
#Tshirts .item_wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
#Tshirts .item_wrap .item_box {
  text-align: center;
  width: 24%;
}
#award.outline_box h5 {
  text-align: center;
  border-bottom: 1px solid #FFFFFF;
  margin-bottom: 30px;
  padding-bottom: 10px;
}
#award.outline_box h5.sec_h5 {
  border: 0;
}
#award .item_wrap {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 50px;
  width: 96%;
}
#award .item_wrap .item_box {
  text-align: center;
  width: 30%;
}
#award .item_wrap .class {
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
}
#award .item_wrap .name {
  margin: 0;
  font-size: 20px;
}
#award .item_wrap .name span {
  font-size: 15px;
}
#award .item_wrap .comment {
  text-align: justify;
}
#seat .seat_open {}
.acc_list {
  padding: 0;
  margin: 0;
}
.acc_list.disabled .acc_title {
  background-color: #878787;
  color: #fff;
}
.acc_title {
  cursor: pointer;
  font-size: 16px;
  padding: 10px;
  position: relative;
  margin: 0 auto 20px;
  /* [disabled]border: 1px solid #9C9C9C; */
  background-color: #ECECEC;
  transition: all 0.2s;
}
.acc_title:hover {
  background-color: #FFF020;
}
.acc_title:before {
  position: absolute;
  content: '';
  top: 50%;
  right: 25px;
  height: 2px;
  width: 15px;
  background: #9C9C9C;
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
}
.acc_title:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 25px;
  height: 2px;
  width: 15px;
  background: #9C9C9C;
  transition: all .3s ease-in-out;
}
.acc_title.open:before {
  transform: rotate(180deg);
}
.acc_title.open:after {
  opacity: 0;
}
.acc_txt {
	border: 1px solid #FFFFFF;
	margin: -21px 0 20px;
	;
	padding: 0;
	display: none;
}
#access .access_lead {
  font-size: 20px;
  text-align: center;
}
#access .access_btn, #ticket .ticket_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#access .access_btn li, #ticket .ticket_nav li {
  width: 32%;
}
#access .access_btn li a, #ticket .ticket_nav li a {
  text-align: center;
  display: block;
  background-color: #fff;
  color: #201E2C;
  padding: 10px;
  margin-bottom: 20px;
  text-decoration: none;
}
#access .access_btn li a::after, #ticket .ticket_nav li a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #201E2C;
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  margin: 0 0 0 10px;
}
#access .access_btn li a:hover, #ticket .ticket_nav li a:hover {
  background-color: #FFF020;
}
#access .access_list {
  margin-bottom: 30px;
  padding-left: 20px;
}
#access .access_list dt {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}
#access .access_list dd {
  font-size: 16px;
}
#access .access_list li {
  padding-left: 0px;
  list-style-type: disc;
  margin-bottom: 5px;
}
#access .access_list li.attention  {
	font-size: 1.3rem;
}
#access .attention {
  color: #FF5C5C;
  font-weight: bold;
}
#access .big {
  font-weight: bold;
  font-size: 18px;
}
#access .access_list ul {
  padding-left: 20px;
}
.faq_box {
  background-color: #fff;
  color: #090526;
  margin-bottom: 30px;
}
.faq_box .faq_title {
  background-color: #59beae;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
}
.faq_box:nth-of-type(odd) .faq_title {
  background-color: #9cb1d8;
}
.faq_box dl {
  padding: 0 10px;
  /* [disabled]border-bottom: 1px dotted #7782a8; */
  margin-bottom: 20px;
}
.faq_box dl:last-child {
  border-bottom: 0;
  padding-bottom: 10px;
}
.faq_box dt {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #201E2C;
  padding: 10px 50px;
}
.faq_box dt.acc_title {
  margin-bottom: 0px;
}
.faq_box .attention {
  border-bottom: 1px dotted #ADADAD;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.faq_box .attention dt {
  margin: 0;
  color: #E8005C;
  font-size: 16px;
}
.faq_box .attention dt span {
  background-color: transparent;
  vertical-align: middle;
}
.faq_box dt span {
  font-size: 18px;
  display: inline-block;
  background-color: #005af1;
  color: #fff;
  border-radius: 20px;
  padding: 2px 0;
  width: 35px;
  text-align: center;
  margin: 0 5px 0 -40px;
  font-family: Arial, Helvetica, sans-serif;
}
.faq_box dd {
  padding-left: 40px;
}
.faq_box dd.acc_txt {
  margin: 0;
  padding: 10px 10px 10px 40px;
  border: 2px solid #ECECEC;
}
.faq_box dd.acc_txt a {
  text-decoration: underline;
  color: #E4383A;
}
.faq_box dd span {
  font-weight: bold;
  display: inline-block;
  border: 1px solid #005af1;
  font-size: 18px;
  color: #005af1;
  padding: 1px 0;
  border-radius: 20px;
  width: 35px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0 7px 0 -40px;
}
#faq .seat_list {
  width: 100%;
  margin-top: 10px;
}
#faq .seat_list th {
  background-color: #0B1358;
  padding: 5px;
  border: 1px solid #CFCFCF;
  color: #fff;
}
#faq .seat_list td {
  border: 1px solid #CFCFCF;
  padding: 5px;
  text-align: center;
}
#faq .seat_list tr:nth-of-type(odd) {
  background-color: #EEEEEE;
}
#ticket .ticket_nav li:first-child a {
  border: 4px solid #59beae
}
#ticket .ticket_nav li:nth-child(2) a {
  border: 4px solid #9cb1d8
}
#ticket .ticket_nav li:last-child a {
  border: 4px solid #E27AAA
}
#ticket .playguide_flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
#ticket .playguide_flex .playguide_wrap {
  width: 100%;
  max-width: 750px;
  margin: 0 auto 20px;
}
#ticket .playguide_wrap {
  background-color: #fff;
  color: #090526;
  margin-bottom: 20px;
  padding-bottom: 10px;
  padding-top: 0px;
}
#ticket .playguide_wrap .caption li {
  font-size: 14px;
}
#ticket .playguide_wrap .cap_title {
  padding-left: 20px;
  margin-bottom: 10px;
  border-left: 5px solid #090426;
}
#ticket .playguide_title {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  border-left: 5px solid #005af1;
  margin: 0 0 10px;
  padding-left: 10px;
}
#ticket .ticket_wrap {
  border-bottom: 1px dotted #ccc;
  margin-bottom: 10px;
}
#ticket .ticket_wrap dl {
  margin-bottom: 10px;
  display: flex;
  /* [disabled]flex-wrap: wrap; */
  justify-content: flex-start;
  align-items: flex-start;
}
#ticket .ticket_wrap dl ol {
  padding-left: 20px;
}
#ticket .ticket_wrap dl ol li {
  list-style-type: decimal;
}
#ticket .ticket_wrap:last-child {
  border-bottom-width: 0;
}
#ticket .playguide_wrap a {
  text-decoration: underline;
  /* [disabled]display: inline-block; */
  color: #E4383A;
}
#ticket .playguide_wrap .btn {
  text-decoration: none;
  /* [disabled]background-color: #E4383A; */
  /* [disabled]color: #fff; */
  padding: 5px 20px;
  display: inline-block;
  margin: 0 5px;
  text-align: center;
  text-indent: 0px;
  border: 1px solid #E4383A;
  box-shadow: 2px 2px 0 #E4383A;
}
#ticket .playguide_wrap .btn::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #E4383A;
  border-right: 2px solid #E4383A;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: 0 3px;
}
#ticket .playguide_wrap .btn:hover {
  background-color: #FFF020;
  opacity: 1;
}
#ticket .playguide_wrap .btn_ticket {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  max-width: 600px;
  font-size: 16px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: block;
}
#ticket .playguide_wrap .btn_ticket::after {
  position: absolute;
  top: 40%;
  right: 20px;
}
#ticket .playguide_wrap a:hover {
  text-decoration: none;
  /* [disabled]color: #BE004C; */
  opacity: 0.7;
}
#ticket .playguide_wrap .acc_title {
  max-width: 600px;
  margin: 0 auto 10px;
  text-align: center;
}
#citizen .acc_txt {
  max-width: 600px;
  margin: 0 auto;
}
#ticket .ticket_wrap dt {
  text-align: center;
  margin-right: 10px;
  padding: 0px;
  border: 1px solid #090526;
  width: 150px;
}
#ticket .ticket_wrap dd {
  width: 80%;
  /* [disabled]max-width: 900px; */
}
#ticket .ticket_wrap .qr {
  width: 100px;
  float: right;
}
#ticket .playguide_wrap h5 {
  padding: 10px;
  background-color: #59beae;
  font-size: 18px;
  margin: 0 0 10px;
  color: #fff;
  position: relative;
}
#ticket .playguide_wrap h5 span {
  margin-left: 10px;
  font-size: 14px;
}
#ticket .playguide_wrap:nth-of-type(odd) h5 {
  background-color: #9cb1d8;
}
#ticket .playguide_wrap.soldout h5 {
  background-color: #7F7F7F;
}
#ticket .playguide_wrap.soldout h5::before {
  content: "完売";
  position: relative;
  background-color: #E4383A;
  color: #fff;
  display: inline-block;
  padding: 0 10px;
  text-align: center;
  font-size: 16px;
  margin-right: 10px;
}
#ticket .playguide_wrap .acc_title {
  /* [disabled]width: 300px; */
  /* [disabled]margin: 0 0 10px; */
}
#ticket .playguide_wrap.soldout .acc_title {
  background-color: #CBCBCB;
}
#ticket .playguide_wrap .playguide_list, #ticket .playguide_wrap .caption_list {
  padding-top: 20px;
}
#ticket .playguide_wrap .caption_list li {
  padding-left: 20px;
  text-indent: -20px;
  vertical-align: middle;
}
#ticket .playguide_wrap .playguide_list li {
  padding-left: 20px;
  text-indent: -14px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #ccc;
  vertical-align: middle;
}
#ticket .playguide_wrap .playguide_list li:last-child {
  border-bottom: 0;
}
#ticket .playguide_wrap .playguide_list li:before {
  content: "";
  display: inline-block;
  color: #005af1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 6px 8px;
  border-left-color: currentColor;
  border-right: 0;
  margin-right: 5px;
}
#ticket .soldout2 span {
  background: #E4383A;
  color: #FFF;
  padding: 1px 10px;
  margin-right: 5px;
}
#free, #citizen {
  padding-top: 50px;
}
#photo .flow_list li {
  background-color: #fff;
  color: #222;
  padding: 20px;
  margin-bottom: 60px;
  position: relative;
}
#photo .flow_list li h5 {
  font-size: 1.6rem;
  border-bottom: 2px solid #9cb1d8;
}
#photo .flow_list li h5:first-letter {
  color: #9cb1d8;
  font-style: italic;
  font-size: 2rem;
}
#photo .flow_list li a {
  color: #E4383A;
  font-weight: bold;
  font-size: 1.8rem;
  text-decoration: underline;
}
#photo .flow_list li a:hover {
  text-decoration: none;
}
#photo .flow_list li:first-child::after {
  content: "";
  margin: 0 auto;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  vertical-align: middle;
  color: #005af1;
  line-height: 1;
  width: 3em;
  height: 3em;
  border: 0.5em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}
#photo dl {}
#photo dl dt {
  font-weight: bold;
  padding: 5px;
  font-size: 1.2rem;
  margin-bottom: 10px;
  border-bottom: 1px dotted #6DA7C4;
  color: #6DA7C4;
}
#photo dl dd {
  margin-bottom: 20px;
  padding-left: 10px;
  /* [disabled]color: #222; */
}
#photo dl dd strong {
  font-weight: bold;
  color: #9A0D1C;
  font-size: 1.2rem;
}
#photo .outline_list {
  padding-left: 20px;
}
#photo .outline_list li {
  list-style-type: disc;
}
#photo ol {
  padding-left: 20px;
}
#photo ol li {
  text-indent: -16px;
}
#photo .outline_box.contest {
  background-color: #fff;
}
#photo .outline_box.contest figcaption {
  color: #090526;
  padding: 10px 0;
  text-align: center;
}
#photo .contest_1 {
  margin: 0 auto;
  max-width: 600px;
  padding: 0;
  text-align: center;
}
#photo .contest_2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0 0 20px;
  flex-wrap: wrap;
}
#photo .contest_2 figure {
  width: 32%;
  text-align: center;
}
.outline_box a {
  text-decoration: underline;
  color: #59D5FF;
}
.outline_box a:hover {
  text-decoration: none;
  color: #9BE5FF;
}
.vendors_wrap .acc_title:after {
  right: 10px;
}
.vendors_wrap .acc_title:before {
  right: 10px;
}
.vendors_wrap .acc_title {
  padding: 10px 20px 10px 10px;
  font-size: 18px;
}
.vendors_wrap table {
	width: 100%;
}
.vendors_wrap .acc_txt {
  border: 0;
  margin-top: 10px;
}
.vendors_wrap table th {
  width: auto;
  background-color: #005af1;
  text-align: left;
  border: 1px solid #767676;
}
.vendors_wrap table td {
  width: auto;
  border: 1px solid #767676;
}
.vendors_wrap table .td02 {
  width: 25%;
  text-align: left;
}
.vendors_wrap table tr:nth-of-type(odd) {
  background-color: hsla(0, 0%, 100%, 0.10);
}
.vendors_wrap .btn_pr {
  display: inline-block;
  padding: 5px 20px;
  /* [disabled]width: 100px; */
  text-decoration: none;
  text-align: center;
  min-width: 150px;
  color: #201E2C;
  background-color: #fff;
  border: 1px solid #59D5FF;
  position: relative;
  -webkit-box-shadow: 2px 2px #59D5FF;
  box-shadow: 2px 2px #59D5FF;
  cursor: pointer;
}
.vendors_wrap .btn_pr:hover {
  opacity: 1;
  color: #201E2C;
  background-color: #FFF020;
}
.yatai_list {
	width: 100%;
}
.yatai_list td ,.yatai_list th{
	padding: 10px;
	border-collapse: collapse;
	border-bottom: 1px solid #C5C5C5;
}
.yatai_list th {
	position: relative;
	width: 30%;
}
.yatai_list th::before {
	content: "●";
	font-size: 7px;
	color: #005af1;
	margin-right: 10px;
	display: inline-block;
	position: relative;
	top: -2px;
}
.fancybox-content.store_wrap {
  background-color: #fff;
  color: #222;
  padding: 20px 0;
  max-width: 600px;
  min-width: 600px;
}
.store_wrap {
  display: none;
}
.store_wrap .area {
  color: #005af1;
  margin: 0;
  padding: 10px;
  border-bottom: 1px dotted #005af1;
}
.store_wrap .number {
  text-align: center;
  width: 40px;
  background-color: #005af1;
  color: #fff;
  line-height: 1.8;
  display: inline-block;
  font-size: 20px;
  margin-right: 5px;
}
.store_wrap h4 {
  display: inline-block;
  font-size: 20px;
}
.store_photo img {
  max-height: 400px;
  margin: 0 auto;
  display: block;
}
.store_wrap .menu {
  padding: 10px 0;
  font-weight: bold;
  font-size: 18px;
  border-bottom: 1px dotted #ccc;
}
.map_thum {
  position: relative;
  overflow: hidden;
}
.map_thum::after {
  content: '';
  z-index: 2;
  position: absolute;
  bottom: 5px;
  right: 5px;
  background-image: url(../images/icon_zoom.png);
  background-repeat: no-repeat;
  background-position: center center;
  width: 30px;
  height: 35px;
  background-size: auto 70%;
  background-color: hsla(229, 12%, 35%, 0.60);
}
.map_thum img {
  height: auto;
  transition: transform .6s ease;
}
.map_thum:hover img {
  transform: scale(1.03);
}
.map_thum:hover {
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}
.pagetop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 50px;
  cursor: pointer;
  z-index: 10;
  text-indent: -20px;
}
footer {
  padding: 20px 0;
  background-color: #121212;
}
footer .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
footer .foot_logo {
  width: 100%;
  margin: 0 auto 10px;
}
footer .foot_logo img {
  max-width: 300px;
}
footer .foot_contact {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
footer .foot_contact .contact_title {
  border: 1px solid #fff;
  padding: 5px 20px;
  display: inline-block;
  text-align: center;
}
footer .foot_contact ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
footer .foot_contact ul li {
  padding-right: 30px;
}
footer .foot_contact ul li dl {
  padding-left: 10px;
  border-left: 3px solid #005af1;
  margin-bottom: 10px;
}
footer .foot_contact ul li dt {
  font-weight: bold;
}
footer .foot_contact ul li dd {
  font-size: 14px;
  font-weight: normal;
}
footer .foot_contact a {
  text-decoration: underline;
}
footer .greenpower {
  width: 100%;
  display: flex;
  /* [disabled]flex-wrap: wrap; */
  align-items: center;
  margin-bottom: 20px;
}
footer .greenpower .icon {
  /* [disabled]width: 30%; */
  max-width: 100px;
  padding: 10px;
  background-color: #fff;
}
footer .greenpower p {
  padding-left: 10px;
  font-size: 12px;
  width: 250px;
}
footer .copy {
  font-size: 12px;
  text-align: right;
  display: block;
  width: 100%;
}
#sp_foot {
  display: none;
}
@media screen and (max-width:1535px){
  #header .head_logo {
	width: 23%;
	max-width: 380px;
  }
  #navi ul li a {
    font-size: 1.1vw;
    padding: 15px 5px;
  }
}
@media screen and (max-width:1200px) {
  .openbtn {
    display: block;
    top: 5px;
    right: 5px;
  }
  #header #navi {
    display: none;
  }
  #header.panelactive #navi {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    text-align: center;
    transition: flex-start;
    opacity: 1;
    z-index: 3;
    background-color: #fc5af1;
  }
  #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.6rem;
  }
  #header.panelactive #navi ul {
    display: block;
    width: 100%;
    padding-top: 50px;
  }
  #header.panelactive #navi li {
    border-bottom: 1px dotted #fff;
    width: 100%;
    display: block;
  }
  #header.panelactive #navi ul li.twitter, #header.panelactive #navi ul li.insta, #header.panelactive #navi ul li.icon_youtube, #header.panelactive #navi ul li.x {
    display: inline-block;
    border: 0;
    width: auto;
    vertical-align: middle;
  }
  #header.panelactive #navi ul li:last-child {
    border-bottom: 0;
  }
  #header.panelactive.dnone {
    display: flex;
  }
  #header.dnone {
    opacity: 1;
  }
  #header.panelactive, #navi ul {
    display: block;
  }
#header .head_logo {
	max-width: 400px;
	width: 40%;
  }
}
@media screen and (max-width:768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .openbtn {
    display: block;
    top: 0px;
    right: 0px;
  }
  #header {
    height: 50px;
  }
  #header .logo {
    /* [disabled]padding: 5px; */
    /* [disabled]margin: 5px; */
    /* [disabled]width: 80%; */
    /* [disabled]max-width: 400px; */
  }
  #header.panelactive #navi ul li.twitter a {
    width: 60px;
  }
  #top {
    padding-top: 50px;
  }
  #top .data_warap {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 4%;
    width: 85%;
  }
  #top .top_tilte {
    top: 45%;
  }
  .attention_box {
    width: 100%;
    padding: 10px 15px;
    position: relative;
    text-indent: 30px;
    font-size: 13px;
    text-align: left;
  }
  .attention_box::after {
    left: 10px;
    top: 4px;
  }
  section {
    padding: 50px 0;
  }
  .bnr_slide .slide_item {
    display: block;
    margin: 0 auto 10px;
    width: 96%;
  }
  #top_news {
    padding-top: 20px;
  }
  #top_news .lead {
    font-size: 16px;
    margin-bottom: 50px;
  }
  .sec_h3 {
    font-size: 30px;
    padding-left: 20px;
    background-size: auto 70px;
  }
  .sec_h3 span {
    font-size: 14px;
  }
  .sec_h4 {
    font-size: 18px;
  }
  .sec_h5 {
    padding: 5px;
    font-size: 18px;
  }
  .caption li {
    font-size: 13px;
  }
  #outline, #ticket, #faq, #seat, #photo {
    background-attachment: scroll;
    background-position: center bottom;
    background-size: auto auto;
  }
  #highlight, #access, #sponsor {
    background-attachment: scroll;
    background-position: center top;
    background-size: 100% auto;
  }
  #Tshirts .item_wrap, #award .item_wrap {
    flex-wrap: wrap;
  }
  #Tshirts .item_wrap .item_box {
    width: 49%;
    margin-bottom: 20px;
  }
  #award .item_wrap .item_box {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
  }
  #award.outline_box h5 {
    text-align: left;
  }
  #award.outline_box h5.sec_h5 {
    text-align: center;
  }
  .outline_box {
    padding: 10px;
  }
  .outline_box table th {
    padding: 5px;
    width: 20%;
  }
  .outline_box table td {
    padding: 5px;
  }
  #highlight .highlight_list li {
    font-size: 16px;
  }
  #highlight .acc_title:before {
    right: 10px;
  }
  #highlight .acc_title:after {
    right: 10px;
  }
  #seat .seat_wrap .seat_item, #seat .seat_wrap .seat_item:nth-child(3n) {
    margin: 0 0.5% 20px;
    width: 49%;
  }
  #seat .seat_wrap .seat_detail {
    padding: 10px;
  }
  #seat .seat_wrap .seat_item .seat_title .seat_area {
    display: block;
  }
  #seat .seat_wrap .seat_item .seat_title .seat_area p {
    display: block;
  }
  #seat .seat_wrap .seat_item .seat_tag {
    margin: 0 5px 5px 0;
  }
  #access .access_lead {
    font-size: 18px;
    text-align: left;
  }
  #access .access_btn li, #ticket .ticket_nav li {
    width: 100%;
  }
  #access .access_btn li a, #ticket .ticket_nav li a {
    margin-bottom: 10px;
  }
  #ticket .playguide_flex .playguide_wrap {
    width: 100%;
  }
  .faq_box dl {
    padding: 10px;
    margin: 0;
  }
  .faq_box dt {
    font-size: 15px;
  }
  .faq_box dd {
    font-size: 14px;
  }
  .faq_box dd.acc_txt {
    font-size: 14px;
    padding: 10px;
  }
  .faq_box dt.acc_title {
    padding: 10px 20px 10px 35px;
  }
  .faq_box dt span {
    font-size: 14px;
    margin-left: -30px;
    width: 27px;
  }
  .faq_box .acc_title:before {
    right: 5px;
  }
  .faq_box .acc_title:after {
    right: 5px;
  }
  #faq .seat_list th {
    padding: 3px;
  }
  #faq .seat_list th:first-child {
    width: 40px;
  }
  .faq_box .attention dt {
    padding: 10px 10px 10px 30px;
  }
  #faq .seat_list td {
    padding: 3px;
    font-size: 12px;
  }
  #sponsor .logo_flex .logo_item {
    width: 45%;
    margin-bottom: 30px;
  }
  #sponsor .logo_flex .logo_item figcaption {
    font-size: 13px;
  }
  #sponsor .logo_item .topjapan {
    padding: 15px 0;
    font-size: 15px;
  }
  .pagetop {
    bottom: 13%;
  }
  footer {
    padding-bottom: 60px;
  }
  footer .foot_contact {
    width: 100%;
  }
  footer .greenpower {
    width: 100%;
  }
  footer .greenpower .icon {
    max-width: 70px;
  }
  footer .copy {
    text-align: center;
  }
  #sp_foot {
    display: block;
    width: 100%;
    position: fixed;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: #090426;
  }
  #sp_foot ul {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    border-top: 1px solid #7782A8;
  }
  #sp_foot ul li {
    width: 25%;
    font-size: 11px;
    border-right: 1px solid #7782A8;
  }
  #sp_foot ul li:last-child {
    border-right-width: 0;
  }
  #sp_foot ul li a {
    display: block;
    padding: 50px 3px 3px;
    text-align: center;
  }
  #sp_foot ul li:first-child a {
    background-image: url(../images/icon_access.svg);
    background-repeat: no-repeat;
    background-position: center 28%;
    background-size: auto 50%;
  }
  #sp_foot ul li:nth-child(2) a {
    background-image: url(../images/icon_seat.svg);
    background-repeat: no-repeat;
    background-position: center 28%;
    background-size: auto 50%;
  }
  #sp_foot ul li:nth-child(3) a {
    background-image: url(../images/icon_ticket.svg);
    background-repeat: no-repeat;
    background-position: center 40%;
    background-size: auto 30%;
  }
  #sp_foot ul li:last-child a {
    background-image: url(../images/icon_qa.svg);
    background-repeat: no-repeat;
    background-position: center 33%;
    background-size: auto 48%;
  }
  #photo .flow_list li h5 {
    font-size: 1.2rem;
  }
  #photo .flow_list li a {
    font-size: 1.2rem;
  }
  #photo .contest_2 {
    margin-bottom: 0px;
  }
  #photo .contest_2 figure {
    width: 100%;
    margin-bottom: 20px;
  }
  .fancybox-content.store_wrap {
    min-width: 90%;
  }
  .vendors_wrap table th.td01, .vendors_wrap table th.td02, .vendors_wrap table th.td03, .vendors_wrap table th.td04 {
    display: none;
  }
  .vendors_wrap table td {
    border: 0;
    display: block;
    width: 100%;
  }
  .vendors_wrap table .td01 {
    display: inline-block;
    width: auto;
    background-color: #005af1;
    padding: 5px 13px;
    margin: 10px 5px 5px;
  }
  .vendors_wrap table .td02,
	.vendors_wrap table.yatai .td02 {
    width: auto;
    text-align: left;
    display: inline-block;
    padding: 5px;
    font-weight: bold;
  }
  .vendors_wrap table .td03 {
    position: relative;
  }
  .vendors_wrap table .td03::before {
    content: "主な販売品目：";
  }
  .vendors_wrap table .td04 {
    text-align: center
  }
  .vendors_wrap .btn_pr {
    width: 90%;
    max-width: 400px;
    margin-bottom: 10px;
  }
  .store_wrap h4 {
    font-size: 18px;
  }
  .store_wrap .comment {
    font-size: 14px;
  }
}
@media screen and (max-width:480px) {
  #header .head_logo {
	max-width: 400px;
	width: 80%;
  }
  #header.panelactive #navi li a {
    font-size: 1.2rem;
  }
  h5 {
    font-size: 16px;
  }
  .outline_box table th {
    display: block;
    width: 100%;
    padding: 10px 5px 0;
    text-align: left;
    border-bottom-width: 0;
  }
  .outline_box table td {
    display: block;
    width: 100%;
    padding-bottom: 10px;
  }
  footer .foot_contact ul li {
    width: 100%;
  }
  #seat .seat_wrap .seat_item, #seat .seat_wrap .seat_item:nth-child(3n) {
    width: 100%;
  }
  #seat .seat_wrap .seat_item .seat_title .seat_area {}
  #seat .seat_wrap .seat_item .seat_title .seat_area p {
    display: inline-block;
  }
  #ticket .ticket_wrap {
    font-size: 14px;
  }
  #ticket .ticket_wrap dl {
    flex-wrap: wrap;
  }
  #ticket .ticket_wrap dt {
    width: auto;
    padding: 0 10px;
    margin-bottom: 10px;
  }
  #ticket .ticket_wrap dd {
    width: 100%;
  }
  .faq_box .attention dt span {
    vertical-align: bottom;
  }
  #faq .seat_list th {
    font-size: 2.5vw;
  }
  #ticket .playguide_wrap .btn {
    margin: 5px auto;
    display: block;
    width: 80%;
  }
.yatai_list td, .yatai_list th {
	display: block;
	width: 100%;
}
	.yatai_list th{
		border: 0;
		padding-bottom: 0;
	}
}
