@charset "UTF-8";
@font-face {
  font-family: "ClashGrotesk-Medium";
  src: url("../assets/fonts/ClashGrotesk-Medium.woff2") format("woff2"), url("../assets/fonts/ClashGrotesk-Medium.woff") format("woff"), url("../assets/fonts/ClashGrotesk-Medium.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
  unicode-range: U+0020-007E;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

img,
svg,
video,
canvas {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

button,
input,
select,
textarea,
a {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * Swiper 12.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 27, 2026
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  ::slotted(svg),
  svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  ::slotted(.swiper-navigation-icon),
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}

.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}

.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &:only-child {
    display: none !important;
  }
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition: 200ms transform, 200ms top;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition: 200ms transform, 200ms left;
    }
  }
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}

.swiper-pagination-lock {
  display: none;
}

.swiper {
  width: 100%;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
}
.swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none !important;
}
.swiper-button-next,
.swiper-button-prev {
  --swiper-navigation-sides-offset: 0px;
  width: 15px !important;
  height: 30px !important;
  margin-top: -15px;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}
.swiper-button-next svg path,
.swiper-button-prev svg path {
  fill: #ffffff;
}

/*
  modal
---------------------------------------------- */
.tab-modal-wrap.--ver02 {
  margin-top: -30px;
}

.tab-modal-wrap input {
  display: none;
}

.tab-modal-wrap-open-label,
.tab-modal-wrap-close-label {
  cursor: pointer;
}

.tab-modal-wrap-open-label {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.tab-modal-wrap-open-label:hover {
  opacity: 0.6;
}

.tab-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  animation: tab-modal-animation 0.6s;
}

.tab-modal-content-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 600px;
  border-radius: 12px;
  background-color: var(--sub-color);
  z-index: 2;
  line-height: 1.5;
}

@media screen and (max-width: 430px) {
  .tab-modal-content-wrap {
    width: 90%;
  }
}
.tab-modal-wrap-close-label {
  position: relative;
  background-color: #fff;
  color: #000;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  line-height: 1.6;
  text-align: center;
  display: table-cell;
  position: fixed;
  top: 20px;
  right: 40px;
  z-index: 9999;
  font-size: 1.3em;
}

.tab-modal-content {
  position: relative;
  height: 90vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 80px 40px 20px;
}

@media screen and (max-width: 430px) {
  .tab-modal-wrap-close-label {
    right: 20px;
  }
  .tab-modal-content {
    padding: 80px 20px 20px;
  }
}
.tab-modal-close-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

@keyframes tab-modal-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.judge-wrap-img-no-picture {
  width: 150px;
  height: 150px;
  background: #000;
  border-radius: 50%;
}

span.judge-wrap-desc-icon {
  display: inline-flex;
  margin-left: 10px;
}

/* 中身 */
.modal-content-image {
  height: 300px;
  background-size: contain;
  /* background-size: cover; */
  background-position: center;
  /* background-position: top; */
  background-repeat: no-repeat;
  background-color: #fff;
}

