@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Staatliches&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Changa:wght@200..800&display=swap');
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  background: linear-gradient(152deg, #000, #700533);
  background-size: 400% 400%;
  -webkit-animation: AnimationName 9s ease infinite;
  -moz-animation: AnimationName 9s ease infinite;
  animation: AnimationName 9s ease infinite;
}

.css-selector {
  
}

@-webkit-keyframes AnimationName {
  0%{background-position:13% 0%}
  50%{background-position:88% 100%}
  100%{background-position:13% 0%}
}
@-moz-keyframes AnimationName {
  0%{background-position:13% 0%}
  50%{background-position:88% 100%}
  100%{background-position:13% 0%}
}
@keyframes AnimationName {
  0%{background-position:13% 0%}
  50%{background-position:88% 100%}
  100%{background-position:13% 0%}
}


html {
  scroll-behavior: smooth;
}

/*** The new CSS reset - version 1.5.1 (last updated 1.3.2022) ***/
*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a, button {
  cursor: revert;
}

ol, ul, menu {
  list-style: none;
}

img {
  /*max-width: 100%;*/
}

table {
  border-collapse: collapse;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

::-webkit-input-placeholder {
  color: unset;
}

::-moz-placeholder {
  color: unset;
}

:-ms-input-placeholder {
  color: unset;
}

::-ms-input-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

.katakata{
  width: 98%!important;
  left:10px!important;
  top:5px!important;
  animation:katakata 6s infinite ease-in-out alternate;
}
.katakata{
  animation:katakata 6s infinite ease-in-out alternate;
}
@keyframes katakata {
  0% {transform:translate(0, 0) rotate(0deg);}
  21% {transform:translate(0, 0) rotate(0deg);}
 
  22% {transform:translate(0, 0) rotate(-3deg);}
  23% {transform:translate(0, -1px) rotate(0deg);}
  24% {transform:translate(0, -1px) rotate(3deg);}
 
  25% {transform:translate(1px, 0) rotate(-2deg);}
  26% {transform:translate(0, 1px) rotate(0deg);}
  27% {transform:translate(0, 0) rotate(3deg);}
 
  28% {transform:translate(0, 0) rotate(0deg);}
  100% {transform:translate(0, 0) rotate(0deg);}
}
.hane{
  width: 840px !important;
  top: 30px !important;
  left: 30px !important;
  /* アニメーションの名前 */
  animation-name:UpDown;
  /* アニメーションの１回分の長さ */
  animation-duration: 1.5s;
  /* アニメーションの回数 */
  animation-iteration-count: infinite;
  /* アニメーションの進行具合 */
  animation-timing-function: ease-in-out;
  /* アニメーション再生の向き */
  animation-direction: alternate;
}
@keyframes UpDown{
  /* 開始地点 */
  0%{
  /* Y軸0px */
  transform: translateY(0);
  }
  /* 終了地点 */
  100%{
  /* Y軸50px */
  transform: translateY(10px);
  }
}

.yoko{
  animation:katakata 2s infinite ease-in-out alternate;
  width: 840px!important;
  left: 30px!important;
  top: 53px!important;
}

.Anm1 {
  display: inline-block;
  width: 800px!important;
  left: 50px!important;
  top: 70px!important;
  -webkit-animation-name: H-beat1;
          animation-name: H-beat1;
  -webkit-animation-duration: 6s;
          animation-duration: 6s; /*総時間*/
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease; /*動き*/
  -webkit-animation-delay: 0s;
          animation-delay: 0s; /*遅延時間*/
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite; /*ループ回数*/
  -webkit-animation-direction: normal;
          animation-direction: normal; /*動きの方向(一方方向)*/
  /*animation-direction: alternate;/*動きの方向(交互反転)*/
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; /*キーフレームの適用*/
  /*animation-play-state: running;/*再生か一時停止*/
}

.Anm2 {
  display: inline-block;
  width: 820px!important;
  left: 40px!important;
  top: 60px!important;
  -webkit-animation-name: H-beat1;
          animation-name: H-beat1;
  -webkit-animation-duration: 4s;
          animation-duration: 4s; /*総時間*/
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease; /*動き*/
  -webkit-animation-delay: 2s;
          animation-delay: 2s; /*遅延時間*/
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite; /*ループ回数*/
  -webkit-animation-direction: normal;
          animation-direction: normal; /*動きの方向(一方方向)*/
  /*animation-direction: alternate;/*動きの方向(交互反転)*/
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; /*キーフレームの適用*/
  /*animation-play-state: running;/*再生か一時停止*/
}

@-webkit-keyframes H-beat1 {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  19% {
    -webkit-transform: scale(0.98, 0.98);
            transform: scale(0.98, 0.98);
  }
  20% {
    -webkit-transform: scale(1.02, 1.02);
            transform: scale(1.02, 1.02);
  }
  22% {
    -webkit-transform: scale(1.01, 1.01);
            transform: scale(1.01, 1.01);
  }
  24% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@keyframes H-beat1 {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  19% {
    -webkit-transform: scale(0.98, 0.98);
            transform: scale(0.98, 0.98);
  }
  20% {
    -webkit-transform: scale(1.02, 1.02);
            transform: scale(1.02, 1.02);
  }
  22% {
    -webkit-transform: scale(1.01, 1.01);
            transform: scale(1.01, 1.01);
  }
  24% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@media (max-width: 900px) {
  .katakata{
    width: 110%!important;
    left: -18px!important;
    top: -11px!important;
  }
  .hane{
    width: 100% !important;
    left: 0px !important;
    top: 10px !important;
  }
  .yoko{
    width: 92% !important;
    left: 15px !important;
    top: 22px !important;
  }
  .Anm1 {
    width: 96% !important;
    left: 10px !important;
    top:15px !important;
  }
  .Anm2 {
    width: 98% !important;
    left: 5px !important;
    top: 25px !important;
  }
}

.pagetop {
  height: 40px;
  width: 40px;
  position: fixed;
  right: 15px;
  bottom: 15px;
  background: #092f05;
  /*border: solid 2px #000;*/
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  border-radius: 200px;
}
.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(20%) rotate(-45deg);
}
@media (max-width: 767px) {
  .pagetop {
    display: none;
  }
}

h2 {
  text-align: center;
  line-height: 1;
  background: url(../img/dokuro.png) no-repeat center center;
  background-size: 60px;
  padding-top: 3em;
}
h2 strong {
  display: inline-block;
  letter-spacing: 4.8px;
  font-size: 40px;
  padding: 0.25em 0 0.5em;
  font-family: "Changa", cursive;
}
h2 span {
  padding: 0.25em 0;
  display: block;
  font-size: 12px;
  letter-spacing: 2.4px;
  color: #DDD;
}

section {
  margin-bottom: 3em;
}
@media (min-width: 768px) {
  section {
    max-width: 800px;
    margin: 0 auto 3em;
  }
  section.mod_visual {
    margin-bottom: 1em;
    max-width: 100%;
    text-align: center;
  }
}

.tour_attn {
  padding: 1.5em;
}
.tour_attn li {
  margin-bottom: 0.5em;
}
.tour_attn li button {
  width: 100%;
  font-size: 16px;
  color: rgba(204, 204, 204, 0.8);
  letter-spacing: 3.2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #222;
  padding: 1em;
}
.tour_attn li button:after {
  width: 24px;
  height: 24px;
  display: block;
  background: url(../img/icon.svg) no-repeat center center;
  background-size: cover;
  content: "";
}

.mod_footer {
  text-align: center;
  padding: 5vw;
  position: relative;
  z-index: 10;
  background: #000;
}
.mod_footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
  margin-bottom: 1em;
}
.mod_footer ul li {
  width: 200px;
}
.mod_footer p {
  color: #999;
}

.visual {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}
@media (min-width: 768px) {
  .visual {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 50vw;
  }
}

.mod_main {
  position: relative;
  z-index: 10;
  /* //background: #000; */
  padding-bottom: 4em;
}
.catch {
  text-align: center;
  padding: 5vw;
  letter-spacing: 2px;
}
.catch h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 2.5em;
  font-family: "Noto Sans JP", sans-serif;
  padding: 50px 0px;
  width: 50%;
  margin: 30px auto 50px;
}
.catch p {
  font-size: 16px;
  font-weight: bold;
}

