@charset "UTF-8";
/* CSS Document */
/***********************************************
***  Reset
***********************************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after {
  content: "";
  content: none;
}
q:before, q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  padding: 0;
}
button:hover {
  cursor: pointer;
}
button:focus, button:active {
  background: transparent;
  outline: none;
  box-shadow: none;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;  /* 横スクロール抑制 */
}
html {
  box-sizing: border-box;
  font-size: 62.5%;
  height: 100%;
  min-height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
body {
  width: 100%;
  color: #fff;
  font-family: "游ゴシック", YuGothic, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', Meiryo, sans-serif;
  line-height: 1;
  font-weight: 500;
  background-color: #fff;
}
.cf:after {
  content: "";
  display: block;
  clear: both;
}
.cf {
  *zoom: 1;
}
br.sp {
  display: none;
}
br.pc {
  display: none;
}
span.ib {
  display: inline-block;
}
/***********************************************
***  modal
***********************************************/
/* modal */
.modal1, .modal2, .modal3, .modal4 {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
      height: 100vh;
  overflow: auto;
  background: #e60013 url(../img/top/contents/modal-bg2.png);
  background-size: auto 100%;
  background-position: top left;
  align-items: center;
}
.modal-content {
  position: relative;
    max-height: 95%;
    overflow-y: auto;
  /*
  background-color: #000000;
  border: 1px solid #e60013;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
*/
  padding: 30px 20px 20px;
  margin: 0 auto;
  width: calc(100% - 40px);
  max-width: 1000px;
  animation-name: animatetop;
  animation-duration: 0.4s;
  text-align: center;
}
.modal-content h3 {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #fff;
}
.modal-content p {
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 800;
  color: #fff;
    text-shadow: 3px 3px 3px #000;
}
.modal-content p.top-contents-modal-copyright{
  font-size: 10px;
  text-align: center;
  margin: 10px auto;
  font-weight: 800;
  color: #fff;
}
.top-contents-modal-image {
  max-width: 460px;
  display: block;
  margin: 0 auto;
  border: 2px solid #aa010f;
  box-shadow: 4px 4px 4px #04040470;
}
.top-contents-modal-image.thin {
  max-width: 280px;
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.close {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #e60013;
  font-size: 80px;
  font-weight: bold;
}
.close:hover, .close:focus {
  color: #AA010F;
  text-decoration: none;
  cursor: pointer;
}
@media only screen and (max-width:600px) {
  .modal1, .modal2, .modal3, .modal4 {
    background: #e60013 url(../img/top/contents/modal-bg-sp.png);
    background-size: auto 100%;
    background-position: top left;
  }
  .modal-content {
        padding: 60px 20px 120px;
    padding-bottom: 80px;
  }
  .close {
    top: 0;
    right: 10px;
    font-size: 50px;
  }
  .modal-content h3 {
    font-size: 20px;
    text-align: left;
  }
  .modal-content p {
    font-size: 14px;
    text-align: left;
  }
}
/***********************************************
***  common
***********************************************/
.pagetop {
  height: 130px;
  width: 200px;
  position: fixed;
  right: 30px;
  bottom: 50px;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99;
  cursor: pointer;
}
.pagetop:before {
  position: absolute;
  content: "";
  /*background: url(../img/common/icon-pagetop.svg);*/
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 80px;
  height: 50px;
  top: -50px;
  left: 0;
}
.pagetop:hover:before {
  transition: transform 1s;
  transform: rotateY(360deg);
}
.ib {
  display: inline-block;
}
main {
  /*background: url(./main-bg.jpg);*/
  background-repeat: repeat-y;
  background-size: 100% auto;
  overflow-x: hidden;
  width: 100%;
   background-attachment: fixed; /* ← 追加 */
}
.wrapper-default {
  position: relative;
  margin-bottom: 100px;
  margin-top: -100px;
  padding-top: 100px;
}

@media only screen and (max-width:600px) {
.wrapper-default {
    position: relative;
    margin-bottom: 50px;
    margin-top: -100px;
    padding-top: 100px;
}
}

.arrow1 {
  animation: arrowRight 3s linear 1s infinite;
}
.arrow2 {
  animation: arrowRight 3s linear 0s infinite;
}
.arrow3 {
  animation: arrowRight 3s linear 2s infinite;
}
@keyframes arrowRight {
  0% {
    right: -20px;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    right: -70px;
  }
}
.btn-default {
  transition: .3s;
  width: 600px;
  padding: 10px;
  border-radius: 100px;
  margin: 0;
  text-align: center;
  outline: 1px solid;
  outline-color: #fff;
  outline-offset: -6px;
  position: relative;
  background:black ;
  background-size: 400%;
  box-sizing: border-box;
  margin: 0 auto;
}

@media only screen and (max-width:800px) {
.btn-default {
    transition: .3s;
    width: 100%;
    padding: 10px;
    border-radius: 100px;
    margin: 0;
    text-align: center;
    outline: 1px solid;
    outline-color: #fff;
    outline-offset: -6px;
    position: relative;
    background: black;
    background-size: 400%;
    box-sizing: border-box;
    margin: 0 auto;
}
}

.btn-default a {
  text-decoration: none;
  color: #fff;
  font-size: 26px;
  line-height: 50px;
  font-weight: 800;
  width: 100%;
  height: 100%;
  display: block;
  padding: 6px 0 0;
}
.btn-default a small {
  font-size: 0.5em;
}
.btn-default a:before {

  line-height: 1;
  position: absolute;
  right: 10px;
  top:30px;
  font-size: 20px;
  padding: 9px 11px;
  border-radius: 60px;
  z-index: 2;
}
.btn-default:hover {
  animation: animate 8s linear infinite;
  animate: 0.5s;
  transition: 0.5s;
}
@keyframes animate {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 400%;
  }
}
.btn-default:before {
  animate: 0.5s;
  transition: 0.5s;
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
  background: linear-gradient(90deg, #F80202, #faa21c, #ffeb3b, #faa21c, #F80202);
  background-size: 400%;
  border-radius: 40px;
  opacity: 0;
}
.btn-default:hover:before {
  filter: blur(20px);
  opacity: 1;
  animation: animate 8s linear infinite;
  animate: 0.5s;
  transition: 0.5s;
}
.btn-default.purple {
  background: linear-gradient(90deg, #B101F8, #0038F3, #61F9FF, #0038F3, #B101F8);
  background-size: 400%;
  box-sizing: border-box;
  margin: 0 auto;
}

.btn-default.purple:before {
  background: linear-gradient(90deg, #B101F8, #0038F3, #61F9FF, #0038F3, #B101F8);
}
.link-default{
    color:#000;
    text-decoration: none;
    position: relative;
    z-index: 2;
}
.link-default:hover{
    color:#fff;
}
.link-default:before{
    content:"";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color:#e60013;
}

.link-default:after{
    content:"";
    position: absolute;
    width: 0;
    height: 1em;
    bottom: 0;
    left: 0;
    background-color:#e60013;
    z-index: -1;
    transition: .3s;
}
.link-default:hover:after{
    width: 100%;
}
@media only screen and (max-width:600px) {
  .top-ticket-btn-copy {
    margin-top: 20px;
    font-size: 18px;
  }
  .top-ticket-btn-copy span {
    top: 4px;
  }
  .btn-default {
    width: 100%;
  }
  .btn-default a {
    font-size: 15px;
  }
}
.section-default {
  position: relative;
  z-index: 50;
}
.heading-default {
  transform: translateX(-100px);
  opacity: 0;
  width: 20%;
  margin-left: 1%;
}
.heading-default img {
  width: 100%;
  height: auto;
}
.frame-default {
  background-color: #000;
  padding: 40px;
  width: 70%;
  margin-left: 15%;
  opacity: 0;
  transform: translateX(100%);
}

.frame-default1 {
  background-color: #000;
  padding: 40px;
  width: 70%;
  margin-left: 15%;
  opacity: 0;
  transform: translateX(100%);
}

@media only screen and (max-width:600px) {

.frame-default {
  background-color: #000;
  padding: 10px;
  width: 70%;
  margin-left: 15%;
  opacity: 0;
  transform: translateX(100%);
}

.frame-default1 {
    background-color: #000;
    padding: 10px;
    width: 90%;
    margin-left: 5%;
    opacity: 0;
    transform: translateX(100%);
}
}

.bg-line-default-odd {
  opacity: 1;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 200%;
  width: 150%;
  height: 400px;
  transform: rotate(-10deg);
  margin-top: 100px;
}
.bg-line-default-even {
  opacity: 1;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 200%;
  width: 150%;
  height: 400px;
  transform: rotate(10deg);
  margin-top: 100px;
}
.frame-chara {
  transform: translateY(-400px);
  opacity: 0;
  top: 300px;
}
.frame-chara-odd {
  width: 300px;
  height: 500px;
  position: absolute;
  right: 0;
  z-index: 51;
}
.frame-chara-even {
  width: 300px;
  height: 500px;
  position: absolute;
  left: 0;
  z-index: 10;
}
.top-about-chara {
  width: 300px;
  height: 700px;
}
.top-contents-chara {
  width: 200px;
  height: 700px;
}
.top-ticket-chara {
  width: 400px;
  height: 600px;
  right: -40px;
}
.top-goods-chara {
  width: 650px;
  height: 700px;
  left: -140px;
}
.section-default-even .heading-default {
  /*margin-left: 79%;*/
  transform: translateX(100px);
}
.section-default-even .frame-default {
  */margin-left: 0;*/
  transform: translateX(-100px);
}
.notice-lists {
  font-size: 14px;
  line-height: 1.5;
  margin-left: 2em;
  color: #fff;
  letter-spacing: 0.08em;
}

@media only screen and (max-width:600px) {
.notice-lists {
  font-size: 12px;
  line-height: 1.5;
  margin-left: 2em;
  color: #fff;
  letter-spacing: 0.08em;
}
}

.notice-list {
  position: relative;
  content: "";
  margin-bottom: 0.3em;
}
.notice-list:last-child {
  margin-bottom: 0;
}
.notice-list:before {
  position: absolute;
  content: "※";
  left: -1.5em;
}
@media only screen and (max-width:1600px) {
  .top-about-chara {
    width: 200px;
    height: 600px;
    right: 0px;
  }
  .top-contents-chara {
    width: 130px;
    height: 500px;
    left: 0px;
  }
  .top-ticket-chara {
    width: 400px;
    height: 500px;
    right: -130px;
  }
  .top-goods-chara {
    width: 550px;
    height: 600px;
    left: -140px;
  }
}
@media only screen and (max-width:1200px) {
  .heading-default {
    width: 25%;
    margin-left: 1%;
  }
  .section-default-even .heading-default {
    /*margin-left: 74%;*/
    transform: translateX(100px);
  }
  .frame-default {
    z-index: 20;
    position: relative;
  }
  .top-contents-chara {
    width: 260px;
    left: -20px;
    margin-top: -100px;
  }
  .top-ticket-chara {
    width: 300px;
    right: -100px;
    margin-top: -120px;
    ;
  }
  .top-goods-chara {
    margin-top: -120px;
    ;
    width: 500px;
    height: 600px;
    left: -140px;
  }
}
@media only screen and (max-width:1000px) {
  .pagetop {
    height: 100px;
    width: 50px;
    right: 15px;
    bottom: 15px;
  }
  .pagetop:before {
    width: 50px;
    height: 25px;
    top: -25px;
    left: 0;
  }
}
@media only screen and (max-width:800px) {
  .heading-default {
    width: 40%;
    margin-left: 1%;
  }
  .section-default-even .heading-default {
    margin-left: 0%;
  }
}
@media only screen and (max-width:600px) {
  .pagetop {
    height: 60px;
    width: 100px;
    right: 10px;
    bottom: 30px;
  }
  .pagetop:before {
    width: 40px;
    height: 20px;
    top: -30px;
    left: 0;
  }
    .frame-default {
        width: 90%;
        margin-left: 5%;
    }

  .top-about-chara {
    width: 300px;
    height: 600px;
    right: -50px;
    margin-top: 20px;
  }
  .top-contents-chara {
    width: 230px;
    height: 500px;
    left: -70px;
    margin-top: -70px;
  }
  .top-ticket-chara {
    width: 260px;
    height: 500px;
    right: -100px;
    margin-top: -80px;
  }
  .top-goods-chara {
    width: 450px;
    height: 600px;
    left: -180px;
  }
}
/***********************************************
***  Header
***********************************************/
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #000;
    box-shadow: 2px 2px 2px rgb(0 0 0 / 20%);
    padding: 10px 1%;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}
.header-logo {
  width: 100px;
}
.global-navigation {}
/*
.global-navigation:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
}
*/
#global-navigation-mob-btn-check {
  display: none;
}
.global-navigation-lists {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: flex-end;
  position: relative;
  font-family: "address-sans-pro", sans-serif;
  font-size: 25px;
  color: #e60013;
  font-weight: 800;
  font-style: normal;
}
.global-navigation-list {
  margin-left: 20px;
  display: inline-block;
  position: relative;
  padding: 0 5px;
}
.global-navigation-list a {
  text-decoration: none;
  color: #e6b422;
  line-height: 1;
  padding: 0;
  margin: 0;
  display: block;
  height: 26px;
}
.global-navigation-list:before {
  background: #e60013;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
  z-index: -1;
}
.global-navigation-list:hover a {
  mix-blend-mode: hard-light;
  color: #fff;
}
.global-navigation-list:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
@media only screen and (max-width:1200px) {}
@media only screen and (max-width: 800px) {
  .global-navigation-mob-btn {
    position: fixed;
    top: 5px;
    right: 5px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background: #fff;
  }
  .global-navigation-mob-btn span, .global-navigation-mob-btn span:before, .global-navigation-mob-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 35px;
    border-radius: 3px;
    background-color: #e60013;
    position: absolute;
  }
  .global-navigation-mob-btn span:before {
    bottom: 8px;
  }
  .global-navigation-mob-btn span:after {
    top: 8px;
  }
  #global-navigation-mob-btn-check:checked ~ .global-navigation-mob-btn span {
    background-color: rgba(255, 255, 255, 0);
  }
  #global-navigation-mob-btn-check:checked ~ .global-navigation-mob-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #global-navigation-mob-btn-check:checked ~ .global-navigation-mob-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  #global-navigation-mob-btn-check:checked ~ #global-navigation-mob-close {
    display: block;
    opacity: .5;
  }
  .global-navigation {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: -200%;
    z-index: 999;
    background-color: rgba(230, 0, 19, 0.8);
    transition: all 0.5s;
    flex-direction: column;
    background-image: url(../img/common/header/menu-sp-bg.png);
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
  }
  .global-navigation-lists {
    width: 100%;
    padding: 0;
    flex-direction: column;
    font-size: 8vw;
    justify-content: flex-start;
    margin-top: 100px;
  }
  .global-navigation-lists:before, .global-navigation-lists:after {
    display: none;
  }
  .global-navigation-list a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    text-shadow: -5px 5px #e60013;
    padding: 10px;
    height: inherit;
    position: relative;
  }
  #global-navigation-mob-btn-check:checked ~ .global-navigation {
    right: 0;
  }
  .global-navigation-logo {
    order: 1;
    padding: 20px 0;
    margin: 0 auto;
    width: 36%;
  }
}
@media only screen and (max-width: 600px) {
  .header-logo-mob {
    margin: 6px auto;
  }
  .global-navigation-mob-btn {
    height: 50px;
    width: 50px;
  }
  .global-navigation-mob-btn span, .global-navigation-mob-btn span:before, .global-navigation-mob-btn span:after {
    height: 2px;
    width: 30px;
    border-radius: 1px;
  }
  .global-navigation-mob-btn span:before {
    bottom: 7px;
  }
  .global-navigation-mob-btn span:after {
    top: 7px;
  }
}
@media only screen and (max-width: 600px) {
  .header {
    height: 60px;
  }
  .header-logo {
    width: 80px;
  }
}
/***********************************************
***  Topmain
***********************************************/
.topmain-logo {
  display: none;
}
.topmain {
  /*overflow-x: hidden;*/
}
.topmain-image {
  position: relative;
  z-index: 1;
  margin-top: 80px;
  box-shadow: 2px 2px 2px rgb(0 0 0 / 20%);
  object-fit: cover;
  -webkit-animation: contentScale 2.6s forwards;
  animation: contentScale 2.6s forwards;
}
.topmain-image img {
  width: 100%;
  z-index: 0;
}
.topmain-lead {
  padding: 0px 0;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
}
@keyframes contentScale {
  0% {
    width: 130%;
    object-position: 50% 50%;
    margin-left: -15%;
  }
  100% {
    width: 100%;
  }
}
@media only screen and (max-width: 1200px) {
  .topmain-lead {
    /*max-width: 1000px;*/
  }
}
@media only screen and (max-width: 800px) {
  .topmain {}
  /*
  .topmain-logo {
    display: block;
    width: 40%;
    padding: 20px 0;
    max-width: 500px;
    margin: 0 auto;
  }
*/
  .topmain-lead {
    padding: 0px 0;
  }
  .topmain-image {
    width: 100%;
    text-align: center;
    object-fit: cover;
    -webkit-animation: contentScale 2.6s forwards;
    animation: contentScale 2.6s forwards;
  }
  .topmain img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 600px) {
  .topmain-image {
    margin-top: 60px;
  }
  .topmain-lead {
    padding: 0px 0;
  }
}
/***********************************************
***  Info
***********************************************/



}