/* .modal-content-image.--suzuna {
  background-position: 0 -130px;
}

.modal-content-image.--mitsuki {
  background-position: 0 -80px;
}

.modal-content-image.--sun {
  background-position: 0;
}

.modal-content-image.--karin {
  background-position: 0 -60px;
}

.modal-content-image.--sakura {
  background-position: 0 -80px;
}

.modal-content-image.--tomotaka {
  background-position: 0 -140px;
}

.modal-content-image.--masato {
  background-position: 0 -80px;
}

.modal-content-image.--hisayuki {
  background-position: 0 -130px;
}

.modal-content-image.--souichiro {
  background-position: 0 -70px;
}

.modal-content-image.--hide {
  background-position: 0 -80px;
}

.modal-content-image.--masanobu,
.modal-content-image.--kousuke {
  background-position: 0 -30px;
}


@media screen and (max-width: 430px) {
  .modal-content-image.--suzuna {
    background-position: 0 -80px;
  }

  .modal-content-image.--mitsuki {
    background-position: 0 -40px;
  }

  .modal-content-image.--karin {
    background-position: 0 0;
  }

  .modal-content-image.--sakura {
    background-position: 0 -10px;
  }

  .modal-content-image.--tomotaka {
    background-position: 0 -50px;
  }

  .modal-content-image.--masato {
    background-position: 0 -40px;
  }

  .modal-content-image.--hisayuki {
    background-position: 0 -50px;
  }

  .modal-content-image.--souichiro {
    background-position: 0 -10px;
  }

  .modal-content-image.--hide {
    background-position: 0 -10px;
  }

  .modal-content-image.--masanobu,
  .modal-content-image.--kousuke {
    background-position: 0 0;
  }
} */
.blurred-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blurred-image.stage-01-1 {
  --src: url("../assets/img/stage-01-1.JPG");
}
.blurred-image.stage-01-1-2 {
  --src: url("../assets/img/stage-01-1-2.jpg");
}
.blurred-image.stage-01-2_pin {
  --src: url("../assets/img/stage-01-2_pin.jpg");
}
.blurred-image.stage-01-2-2_pin {
  --src: url("../assets/img/stage-01-2-2_pin.jpg");
}
.blurred-image.stage-01-3 {
  --src: url("../assets/img/stage-01-3.jpeg");
}
.blurred-image.stage-01-3-2 {
  --src: url("../assets/img/stage-01-3-2.jpg");
}
.blurred-image.stage-01-4_pin {
  --src: url("../assets/img/stage-01-4_pin.jpg");
}
.blurred-image.stage-01-4_pin-2 {
  --src: url("../assets/img/stage-01-4_pin-2.jpg");
}
.blurred-image.stage-01-4-2 {
  --src: url("../assets/img/stage-01-4-2.jpg");
}
.blurred-image.stage-02-1 {
  --src: url("../assets/img/stage-02-1.JPG");
}
.blurred-image.stage-02-2 {
  --src: url("../assets/img/stage-02-2.jpg");
}
.blurred-image.stage-02-3 {
  --src: url("../assets/img/stage-02-5.jpg");
}
.blurred-image.stage-02-4 {
  --src: url("../assets/img/stage-02-4.JPG");
}
.blurred-image.stage-02-5 {
  --src: url("../assets/img/stage-02-3.jpeg");
}
.blurred-image.stage-03-1 {
  --src: url("../assets/img/stage-03-7.jpg");
}
.blurred-image.stage-03-2 {
  --src: url("../assets/img/stage-03-1.jpg");
}
.blurred-image.stage-03-3 {
  --src: url("../assets/img/stage-03-3.jpg");
}
.blurred-image.stage-03-4 {
  --src: url("../assets/img/stage-03-5.jpg");
}
.blurred-image.stage-03-5 {
  --src: url("../assets/img/stage-03-8.jpg");
}
.blurred-image.stage-03-6 {
  --src: url("../assets/img/stage-03-6.jpg");
}
.blurred-image.stage-03-7 {
  --src: url("../assets/img/stage-03-2.jpg");
}
.blurred-image.stage-03-8 {
  --src: url("../assets/img/stage-03-4.jpg");
}
.blurred-image.stage-04-1 {
  --src: url("../assets/img/stage-04-1.jpg");
}
.blurred-image.stage-04-2 {
  --src: url("../assets/img/stage-04-2.jpg");
}
.blurred-image.stage-04-3 {
  --src: url("../assets/img/stage-04-3.jpg");
}

.blurred-image.--second {
  margin-top: 40px;
}

.blurred-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--src);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(15px);
  z-index: 0;
}