.mod_visual {
  background-size: cover;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .catch {
    padding: 0vw;
  }
  .catch h3 {
    font-size: 22px;
    width: 100%;
    margin: 0px auto 50px;
    border-top: 1px #434343 solid;
    border-bottom: 1px #434343 solid;
    background: #000;
  }
  .mod_visual {
    background-size: cover;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
@media (max-width: 500px) {
  .mod_visual {
    height: 160vw;
    margin-bottom: 0;
  }
}
.mod_visual .fire2 {
  position: absolute;
  z-index: 20;
  width: 60vw;
  height: auto;
  left: 50%;
  top: 50%;
  margin-top: -25vw;
  margin-left: -30vw;
  -webkit-animation: fire2 10s infinite;
          animation: fire2 10s infinite;
}
@media (max-width: 767px) {
  .mod_visual .fire2 {
    width: 90vw;
    margin-top: -40vw;
    margin-left: -45vw;
  }
}
.mod_visual .fire3 {
  position: absolute;
  z-index: 20;
  width: 40vw;
  height: auto;
  left: 50%;
  top: 50%;
  margin-top: -18vw;
  margin-left: -20vw;
  -webkit-animation: fire2 15s infinite;
          animation: fire2 15s infinite;
}
@media (max-width: 767px) {
  .mod_visual .fire3 {
    width: 90vw;
    margin-top: -50vw;
    margin-left: -40vw;
  }
}
.mod_visual .fire4 {
  position: absolute;
  z-index: 20;
  width: 50vw;
  height: auto;
  left: 50%;
  top: 50%;
  margin-top: -30vw;
  margin-left: -25vw;
  -webkit-animation: fire4 20s infinite;
          animation: fire4 20s infinite;
}
@media (max-width: 767px) {
  .mod_visual .fire4 {
    width: 90vw;
    margin-top: -30vw;
    margin-left: -25vw;
  }
}
@-webkit-keyframes fire2 {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: rotate(100deg) scale(1.6);
            transform: rotate(100deg) scale(1.6);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
    opacity: 1;
  }
}
@keyframes fire2 {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: rotate(100deg) scale(1.6);
            transform: rotate(100deg) scale(1.6);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fire4 {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
    opacity: 0.25;
  }
  50% {
    -webkit-transform: rotate(200deg) scale(1.3);
            transform: rotate(200deg) scale(1.3);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
    opacity: 0.25;
  }
}
@keyframes fire4 {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
    opacity: 0.25;
  }
  50% {
    -webkit-transform: rotate(200deg) scale(1.3);
            transform: rotate(200deg) scale(1.3);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
    opacity: 0.25;
  }
}
.mod_visual .logo {
  z-index: 300;
  position: relative;
}
.mod_visual .logo h1 {
  padding: 0em;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.logo img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}