.top-info-wrapper {
  display: flex;
  max-width: 70%;
  margin: 0 auto 120px;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.top-info-section {
  width: 70%;
  margin-left: 15%;
  margin-bottom: 5%;  
}

@media only screen and (max-width:600px) {
.top-info-section {
    width: 90%;
    margin-left: 5%;
    margin-bottom: 5%;
}
}


.top-info-heading {
  position: relative;
  margin-bottom: 10px;
}
.top-info-heading:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  background-color: #000;
  left: 0;
  bottom: 0;
}
.top-info-heading img {
  height: 60px;
  width: auto;
}
.top-news-lists-container {
  width: 100%;
  background: #000;
  border-radius: 10px;
  font-size: 14px;
  color: #fff;
  font-weight: 800;
  height: 200px;
  overflow-y: scroll;
  padding: 40px;
  margin-left: 0%;
}

@media only screen and (max-width:600px) {

.top-news-lists-container {
    width: 100%;
    background: #000;
    border-radius: 10px;
    font-size: 14px;
    color: #fff;
    font-weight: 800;
    height: 200px;
    overflow-y: scroll;
    padding: 10px;
    margin-left: 0%;
}

}

.top-news-list-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #7d4798;
}
.top-news-lists dt {
  font-family: "address-sans-pro", sans-serif;
  font-size: 16px;
  color: #e6b422;
  font-weight: 800;
  font-style: normal;
  margin-bottom: 5px;
}
.top-news-lists dd a{
    color:#fff;
    text-decoration: none;
    position: relative;
    z-index: 2;
}
.top-news-lists dd a:before{
    content:"";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color:#e60013;
}