.blurred-image img {
  position: relative;
  z-index: 1;
  max-height: 100%;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.modal-content-txt-top {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.modal-content-txt-top .sns-btn-link {
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  aspect-ratio: 1/1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.modal-content-txt-top .sns-btn-link img {
  width: 17px;
}

.modal-content-name {
  margin-top: 20px;
  font-size: 24px;
}

.modal-content-title {
  margin-top: 6px;
  font-size: 13px;
}

.modal-content-body {
  margin-top: 26px;
}

.modal-content-bottom {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

@media screen and (max-width: 430px) {
  .modal-content-bottom {
    position: initial;
    transform: initial;
    justify-content: center;
    margin-top: 30px;
  }
}
.modal-content-bottom .sns-btn-link {
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  aspect-ratio: 1/1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.modal-content-bottom .sns-btn-link img {
  width: 17px;
}

/* .modal-content-double-wrap .modal-content-bottom {
  position: initial;
  transform: initial;
  justify-content: center;
  margin-top: 30px;
} */
.modal-content-double-wrap:nth-of-type(2) {
  margin-top: 50px;
}

/* モーダル全体の暗幕（初期状態は非表示） */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 背景を薄暗く */
}

/* クラス「is-active」がついたら表示する */
.modal.is-active {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* モーダルの白箱 */
.modal__content {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  width: 80%;
  max-width: 500px;
  position: relative;
}

/* 閉じるボタン */
.kv-wrap {
  position: relative;
  width: 100%;
  height: 100vh !important;
  overflow: hidden;
  margin-bottom: 0;
}
.kv-wrap .kv {
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: transform, scale;
}

.concept-movie-wrap {
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
}

.concept-movie-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.concept-movie-wrap__inner {
  padding-top: 100vh;
  will-change: transform;
}

.movie {
  transform: scale(0.3);
  transform-origin: top;
}

/*
  ticket
---------------------------------------------- */
.ticket.provided-styles {
  clip-path: polygon(0 95px, 100% 0, 100% calc(100% - 95px), 0 100%);
  background-color: #ffffff;
  color: #000;
  line-height: 1.5;
}
.ticket.provided-styles .btn {
  line-height: 1;
  position: relative;
  display: inline-block;
  padding: 16px;
  -webkit-transition: all 0.3s !important;
  transition: all 0.3s !important;
  text-align: center;
  vertical-align: middle;
  border-radius: 9999px;
}
.ticket.provided-styles .ticket__inner {
  padding: 135px 20px 155px;
}
.ticket.provided-styles hr {
  display: block;
  width: 180px;
  height: 1px;
  border: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.2509803922);
  /* margin: 1em 0; */
  margin: 40px auto;
  padding: 0;
  border-top: 2px solid #cecece;
  margin: 70px auto;
}
.ticket.provided-styles .btn-copy {
  color: var(--main-color);
  text-align: center;
}
.ticket.provided-styles .btn--pink {
  display: block;
  color: #fff;
  background-color: var(--main-color);
  border: 2px solid var(--main-color);
  width: 100%;
  font-size: 30px;
  margin-top: 4px;
}
.ticket.provided-styles .btn--pink span {
  display: block;
  font-size: 14px;
  margin-top: 8px;
}
.ticket.provided-styles .btn--pink:hover {
  color: var(--main-color);
  background: #fff;
}
.ticket.provided-styles .btn-note {
  font-size: 12px;
  margin-top: 16px;
  margin-bottom: 46px;
}
.ticket.provided-styles .ticket-flow-list-ttl {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
}
.ticket.provided-styles .ticket-flow-item-number {
  display: inline-block;
  color: var(--sub-color);
  font-weight: 700;
}
.ticket.provided-styles .ticket-flow-item-number > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ticket.provided-styles .ticket-flow-item-number span {
  line-height: 1;
}
.ticket.provided-styles .ticket-flow-item-number span:first-child {
  font-size: 12px;
  margin-bottom: 3px;
}
.ticket.provided-styles .ticket-flow-item-number span:last-child {
  font-size: 42px;
  margin-top: -4px;
}
.ticket.provided-styles .ticket-flow-item-header {
  margin: 14px 0 16px;
  font-weight: 700;
}
.ticket.provided-styles .ticket-flow-item-text {
  font-size: 14px;
}
.ticket.provided-styles .ticket-flow-item-text a {
  text-decoration: underline !important;
}
.ticket.provided-styles .ticket-flow-item-arrow {
  width: 10px;
  margin: 12px auto 20px;
}
.ticket.provided-styles .ticket-flow-item-arrow img {
  display: initial;
}
.ticket.provided-styles .ticket-flow-wrap:last-child .ticket-flow-item-text {
  margin-top: 16px;
}
.ticket.provided-styles .present-content {
  max-width: 90%;
  margin: 24px auto 40px;
}

/*
  bottom
---------------------------------------------- */
.section-bottom-wrap.provided-styles .section-bottom {
  padding: 0 20px;
  background-color: #000;
  z-index: 1;
}
.section-bottom-wrap.provided-styles .bottom-wrap {
  padding-top: 110px;
}
.section-bottom-wrap.provided-styles .bottom-wrap-logo {
  max-width: 276px;
  margin: auto;
}
.section-bottom-wrap.provided-styles .bottom-wrap-organizer {
  margin-top: 60px;
  text-align: center;
}
.section-bottom-wrap.provided-styles .bottom-wrap-organizer h3 {
  line-height: 1.5;
}
.section-bottom-wrap.provided-styles .organizer-logo {
  display: inline-block;
  margin-top: 16px;
}
.section-bottom-wrap.provided-styles .organizer-logo a {
  display: block;
  /* background-color: #fff; */
  padding: 8px;
}
.section-bottom-wrap.provided-styles .organizer-logo a:hover {
  opacity: 0.6;
}
.section-bottom-wrap.provided-styles .bottom-wrap hr {
  max-width: 146px;
}
.section-bottom-wrap.provided-styles .bottom-wrap-support-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.section-bottom-wrap.provided-styles .bottom-wrap-support-wrap a {
  display: block;
}
.section-bottom-wrap.provided-styles {
  /*
    footer
  ---------------------------------------------- */
}
.section-bottom-wrap.provided-styles footer {
  background-color: #000;
}
.section-bottom-wrap.provided-styles .footer-wrap {
  padding: 60px 0 20px;
}
.section-bottom-wrap.provided-styles .footer-wrap .insta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 20px;
}
.section-bottom-wrap.provided-styles .footer-wrap .insta-btn a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.section-bottom-wrap.provided-styles .footer-wrap .insta-btn a:hover {
  filter: initial;
  opacity: 0.6;
}
.section-bottom-wrap.provided-styles .footer-wrap .insta-btn p {
  white-space: nowrap;
  font-size: 20px;
  line-height: 1.3;
}
.section-bottom-wrap.provided-styles .footer-menu {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  font-size: 12px;
  color: #7e7979;
  line-height: 1.4;
}
.section-bottom-wrap.provided-styles .footer-menu a {
  text-decoration: underline;
}
.section-bottom-wrap.provided-styles .copy {
  margin-top: 12px;
  text-align: center;
  font-size: 10px;
  color: #7e7979;
  line-height: 1.2;
}

/*
  menu pc
---------------------------------------------- */
.left-contents-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  /* width: 65.7%; */
  height: 100vh;
  min-height: 720px;
  width: calc(100% - 446px - 20%);
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  display: none;
}
@media screen and (min-width: 1024px) {
  .left-contents-wrap {
    display: flex;
  }
}

.left-contents {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 20px 8% 20px 8%;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: space-around;
  align-items: flex-start;
}

.menu-top .header-logo-link img {
  max-width: 140px;
}

.menu-top .kv-date-time-wrapper {
  max-width: 200px;
  margin-top: 30px;
}

.menu-top .kv-place {
  font-size: clamp(1.25rem, 1vw + 0.8rem, 1.4375rem);
  margin-top: 19px;
}

.menu {
  display: flex;
  width: 100%;
  margin-top: 58px;
}

.menu-ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: clamp(1.4375rem, 1.2vw + 1rem, 1.625rem);
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .menu-ul {
    gap: 18px;
  }
}

.menu-li {
  display: flex;
  /* width: 100%; */
  padding: 1px 0;
}

.menu-head {
  flex-direction: column;
}

.menu-head p {
  pointer-events: none;
  padding-bottom: 17px;
}
@media screen and (min-width: 1024px) {
  .menu-head p {
    font-size: 23px;
    line-height: 1.2;
    padding-bottom: 7px;
  }
}

.menu-head ul {
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .menu-head ul {
    gap: 4px;
  }
}

.menu-head ul li {
  font-size: 21px;
}
@media screen and (min-width: 1024px) {
  .menu-head ul li {
    font-size: 18px;
    line-height: 1.5;
  }
}

.menu-link {
  display: flex;
  width: 100%;
  line-height: 1;
  /* transform-origin: top left; */
  /* font-weight: 400; */
  /* transition: filter .3s; */
  padding-left: 4px;
}
@media screen and (min-width: 1024px) {
  .menu-link {
    font-size: 23px;
    line-height: 1.5;
  }
}

.menu-link:hover {
  /* filter: blur(5px);
  transition: filter .4s; */
  /* color: var(--sub-color); */
  color: #000;
  background-color: #fff;
}

.menu-bottom-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 440px) {
  .menu-bottom-wrapper {
    width: fit-content;
    margin: 0 auto;
  }
}

