@charset "UTF-8";

.top-about-place-list.kanagawa a,
.top-about-place-list.fukuoka a,
.top-about-place-list.aichi a {
  pointer-events: none;
}

/***********************************************
***  Reset
***********************************************/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  margin-top: 0 !important;
  scroll-behavior: smooth;
}

body {
  position: relative;
  background-color: #000;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: calc(22.75 / 13);
  font-family: "Ryumin Regular KL", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  font-size: 13px;
  color: #fff;
  -webkit-font-smoothing: subpixel-antialiased;
  letter-spacing: 0.08em;
}

a.click-area-link:hover path,
a.click-area-link:hover rect,
a.click-area-link:hover polygon {
  fill: #ebebeb;
}

@media (max-width: 799px) {
  body {
    font-size: 12px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  font-weight: 400;
}

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

dl,
dd {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  word-break: break-all;
}

figure {
  margin: 0;
  line-height: 0;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

svg {
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

pre {
  margin: 0;
  font-family: inherit;
  white-space: inherit;
}

p a,
dd a,
pre a {
  display: inline;
  text-decoration: none;
  color: inherit;
}

p a:hover,
dd a:hover,
pre a:hover {
  border-bottom: 0;
}

html:not(.viewport--fixed) {
  -webkit-text-size-adjust: 100%;
}

/***********************************************
***  アニメーション
***********************************************/

[data-aos="fade-up"] {
  transform: translate3d(0, 30px, 0);
}

[data-aos="fade-down"] {
  transform: translate3d(0, -30px, 0);
}

[data-aos="fade-right"] {
  transform: translate3d(-30px, 0, 0);
}

[data-aos="fade-left"] {
  transform: translate3d(30px, 0, 0);
}

.common-pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  z-index: 10;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  transition: opacity 0.3s ease;
}

.common-pagetop.is-show {
  opacity: 1;
  pointer-events: auto;
}

.common-pagetop img {
  display: block;
  width: 100%;
  height: auto;
  animation: pagetopHoverCycle 10s linear infinite;
}

@keyframes pagetopHoverCycle {

  0%,
  80% {
    transform: translateY(0);
  }

  83.333% {
    transform: translateY(-8px);
  }

  86.666% {
    transform: translateY(0);
  }

  90% {
    transform: translateY(-8px);
  }

  93.333% {
    transform: translateY(0);
  }

  96.666% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .common-pagetop {
    display: none;
  }
}
.cs-container {
  text-align: center;
}
.cs {
  font-size: clamp(24px, 4vw, 45px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  display: inline-block;
      font-family: "Ryumin Bold KL";
              text-shadow: 0px 0px 5px rgba(0, 63, 48, 0.90), 0px 0px 20px rgba(0, 63, 48, 0.90), 0px 0px 20px rgba(0, 63, 48, 0.90);
}

.cs > span {
  display: inline-block;
  transform: translateY(0);
  animation: cs-bounce-pause 4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-delay: calc(var(--i) * 0.08s);
  will-change: transform;
}

.cs .space {
  display: inline-block;
  width: 0.4em;
}

/* バウンド → 停止 を1セット */
@keyframes cs-bounce-pause {
  /* 停止（初期） */
  0%,
  65% {
    transform: translateY(0);
  }

  /* バウンド */
  72% {
    transform: translateY(-0.38em); /* ← 高さ70% */
  }

  80% {
    transform: translateY(0.06em);
  }

  /* 完全停止 */
  100% {
    transform: translateY(0);
  }
}


/***********************************************
***  モーダル
***********************************************/
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  /* closed by default */
}

.modal.is-open {
  display: block;
}

/* overlay (クリックで閉じる対象) */
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 35, 30, 0.9) 0%, rgba(0, 63, 48, 0.90) 100%);
}

.modal__backdrop.ennichi {
  background: linear-gradient(to bottom, rgba(35, 16, 0, 0.9) 0%, rgba(105, 21, 0, 0.90) 100%);
}

/* panel */
.modal__panel {
  position: relative;
  margin: 0 auto;
  width: min(92vw, 1000px);
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  box-shadow: 0 0 30px #149762;
  padding: 40px;
  max-height: min(80vh, 700px);
  overflow: auto;
  border: 1px solid;
  border-image: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 100%) 1;
}

.modal__panel.ennichi {
  box-shadow: 0 0 30px #d5092c;
}