.top-news-lists dd a:after{
    content:"";
    position: absolute;
    width: 0;
    height: 1em;
    bottom: 0;
    left: 0;
    background-color:#e60013;
    z-index: -1;
    transition: .3s;
}
.top-news-lists dd a:hover:after{
    width: 100%;
}
.top-x-btn {
  max-width: 520px;
  position: relative;
  transition: 0.2s ease;
  margin-top: 60px;
}
.top-x-btn:before {
  position: absolute;
  content: "";
  background-image: url(../img/top/info/x-btn-bg.png);
  width: 93px;
  height: 100%;
  left: 0;
  bottom: 0;
  background-size: auto 100%;
  background-repeat: no-repeat;
  animation: infinity-scroll-right 1s infinite linear 2s both;
  z-index: -1;
  opacity: 0;
}
.top-x-btn:after {
  position: absolute;
  content: "";
  background-image: url(../img/top/info/x-btn-bg.png);
  width: 93px;
  height: 100%;
  left: 0;
  bottom: 0;
  background-size: auto 100%;
  background-repeat: no-repeat;
  animation: infinity-scroll-right 1s infinite linear 0s both;
  z-index: -1;
  opacity: 0;
}
.top-x-btn:hover {
  transform: translateX(20px);
}
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-30%);
    opacity: 0;
  }
  to {
    transform: translateX(60%);
    opacity: 1;
  }
}
@media only screen and (max-width:1600px) {
  .top-info-wrapper {

  }
}
@media only screen and (max-width:800px) {
  .top-info-wrapper {
    flex-direction: column;
    width: 100%;
  }
  .top-info-section {
    /*width: 100%;*/
  }
  .top-news-section {
    margin-bottom: 40px;
  }
}
/***********************************************
***  About
***********************************************/
.top-about-lists {
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #fff;
  font-weight: 800;
  max-width: 100%;
}
.top-about-list-item {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e60013;
  display: flex;
}
.top-about-list-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.top-about-list-item .small {
  font-size: 0.8em;
}
.top-about-list-item dt {
  width: 8em;
}
.top-about-list-item dd {
  width: calc(100% - 8em);
}
.top-about-list-item dd a {
  color: #fff;
  text-decoration-color: #e60013;
}
.top-about-story-frame {
  border: 1px solid #e60013;
      background-image: repeating-linear-gradient(0deg, #270001, #270001 5px, transparent 5px, transparent 10px);
  position: relative;
  padding: 10px 20px;
  margin-top: 30px;
  max-width: 80%;
  display: flex;
  justify-content: space-around;
}
.top-about-story-frame:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #e60013 transparent transparent transparent;
  border-width: 20px 20px 0px 0px;
  left: 0;
  top: 0;
}
.top-about-story-frame:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #ee2025 transparent;
  border-width: 0px 0px 20px 20px;
  right: 0;
  bottom: 0;
}
.top-about-story-heading {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #fff;
  font-weight: 800;
}
.top-about-story-text {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #fff;
  font-weight: 800;
}
.top-about-story-image {
  mix-blend-mode: hard-light;
}
.top-about-story-info {
  width: 61%;
  margin-right: 3%;
}
.top-about-comics {
  width: 35%;
  min-width: 300px;
  transition: .3s;
}
.top-about-comics:hover {
  opacity: 0.7;
}
@media only screen and (max-width:1200px) {
  .top-about-lists {
    max-width: 100%;
  }
  .top-about-story-frame {
    max-width: 100%;
  }
}
@media only screen and (max-width:800px) {
  .top-about-lists {
    font-size: 18px;
  }
  .top-about-story-heading {
    font-size: 14px;
  }
  .top-about-story-text {
    font-size: 14px;
  }
  .top-about-story-frame {
    flex-direction: column;
  }
  .top-about-story-info {
    width: 100%;
    margin-right: 0;
  }
  .top-about-comics {
    width: 100%;
    min-width: inherit;
  }
}
@media only screen and (max-width:600px) {
  .top-about-lists {
    font-size: 13px;
  }
  .top-about-list-item {
    flex-direction: column;
    border-bottom: none;
  }
  .top-about-list-item dd {
    width: 100%;
  }
  .top-about-list-item dt {
    background-color: #e60013;
    width: 100%;
    padding: 0 10px;
  }
}
/***********************************************
***  Contents
***********************************************/
.section-default-even .heading-default.top-contents-heading {
  width: 30%;
  margin-left: 69%;
}
.top-contents-frame {
  text-align: center;
}
.top-contents-lead-container{
  margin-bottom: 30px;
}