.menu-bottom-wrapper .cta-btn {
  display: flex;
  justify-content: center;
  width: 100%;
  background: var(--sub-color);
  border: 3px solid #fff;
  border-radius: 10rem;
  padding: 0.5rem 1.5rem 0.6rem;
}

.menu-bottom-wrapper .cta-link {
  font-size: clamp(1.625rem, 1.5vw + 1rem, 1.875rem);
  text-align: center;
}

.menu-bottom-wrapper .cta-link .cta-ja {
  display: block;
  font-size: 14px;
  margin-top: -5px;
}

.menu-bottom-wrapper .insta-btn a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-bottom-wrapper .insta-btn p {
  font-size: clamp(1.125rem, 1vw + 0.5rem, 1.25rem);
  white-space: nowrap;
}

.sns-btn-link div {
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  aspect-ratio: 1/1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sns-btn-link p {
  padding: 4px 8px;
}

.sns-btn-link:hover {
  color: #000;
}
.sns-btn-link:hover p {
  filter: invert(1);
  color: #fff;
  background-color: #000;
}

.sns-btn-link div img {
  width: 35px;
}

.left-contents-bg-img-01 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.left-contents-bg-img-02 {
  position: absolute;
  top: 50%;
  right: -50%;
  z-index: -1;
}

.left-contents-bg-img-03 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.batsu {
  display: block;
  /* position: relative; */
  width: 30px;
  height: 30px;
}

.batsu::before,
.batsu::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px; /* 棒の幅（太さ） */
  height: 22px; /* 棒の高さ */
  background: #000;
}

.batsu::before {
  transform: translate(-50%, -50%) rotate(50deg);
}

.batsu::after {
  transform: translate(-50%, -50%) rotate(-50deg);
}

/*
  追従ボタン
---------------------------------------------- */
.right-contents-wrap {
  position: fixed;
  bottom: 20px;
  right: 24px;
  z-index: 200;
}

.right-contents-btn-link {
  max-width: 160px;
  display: block;
  transition-duration: 0.4s;
}

.right-contents-btn-link:hover {
  transform: scale(1.05);
}

/* 1. アニメーション定義 */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* 2. ボタンにアニメーションを適用 */
.right-contents-btn-link {
  animation: float 3s ease-in-out infinite; /* 3秒で往復、無限ループ */
}

/*
  menu sp
---------------------------------------------- */
.header-wrap-sp {
  position: fixed;
  width: 100%;
  max-width: 440px;
  padding: 30px 20px 0;
  z-index: 99999;
  display: block;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1024px) {
  .header-wrap-sp {
    display: none;
  }
}
@media screen and (min-width: 656px) {
  .header-wrap-sp {
    right: 20%;
    left: initial;
    transform: initial;
  }
}