/* close button */
.modal__close {
  position: sticky;
  /* スクロールしても上に残す */
  top: -30px;
  margin-left: auto;
  display: block;
  border: none;
  background: transparent;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  color: #fff;
  z-index: 100;
}

/* optional: モーダル内の余白 */
.modal__content {
  padding-top: 4px;
}

/***********************************************
***  effect background
***********************************************/
.section-foil {
  position: relative;
}

.bg-foil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.foilCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .bg-foil { display: none; }
}
/***********************************************
***  Common class
***********************************************/
.view_timer.is-hidden {
  display: none !important;
}

.view_timer--flex {
  display: flex;
}

.common-section {
  position: relative;
}

.ib {
  display: inline-block;
}
.blank-line {
    display: block;
    height: 0.8em;
}
.inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

a.wip {
  pointer-events: none;
  opacity: 0.6;
}
.coming-soon {
  max-width: 500px;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .inner {
    padding: 0 40px;
  }
}

@media (max-width: 500px) {
  .inner {
    padding: 0 20px;
  }
  br.pc{
    display:none;
  }
}

.btn-default-container {
  text-align: center;
}

.btn-default {
  font-family: Ryumin Bold KL;
  transition: .3s;
  width: 400px;
  padding: 10px;
  border-radius: 100px;
  margin: 0 auto;
  text-align: center;
  outline: 1px solid;
  outline-color: #fff;
  outline-offset: -6px;
  position: relative;
  background: linear-gradient(90deg, #F80202, #f39800, #ffeb3b, #f39800, #F80202);
  background-size: 400%;
  box-sizing: border-box;
}

.btn-default a {
  font-family: Ryumin Bold KL;
  text-decoration: none;
  color: #fff;
  font-size: 26px;
  line-height: 2;
  font-weight: 800;
  width: 100%;
  height: 100%;
  display: block;
}

.btn-default a small {
  font-size: 0.5em;
}

.btn-default:hover {
  animation: animate 8s linear infinite;

  transition: 0.5s;
}

@keyframes animate {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 400%;
  }
}

