.scaleFadeIn {
  -webkit-animation: scaleFadeIn 1.5s cubic-bezier(0, 0.65, 0.35, 1) forwards;
          animation: scaleFadeIn 1.5s cubic-bezier(0, 0.65, 0.35, 1) forwards;
}

@-webkit-keyframes floatUpFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes floatUpFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.float-up-fade-in {
  opacity: 0;
  -webkit-animation: floatUpFadeIn 0.6s ease-out forwards;
          animation: floatUpFadeIn 0.6s ease-out forwards;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

@-webkit-keyframes floatUpFadeInDelayed {
  0% {
    opacity: 0;
    -webkit-transform: translate(30px);
            transform: translate(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes floatUpFadeInDelayed {
  0% {
    opacity: 0;
    -webkit-transform: translate(30px);
            transform: translate(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.float-up-fade-in-delayed {
  opacity: 0;
  -webkit-animation: floatUpFadeInDelayed 0.6s ease-out forwards;
          animation: floatUpFadeInDelayed 0.6s ease-out forwards;
  -webkit-animation-delay: 1.75s;
          animation-delay: 1.75s;
}

@font-face {
  font-family: Noto Sans JP;
  font-weight: 350;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Noto Sans JP;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Noto Sans JP;
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Noto Sans JP;
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #E5AE4C;
  position: relative;
  overflow-x: hidden;
}
body:before {
  content: "";
  position: fixed;
  background-image: url("../images/mv_bg01.jpg");
  background-size: 30px 30px, 30px 30px, auto;
  background-position: center center;
  min-height: 100vh;
  width: 100%;
  z-index: -1;
}

@media screen and (min-width: 601px) {
  body:before {
    background-size: 40px 40px, 40px 40px, auto;
  }
}
img {
  max-width: 100%;
  height: auto;
}

button {
  all: unset;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

main {
  overflow: hidden;
}

main .col-main {
  background-color: #FFF4CD;
}
main .col-main .bg-left,
main .col-main .bg-right {
  display: none;
}

@media screen and (min-width: 601px) {
  main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
  main .col-main {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    -webkit-box-shadow: 8px 0 #F9DD90, -8px 0 #F9DD90;
            box-shadow: 8px 0 #F9DD90, -8px 0 #F9DD90;
  }
  main .col-main:before, main .col-main:after {
    content: "";
    position: absolute;
    top: 0;
    width: 3px;
    height: 100%;
    z-index: 0;
    background-color: #F9DD90;
  }
  main .col-main:before {
    left: -14px;
  }
  main .col-main:after {
    right: -14px;
  }
  main .bg-left,
  main .bg-right {
    width: calc(50vw - 313px);
    height: auto;
    background-repeat: repeat-y;
    background-position: top center;
    background-size: 350px;
    will-change: transform;
  }
  main .bg-left {
    background-image: url("../images/bg/bg-left.png");
  }
  main .bg-right {
    background-image: url("../images/bg/bg-right.png");
  }
}
.nav-section {
  position: relative;
  min-height: 100px;
}

@media screen and (max-width: 600px) {
  .nav-section {
    min-height: unset;
  }
  .nav-section:before {
    display: none;
  }
}
.nav-wrapper {
  position: relative;
  background: #F2C35D;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  -webkit-box-shadow: inset 0 -2px #E5AE4C, inset 0 -3px #F2C35D;
          box-shadow: inset 0 -2px #E5AE4C, inset 0 -3px #F2C35D;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.nav-wrapper:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 13px;
  background: #E5AE4C;
  z-index: 1;
}
.nav-wrapper.float {
  width: 100%;
  position: fixed;
  top: 0;
  opacity: 1;
  z-index: 102;
}
.nav-wrapper.before-float, .nav-wrapper.after-float {
  width: 100vw;
  opacity: 0;
}

.nav-wrapper .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  padding: 19.5px 1% 24.5px;
  margin: 0 auto;
}
.nav-wrapper .nav-list a {
  text-decoration: none;
  color: #fff;
  font-size: clamp(12px, 1.8vw, 22px);
  font-weight: 700;
  text-shadow: 1px 1px 0 #E5AE4C, -1px -1px 0 #E5AE4C, -1px 1px 0 #E5AE4C, 1px -1px 0 #E5AE4C, 0px 1px 0 #E5AE4C, 0 -1px 0 #E5AE4C, -1px 0 0 #E5AE4C, 1px 0 0 #E5AE4C;
  display: block;
}
.nav-wrapper .nav-list a:hover:not(.active) {
  color: #fff;
  opacity: 0.5;
  -webkit-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}

.nav-wrapper .nav-list li.active a:before {
  content: "";
  border: 1px solid #E5AE4C;
  background: #fff;
  margin-right: 9px;
  border-radius: 50px;
  width: clamp(6px, 0.625vw, 12px);
  height: clamp(6px, 0.625vw, 12px);
  display: inline-block;
}
.nav-wrapper .nav-list li.active a:hover:before {
  color: #fff;
  opacity: 0.5;
  -webkit-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}

.mobile-nav-wrapper {
  display: none;
}

@media screen and (max-width: 600px) {
  .nav-wrapper {
    display: none;
  }
  .mobile-nav-wrapper {
    display: block;
  }
  .hamburger-btn {
    position: fixed;
    top: clamp(28px, 28px + 16.8 * (100vw - 375px) / 255, 44.8px);
    right: clamp(6px, 6px + 3.6 * (100vw - 375px) / 255, 9.6px);
    width: clamp(48px, 48px + 28.8 * (100vw - 375px) / 255, 76.8px);
    height: clamp(48px, 48px + 28.8 * (100vw - 375px) / 255, 76.8px);
    border: unset;
    background: url("../images/bg/bg-hm.svg") no-repeat center center;
    background-size: clamp(48px, 48px + 28.8 * (100vw - 375px) / 255, 76.8px) clamp(48px, 48px + 28.8 * (100vw - 375px) / 255, 76.8px);
    cursor: pointer;
    z-index: 1002;
    padding: 4px;
    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;
  }
  .hamburger-btn .hamburger-icon,
  .hamburger-btn .hamburger-icon:before,
  .hamburger-btn .hamburger-icon:after {
    content: "";
    display: block;
    width: clamp(20px, 20px + 14.4 * (100vw - 375px) / 255, 38.4px);
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    position: relative;
    -webkit-transition: top 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: top 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  }
  .hamburger-btn .hamburger-icon:before {
    top: clamp(-8px, -8px + -4.2 * (100vw - 375px) / 255, -11.2px);
  }
  .hamburger-btn .hamburger-icon:after {
    top: 5px;
  }
  .nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5019607843);
    opacity: 0;
    backdrop-filter: blur(2px);
    visibility: hidden;
    -webkit-transition: opacity 0.4s ease, visibility 0s 0.4s linear;
    transition: opacity 0.4s ease, visibility 0s 0.4s linear;
    z-index: 1000;
  }
  .mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: clamp(230px, 230px + 138 * (100vw - 375px) / 255, 368px);
    height: 100%;
    background-color: #F2C35D;
    -webkit-transform: translate(100%);
            transform: translate(100%);
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    z-index: 1001;
    -webkit-box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
            box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
  }
  .mobile-nav .acc-dot.mt {
    position: absolute;
    bottom: 0;
  }
  .mobile-nav .mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: clamp(12px, 1.8vw, 22px);
    font-weight: 700;
    text-shadow: 1px 1px 0 #E5AE4C, -1px -1px 0 #E5AE4C, -1px 1px 0 #E5AE4C, 1px -1px 0 #E5AE4C, 0px 1px 0 #E5AE4C, 0 -1px 0 #E5AE4C, -1px 0 0 #E5AE4C, 1px 0 0 #E5AE4C;
  }
  .mobile-nav .mobile-nav-list li.active a:before {
    content: "";
    position: absolute;
    top: clamp(13px, 13px + 18 * (100vw - 375px) / 255, 28px);
    left: 22px;
    border: 1px solid #E5AE4C;
    background: #fff;
    border-radius: 50px;
    width: clamp(6px, 1.65vw, 10px);
    height: clamp(6px, 1.65vw, 10px);
    display: inline-block;
  }
  .mobile-nav .mobile-nav-list li a {
    position: relative;
    display: block;
    padding: clamp(5px, 5px + 9 * (100vw - 375px) / 255, 24px) 18px;
    padding-left: 38px;
    color: #fff;
    text-decoration: none;
    font-family: Noto Sans JP, sans-serif;
    font-weight: 700;
    font-size: clamp(16px, 16px + 9.6 * (100vw - 375px) / 255, 25.6px);
    -webkit-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
  }
  .mobile-nav .mobile-nav-list li a:hover,
  .mobile-nav .mobile-nav-list li a:focus {
    background-color: rgba(255, 255, 255, 0.1019607843);
  }
  .mobile-nav .mobile-nav-list li:not(.active) a {
    color: #fff;
  }
  body.is-menu-open .hamburger-btn .hamburger-icon {
    background-color: transparent;
  }
  body.is-menu-open .hamburger-btn .hamburger-icon:before {
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  body.is-menu-open .hamburger-btn .hamburger-icon:after {
    top: -3px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  body.is-menu-open .nav-overlay {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  body.is-menu-open .mobile-nav {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.ticket-button-anime {
  position: absolute;
  z-index: 3;
  top: clamp(-30px, -30px + 15 * (100vw - 375px) / 255, -50px);
  left: clamp(-9px, -9px + 10.6 * (100vw - 375px) / 255, -9px);
  width: clamp(90px, 90px + 90 * (100vw - 375px) / 255, 134px);
  -webkit-animation: pyoko 5s ease-in-out infinite;
          animation: pyoko 5s ease-in-out infinite;
}

@-webkit-keyframes pyoko {
  0% {
    -webkit-transform: rotate(0deg) translateX(-4px);
            transform: rotate(0deg) translateX(-4px);
  }
  5% {
    -webkit-transform: rotate(10deg) translateX(0);
            transform: rotate(10deg) translateX(0);
  }
  10% {
    -webkit-transform: rotate(-10deg) translateX(-8px);
            transform: rotate(-10deg) translateX(-8px);
  }
  15% {
    -webkit-transform: rotate(10deg) translateX(0);
            transform: rotate(10deg) translateX(0);
  }
  20% {
    -webkit-transform: rotate(-10deg) translateX(-8px);
            transform: rotate(-10deg) translateX(-8px);
  }
  25% {
    -webkit-transform: rotate(0deg) translateX(-4px);
            transform: rotate(0deg) translateX(-4px);
  }
  100% {
    -webkit-transform: rotate(0deg) translateX(-4px);
            transform: rotate(0deg) translateX(-4px);
  }
}

@keyframes pyoko {
  0% {
    -webkit-transform: rotate(0deg) translateX(-4px);
            transform: rotate(0deg) translateX(-4px);
  }
  5% {
    -webkit-transform: rotate(10deg) translateX(0);
            transform: rotate(10deg) translateX(0);
  }
  10% {
    -webkit-transform: rotate(-10deg) translateX(-8px);
            transform: rotate(-10deg) translateX(-8px);
  }
  15% {
    -webkit-transform: rotate(10deg) translateX(0);
            transform: rotate(10deg) translateX(0);
  }
  20% {
    -webkit-transform: rotate(-10deg) translateX(-8px);
            transform: rotate(-10deg) translateX(-8px);
  }
  25% {
    -webkit-transform: rotate(0deg) translateX(-4px);
            transform: rotate(0deg) translateX(-4px);
  }
  100% {
    -webkit-transform: rotate(0deg) translateX(-4px);
            transform: rotate(0deg) translateX(-4px);
  }
}
.ticket-button-link {
  width: clamp(315px, 315px + 168 * (100vw - 375px) / 255, 505px);
  will-change: transform;
  -webkit-transition: -webkit-filter 0.1s ease-in-out;
  transition: -webkit-filter 0.1s ease-in-out;
  transition: filter 0.1s ease-in-out;
  transition: filter 0.1s ease-in-out, -webkit-filter 0.1s ease-in-out;
}
.ticket-button-link:hover {
  -webkit-filter: brightness(0.6);
          filter: brightness(0.6);
  z-index: 3;
}

.ticket-button-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 2;
}

.ticket-button-section {
  padding: clamp(47px, 47px + 28.2 * (100vw - 375px) / 255, 15px) clamp(20px, 20px + 27.6 * (100vw - 375px) / 255, 48px) clamp(56px, 56px + 27.6 * (100vw - 375px) / 255, 100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 600px) {
  .ticket-button-section {
    padding-bottom: 0;
  }
}

.ticket-button-image-direct {
  display: block;
  width: clamp(280px, 280px + 168 * (100vw - 375px) / 255, 448px);
  height: clamp(146.5px, 146.5px + 87.9 * (100vw - 375px) / 255, 234.4px);
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 2;
  cursor: default;
  -webkit-tap-highlight-color: transparent;
}

.ticket-button-image-direct:active {
  -webkit-filter: none !important;
          filter: none !important;
}

.message-box {
  width: clamp(320px, 280px + 168 * (100vw - 375px) / 255, 448px);
  height: auto;
  text-align: center;
  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;
}

.message-box p {
  white-space: nowrap;
  margin: 0;
  font-family: Noto Sans JP, sans-serif;
  font-size: clamp(14px, 14px + 6.6 * (100vw - 375px) / 255, 18px);
  font-weight: 500;
  color: #F17AB3;
}

.card-section {
  padding: clamp(56px, 56px + 34.2 * (100vw - 375px) / 255, 70px) clamp(15px, 15px + 12 * (100vw - 375px) / 255, 24px) 0;
  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;
}

.custom-card {
  width: 100%;
  max-width: 600px;
  background-color: #fff;
  border-radius: clamp(15px, 15px + 33.6 * (100vw - 375px) / 255, 25px);
  padding: clamp(90px, 90px + 33.6 * (100vw - 375px) / 255, 140px) clamp(16px, 16px + 10.8 * (100vw - 375px) / 255, 24px) clamp(22px, 22px + 19.8 * (100vw - 375px) / 255, 30px);
  position: relative;
}

.custom-card .card-header {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 100%;
  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;
  z-index: 10;
}
.custom-card .card-header:before, .custom-card .card-header:after {
  content: "";
  position: absolute;
  bottom: clamp(-6px, -6px + -3.6 * (100vw - 375px) / 255, -9.6px);
  width: clamp(110px, 110px + 50.4 * (100vw - 375px) / 255, 120px);
  height: clamp(105px, 105px + 50.4 * (100vw - 375px) / 255, 115px);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 4;
}

@media screen and (max-width: 600px) {
  .overview .custom-card .card-header:before {
    left: -10px;
    background-image: url("../images/bg/m1.png");
  }
  .overview .custom-card .card-header:after {
    right: -10px;
    background-image: url("../images/bg/m2.png");
  }
  .goods .custom-card .card-header:before {
    left: -16px;
    background-image: url("../images/bg/m5.png");
  }
  .goods .custom-card .card-header:after {
    right: -16px;
    background-image: url("../images/bg/m6.png");
  }
  .novelty .custom-card .card-header:before {
    left: -12px;
    background-image: url("../images/bg/m7.png");
  }
  .novelty .custom-card .card-header:after {
    right: -15px;
    background-image: url("../images/bg/m8.png");
  }
  .sns-x .custom-card .card-header:before {
    left: -16px;
    background-image: url("../images/bg/m9.png");
  }
  .sns-x .custom-card .card-header:after {
    right: -16px;
    background-image: url("../images/bg/m10.png");
  }
  .exhibits .custom-card .card-header:before {
    left: -16px;
    background-image: url("../images/bg/m11.png");
  }
  .exhibits .custom-card .card-header:after {
    right: -16px;
    background-image: url("../images/bg/m12.png");
  }
}
.card-content p {
  text-align: center;
  font-weight: 700;
  color: #1E9EEB;
  font-size: clamp(14px, 14px + 7.2 * (100vw - 375px) / 255, 18px);
}

.card-content span {
  color: #525252;
  font-weight: 500;
}

@media screen and (min-width: 601px) {
  .custom-card {
    padding-top: clamp(56px, 56px + 56.6 * (100vw - 375px) / 255, 148px);
  }
  .custom-card .card-header:after {
    content: "";
    background: url("../images/ttl/obj.svg") no-repeat top/contain;
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    width: calc(100% - 24px);
    height: 100%;
    z-index: 2;
    display: block;
    margin: 0 auto;
  }
}
.custom-card .card-header h2 {
  width: 100%;
}

.custom-card .card-header .card-title-text {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
}

.acc-dot {
  position: relative;
  display: block;
  background-color: #E5AE4C;
  width: 100%;
  height: clamp(13px, 13px + 9 * (100vw - 375px) / 255, 20px);
  border: unset;
}

.acc-dot.min {
  z-index: 2;
  height: clamp(5px, 5px + 3 * (100vw - 375px) / 255, 8px);
}

.acc-dot.mt {
  border-top: 4px solid #fff;
}
.acc-dot.mt:after {
  content: "";
  display: block;
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  z-index: 3;
  height: 2px;
  background: #E5AE4C;
}

.acc-dot.mb {
  border-bottom: 4px solid #fff;
}
.acc-dot.mb:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  z-index: 3;
  height: 2px;
  background: #E5AE4C;
}

.header-content {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  background: url("../images/mv_bg01.jpg");
  background-size: 30px 30px, 30px 30px, auto;
  background-repeat: repeat, repeat, no-repeat;
}
.header-content:before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  display: inline-block;
  background: url("../images/mv_bg02.png") repeat-x top/contain;
  height: 168px;
  width: 100%;
}
.header-content:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  background: url("../images/bg/bg-kv_sp.png") no-repeat top/contain;
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 601px) {
  .header-content {
    height: 910px;
    background-size: 40px 40px, 40px 40px, auto;
  }
  .header-content:before {
    top: -62px;
    height: 328px;
  }
  .header-content:after {
    background: url("../images/bg/bg-kv.png") no-repeat top/contain;
  }
  .header-content h1 {
    bottom: 0;
    width: 414px;
    height: 426px;
  }
}
@media screen and (max-width: 600px) {
  .header-content {
    height: clamp(615px, 615px + 369 * (100vw - 375px) / 255, 984px);
  }
  .header-content h1 {
    bottom: 0;
    width: clamp(250px, 250px + 300.8px * (100vw - 375px) / 375px, 404.8px);
    height: clamp(230px, 230px + 102 * (100vw - 375px) / 375px, 404.8px);
  }
}
.header-content h1 {
  position: absolute;
  z-index: 30;
}

.header-content h1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header-content .mv-section {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 20;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  pointer-events: none;
}

.header-content .mv-section picture {
  position: absolute;
  top: 0;
}

@media screen and (min-width: 601px) {
  .header-content .mv-section picture.mv1 {
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
  .header-content .mv-section picture.mv1 img {
    height: 1580px;
    width: auto;
    display: block;
    max-width: none;
  }
  .header-content .mv-section picture.mv2 {
    top: 30px;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
  .header-content .mv-section picture.mv2 img {
    height: 1440px;
    width: auto;
    display: block;
    max-width: none;
  }
  .header-content .mv-section picture.mv3 {
    top: 30px;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
  .header-content .mv-section picture.mv3 img {
    height: 1610px;
    width: auto;
    display: block;
    max-width: none;
  }
  .header-content .mv-section picture.mv4 {
    top: 30px;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
  .header-content .mv-section picture.mv4 img {
    height: 1600px;
    width: auto;
    display: block;
    max-width: none;
  }
  .header-content .mv-section picture.mv5 {
    top: 30px;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
  .header-content .mv-section picture.mv5 img {
    height: 1590px;
    width: auto;
    display: block;
    max-width: none;
  }
  .header-content .mv-section picture.mv6 {
    top: 30px;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
  .header-content .mv-section picture.mv6 img {
    height: 1468px;
    width: auto;
    display: block;
    max-width: none;
  }
  .header-content .mv-section picture.mv7 {
    top: 30px;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
  .header-content .mv-section picture.mv7 img {
    height: 1638px;
    width: auto;
    display: block;
    max-width: none;
  }
}
@media screen and (max-width: 600px) {
  .header-content .mv-section picture.mv1 {
    top: clamp(-20px, -20px + 15 * (100vw - 375px) / 255, 40px);
    left: 51%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
  .header-content .mv-section picture.mv1 img {
    margin-top: clamp(30px, 30px + 18 * (100vw - 375px) / 255, 48px);
    height: clamp(690px, 690px + 414 * (100vw - 375px) / 255, 1104px);
    width: auto;
    display: block;
    max-width: none;
  }
  .header-content .mv-section picture.mv2 {
    top: clamp(10px, 10px + 33 * (100vw - 375px) / 255, 88px);
    left: 44%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
  .header-content .mv-section picture.mv2 img {
    height: clamp(685px, 685px + 411 * (100vw - 375px) / 255, 1096px);
    width: auto;
    display: block;
    max-width: none;
  }
  .header-content .mv-section picture.mv3 {
    top: clamp(25px, 25px + 27 * (100vw - 375px) / 255, 72px);
    left: 60%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
  .header-content .mv-section picture.mv3 img {
    height: clamp(700px, 700px + 420 * (100vw - 375px) / 255, 1120px);
    width: auto;
    display: block;
    max-width: none;
  }
  .header-content .mv-section picture.mv4 {
    top: clamp(25px, 25px + 30 * (100vw - 375px) / 255, 80px);
    left: 56%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
  .header-content .mv-section picture.mv4 img {
    height: clamp(685px, 685px + 411 * (100vw - 375px) / 255, 1096px);
    width: auto;
    display: block;
    max-width: none;
  }
  .header-content .mv-section picture.mv5 {
    top: clamp(25px, 25px + 30 * (100vw - 375px) / 255, 80px);
    left: 52%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
  .header-content .mv-section picture.mv5 img {
    height: clamp(700px, 700px + 420 * (100vw - 375px) / 255, 1120px);
    width: auto;
    display: block;
    max-width: none;
  }
  .header-content .mv-section picture.mv6 {
    top: clamp(15px, 15px + 27 * (100vw - 375px) / 255, 72px);
    left: 53%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
  .header-content .mv-section picture.mv6 img {
    height: clamp(730px, 730px + 438 * (100vw - 375px) / 255, 1168px);
    width: auto;
    display: block;
    max-width: none;
  }
  .header-content .mv-section picture.mv7 {
    top: clamp(0px, 0px + 24 * (100vw - 375px) / 255, 64px);
    left: 47%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
  .header-content .mv-section picture.mv7 img {
    height: clamp(740px, 740px + 444 * (100vw - 375px) / 255, 1184px);
    width: auto;
    display: block;
    max-width: none;
  }
}
.header-content .mv-picture {
  -webkit-transition: -webkit-transform 0.05s linear;
  transition: -webkit-transform 0.05s linear;
  transition: transform 0.05s linear;
  transition: transform 0.05s linear, -webkit-transform 0.05s linear;
}

.header-content #bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.header-content .btn-apply {
  display: none;
}

@media screen and (min-width: 601px) {
  .header-content .btn-apply {
    display: block;
    position: absolute;
    z-index: 100;
    bottom: 50px;
    right: 100px;
    width: 210px;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
  .header-content .btn-apply:hover {
    -webkit-filter: brightness(0.6);
            filter: brightness(0.6);
    -webkit-transition: -webkit-filter 0.1s ease-in-out;
    transition: -webkit-filter 0.1s ease-in-out;
    transition: filter 0.1s ease-in-out;
    transition: filter 0.1s ease-in-out, -webkit-filter 0.1s ease-in-out;
  }
  .header-content .btn-apply a {
    display: block;
  }
}
footer {
  background-color: #855E27;
  color: #fff;
  text-align: center;
  font-family: Hiragino Kaku Gothic ProN, Noto Sans JP, Yu Gothic, Meiryo, sans-serif;
  padding: clamp(29px, 29px + 6.6 * (100vw - 375px) / 255, 32px) 0 clamp(100px, 100px + 6.6 * (100vw - 375px) / 255, 150px);
  font-weight: 500;
}

footer p {
  font-size: clamp(12px, 12px + 7.2 * (100vw - 375px) / 255, 18px);
}

.spacer {
  height: clamp(20px, 20px + 12 * (100vw - 375px) / 255, 32px);
}

.mobile-float-nav {
  height: 0;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

@media screen and (max-width: 600px) {
  .mobile-float-nav.transition {
    opacity: 0 !important;
  }
  .mobile-float-nav.show {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 100px;
    width: calc(100% - 30px);
    height: clamp(60px, 60px + 36 * (100vw - 375px) / 255, 96px);
    background-color: #1E9EEB;
    font-size: clamp(18px, 18px + 10.8 * (100vw - 375px) / 255, 28.8px);
    font-family: Noto Sans JP, sans-serif;
    font-weight: 600;
    color: #fff;
    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;
    z-index: 101;
    opacity: 1;
    outline: 2px solid #B6F0F0;
    outline-offset: -6px;
  }
  .mobile-float-nav.show:before {
    content: "";
    position: absolute;
    top: 0;
    right: clamp(16px, 16px + 4.8 * (100vw - 375px) / 255, 22px);
    width: clamp(8px, 8px + 4.8 * (100vw - 375px) / 255, 12.8px);
    height: clamp(14.4px, 14.4px + 8.64 * (100vw - 375px) / 255, 23.04px);
    height: 100%;
    background: #B6F0F0;
    -webkit-mask: url("../images/arr-r.svg") no-repeat center/contain;
            mask: url("../images/arr-r.svg") no-repeat center/contain;
    z-index: -1;
  }
  .mobile-float-nav.show a {
    text-decoration: none;
    color: #fff;
  }
  .mobile-float-nav img {
    width: clamp(215px, 215px + 52.4 * (100vw - 375px) / 255, 420px);
    margin: 0 auto;
  }
}
header {
  position: relative;
}

header .copy-right {
  position: absolute;
  text-align: right;
  bottom: 0;
  width: 100%;
  color: #E5AE4C;
  z-index: 25;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}

header .copy-right p {
  font-size: 14px;
  padding: clamp(9px, 9px + 5.4 * (100vw - 375px) / 255, 14.4px);
}

@media screen and (max-width: 600px) {
  header .copy-right p {
    font-size: clamp(12px, 12px + 4.8 * (100vw - 375px) / 255, 12.8px);
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

canvas {
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 1.2s ease;
  transition: opacity 1.2s ease;
}

@media screen and (max-width: 600px) {
  a, button {
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
     -ms-user-select: none;
         user-select: none;
  }
}
.btn-apply-float {
  display: none;
}

@media screen and (min-width: 601px) {
  .btn-apply-float {
    display: block;
    width: 0;
    position: fixed;
    z-index: 100;
    right: 50px;
    bottom: 50px;
    opacity: 0;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
  .btn-apply-float:hover {
    -webkit-filter: brightness(0.6);
            filter: brightness(0.6);
    -webkit-transition: -webkit-filter 0.1s ease-in-out;
    transition: -webkit-filter 0.1s ease-in-out;
    transition: filter 0.1s ease-in-out;
    transition: filter 0.1s ease-in-out, -webkit-filter 0.1s ease-in-out;
  }
  .btn-apply-float.float {
    width: 210px;
    opacity: 1;
  }
  .btn-apply-float a {
    display: block;
  }
}
body.modal-open {
  overflow: hidden;
}

.img-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  z-index: 1003;
}

.img-modal.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

.img-modal .img-modal-content {
  width: 100%;
  max-width: 840px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.img-modal img {
  width: 100%;
  max-width: 100%;
  max-height: calc(100% - 40px);
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.img-modal .caption {
  color: #fff;
  margin-top: 10px;
  text-align: center;
  font-size: 16px;
  height: 30px;
}

.img-modal .close-btn {
  font-size: 50px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  margin-top: 30px;
}

.img-modal .close-btn:hover {
  -webkit-filter: brightness(0.6);
          filter: brightness(0.6);
  -webkit-transition: -webkit-filter 0.1s ease-in-out;
  transition: -webkit-filter 0.1s ease-in-out;
  transition: filter 0.1s ease-in-out;
  transition: filter 0.1s ease-in-out, -webkit-filter 0.1s ease-in-out;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.overview {
  padding-bottom: unset;
  position: relative;
}

.image-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  margin-top: clamp(24px, 24px + 8.4 * (100vw - 375px) / 255, 36px);
}

.image-slider .slider-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

.image-slider .slider-wrapper > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.image-slider .slide {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.image-slider .slide:before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #9C9C9C;
  pointer-events: none;
}

.image-slider .slide img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}

.image-slider .slider-txt {
  margin-top: 8px;
  color: #525252;
  font-size: clamp(12px, 12px + 8.4 * (100vw - 375px) / 255, 18px);
  font-weight: 700;
}

.image-slider .slider-txt .tax {
  font-weight: 500;
}

.image-slider .slider-txt .scale {
  color: #9C9C9C;
  font-weight: 500;
}

.image-slider .slider-nav-wrapper {
  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;
  padding: clamp(20px, 5vw, 32px);
  padding-bottom: 0;
}

.image-slider .slider-nav {
  width: 16px;
  height: 30px;
  cursor: pointer;
  border: unset;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.image-slider .slider-nav:hover {
  -webkit-filter: brightness(0.6);
          filter: brightness(0.6);
  -webkit-transition: -webkit-filter 0.1s ease-in-out;
  transition: -webkit-filter 0.1s ease-in-out;
  transition: filter 0.1s ease-in-out;
  transition: filter 0.1s ease-in-out, -webkit-filter 0.1s ease-in-out;
}

.image-slider .slider-nav.prev {
  background: url("../images/arr-l.svg") no-repeat center/contain;
  left: 0;
  margin-right: 15px;
}

.image-slider .slider-nav.next {
  background: url("../images/arr-r.svg") no-repeat center/contain;
  right: 0;
  margin-left: 15px;
}

.image-slider .slider-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  z-index: 5;
}

.image-slider .slider-pagination .dot {
  width: clamp(9px, 2.5vw, 12px);
  height: clamp(9px, 2.5vw, 12px);
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: #e4e4e4;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.image-slider .slider-pagination .dot:hover {
  -webkit-transition: -webkit-filter 0.1s ease-in-out;
  transition: -webkit-filter 0.1s ease-in-out;
  transition: filter 0.1s ease-in-out;
  transition: filter 0.1s ease-in-out, -webkit-filter 0.1s ease-in-out;
}
.image-slider .slider-pagination .dot.active {
  background-color: #2D7DB4;
}

@-webkit-keyframes scaleFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scaleFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.venue-list,
.faq-list {
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
}

@media screen and (max-width: 600px) {
  .venue-list {
    padding-top: 56px;
  }
}

.faq-list {
  padding-bottom: 12px;
}

.venue-list-header,
.faq-list-header {
  background: #E5AE4C;
  position: relative;
}
.venue-list-header:after, .venue-list-header:after,
.faq-list-header:after,
.faq-list-header:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  height: 2px;
  background: #E5AE4C;
}

.venue-list-header-wrap,
.faq-list-header-wrap {
  color: #fff;
  padding: clamp(18px, 18px + 10.8 * (100vw - 375px) / 255, 28.8px) clamp(27px, 27px + 16.2 * (100vw - 375px) / 255, 43.2px);
  border-top: 4px solid #fff;
  position: relative;
}
.venue-list-header-wrap:before, .venue-list-header-wrap:after,
.faq-list-header-wrap:before,
.faq-list-header-wrap:after {
  content: "";
  position: absolute;
  bottom: clamp(6px, 6px + -3.6 * (100vw - 375px) / 255, 9.6px);
  width: clamp(110px, 110px + 50.4 * (100vw - 375px) / 255, 120px);
  height: clamp(105px, 105px + 50.4 * (100vw - 375px) / 255, 115px);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 4;
}

@media screen and (max-width: 600px) {
  .venue-list-header-wrap:before {
    left: 0;
    background-image: url("../images/bg/m3.png");
  }
  .venue-list-header-wrap:after {
    right: 0;
    background-image: url("../images/bg/m4.png");
  }
  .faq-list-header-wrap:before {
    left: 0;
    background-image: url("../images/bg/m13.png");
  }
  .faq-list-header-wrap:after {
    right: 0;
    background-image: url("../images/bg/m14.png");
  }
}
.venue-list-header h2,
.faq-list-header h2 {
  font-size: clamp(20px, 20px + 10.8 * (100vw - 375px) / 255, 24px);
  text-align: center;
}

.venue-list-header h3,
.faq-list-header h3 {
  font-size: clamp(18px, 18px + 10.8 * (100vw - 375px) / 255, 28.8px);
  font-weight: 700;
  text-align: center;
}

.venue-list-header h3,
.faq-list-header h3 {
  margin-bottom: clamp(18px, 18px + 10.8 * (100vw - 375px) / 255, 28.8px);
}

.venue-list-header p {
  color: #fff;
}

.venue-list-wrap {
  width: 100%;
  padding: 0 clamp(15px, 15px + 12 * (100vw - 375px) / 255, 24px) clamp(40px, 40px + 10.8 * (100vw - 375px) / 255, 60px);
  margin: 0 auto;
  font-size: clamp(12px, 12px + 8.4 * (100vw - 375px) / 255, 18px);
}

.venue-list-wrap a {
  text-decoration: none;
  border-bottom: 1px solid #fff;
  color: #fff;
}
.venue-list-wrap a:visited {
  color: #fff;
}

.venue-list-wraplist {
  background-color: #fff;
  border-radius: clamp(12px, 12px + 16.2 * (100vw - 375px) / 255, 20px);
  padding: clamp(8px, 8px + 16.2 * (100vw - 375px) / 255, 16px);
  margin-bottom: 24px;
}

.venue-list-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.venue-list-box:nth-child(n+2) {
  margin-top: clamp(4px, 4px + 16.2 * (100vw - 375px) / 255, 8px);
}

.venue-list-box:nth-child(even) {
  border-radius: clamp(4px, 4px + 16.2 * (100vw - 375px) / 255, 8px) 0 0 clamp(4px, 4px + 16.2 * (100vw - 375px) / 255, 8px);
  background-color: rgba(82, 82, 82, 0.05);
}

.venue-list-term {
  background-color: #1E9EEB;
  color: #fff;
  width: clamp(62px, 62px + 90 * (100vw - 375px) / 255, 90px);
  font-weight: 700;
  padding: clamp(4px, 4px + 10.8 * (100vw - 375px) / 255, 4px) clamp(12px, 12px + 7.8 * (100vw - 375px) / 255, 12px);
  margin-right: clamp(8px, 8px + 8.4 * (100vw - 375px) / 255, 16px);
  border-radius: clamp(4px, 4px + 8.4 * (100vw - 375px) / 255, 8px);
  text-align: center;
}

.venue-list-description {
  color: #525252;
}

.venue-list-date {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media screen and (max-width: 600px) {
  .venue-list-date {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: clamp(110px, 110px + 52.4 * (100vw - 375px) / 255, 160px);
  }
}
@media screen and (min-width: 601px) {
  .venue-list-date {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: clamp(120px, 120px + 22.4 * (100vw - 375px) / 255, 180px);
  }
}
.venue-item,
.faq-item {
  border-radius: 0;
  overflow: hidden;
}

.venue-item.--first,
.faq-item.--first {
  border-top: 2px solid #fff;
}

.venue-header,
.faq-header {
  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: clamp(15px, 15px + 9 * (100vw - 375px) / 255, 24px);
  background-color: #E5AE4C;
  color: #fff;
  position: relative;
  cursor: pointer;
  border-bottom: 2px solid #fff;
}

.venue-header h3,
.faq-header h3 {
  font-size: clamp(16px, 16px + 8.4 * (100vw - 375px) / 255, 20px);
  font-weight: 500;
  margin: 0 auto;
}

.venue-header .toggle-btn,
.faq-header .toggle-btn {
  position: absolute;
  right: clamp(34px, 34px + 8.4 * (100vw - 375px) / 255, 46px);
  background: none;
  border: none;
  color: #fff;
  font-size: clamp(24px, 24px + 12 * (100vw - 375px) / 255, 28px);
  cursor: pointer;
  padding: 0;
  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;
}

.venue-header .toggle-btn .toggle-icon,
.faq-header .toggle-btn .toggle-icon {
  display: block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
}

.venue-content,
.faq-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  background-color: #E5AE4C;
}
.venue-content.active,
.faq-content.active {
  max-height: 500px;
}

.venue-details,
.faq-details {
  padding: clamp(24px, 24px + 10.8 * (100vw - 375px) / 255, 32px) clamp(15px, 15px + 10.8 * (100vw - 375px) / 255, 30px);
  color: #fff;
  border-bottom: 2px solid #fff;
  font-size: clamp(12px, 12px + 7.2 * (100vw - 375px) / 255, 18px);
  line-height: clamp(20px, 20px + 15.2 * (100vw - 375px) / 255, 32px);
  font-weight: 400;
}

.venue-details a,
.faq-details a {
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 400;
}

.faq-details ul {
  list-style: none;
}

.goods-caution {
  width: 100%;
}

.goods-caution-header {
  text-align: center;
  margin-top: clamp(50px, 50px + 30 * (100vw - 375px) / 255, 80px);
  padding-bottom: clamp(14px, 14px + 8.4 * (100vw - 375px) / 255, 22.4px);
  position: relative;
}

.goods-caution-header h3 {
  font-size: clamp(18px, 18px + 10.8 * (100vw - 375px) / 255, 28.8px);
  font-weight: 700;
  color: #1E9EEB;
}

.goods-caution-content {
  border-radius: clamp(12px, 12px + 16.2 * (100vw - 375px) / 255, 12px);
  background-color: rgba(82, 82, 82, 0.05);
  padding: clamp(16px, 16px + 12 * (100vw - 375px) / 255, 24px);
}

.goods-caution-content-item:not(:first-child) {
  margin-top: clamp(20px, 20px + 12 * (100vw - 375px) / 255, 32px);
}

.goods-caution-content-item h4 {
  font-size: clamp(12px, 12px + 7.2 * (100vw - 375px) / 255, 20px);
  font-weight: 500;
  color: #525252;
  margin-bottom: clamp(2px, 2px + 1 * (100vw - 375px) / 255, 8px);
}

.goods-caution-content-item p {
  font-weight: 500;
  font-size: clamp(12px, 12px + 7.2 * (100vw - 375px) / 255, 18px) !important;
  color: #525252 !important;
}

.novelty {
  position: relative;
}

.novelty-note {
  width: 100%;
  border-radius: clamp(12px, 12px + 16.2 * (100vw - 375px) / 255, 12px);
  background-color: rgba(82, 82, 82, 0.05);
  padding: clamp(16px, 16px + 12 * (100vw - 375px) / 255, 20px);
}

.novelty-note p {
  font-size: clamp(12px, 12px + 7.2 * (100vw - 375px) / 255, 18px);
  font-weight: 500;
  color: #525252;
}

.novelty-content-item {
  text-align: center;
  margin-bottom: clamp(40px, 40px + 24 * (100vw - 375px) / 255, 64px);
}
.novelty-content-item:last-child {
  margin-bottom: clamp(24px, 24px + 24 * (100vw - 375px) / 255, 40px);
}

.novelty-content-item h4 {
  font-size: clamp(13.8px, 13.8px + 8.28 * (100vw - 375px) / 255, 22.08px);
  font-weight: 900;
  color: #e4441d;
  padding: 0;
}

.novelty-content-item p {
  font-weight: 700;
  font-size: clamp(14px, 14px + 7.8 * (100vw - 375px) / 255, 18px);
  padding: 0;
  margin-top: clamp(8px, 8px + 5.4 * (100vw - 375px) / 255, 15px);
}

.novelty-content-item figure {
  border: 1px solid #9C9C9C;
  margin-top: clamp(12px, 12px + 7.2 * (100vw - 375px) / 255, 18px);
}

.novelty-content-item figure img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}

.goods .card-header h2,
.goods .card-header .card-title-text,
.exhibits .card-header h2,
.exhibits .card-header .card-title-text {
  width: 100%;
}

.sns-x-content figure {
  text-align: center;
}
.sns-x-content figure:hover {
  -webkit-filter: brightness(0.6);
          filter: brightness(0.6);
}

.sns-x-content figure img {
  width: clamp(258px, 258px + 133.8 * (100vw - 375px) / 255, 356.8px);
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.exhibits .custom-card {
  position: relative;
}

.exhibits {
  margin-bottom: clamp(56px, 56px + 34.2 * (100vw - 375px) / 255, 70px);
}