.top-contents-lead-gaiyo {
    background-color: #000;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    display: inline;
    color: #e6b422;
    font-weight: 800;
    text-align: right;
}

.top-contents-lead {
  background-color: #000;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  display: inline;
  color: #e6b422;
  font-weight: 800;
  text-align: right;
}
.top-contents-map {
  display: inline-block;
  max-width: 80%;
  margin: auto;
  overflow: hidden;
  background: url(../img/top/contents/event-map-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.top-contents-map svg {
  width: 100%;
  height: auto;
}
@media only screen and (max-width:1200px) {
  .top-contents-map {
    max-width: 100%;
  }
  .section-default-even .heading-default.top-contents-heading {
    width: 37.5%;
    margin-left: 61.5%;
  }
}
@media only screen and (max-width:800px) {
  .section-default-even .heading-default.top-contents-heading {
    width: 62%;
    margin-left: 37%;
  }
  .top-contents-frame.frame-default {
    padding: 40px 10px;
  }
    .top-contents-lead {
  font-size: 18px;
    }
}
/***********************************************
***  Ticket
***********************************************/
.top-ticket-lead-container{
    max-width:100%;
  margin-bottom: 30px;
}
.top-ticket-lead {
  background-color: #000;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  display: inline;
  color: #e6b422;
  font-weight: 800;
}
.top-ticket-price-container {
  max-width: 100%;
}
.top-ticket-table {
  color: #fff;
  font-size: 20px;
  width: 100%;
  border-collapse: collapse;
  border: solid 1px #faa21c;
  margin-bottom: 10px;
}
.top-ticket-table-thead {
  background-color: rgba(243, 152, 0, 0.20);
}
.top-ticket-table-row, .top-ticket-table-header, .top-ticket-table-data {
  border: solid 1px #faa21c;
  text-align: center;
  padding: 20px;
}
.top-ticket-table-row-header .small {
  font-size: 0.8em;
}
.top-ticket-goods-frame {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border: 1px solid #faa21c;
  background-image: repeating-linear-gradient(0deg, #ff82001a, #ff82001a 5px, transparent 5px, transparent 10px);
  width: 100%;
  padding: 20px 20px;
  margin-top: 30px;
  position: relative;
}

.top-ticket-caution-frame {
  justify-content: space-around;
  align-items: center;
  border: 1px solid #faa21c;
background-image: repeating-linear-gradient(0deg, #ff82001a, #ff82001a 5px, transparent 5px, transparent 10px);
  width: 100%;
  padding: 30px 30px;
  margin-top: 30px;
  position: relative;
  color:white;
}

@media only screen and (max-width:600px) {
.top-ticket-caution-frame {
    justify-content: space-around;
    align-items: center;
    border: 1px solid #faa21c;
    background-image: repeating-linear-gradient(0deg, #ff82001a, #ff82001a 5px, transparent 5px, transparent 10px);
    width: 100%;
    padding: 10px 10px;
    margin-top: 10px;
    position: relative;
    color: white;
}
}


.top-ticket-goods-frame:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #faa21c transparent transparent transparent;
  border-width: 20px 20px 0px 0px;
  left: 0;
  top: 0;
}

.top-caution-goods-frame:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #faa21c transparent transparent transparent;
    border-width: 20px 20px 0px 0px;
    left: 0;
    top: 0;
}

.top-ticket-caution-frame:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #faa21c transparent transparent transparent;
    border-width: 20px 20px 0px 0px;
    left: 0;
    top: 0;
}

.top-ticket-caution-frame:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #faa21c transparent;
  border-width: 0px 0px 20px 20px;
  right: 0;
  bottom: 0;
}

.top-ticket-goods-frame:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #faa21c transparent;
  border-width: 0px 0px 20px 20px;
  right: 0;
  bottom: 0;
}
.top-ticket-goods-text {
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #fff;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
}
.top-ticket-goods-text span.orange {
  font-size: 1.2em;
  color: #faa21c;
  font-weight: 800;
}
.top-ticket-goods-image {
  max-width: 260px;
}
.top-ticket-btn-copy {
  margin-top: 30px;
  font-size: 26px;
  color: #fff;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.08em;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}
.top-ticket-btn-copy span {
  position: absolute;
  color: #faa21c;
  right: -20px;
  top: 10px;
  opacity: 0;
  font-size: 14px;
}
@media only screen and (max-width:600px) {
  .top-ticket-btn-copy {
    margin-top: 20px;
    font-size: 18px;
  }
  .top-ticket-btn-copy span {
    top: 4px;
  }
}
@media only screen and (max-width:1760px) {
  .top-ticket-goods-text {
    text-align: left;
  }
  .top-ticket-goods-text .ib {
    display: inline;
  }
  .top-ticket-goods-text br {
    display: none;
  }
  .top-ticket-goods-info {
    width: 70%;
  }
  .top-ticket-goods-image {
    width: 30%;
  }
}
@media only screen and (max-width:1200px) {
  .top-ticket-price-container {
    max-width: 100%;
  }
  .top-ticket-goods-frame {
    width: 100%;
  }
    .top-ticket-lead-container{
    max-width:100%;
}
}
@media only screen and (max-width:800px) {
  .top-ticket-lead {
    font-size: 18px;
  }
  .top-ticket-table {
    font-size: 16px;
  }
  .top-ticket-table-thead {
    background-color: rgba(243, 152, 0, 0.20);
  }
  .top-ticket-table-row, .top-ticket-table-header, .top-ticket-table-data {
    border: none;
  }
  th.top-ticket-table-header {
    width: 25%;
    padding: 5px;
    border: solid 1px #faa21c;
  }
  .top-ticket-table-data {
    width: 100%;
    padding: 20px 5px;
    border: solid 1px #faa21c;
  }
  .top-ticket-table-col-header-cat1 th.top-ticket-table-header {
    width: 100%;
    padding: 5px;
  }
  .top-ticket-table-row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 0;
  }
  th.top-ticket-table-row-header {
    width: 100%;
    background-color: rgba(243, 152, 0, 0.7);
    padding: 5px;
    font-weight: 800;
  }
  .top-ticket-table-header.type {
    display: none;
  }
  .top-ticket-goods-text {
    font-size: 16px;
  }
  .top-ticket-goods-frame {
    padding: 10px 10px;
    flex-direction: column;
  }
  .top-ticket-goods-info {
    width: 100%;
  }
  .top-ticket-goods-image {
    width: 100%;
    max-width: 180px;
  }
}
@media only screen and (max-width:600px) {
  .top-ticket-table {
    font-size: 14px;
  }
}
/***********************************************
***  Goods
***********************************************/
.top-goods-frame {
  text-align: left;
}
.top-goods-lead-container{
  margin-bottom: 30px;
}
.top-goods-lead {
  background-color: #7d4798;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  display: inline;
  color: #000;
  font-weight: 800;
  text-align: right;
}