.logo img.static{
  width: 100%;
  height: auto;
  position: static;
}
.logo .oni{
  position: relative;
  top: -650px;
  z-index: 12;
  left: 8px;
}
.mod_visual .logo h1 .oni img{
  width: 97%;
}
@media (min-width: 768px) {
  .mod_visual .logo h1 {
    text-align: center;
    padding: 2em 3em 0em 3em;
  }
  .mod_visual .logo h1 img {
/*    max-width: 640px;*/
  }
}
@media (min-width: 1280px) {
  .mod_visual .logo h1 {
    text-align: center;
  }
  .mod_visual .logo h1 img {
    max-width: none;
/*    width: 700px;*/
  }
}
.mod_visual p {
  text-align: center;
  padding: 0 2em;
  position: relative;
  background: url(../img/spot.png) no-repeat center center;
  width: 640px;
  height: 165px;
  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;
  padding-top: 3.5em;
  font-size: 24px;
  font-weight: bold;
  background-size: cover;
  margin: 0 auto;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .mod_visual p {
    display: none;
  }
}

@media (max-width: 768px) {
  .mod_ticket {
    max-width: 700px;
    margin: 0 auto;
    padding: 1em;
  }
}
.mod_ticket .ticket_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 2em;
}
@media (max-width: 500px) {
  .mod_ticket .ticket_item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.mod_ticket .ticket_item .ticket_item_detail {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* border: 1px solid #444444; */
  border-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2em;
  border-radius: 16px;
  margin-right: 1em;
  border: 1px #434343 solid;
}
@media (max-width: 500px) {
  .mod_ticket .ticket_item .ticket_item_detail {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.mod_ticket .ticket_item .ticket_item_detail .ticket_item_detail_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
@media (max-width: 500px) {
  .mod_ticket .ticket_item .ticket_item_detail .ticket_item_detail_text {
    text-align: center;
    margin-bottom: 1em;
  }
}
.mod_ticket .ticket_item .ticket_item_detail .ticket_item_detail_text p {
  font-size: 15px;
  font-weight: bold;
}
.mod_ticket .ticket_item .ticket_item_detail .ticket_item_detail_text h3 {
  font-weight: bold;
  font-size: 20px;
}
.mod_ticket .ticket_item .ticket_item_detail .ticket_item_detail_text span {
  font-size: 13px;
  opacity: 0.7;
  padding-right: 1.5em;
  text-align: left;
}
.mod_ticket .ticket_item .ticket_item_detail .ticket_item_detail_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.mod_ticket .ticket_item .ticket_item_detail .ticket_item_detail_price span {
  font-weight: bold;
  font-size: 20px;
  padding: 0 0.5em;
  white-space: nowrap;
}
.mod_ticket .ticket_item .ticket_item_detail .ticket_item_detail_price p {
  font-size: 45px;
  letter-spacing: 3px;
  font-family: "Changa", cursive;
}
.mod_ticket .ticket_item a {
  background: #F1EC03;
  width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  color: #000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border-radius: 16px;
}
@media (max-width: 500px) {
  .mod_ticket .ticket_item a {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.5em;
  }
}
.mod_ticket .ticket_item a img {
  width: 40%;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 500px) {
  .mod_ticket .ticket_item a img {
    width: 30px;
    height: auto;
    margin: 0;
  }
}
.mod_ticket .ticket_item a span {
  font-size: 13px;
  padding: 1em;
}
@media (max-width: 500px) {
  .mod_ticket .ticket_item a span {
    width: auto;
    font-weight: bold;
    font-size: 20px;
  }
}

.funclub .funclub_box img {
  width: 100%;
  height: auto;
}
.funclub .funclub_box p {
  padding: 1.5em;
  color: #fff;
}
.funclub .funclub_box a {
  background: -webkit-gradient(linear, left top, right top, color-stop(-0.87%, #E60012), color-stop(16.6%, #EF600A), color-stop(35.09%, #FAC703), color-stop(44.34%, #FFF100), color-stop(49.48%, #F1EC03), color-stop(58.72%, #CEE00D), color-stop(72.08%, #94CC1C), color-stop(88.52%, #46B131), color-stop(101.87%, #094));
  background: linear-gradient(90deg, #E60012 -0.87%, #EF600A 16.6%, #FAC703 35.09%, #FFF100 44.34%, #F1EC03 49.48%, #CEE00D 58.72%, #94CC1C 72.08%, #46B131 88.52%, #094 101.87%);
  border-radius: 90px;
  padding: 1px;
  display: block;
  margin: 0 1.5em 1.5em;
}
.funclub .funclub_box a:hover {
  opacity: 0.75;
}
.funclub .funclub_box a p {
  background: #000;
  padding: 0.75em;
  border-radius: 90px;
  text-align: center;
}
.funclub .funclub_box a p span {
  display: inline-block;
  letter-spacing: 3px;
  font-size: 16px;
  padding: 0.25em 0 0.5em;
  background: -webkit-gradient(linear, left top, right top, color-stop(-0.87%, #E60012), color-stop(16.6%, #EF600A), color-stop(35.09%, #FAC703), color-stop(44.34%, #FFF100), color-stop(49.48%, #F1EC03), color-stop(58.72%, #CEE00D), color-stop(72.08%, #94CC1C), color-stop(88.52%, #46B131), color-stop(101.87%, #094));
  background: linear-gradient(90deg, #E60012 -0.87%, #EF600A 16.6%, #FAC703 35.09%, #FFF100 44.34%, #F1EC03 49.48%, #CEE00D 58.72%, #94CC1C 72.08%, #46B131 88.52%, #094 101.87%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.goods-area{
  padding: 1.5em;
  background: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  text-align: center;
  line-height: 1.8;
  border-radius: 16px;
}
.goods-area .goods-open{
  display: block;
}
.goods-area span{
  color: rgba(204, 204, 204, 0.8);
  font-size: 12px;
}
.goods-cashless{
  width: 75%;
  margin: 20px auto 0;
}
.goods-cashless img{
  max-width: 100%;
}

@media (max-width: 768px) {
  .guideline {
    margin: 0 auto;
    max-width: 700px;
    padding: 1em;
  }
  .goods-area .goods-open{
    font-size: 11px;
  }
}
.guideline h3 {
  padding-top: 1.5em;
  text-align: center;
  letter-spacing: 3px;
  font-size: 15px;
  color: #fff;
  margin-bottom: 1.5em;
}
.guideline ul {
  background: #222;
  padding: 1.5em 1.5em 1.5em 3em;
  font-size: 12px;
  color: rgba(204, 204, 204, 0.8);
  line-height: 1.8;
}
.guideline ul li {
  list-style: circle;
}
.guideline p {
  background: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  color: rgba(204, 204, 204, 0.8);
  line-height: 1.8;
  padding: 1.5em;
  border-radius: 16px;
}
/*.guideline img {
  max-height: 310px;
}*/

.liveinfo_box {
  width: 60%;
  margin: 30px auto;
  padding: 40px 20px;
  /* //border: #333 2px solid; */
  text-align: center;
  font-family: "Changa", cursive;
  letter-spacing: 0.1em;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.6em;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 16px;
}
.liveinfo_box .day{
  font-size: 54px;
  letter-spacing: 0.1em;
  vertical-align: sub;
}
.liveinfo_box .sunday{
  font-size: 24px;
  color: #000;
  background: #fff100;
  border-radius: 8px;
  padding: 3px 10px 0;
  margin: 2em 0;
  line-height: 1;
  width: 100%;
  margin-left: 10px;
}
.liveinfo_box .open{
  color: #e60012;
  font-size: 28px;
}
.liveinfo_box .place{
  color: #fff100;
  font-size: 30px;
}
@media (max-width: 767px) {
  .liveinfo{
    padding: 0 10px;
  }
  .liveinfo_box {
    width: 90%;
    padding: 25px 20px;
    font-family: "Changa", cursive;
    font-size: 32px;
  }
  .liveinfo_box .day{
    font-size: 40px;
  }
  .liveinfo_box .sunday{
    font-size: 24px;
    padding: 3px 7px 2px;
    margin-left: 5px;
  }
  .liveinfo_box .open{
    font-size: 24px;
  }
  .liveinfo_box .place{
    font-size: 26px;
  }

}

.contact_box {
  background: #111;
  text-align: center;
  padding: 2em;

  border-radius: 16px;
}
.contact_box h3 {
  color: #fff;
  font-size: 20px;
}
.contact_box p {
  font-size: 16px;
  color: #fff;
  line-height: 2;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal .modal-box {
  background-color: #333;
  margin: 10% auto;
  max-width: 640px;
  width: 90%;
  border-radius: 10px;
  -webkit-animation-name: modalopen;
          animation-name: modalopen;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  position: relative;
}
.modal .modal-box .modalClose {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  background: #999;
  border-radius: 80px;
  background: url(../img/close.svg) no-repeat center center;
}

.sp_header {
  display: none;
  /* ハンバーガーメニュー */
  /* ハンバーガーメニューの線 */
}
@media (max-width: 767px) {
  .sp_header {
    background-size: cover;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
}
.sp_header .header__hamburger {
  width: 60px;
  height: 60px;
  padding: 1em;
  background: #000;
  border-radius: 0 0 0 8px;
}
.sp_header .hamburger {
  background-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  border-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  z-index: 9999;
  background: #000;
}
.sp_header .hamburger span {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: relative;
  -webkit-transition: ease 0.4s;
  transition: ease 0.4s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
  display: block;
}
.sp_header .hamburger span:nth-child(1) {
  top: 0;
}
.sp_header .hamburger span:nth-child(2) {
  margin: 8px 0;
}
.sp_header .hamburger span:nth-child(3) {
  top: 0;
}
.sp_header .header__nav.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.sp_header .hamburger.active span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.sp_header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.sp_header .hamburger.active span:nth-child(3) {
  top: -8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.mod_header {
/*  background-size: cover;*/
  background: #092f05;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  z-index: 1000;
}
@media (max-width: 767px) {
  .mod_header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    padding: 1.5em;
    background: rgb(0, 0, 0);
  }
  .mod_header.active {
    display: block;
    z-index: 900;
    padding-top: 80px;
    height: 100vh;
  }
}
.mod_header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mod_header ul.tour_attn {
  display: none;
}
@media (max-width: 767px) {
  .mod_header ul.tour_attn {
    display: block;
  }
}
@media (max-width: 767px) {
  .mod_header ul {
    display: contents;
    margin-bottom: 2em;
  }
}
.mod_header ul li {
  padding: 0 1em;
}
@media (max-width: 767px) {
  .mod_header ul li {
    padding: 0;
    text-align: center;
  }
}
.mod_header ul li.disable {
  opacity: 0.25;
}
.mod_header ul li.disable a {
  pointer-events: none;
}
.mod_header ul a {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  font-family: "Changa", cursive;
  letter-spacing: 2px;
}
.mod_header ul a:hover {
  color: #F1EC03;
}
@media (max-width: 767px) {
  .mod_header ul a {
    display: block;
    font-size: 32px;
    padding: 0.5em 0;
  }
}

.ticket_price {
  margin: 1.5em 0em 0;
  border: 1px solid #999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  padding: 1em;
  border-radius: 16px;
}
.ticket_price span {
  color: #fff;
  font-size: 20px;
  font-family: "Changa", cursive;
  line-height: 2.4em;
  letter-spacing: 2.4px;
}
.ticket_price div {
  font-family: "Changa", cursive;
  line-height: 1.2em;
  font-size: 36px;
  letter-spacing: 3.2px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
}
@media (max-width: 767px) {
  .ticket_price span {
    font-size: 16px;
  }
  .ticket_price div {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.ticket_price div span {
  color: #fff;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 2.4px;
}

a.ticket_price {
  position: relative;
  background: #fff;
  border-radius: 16px;
}
a.ticket_price span {
  color: #000;
}
a.ticket_price div {
  color: #000;
}
a.ticket_price div span {
  color: #000;
}
a.ticket_price.no-arrow:after {
  display: none;
}
a.ticket_price:after {
  display: block;
  width: 1em;
  height: 1em;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  content: "";
  position: absolute;
  right: 2em;
  top: 50%;
  margin-top: -0.5em;
}
a.ticket_price:hover {
  background: yellow;
  border: 1px solid yellow;
}
a.ticket_price:hover:after {
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
}
a.ticket_price:hover span {
  color: #000;
}
a.ticket_price:hover div {
  color: #000;
}
a.ticket_price:hover div span {
  color: #000;
}

.day{
  display: flex;
  flex-wrap: wrap;
  line-height: 1;
  gap: 1em;
  padding: 1em;;
  justify-content: center;
}
.day img{
  width: 48%;
  height: auto;
}

@media (max-width: 767px) {
  .day{
  display: flex;
  flex-wrap: wrap;
  flex-flow: column;
  gap: 1em;

}
.day img{
  width: 100%;
  height: auto;
}
}





.liveinfo .tour_schedule_list {
  padding: 0 1.5em 1.5em;
}
.liveinfo h3.tour_year {
  text-align: center;
  padding: 1em;
  font-weight: bold;
  border-bottom: 1px solid #333;
  font-family: "Changa", cursive;
  letter-spacing: 3px;
  font-size: 28px;
  margin-bottom: 1em;
}
.liveinfo .tour_schedule_comingsoon {
  color: #e2d9bd;
  font-size: 18px;
  letter-spacing: 2.4px;
  border: 1px solid #e2d9bd;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.liveinfo .tour_schedule_item {
  background: #092f05;
  position: relative;
  display: flex;
  flex-flow: column;
  margin-bottom: 1.5em;
  border-radius: 10px;
}
.liveinfo .tour_schedule_item:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 49px 49px 0 0;
  border-color: #c1bf00 transparent transparent transparent;
  left: 0;
  top: 0;
  opacity: 0.5;
  position: absolute;
  border-radius: 10px 0 0 0 ;
}
.liveinfo .tour_schedule_item .-more_detail {
  padding: 0em 1em 1em 1em;
}
.liveinfo .tour_schedule_item .-more_detail.-open {
  display: block;
}
.liveinfo .tour_schedule_item .-detail .-address .-goodstime {
  color: #ccc;
}
.liveinfo .tour_schedule_item .-detail .-address .-goods {
  font-size: 12px;
}
.liveinfo .tour_schedule_item .-detail .-address .-goodsopen {
  font-size: 9px;
  display: block;
}
.liveinfo .tour_schedule_item .-more_detail h4 {
  font-weight: bold;
  letter-spacing: 2px;
  padding-top: 1em;
  color: #f7f7f7;
}
.liveinfo .tour_schedule_item .-more_detail p {
  padding: 0.5em;
  letter-spacing: 1px;
  color: #ccc;
  font-size: 13px;
  font-family: "Changa", cursive;
}
.liveinfo .tour_schedule_item .-more_detail .center {
  text-align: left;
  font-weight: bold;
  color: #fff;
  border: 1px solid #fff;
  font-size: 16px;
  padding: 0.5em;
}
.liveinfo .tour_schedule_item .-detail {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.liveinfo .tour_schedule_item .-detail.-open {
  background: rgba(255, 255, 255, 0.1);
}
.liveinfo .tour_schedule_item .-detail:hover {
  opacity: 0.75;
}
.liveinfo .tour_schedule_item .-detail:after {
  content: "";
  width: 1em;
  height: 1em;
  display: block;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  position: absolute;
  transform: rotate(45deg);
  right: 1em;
  top: 2em;
}
.liveinfo .tour_schedule_item .-detail .-date {
  width: 50px;
  position: relative;
  z-index: 10;
  padding: 1em 0.5em 0.5em 0.5em;
  line-height: 1;
}
@media (min-width: 768px) {
  .liveinfo .tour_schedule_item .-detail .-date {
    padding: 1em;
  }
}
.liveinfo .tour_schedule_item .-detail .-date span {
  display: block;
}
.liveinfo .tour_schedule_item .-detail .-date .-month {
  position: absolute;
  left: 0.5em;
  top: 0.5em;
  color: #fff;
  font-size: 15px;
  font-family: "Changa", cursive;
}
.liveinfo .tour_schedule_item .-detail .-date .-day {
  display: block;
  position: relative;
  top: -2px;
  padding-top: 6px;
  color: #fff;
  font-size: 35px;
  text-align: right;
  font-family: "Changa", cursive;
}
.liveinfo .tour_schedule_item .-detail .-date .-week {
  position: relative;
  left: -1px;
  width: 40px;
  padding: 4px 0;
  display: inline-block;
  font-size: 10px;
  color: #000;
  text-align: center;
  border-radius: 3px;
  background: #e2d9bd;
}
.liveinfo .tour_schedule_item .-detail .-address {
  width: calc(100% - 50px);
  padding: 0.75em;
  padding-right: 2em;
  padding-left: 1.5em;
  font-family: "Changa", cursive;
}
.liveinfo .tour_schedule_item .-detail .-address .-tag {
  display: flex;
  justify-content: flex-start;
  line-height: 1;
  gap: 0.5em;
  padding-bottom: 0.5em;
}
.liveinfo .tour_schedule_item .-detail .-address .-tag li.-prefectures {
  padding: 0.35em 0.25em 0.15em 0.35em;
  border-radius: 3px;
  background: #e2d9bd;
  color: #000;
  letter-spacing: 2.4px;
  font-size: 12px;
}
.liveinfo .tour_schedule_item .-detail .-address .-tag li.-y2024 {
  padding: 0.25em;
  border-radius: 3px;
  background: #fff;
  color: #000;
  letter-spacing: 2.4px;
  font-size: 12px;
}
.liveinfo .tour_schedule_item .-detail .-address .-tag li.-atten {
  padding: 0.25em;
  border-radius: 3px;
  background: #E60012;
  color: #fff;
  letter-spacing: 2.4px;
  font-size: 12px;
}
.liveinfo .tour_schedule_item .-detail .-address .-name {
  letter-spacing: 1.5px;
  font-size: 20px;
  font-weight: bold;
  font-family: "Changa", cursive;
}
}
@media (min-width: 768px) {
  .liveinfo .tour_schedule_item .-detail .-address .-name {
    font-size: 20px;
  }
}
.liveinfo .tour_schedule_item .-detail .-info {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  font-size: 12px;
  padding: 0em 0;
  padding-top: 0.5em;
  gap: 1em;
}
@media (min-width: 768px) {
  .liveinfo .tour_schedule_item .-detail .-info {
    font-size: 14px;
  }
}
.liveinfo .tour_schedule_item .-detail .-info li {
  display: flex;
  font-family: "Changa", cursive;
}
.liveinfo .tour_schedule_item .-detail .-info span {
  color: #CCC;
}
.liveinfo .tour_schedule_item .-detail .-info p {
  padding-left: 0.5em;
  color: #FFF;
  letter-spacing: 2.2px;
}
.liveinfo .tour_schedule_item .-detail .-info p span {
  font-size: 10px;
}
.liveinfo .tour_schedule_item .-action {
  display: flex;
}
.liveinfo .tour_schedule_item .-action a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  min-height: 40px;
  font-weight: bold;
  letter-spacing: 2.4px;
}
.liveinfo .tour_schedule_item .-action a:before {
  content: "";
  display: block;
  margin-right: 1em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.liveinfo .tour_schedule_item .-action .-detail_link {
  color: #fff;
  background: #666666;
}
.liveinfo .tour_schedule_item .-action .-detail_link:before {
  width: 18px;
  height: 18px;
  background-image: url(../img/icon2.svg);
}
.liveinfo .tour_schedule_item .-action .-reserve_link {
  color: #000;
  background: #e2d9bd;
  border-radius: 0 0 10px 10px;
}
.liveinfo .tour_schedule_item .-action .-reserve_link:before {
  width: 29px;
  height: 29px;
  background-image: url(../img/icon3.svg);
}