.header-wrap-sp__bg {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.header-wrap-sp__bg.is-active {
  display: block;
  opacity: 1;
  visibility: visible;
  width: 100%;
  height: 100vh;
  background-color: #000;
}

.header-wrap-top-sp > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo-link-sp {
  display: block;
  max-width: 78px;
}

.menu-wrap-sp {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  padding: 17px;
  cursor: pointer;
}

.drawer__button {
  position: relative;
  top: 2%;
  width: 100%;
  height: 100%;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.menu-wrap-sp span:first-child {
  transform: translateY(-4px);
  transition: transform 0.3s ease;
}

.menu-wrap-sp.is-active span:first-child {
  transform: translate(0, -50%) rotate(-45deg);
}

.menu-wrap-sp span:last-child {
  transform: translateY(4px);
  transition: transform 0.3s ease;
}

.menu-wrap-sp.is-active span:last-child {
  transform: translate(0, -50%) rotate(45deg);
}

.drawer__nav {
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: none;
  opacity: 0;
  visibility: hidden;
  position: relative;
  z-index: 400;
}

.drawer__nav.is-active {
  display: block;
  opacity: 1;
  visibility: visible;
  width: 100%;
  height: 100vh;
}

.drawer__nav__menu {
  margin-top: 40px;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.drawer__nav__item {
  font-size: 27px;
}

.drawer__nav__item .menu-li {
  font-size: 22px;
}

.drawer__nav__inner .insta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto;
  margin-top: 40px;
}

.drawer__nav__inner .insta-btn a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.drawer__nav__inner .insta-btn a:hover {
  filter: initial;
  opacity: 0.6;
}

.drawer__nav__inner .insta-btn p {
  white-space: nowrap;
}

.header-wrap-sp hr {
  width: 100%;
  max-width: 440px;
  color: #868686;
  margin: 16px auto 20px;
  margin-left: -14px;
}

.anchor-link-wrap {
  display: flex;
  justify-content: space-around;
}

:root {
  --main-color: #04af7a;
  --sub-color: #f29b4e;
}

html {
  scroll-behavior: smooth;
  scroll-behavior: auto !important;
  overscroll-behavior-y: none;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

body {
  font-family: "ClashGrotesk-Medium", "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  line-height: 1;
  overscroll-behavior-y: none;
}

main {
  position: relative;
  max-width: 440px;
  margin-left: auto;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 656px) {
  main {
    margin-right: 20%;
  }
}
@media screen and (min-width: 446px) {
  main {
    max-width: 446px;
    border-left: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
  }
}
@media screen and (max-width: 440px) {
  main {
    max-width: 100%;
  }
}

/* -----------------------------------------------------------------------------
  common
----------------------------------------------------------------------------- */
.only-sp {
  display: block !important;
}

.only-pc {
  display: none !important;
}

@media screen and (min-width: 1024px) {
  .only-sp {
    display: none !important;
  }
  .only-pc {
    display: block !important;
  }
}
.section__title {
  text-align: center;
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 0%;
}

.blur-container {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* -----------------------------------------------------------------------------
  fixed-bg
----------------------------------------------------------------------------- */
.fixed-bg {
  position: fixed;
  top: 0;
  bottom: 0;
  max-width: 440px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(../assets/img/fixed-bg-sp.png);
}
@supports (background-image: url(../assets/img/fixed-bg-sp.webp)) {
  .fixed-bg {
    background-image: url(../assets/img/fixed-bg-sp.webp);
  }
}
.fixed-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 656px) {
  .fixed-bg {
    right: 20%;
  }
}
@media screen and (min-width: 440px) {
  .fixed-bg {
    inset: 0;
    max-width: initial;
    background-image: url(../assets/img/fixed-bg-pc.png);
  }
  @supports (background-image: url(../assets/img/fixed-bg-pc.webp)) {
    .fixed-bg {
      background-image: url(../assets/img/fixed-bg-pc.webp);
    }
  }
  .fixed-bg {
    background-position-y: -1px;
  }
}
@media screen and (max-width: 440px) {
  .fixed-bg {
    max-width: 100%;
  }
}

/* -----------------------------------------------------------------------------
  kv
----------------------------------------------------------------------------- */
.kv {
  position: relative;
}
.kv__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
}
.kv__date {
  width: 251px;
  margin: 38px auto 0;
}
.kv__venue {
  font-size: 23px;
  margin: 29.5px auto 0;
  line-height: 1.4;
}
@media screen and (max-width: 440px) {
  .kv__venue {
    font-size: clamp(1.375rem, 1.014rem + 1.54vw, 1.438rem);
  }
}
.kv__text {
  font-size: 10.13px;
  margin: 24.5px auto 0;
  line-height: 1.32;
}
.kv__scroll {
  position: absolute;
  display: block;
  bottom: 61px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  line-height: 1.2;
}
.kv__scroll::after {
  content: "";
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 57px;
  background-color: #ffffff;
  animation: scroll-down 2s ease-in-out infinite;
}
@keyframes scroll-down {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  49% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/* -----------------------------------------------------------------------------
  concept
----------------------------------------------------------------------------- */
.concept__inner {
  padding-bottom: 80px;
  height: 100%;
  color: #fff;
}
.concept__text-wrap {
  height: 100%;
}
.concept__catch {
  padding: 0 40px;
  font-size: 25.66px;
  line-height: 1.9;
  text-align: center;
  text-shadow: 0px 0px 16.04px rgba(0, 0, 0, 0.56);
}
@media screen and (max-width: 440px) {
  .concept__catch {
    font-size: clamp(1.313rem, -0.368rem + 7.17vw, 1.604rem);
  }
}
.concept__statement {
  margin-top: 48px;
  padding: 0 40px;
  font-size: 17.1px;
  line-height: 2;
  text-align: center;
  text-shadow: 0px 0px 16.04px rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 440px) {
  .concept__statement {
    font-size: clamp(0.875rem, -0.243rem + 4.77vw, 1.069rem);
  }
}

/* -----------------------------------------------------------------------------
  movie
----------------------------------------------------------------------------- */
.movie {
  padding-bottom: 128px;
  padding-bottom: clamp(64px, 29.09vw, 128px);
}
.movie__inner {
  margin: 0 20px;
  width: 440px;
  width: calc(100% - 40px);
  aspect-ratio: 440/540;
}
.movie__swiper {
  aspect-ratio: 400/540;
}
.movie__item {
  padding: 0 50px;
}
.movie__item .movie__video {
  border-radius: 20px;
  aspect-ratio: 300/540;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.movie__item .movie__video-01 {
  background-image: url("../assets/img/poster-01.jpg");
}
.movie__item .movie__video-02 {
  background-image: url("../assets/img/poster-02.jpg");
}
.movie__item .movie__video-03 {
  background-image: url("../assets/img/poster-03.jpg");
}
.movie__item .movie__video-04 {
  background-image: url("../assets/img/poster-04.jpg");
}
.movie__item .movie__video-05 {
  background-image: url("../assets/img/poster-05.jpg");
}

/* -----------------------------------------------------------------------------
  stagelist
----------------------------------------------------------------------------- */
.stagelist {
  position: relative;
  z-index: 0;
}
.stagelist__inner {
  padding: 0 20px;
  padding-bottom: 128px;
}
.stagelist__tab-container {
  border: 2px solid #000000;
  border-top: none;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border-radius: 10px 10px 20px 20px;
  overflow: hidden;
}
.stagelist__tab {
  position: relative;
  height: 44px;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  background: transparent;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.6);
}
.stagelist__tab-btn {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 115px;
  height: 44px;
  font-size: 9px;
  line-height: 1.3;
  cursor: pointer;
  color: #000;
  text-align: center;
  transition: background 0.2s ease;
  border: 2px solid #000000;
}
@media screen and (max-width: 440px) {
  .stagelist__tab-btn {
    width: 29.04%;
  }
}
.stagelist__tab-btn:first-of-type {
  border-radius: 10px 0 0 0;
  left: -2px;
  padding: 20px;
}
.stagelist__tab-btn:nth-of-type(2) {
  border-radius: 10px 10px 0 0;
  left: 93px;
  padding: 20px;
}
@media screen and (max-width: 440px) {
  .stagelist__tab-btn:nth-of-type(2) {
    width: 29.04%;
    left: calc(23.99% - 0px);
  }
}
.stagelist__tab-btn:nth-of-type(3) {
  border-radius: 10px 10px 0 0;
  left: 188px;
  padding: 20px;
}
@media screen and (max-width: 440px) {
  .stagelist__tab-btn:nth-of-type(3) {
    width: 29.04%;
    left: calc(47.98% - 0px);
  }
}
.stagelist__tab-btn:last-of-type {
  border-radius: 0 10px 0 0;
  left: 283px;
  padding: 20px;
}
@media screen and (max-width: 440px) {
  .stagelist__tab-btn:last-of-type {
    width: 29.04%;
    left: calc(71.97% - 0px);
  }
}
.stagelist__tab-btn.is-left {
  clip-path: polygon(0 0, calc(100% - 12px) 0, calc(100% - 12px) 100%, 0 100%);
}
@media screen and (max-width: 440px) {
  .stagelist__tab-btn.is-left {
    clip-path: polygon(0 0, 92% 0, 92% 100%, 0 100%);
  }
}
.stagelist__tab-btn.is-right {
  clip-path: polygon(12px 0, 100% 0, 100% 100%, 12px 100%);
}
@media screen and (max-width: 440px) {
  .stagelist__tab-btn.is-right {
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 8% 100%);
  }
}
.stagelist__tab-btn.is-active {
  background-color: #ffffff;
  border-radius: 10px 10px 0 0 !important;
  border: 2px solid #000000;
  clip-path: none;
}
.stagelist__glass {
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  max-height: 600px;
  flex: 1;
  -webkit-overflow-scrolling: touch;
  padding-top: 40px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.stagelist__glass::-webkit-scrollbar {
  display: none;
}
.stagelist__content {
  display: none;
}
.stagelist__content.is-active {
  display: block;
}
.stagelist__header {
  text-align: center;
}
.stagelist__time {
  font-size: 38.1px;
}
.stagelist__stage-title {
  margin-top: 10px;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.stagelist__swiper .swiper-button-prev {
  left: 8px;
}
.stagelist__swiper .swiper-button-next {
  right: 8px;
}
.stagelist__main-visual-wrap {
  margin-top: 10px;
}
.stagelist__main-visual {
  width: 100%;
  aspect-ratio: 398/266;
}
.stagelist__description {
  padding: 20px 20px 40px;
  font-size: 16px;
  font-size: 15.4px;
  line-height: 1.4;
}
.stagelist__sub-title {
  padding: 10px 0;
  font-size: 30px;
  line-height: 1.2;
  text-align: center;
  border-top: 2px solid #000000;
}
.stagelist__bottom {
  margin-top: 30px;
  padding: 0 10px;
}
.stagelist__bottom-text {
  font-size: 11px;
  margin-top: 10px;
  line-height: 1.4;
}
.stagelist__note {
  font-size: 12px;
  text-align: right;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-right: 10px;
}
.stagelist__btn-wrap {
  border-top: 2px solid #000000;
  margin-top: 20px;
}
.stagelist__btn {
  display: block;
  width: 100%;
  padding: 27px 0;
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
  color: #ffffff;
  background-color: var(--main-color);
  text-decoration: none;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}
.stagelist__empty {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 40px 0;
  font-size: 11px;
}
.stagelist__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2px;
  background-color: #000000;
}
.stagelist__grid-item {
  position: relative;
  overflow: hidden;
  border-top: 2px solid #000000;
  box-sizing: content-box;
}
.stagelist__grid-thumb img {
  aspect-ratio: 182/257;
}
.stagelist__grid-logo {
  position: absolute;
  top: 6px;
  left: 6px;
}
.stagelist__grid-logo img {
  height: 100%;
  width: initial;
}
.stagelist__grid-logo--wide {
  height: 12px;
}
@media screen and (max-width: 440px) {
  .stagelist__grid-logo--wide {
    height: clamp(0.625rem, -0.096rem + 3.08vw, 0.75rem);
  }
}
.stagelist__grid-logo--square {
  height: 28px;
}
.stagelist__grid-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 8px;
}
.stagelist__grid-tag {
  display: inline-block;
  font-size: 9px;
  line-height: 1.3;
}
@media screen and (max-width: 440px) {
  .stagelist__grid-tag {
    font-size: clamp(0.5rem, 0.139rem + 1.54vw, 0.563rem);
  }
}
.stagelist__grid-tag--bg {
  height: 16px;
  padding: 4px 6px;
  background-color: #ffffff;
  color: #000000;
}
.stagelist__grid-tag--en {
  font-size: 11px;
}
@media screen and (max-width: 440px) {
  .stagelist__grid-tag--en {
    font-size: clamp(0.719rem, 0.178rem + 2.31vw, 0.813rem);
  }
}
.stagelist__grid-name {
  position: relative;
  font-size: 16px;
  line-height: 1.3;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (max-width: 440px) {
  .stagelist__grid-name {
    font-size: clamp(0.75rem, -0.692rem + 6.15vw, 1rem);
  }
}
.stagelist__grid-name::after {
  content: "";
  background-image: url("../assets/img/stagelist-icon-arrow.svg");
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 20.69px;
  height: 20.69px;
}
@media screen and (max-width: 440px) {
  .stagelist__grid-name::after {
    width: clamp(1.106rem, 0.024rem + 4.62vw, 1.293rem);
    height: clamp(1.106rem, 0.024rem + 4.62vw, 1.293rem);
  }
}
#tab-collaboration .stagelist__grid {
  grid-template-columns: 32px 1fr 1fr;
  grid-auto-flow: row;
  column-gap: initial;
  background-color: transparent;
}
#tab-collaboration .stagelist__grid-item {
  border-left: initial;
  border-right: initial;
  border-top: 2px solid #000000;
  border-left: 2px solid #000000;
  aspect-ratio: initial;
}
#tab-collaboration .stagelist__grid-number {
  grid-column: 1;
  color: #ffffff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 12px;
  border-top: 2px solid #000000;
}
#tab-collaboration .stagelist__grid-number span {
  font-size: 14px;
  line-height: 1.4;
  transform: rotate(90deg);
  transform-origin: center;
  white-space: nowrap;
}