.top-caution-lead {
  background-color: #000;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  display: inline;
  color: #e6b422;
  font-weight: 800;
  text-align: right;
  font-size:15px;
}

.top-goods-image-container {
  max-width: 65%;
  margin-left: 35%;
}
.top-goods-image-container img {
  width: 100%;
  height: auto;
}
.top-goods-btn-container{
    max-width: 65%;
    margin-left: 35%;
        text-align: left;
    }
.top-goods-btn-copy {
    margin-top: 30px;
    font-size: 26px;
    color: #fff;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 0.08em;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}
.top-goods-btn-copy span {
    position: absolute;
    color: #b101f8;
    right: -20px;
    top: 10px;
    opacity: 0;
    font-size: 14px;
}
.top-goods-btn-container .btn-default a{
    line-height: 2;
    padding: 0;
}
.top-goods-btn-container .btn-default a:before {
       padding: 16px 11px;
}
@media only screen and (max-width:1200px) {
  .top-goods-image-container {
    max-width: 100%;
    margin-left: 0;
  }
    .top-goods-btn-container{
    max-width: 100%;
    margin-left: 0;
    }
}
@media only screen and (max-width:800px) {
  .top-goods-lead {
    font-size: 18px;
  }
}
@media only screen and (max-width:600px) {
  .top-goods-btn-copy {
    margin-top: 20px;
    font-size: 18px;
  }
  .top-goods-btn-copy span {
    top: 4px;
  }
    .top-goods-btn-container .btn-default a:before {
    padding: 10px 11px;
}
}
.footer {
  text-align: center;
  padding: 40px 0;
  background-color: #000;
}
.footer-logo {
  width: 300px;
  margin: 0 auto 40px;
}
.footer-link-lists {
  display: flex;
  max-width: 1000px;
  justify-content: space-around;
  margin: 0 auto 40px;
}
.footer-link-list {
  width: 32%;
  position: relative;
}
.footer-link-list:hover {
  opacity: 0.7;
}
.footer-link-list a {
  text-decoration: none;
  margin: 0;
  display: block;
  height: 100%;
}
.footer-copy {
  font-size: 12px;
  color:white;
}
@media only screen and (max-width:1000px) {
  .footer-link-lists {
    width: 96%;
  }
}
@media only screen and (max-width:800px) {
  .footer-logo {
    width: 60%;
    max-width: 360px;
  }
  .footer-link-lists {
    width: 90%;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }
  .footer-link-list {
    width: 100%;
    max-width: 400px;
  }
  .footer-link-list a {
    font-size: 16px;
    padding: 10px 20px 0px;
  }
}
@media only screen and (max-width:600px) {
  .footer-link-lists {
    height: inherit;
    max-width: 360px;
  }
}