.btn-default:before {

  transition: 0.5s;
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
  background: linear-gradient(90deg, #F80202, #f39800, #ffeb3b, #f39800, #F80202);
  background-size: 400%;
  border-radius: 40px;
  opacity: 0;
}

.btn-default:hover:before {
  filter: blur(20px);
  opacity: 1;
  animation: animate 8s linear infinite;

  transition: 0.5s;
}

.btn-default.purple {
  background: linear-gradient(90deg, #B101F8, #0038F3, #61F9FF, #0038F3, #B101F8);
  background-size: 400%;
  box-sizing: border-box;
}

.btn-default.purple:before {
  background: linear-gradient(90deg, #B101F8, #0038F3, #61F9FF, #0038F3, #B101F8);
}

.btn-default.pink {
  background: linear-gradient(90deg, #9d09c3, #fe9a35, #ffeb3b, #9d09c3);
  background-size: 400%;
  box-sizing: border-box;
}

.btn-default.pink:before {
  background: linear-gradient(90deg, #9d09c3, #fe9a35, #ffeb3b, #9d09c3);
}

.btn-default.blue {
  background: linear-gradient(90deg, #0038F3, #61F9FF, #e6ee05, #61F9FF, #0038F3);
  background-size: 400%;
  box-sizing: border-box;
}

.btn-default.blue:before {
  background: linear-gradient(90deg, #0038F3, #61F9FF, #e6ee05, #61F9FF, #0038F3);
}

.btn-default.red {
  background: linear-gradient(90deg, #F8006C, #F30089, #F80202, #F30089, #F8006C);
  background-size: 400%;
  box-sizing: border-box;
}

.btn-default.red:before {
  background: linear-gradient(90deg, #F8006C, #F30089, #F80202, #F30089, #F8006C);
}

.btn-default.off {
  pointer-events: none;
  opacity: 0.3;
}

@media (max-width: 600px) {
  .btn-default {
    width: 100%;
    font-size: 16px;
  }

  .btn-default a {
    font-size: 18px;
  }
}

.link-default {
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, #B101F8 0%, #0038F3 45%, #21c8f6 60%, #0038F3 80%) 1;
  transition: .2s;
}

.link-default:hover {

  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, #21c8f6 0%, #0038F3 40%, #B101F8 70%, #0038F3 100%) 1;
}

.heading-default {
  height: 180px;
  position: relative;
  padding-top: 40px;
  display: inline-block;
  margin-bottom: 80px;
  z-index: 10;
}

.heading-default:before {
  position: absolute;
  content: "";
  width: 600px;
  height: 240px;
  background: url(../img/common/hd-light.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: -80px;
  z-index: -1;
}

.heading-default:after {
  position: absolute;
  content: "";
  width: 200px;
  height: 200px;
  background: url(../img/common/hd-mark.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 20px;
  right: -200px;
  z-index: 10;
}

.heading-default img {
  height: 180px;
  width: auto;
}

@media (max-width: 800px) {
  .heading-default {
    height: 120px;
    padding-top: 20px;
    margin-bottom: 40px;
  }

  .heading-default:before {
    width: 400px;
    height: 160px;
    left: -40px;
  }

  .heading-default:after {
    width: 140px;
    height: 140px;
    top: 10px;
    right: -140px;
  }

  .heading-default img {
    height: 120px;
    width: auto;
  }
}

@media (max-width: 600px) {
  .heading-default {
    height: 100px;
    padding-top: 20px;
    margin-bottom: 40px;
  }

  .heading-default:before {
    width: 300px;
    height: 160px;
    left: -40px;
  }

  .heading-default:after {
    width: 110px;
    height: 140px;
    top: 10px;
    right: -100px;
  }

  .heading-default img {
    height: 90px;
    width: auto;
  }
}

.line-heading-default {

  font-family: "Ryumin Bold KL";
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  position: relative;
  text-align: center;
  padding: 20px 0;
  margin-bottom: clamp(24px, 4vw, 40px);
  text-shadow: 0px 0px 5px #fb9d2e, 0px 0px 10px #ecff68;
}

.line-heading-default:before {
  position: absolute;
  content: "";
  background: url(../img/common/frame-line-heading-top.svg);
  background-size: contain;
  background-repeat: repeat-x;
  background-position: top;
  width: 100%;
  height: 108px;
  left: 0;
  right: 0;
  top: 0;
}

.line-heading-default:after {
  position: absolute;
  content: "";
  background: url(../img/common/frame-line-heading-bottom.svg);
  background-size: contain;
  background-repeat: repeat-x;
  background-position: bottom;
  width: 100%;
  height: 108px;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (max-width: 800px) {
  .line-heading-default {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .line-heading-default {
    font-size: 20px;
  }

  .line-heading-default:before {

    background-size: auto 6px;
    height: 6px;
  }

  .line-heading-default:after {

    background-size: auto 6px;
    height: 6px;
  }
}

.block-heading-default {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.6;
  position: relative;
  text-align: center;
}

.block-heading-default:before {
  position: absolute;
  content: "";
  background: url(../img/common/frame-block-heading-middle.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 440px;
  height: 80px;
  left: 0;
  right: 0;
  top: -23px;
  margin: auto;
  z-index: -1;
}

@media (max-width: 800px) {
  .block-heading-default {
    font-size: 16px;
    line-height: 1.5;
  }

  .block-heading-default:before {
    width: 400px;
    height: 50px;
    top: -10px;
  }

}

@media (max-width: 600px) {
  .block-heading-default {
    font-size: 14px;
    line-height: 2;
    width: 100vw;
    left: -40px;
  }

  .block-heading-default:before {
    width: 400px;
    height: 50px;
    top: -10px;
  }

}

@media (max-width: 400px) {
  .block-heading-default:before {
    width: 100%;
  }
}

.simple-heading-default {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  position: relative;
  text-align: center;

}

.simple-heading-default:after {
  position: absolute;
  content: "";
  width: 140px;
  height: 2em;
  background: #000;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.simple-heading-default:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(151, 108, 1, 1), rgb(182, 151, 0) 20%, rgba(151, 108, 1, 1) 40%, rgb(182, 151, 0) 60%, rgba(151, 108, 1, 1) 80%, rgb(182, 151, 0) 100%);
  z-index: -1;
  left: 0;
  top: 0.8em;
}

.frame-default {
  position: relative;
  width: 100%;
  background: linear-gradient(to top,
      #000000 0%,
      #3e1213 100%);
  border: 2px solid transparent;
  border-image: linear-gradient(45deg,
      #B67B03 0%,
      #DAAF08 45%,
      #FEE9A0 70%,
      #DAAF08 85%,
      #B67B03 100%) 1;
  padding: 40px;
}

.frame-default::before {
  position: absolute;
  content: "";
  width: 180px;
  height: 100px;
  bottom: -38px;
  left: -40px;
  background: url(../img/common/frame-default-deco-left.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  z-index: 1;
}

.frame-default::after {
  position: absolute;
  content: "";
  width: 180px;
  height: 100px;
  bottom: -38px;
  right: -40px;
  background: url(../img/common/frame-default-deco-right.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  z-index: 1;
}

@media screen and (max-width: 800px) {
  .frame-default {
    padding: 30px 20px;
  }

  .frame-default::before {
    width: 120px;
    height: 60px;
    bottom: -26px;
  }

  .frame-default::after {
    width: 120px;
    height: 60px;
    bottom: -26px;
  }
}

@media screen and (max-width: 600px) {
  .frame-default {
    padding: 30px 20px;
  }

  .frame-default::before {
    width: 100px;
    height: 40px;
    bottom: -20px;
  }

  .frame-default::after {
    width: 100px;
    height: 40px;
    bottom: -20px;
  }
}

.frame-simple {
  width: 100%;
  background: linear-gradient(to top,
      #000000 0%,
      #3e1213 100%);
  border: 2px solid transparent;
  border-image: linear-gradient(45deg,
      #B67B03 0%,
      #DAAF08 45%,
      #FEE9A0 70%,
      #DAAF08 85%,
      #B67B03 100%) 1;
  padding: 40px;
}

@media (max-width: 600px) {

  .frame-simple {
    padding: 30px 10px;
  }
}

.lead-default {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  line-height: 1.4;
  margin-top: -40px;
}

.sub-lead-default {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  line-height: 1.4;
}

.about-lists-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  border-bottom: 3px solid transparent;
  border-image: url(../img/common/line-dot-gold.svg) 50 repeat;
  font-size: 24px;
  letter-spacing: 0.08em;
  padding-bottom: 10px;
}

.about-lists-item:last-child {
  border: none;
  margin-bottom: 0;
}
.about-lists-item .small{
  font-size: 0.7em;
}

.about-lists-type {
  width: 120px;
  flex-shrink: 0;
}

@media screen and (max-width: 800px) {
  .about-lists-item {
    font-size: 18px;
  }
}

@media screen and (max-width: 600px) {
  .about-lists-item {
    text-align: center;
    font-size: 15px;
    gap: 10px;
    flex-direction: column;
  }

  .about-lists-type {
    width: 200px;
    font-size: 16px;
    padding: 5px 0;
    letter-spacing: 0.08em;
    line-height: 1.2;
    color: #fff;
    position: relative;
    font-weight: 800;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
  }
}

.common-notice-lists {
  padding-left: 1.5em;
}

.common-notice-list {
  position: relative;
  margin-bottom: 0.5em;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.common-notice-list:before {
  content: "※";
  position: absolute;
  font-size: 10px;
  color: #bea90a;
  left: -1.5em;
  top: 2px;
}

.common-notice-lists.dot .common-notice-list:before {
  content: "・";
  position: absolute;
  font-size: 10px;
  color: #000;
  left: -1.5em;
  top: 2px;
}

.common-notice-lists.number .common-notice-list {
  list-style: decimal;
  position: inherit;
}

.common-notice-lists.notice .common-notice-list {
  margin-bottom: 1em;
}

.common-notice-lists.dot .common-notice-list:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FF676A;
  left: -1.5em;
  top: 6px;
}

.common-notice-lists.dot-gray .common-notice-list:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #9A9A9A;
  left: -1.2em;
  top: 8px;
}

.common-notice-lists.kome .common-notice-list {
  margin-bottom: 0.5em;
}

.common-notice-lists.kome .common-notice-list:before {
  content: "※";
  position: absolute;
  background-color: transparent;
  font-size: 10px;
  color: #000;
  left: -1.5em;
  top: 2px;
}

.common-notice-lists.mb0 .common-notice-list {
  margin-bottom: 0;
}

/***********************************************
***  Loader
***********************************************/
.loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: #000;
  z-index: 2000;
  transition: opacity .4s ease, visibility .4s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
  width: 50%;
  max-width: 600px;
  margin: 0 auto;
}

.loader-logo {
  width: 100%;
  margin-bottom: 20px;
}

.loader-anime {
  height: 2px;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  --c: no-repeat linear-gradient(#E9C82D 0 0);
  background: var(--c), var(--c), #000;
  background-size: 60% 100%;
  animation: l16 4s infinite;
}

@keyframes l16 {
  0% {
    background-position: -150% 0, -150% 0
  }

  66% {
    background-position: 250% 0, -150% 0
  }

  100% {
    background-position: 250% 0, 250% 0
  }
}

@media (max-width: 600px) {
  .loader-inner {
    width: 70%;
  }
}

/***********************************************
***  wrapper
***********************************************/

.main {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.20);
  position: relative;
  margin: 80px auto 0;
  overflow-x: hidden;
}


/***********************************************
***  Header
***********************************************/

.header {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
}

.header::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-image: linear-gradient(90deg, rgba(151, 108, 1, 1), rgb(182, 151, 0) 20%, rgba(151, 108, 1, 1) 40%, rgb(182, 151, 0) 60%, rgba(151, 108, 1, 1) 80%, rgb(182, 151, 0) 100%);
  bottom: 0;
  left: 0;
}

.header-logo-sp {
  display: none;
}

.header-logo {
  width: 140px;
}

.header-logo a {
  width: 100%;
  height: 100%;
  display: block;
}

.global-navigation {

  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 20px;
}

.global-navigation-mob-btn {
  display: none;
}

.global-navigation-lists {
  background-size: contain;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 40px;
}

.global-navigation-list {
  font-family: "Ryumin Bold KL";
  font-size: 20px;
  letter-spacing: 0.08em;
  font-weight: 600;
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
}

.global-navigation-list a {
  padding: 10px 0;
}

.global-navigation-list:before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  background: url(../img/common/header/nav-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 10px;
  left: -25px;
}

.global-navigation-list .arrow {
  font-size: 0.7em;
  padding: 5px;
}

.global-navigation-list.ticket {
  width: 120px;
  margin-top: -10px;
  margin-left: -12px;
}

.global-navigation-list.ticket:before {
  display: none;
}

#global-navigation-mob-btn-check {
  display: none;
}

.global-navigation-mob-unshown {
  display: none;
}

.has-subnav {
  position: relative;
}

.subnav-toggle {
  display: none;
}

.subnav-btn {
  display: none;
  width: 28px;
  height: 28px;
  margin-left: 6px;
  cursor: pointer;
  position: relative;
}

.subnav {
  list-style: none;
  padding: 0 20px;
  text-align: center;
  position: absolute;
  top: 100%;
  left: -10px;
  min-width: 220px;
  background: linear-gradient(to bottom, rgb(182, 151, 0) 0%, #3e1213 50%, #000 100%);
  border-bottom: 1px solid rgb(182, 151, 0);
  display: none;
  z-index: 999;
}

.subnav-item {
  margin: 0;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  /* border-bottom: 1px solid transparent;
    border-image: url(../img/common/dot-gold.svg) 50 repeat; */
}

.subnav-item:last-child {
  border: none;
}

.subnav-link {
  display: block;
  padding: 10px 16px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  white-space: nowrap;
}

.subnav-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.has-subnav {
  position: relative;
}

.has-subnav::after {
  content: "";
  position: absolute;
  left: -24px;
  right: -24px;
  top: 100%;
  height: 16px;
}

.has-subnav .subnav {
  position: absolute;
  z-index: 1;
}

.has-subnav:hover .subnav,
.has-subnav:focus-within .subnav {
  display: block;
}


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

  .subnav-toggle:checked~.subnav {
    display: block;
  }

  .subnav-toggle:checked~.subnav-btn::before {
    transform: rotate(-135deg);
  }

  .global-navigation-list:before {
    display: none;
  }

  .has-subnav .subnav {
    position: static;
    margin-top: 0;
    border-left: none;
    border-right: none;
    min-width: 0;
    background: transparent;
    border-bottom: none;
    padding-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 4%;
    position: relative;
    left: 0;
  }

  .has-subnav:hover .subnav,
  .has-subnav:focus-within .subnav {
    display: flex;
  }

  .has-subnav .subnav .subnav-item {
    background: rgba(249, 210, 12, 0.1);
    margin-bottom: 15px;
    border: none;
    width: 48%;
  }

  .subnav-link {
    width: 100%;
  }

  .header {
    margin-top: 0;
    width: 100%;
    padding-top: inherit;
    height: 80px;
  }

  .header-logo-sp {
    display: block;
    width: 110px;
    position: absolute;
    left: 5px;
    top: 5px;
  }

  .global-navigation-mob-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    padding: 10px;
    /* background-color: #000000;
        border: 1px solid rgb(182, 151, 0); */
  }

  .global-navigation-mob-btn-inner {
    position: relative;
    width: 40px;
    height: 40px;
  }

  .global-navigation-mob-btn-line {
    position: absolute;
    background-color: #daaf08;
    width: 100%;
    height: 3px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  .global-navigation-mob-btn-line:nth-of-type(1) {
    position: absolute;
    top: 0;
    left: 0;
  }

  .global-navigation-mob-btn-line:nth-of-type(2) {
    position: absolute;
    top: 14px;
    left: 0;
  }

  .global-navigation-mob-btn-text {
    position: absolute;
    top: 23px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
  }

  .header-logo {
    width: 200px;
    margin: 20px auto;
  }

  .global-navigation-lists {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    background: transparent;
    position: relative;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
    width: 90%;
  }

  .global-navigation-lists:before {
    position: absolute;
    content: "";
    width: 70%;
    max-width: 320px;
    height: 150px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
  }

  .global-navigation-list {
    padding: 0;
    margin: 0 auto 16px;
    display: inline-block;
    list-style: none;
    width: 100%;
    text-align: center;
    background-color: rgba(126, 0, 0, 0.4);
  }

  .global-navigation-list a {
    display: inline-block;
    font-size: 18px;
    box-sizing: border-box;
    color: #fff;
    text-decoration: none;
    position: relative;
  }

  .global-navigation-list.ticket {
    width: 200px;
    background: none;
    margin: 0 auto;
  }

  .global-navigation {
    width: 100%;
    height: 100%;
    position: fixed;
    flex-direction: column;
    justify-content: flex-start;
    top: -100vh;
    left: 0;
    z-index: 80;
    background: linear-gradient(to bottom, #000000 50%, #3e1213 100%);
    overflow-x: hidden;
    transition: all 0.5s;
  }

  #global-navigation-mob-btn-check:checked~.global-navigation {
    top: 0;
    display: block;
    border: 2px solid;
  }

  #global-navigation-mob-btn-check:checked~.global-navigation-mob-btn .global-navigation-mob-btn-line {
    top: 10px;
    transform: rotate(25deg);
  }

  #global-navigation-mob-btn-check:checked~.global-navigation-mob-btn .global-navigation-mob-btn-line:nth-of-type(2) {
    bottom: 0;
    transform: rotate(-25deg);
  }

  #global-navigation-mob-btn-check:checked~#global-navigation-mob-close {
    display: block;
    opacity: .5;
  }
}

@media only screen and (max-width:500px) {
  .header {
    height: 60px;
  }

  .header-logo-sp {
    width: 80px;
  }

  .global-navigation-mob-btn {
    top: 6px;
    height: 46px;
    width: 46px;
    padding: 6px;
  }

  .global-navigation-mob-btn-inner {
    position: relative;
    width: 40px;
    height: 25px;
  }

  .global-navigation-mob-btn-line:nth-of-type(2) {
    top: 10px;
  }

  #global-navigation-mob-btn-check:checked~.global-navigation-mob-btn .global-navigation-mob-btn-line {
    top: 4px;
  }

  .global-navigation-mob-btn-text {
    top: 17px;
    padding: 0;
    margin: 0;
    line-height: 1;
  }

  .header-logo {
    width: 40%;
    margin: 20px auto;
  }

  .global-navigation-lists {
    width: 100%;
  }

  .global-navigation-list a {

    font-size: 15px;
  }

  .subnav {
    padding: 10px;
  }

  .subnav-item {
    margin-bottom: 10px;
    line-height: 1.2;
  }

}
@media only screen and (max-width: 400px) {
    .global-navigation-list a.subnav-link {
        font-size: 13px;
    }
}

/***********************************************
***  contents
***********************************************/
.contents-lists {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contents-list {
  position: relative;
  width: 48%;
  margin-bottom: clamp(24px, 4vw, 40px);
  background: linear-gradient(to bottom,
      #000000 0%,
      #3e1213 100%);
  border: 2px solid transparent;
  border-image: linear-gradient(45deg,
      #B67B03 0%,
      #DAAF08 45%,
      #FEE9A0 70%,
      #DAAF08 85%,
      #B67B03 100%) 1;
}

.contents-list.wide {
  width: 100%;
}

.contents-list:after {
  content: "";
  position: absolute;
  background: url(../img/common/frame-deco-bottom-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  width: 50px;
  height: 20px;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.contents-list-inner-top {
  position: relative;
  padding: 20px 0;
  border-bottom: 3px solid transparent;
  border-image: url("../img/common/dot-gold.svg") 50 repeat;
  margin-bottom: 20px;
}

.contents-list-inner-top:before {
  content: "";
  position: absolute;
  background: url(../img/common/frame-deco-top-left.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  width: 50px;
  height: 20px;
  top: 0;
  left: 0;
  z-index: 1;
}

.contents-list-inner-bottom {
  padding: 20px 40px 40px;
}

.contents-list-heading {
  font-size: 36px;
  text-align: center;
  font-family: "Ryumin Bold KL";
}

@media screen and (max-width: 800px) {
  .contents-list {
    width: 100%;
  }

  .contents-list-inner-top {
    padding: 15px 0;
  }

  .contents-list-inner-bottom {
    padding: 15px 20px 30px;
  }

  .contents-list-heading {
    font-size: 24px;
  }
}

@media screen and (max-width: 600px) {
  .contents-list {
    width: 100%;
  }

  .contents-list-inner-top {
    padding: 15px 0;
  }

  .contents-list-inner-bottom {
    padding: 15px 10px 30px;
  }

  .contents-list-heading {
    font-size: 20px;
  }

  .contents-list-inner-top:before {
    width: 30px;
    height: 12px;
  }

  .contents-list:after {
    width: 30px;
    height: 12px;
  }
}

.contents-list-image {
  margin-bottom: 20px;
}

.contents-list-image.col-2 {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contents-list-image.col-2 div {
  width: calc((100% - 40px) / 2);
}

@media screen and (max-width: 800px) {
  .contents-list-image.col-2 {
    gap: 20px;
  }
}

.contents-list-data {
  line-height: calc(28 / 16);
  font-size: 15px;
  width: 100%;
  padding-top: 5px;
}

.contents-list-data .small {
  line-height: calc(21 / 12);
  font-size: 12px;
}

.contents-list-data .l-small {
  line-height: calc(21 / 12);
  font-size: 0.9em;
}

.contents-list-data .red {
  color: #e50013;
  font-size: 10px;
}

.contents-list-data .space {
  display: block;
  height: 12px;
}

.contents-list-text {
  line-height: 1.4;
  font-size: 15px;
  width: 100%;
  text-align: justify;
}

.contents-detail-lists {
  display: grid;
}

.contents-detail-lists.col-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px
}

@media screen and (max-width: 800px) {
  .contents-detail-lists.col-3 {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.contents-detail-list-image {
  margin-bottom: 10px;
}

/***********************************************
***  faq
***********************************************/
.faq-lists-item {
  position: relative;
  margin-bottom: 30px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.70) 0%, rgba(12, 39, 59, 0.70) 100%);
  border: 1px solid transparent;
  border-image: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 100%) 1;
}

.faq-lists-question {
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  padding: 20px;
  background: url(../img/common/frame-bg-green.png);
  background-repeat: repeat-x;
  background-size: auto 100%;
  border-bottom: 1px solid transparent;
  border-image: url(../img/common/dot-gold-small.svg) 50 repeat;
  margin-bottom: 20px;
}

.faq-lists-question-text {
  position: relative;
  padding-left: 45px;
}

.faq-lists-question-text:after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background: url(../img/common/icon-question.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 16px;
  left: 0;
  transform: translateY(-50%);
}

.faq-lists-answer {
  font-size: 16px;
  letter-spacing: 0.08em;
  padding: 0 20px 20px 20px;
  line-height: 1.6;
}

/***********************************************
***  footer
***********************************************/
.footer {
  background: #000;
  padding: 60px 40px 20px;
  width: 100%;
  margin: 0 auto;
}

.footer-bnr-lists {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: clamp(24px, 4vw, 40px);
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto 40px;
}
.footer-bnr-list img{
  border: 1px solid transparent;
}
@media screen and (max-width: 800px) {
  .footer-bnr-lists {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
}

.footer-bnr-list {
  width: 100%;
  display: block;
  overflow: hidden;
  box-shadow: 0 0 2px #fee9a0;
}

.footer-bnr a {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-bnr img {
  height: auto;
  transition: transform .6s ease;
}

.footer-bnr:hover img {
  transform: scale(1.05);
}

.footer-copyright {
  font-size: 11px;
  text-align: center;
}