.stagelist__stage-title img {
  display: block;
  max-width: 70%;
  height: auto;
  margin: auto;
}

.stagelist__stage-title span {
  display: block;
  margin-top: 8px;
}

.modal-site-jump a {
  text-decoration: underline;
}

.header-wrap-sp {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.modal-is-open .header-wrap-sp {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* -----------------------------------------------------------------------------
  timetable
----------------------------------------------------------------------------- */
.timetable__inner {
  padding: 0 20px 100px;
}

/* -----------------------------------------------------------------------------
  eventmap
----------------------------------------------------------------------------- */
.eventmap {
  position: relative;
  z-index: 0;
  container-type: inline-size;
  background-color: var(--main-color);
  clip-path: polygon(0 0, 100% 95px, 100% 100%, 0 calc(100% - 95px));
}
.eventmap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.2;
  background-image: url("../assets/img/logo-ultra-synergy-2026.svg"), url("../assets/img/logo-ultra-synergy-2026.svg"), url("../assets/img/logo-ultra-synergy-2026.svg");
  background-repeat: repeat-y;
  background-position: left top, center top, right top;
  background-size: calc((100% - 30px) / 3) calc((100cqi - 30px) / 3 * 209 / 360 + 15px);
}
.eventmap__inner {
  padding: 111px 20px 181px;
  text-align: center;
}
.eventmap__catch {
  margin-top: 20px;
  font-size: 25.66px;
  line-height: 1.4;
}
@media screen and (max-width: 440px) {
  .eventmap__catch {
    font-size: clamp(1.313rem, -0.368rem + 7.17vw, 1.604rem);
  }
}
.eventmap__body {
  margin-top: 24px;
}
.eventmap__text {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.2;
}
.eventmap__text:first-child {
  margin-top: 0;
}
@media screen and (max-width: 440px) {
  .eventmap__text {
    font-size: clamp(1.063rem, 0.702rem + 1.54vw, 1.125rem);
  }
}
.eventmap__figure {
  margin-top: 30px;
  border-radius: 20px;
  overflow: hidden;
}

/* -----------------------------------------------------------------------------
  video-spacer
----------------------------------------------------------------------------- */
.video-spacer {
  margin: -95px 0;
  clip-path: polygon(0 0, 100% 95px, 100% calc(100% - 95px), 0 100%);
}
.video-spacer__movie {
  aspect-ratio: 440/320;
}
.video-spacer__movie iframe {
  width: 100%;
  height: 100%;
}
.video-spacer__video {
  aspect-ratio: 440/782;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../assets/img/poster-06.jpg");
}

/* -----------------------------------------------------------------------------
  access
----------------------------------------------------------------------------- */
.blur-container:has(.access) {
  margin-top: -95px;
  clip-path: polygon(0 95px, 100% 0, 100% 100%, 0 100%);
}

.access__inner {
  padding: 142px 20px 60px;
}
.access__map-wrap {
  margin-top: 15px;
  width: 100%;
  height: auto;
  aspect-ratio: 400/246;
  border-radius: 10px;
  overflow: hidden;
}
.access__content {
  margin-top: 20px;
}
.access__venue {
  font-size: 22px;
  text-shadow: 0px 0px 16.04px rgb(0, 0, 0);
}
.access__address {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  text-shadow: 0px 0px 16.04px rgb(0, 0, 0);
}
.access__route {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  text-shadow: 0px 0px 16.04px rgb(0, 0, 0);
}

/* -----------------------------------------------------------------------------
  contact
----------------------------------------------------------------------------- */
.contact__inner {
  padding: 60px 20px 128px;
}
.contact__office {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  text-shadow: 0px 0px 20px rgb(0, 0, 0);
}
@media screen and (max-width: 440px) {
  .contact__office {
    font-size: clamp(0.938rem, 0.577rem + 1.54vw, 1rem);
  }
}
.contact__actions {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.contact__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 350px;
  padding: 20px 40px;
  border: 2px solid #ffffff;
  border-radius: 35px;
  text-decoration: none;
  background-color: #000000;
  box-sizing: border-box;
}
.contact__button-icon {
  margin-top: 0;
  display: inline-block;
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.contact__button-icon--phone {
  background-image: url(../assets/img/icon-phone.svg);
}
.contact__button-icon--mail {
  background-image: url(../assets/img/icon-mail.svg);
}
.contact__button-text {
  margin-left: 12px;
  font-size: 15px;
}
@media screen and (max-width: 440px) {
  .contact__button-text {
    font-size: clamp(0.875rem, 0.514rem + 1.54vw, 0.938rem);
  }
}

/* -----------------------------------------------------------------------------
  btn-floating
----------------------------------------------------------------------------- */
.btn-floating {
  position: fixed;
  right: 4px;
  bottom: 8px;
  z-index: 999;
  background: transparent;
  width: 108px;
  height: 108px;
  width: 130px;
  height: 130px;
  pointer-events: auto;
  transition: transform 0.8s ease;
}
@media screen and (min-width: 656px) {
  .btn-floating {
    right: 40px;
    bottom: 20px;
  }
}

.btn-floating__container {
  width: 100%;
  height: 100%;
  position: relative;
}

.btn-floating__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 98.69px;
  height: 98.69px;
}

.btn-floating__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.btn-floating__text-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center center;
  animation: rotate-record 10s linear infinite;
}

.btn-floating__text-wrap .invert-box {
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-color: #ffffff;
  clip-path: url(#textClip);
  -webkit-clip-path: url(#textClip);
  transform-origin: center center;
}

.btn-floating__text-wrap svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn-floating__text-wrap text {
  font-family: "ClashGrotesk-Medium", "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 19px;
  fill: #fff;
  transform: scale(0.65);
  transform-origin: 65px 65px;
}

@keyframes rotate-record {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}