@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

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

*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

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

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

:where(svg) {
  stroke: none;
  fill: currentColor;
}

:where(svg):where(:not([fill])) {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
:where(p, h1, h2, h3, h4, h5, h6, li) {
  overflow-wrap: break-word;
  line-height: inherit;
}

h1 {
  font-size: 2em;
}

:where(ul, ol) {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

:where(a[href],
area,
button,
input,
label[for],
select,
summary,
textarea,
[tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

:where(button,
button[type],
input[type=button],
input[type=submit],
input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  text-align: center;
}

:where(button,
button[type],
input[type=button],
input[type=submit],
input[type=reset])[disabled] {
  cursor: not-allowed;
}

body {
  font-family: "Noto Sans JP", "din-2014", "游ゴシック体", YuGothic, "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  line-height: 1.8;
  font-feature-settings: "palt";
  letter-spacing: 0;
  word-wrap: break-word;
  position: relative;
  color: #ccc;
  background: #0e0e0e url(../images/main_bg.jpg) repeat top center/calc(700 / 1920 * 100vw) auto;
}
body.is-modal-open, body.is-nav-open {
  overflow: hidden;
}

::selection {
  background: #c31e1e;
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}
a:focus, a:hover, a:visited {
  text-decoration: inherit;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  user-select: none;
  pointer-events: none;
}

.is-sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .is-sp {
    display: block;
  }
}

.is-pc {
  display: block;
}
@media screen and (max-width: 960px) {
  .is-pc {
    display: none;
  }
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.din {
  font-family: "din-2014", sans-serif;
  font-style: normal;
}

.lp-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
}
.lp-header__nav {
  padding: calc(40 / 1920 * 100vw);
}
.lp-header__nav.is-open {
  translate: 0 0;
}
@media screen and (max-width: 960px) {
  .lp-header__nav {
    width: 100vw;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    translate: 100% 0;
    transition: 0.4s;
  }
}
.lp-header__nav > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: calc(58 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .lp-header__nav > ul {
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.lp-header__nav > ul a {
  color: #737373;
  font-size: calc(30 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .lp-header__nav > ul a {
    font-size: calc(50 / 750 * 100vw);
  }
}
@media (hover: hover) {
  .lp-header__nav > ul a {
    transition: 0.2s;
  }
  .lp-header__nav > ul a:hover {
    color: #fff;
  }
}
.lp-header .sp-hamburger-button {
  display: none;
  appearance: none;
  background: transparent;
  border: none;
}
@media screen and (max-width: 960px) {
  .lp-header .sp-hamburger-button {
    display: block;
    position: relative;
    width: calc(90 / 750 * 100vw);
    height: calc(46 / 750 * 100vw);
    margin: calc(60 / 750 * 100vw) calc(30 / 750 * 100vw) 0 0;
  }
  .lp-header .sp-hamburger-button:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: calc(2 / 750 * 100vw);
    background: white;
    transition: 0.4s;
  }
  .lp-header .sp-hamburger-button:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(100% - 40 / 750 * 100vw);
    height: calc(2 / 750 * 100vw);
    background: white;
    transition: 0.4s;
  }
  .lp-header .sp-hamburger-button > i {
    position: absolute;
    top: 50%;
    right: 0;
    width: calc(100% - 20 / 750 * 100vw);
    height: calc(2 / 750 * 100vw);
    background: white;
    transition: 0.4s;
  }
}
@media screen and (max-width: 960px) {
  .lp-header .sp-hamburger-button.is-open:before {
    rotate: -405deg;
    top: 50%;
  }
}
@media screen and (max-width: 960px) {
  .lp-header .sp-hamburger-button.is-open:after {
    rotate: 405deg;
    width: 100%;
    top: 50%;
  }
}
@media screen and (max-width: 960px) {
  .lp-header .sp-hamburger-button.is-open > i {
    scale: 0 1;
  }
}

.lp-main {
  position: relative;
  padding-bottom: calc(100 / 1920 * 100vw);
}

.lp-logo {
  position: absolute;
  top: calc(40 / 1920 * 100vw);
  left: calc(40 / 1920 * 100vw);
  width: calc(168 / 1920 * 100vw);
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .lp-logo {
    width: calc(134 / 750 * 100vw);
    top: calc(40 / 750 * 100vw);
    left: calc(40 / 750 * 100vw);
  }
}

.kv-fog-webgl {
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.2;
}

.lp-kv {
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .lp-kv {
    background-position: 0% 54%;
  }
}
.lp-kv__members {
  width: calc(1686 / 1920 * 100vw);
  margin: 0 auto;
  padding-top: calc(270 / 1920 * 100vw);
  padding-bottom: calc(50 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .lp-kv__members {
    width: 100%;
    padding-top: calc(260 / 750 * 100vw);
    padding-bottom: calc(350 / 750 * 100vw);
  }
}
.lp-kv__members img {
  margin: 0 auto;
}
.lp-kv__title {
  position: absolute;
  bottom: calc(40 / 1920 * 100vw);
  right: 0;
  text-align: right;
  padding-right: calc(180 / 1920 * 100vw);
  height: calc(440 / 1920 * 100vw);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: auto 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media screen and (max-width: 960px) {
  .lp-kv__title {
    padding-right: 0;
  }
}
.lp-kv__title-logo {
  width: calc(371 / 1920 * 100vw);
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .lp-kv__title-logo {
    width: calc(371 / 750 * 100vw);
    padding-right: calc(50 / 750 * 100vw);
  }
}
.lp-kv__title h1 {
  color: #c31e1e;
  font-size: calc(48 / 1920 * 100vw);
  line-height: 1.3;
  margin-top: calc(30 / 1920 * 100vw);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .lp-kv__title h1 {
    font-size: calc(48 / 750 * 100vw);
    padding-right: calc(50 / 750 * 100vw);
  }
}
.lp-kv__title.has-inview .lp-kv__title-logo {
  transition: 1s cubic-bezier(1, 0.36, 0.52, 0.99);
  opacity: 0;
  filter: blur(10px);
  translate: calc(10 / 1920 * 100vw);
}
.lp-kv__title.has-inview h1 {
  transition: 1s 0.2s cubic-bezier(1, 0.36, 0.52, 0.99);
  opacity: 0;
  filter: blur(10px);
  translate: calc(10 / 1920 * 100vw);
}
.lp-kv__title.has-inview.is-inview .lp-kv__title-logo {
  opacity: 1;
  translate: 0 0;
  filter: blur(0);
}
.lp-kv__title.has-inview.is-inview h1 {
  opacity: 1;
  translate: 0 0;
  filter: blur(0);
}

.lp-common-box {
  max-width: calc(1280 / 1920 * 100vw);
  margin-right: auto;
  margin-left: auto;
  box-sizing: content-box;
  padding-right: 4%;
  padding-left: 4%;
}
@media screen and (max-width: 960px) {
  .lp-common-box {
    max-width: 100%;
  }
}

.lp-common-title {
  font-size: calc(36 / 1920 * 100vw);
  color: #737373;
}
@media screen and (max-width: 960px) {
  .lp-common-title {
    font-size: calc(36 / 750 * 100vw);
  }
}

.lp-news {
  margin-bottom: calc(170 / 1920 * 100vw);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .lp-news {
    margin-top: calc(50 / 750 * 100vw);
    margin-bottom: calc(10 / 750 * 100vw);
    padding-bottom: calc(150 / 750 * 100vw);
  }
}
.lp-news .section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .lp-news .section-bg {
    top: auto;
    bottom: 0;
  }
}
.lp-news .lp-common-box {
  display: flex;
}
@media screen and (max-width: 960px) {
  .lp-news .lp-common-box {
    flex-direction: column;
  }
}
.lp-news__title {
  width: calc(180 / 1920 * 100vw);
  text-align: center;
  flex-shrink: 0;
}
@media screen and (max-width: 960px) {
  .lp-news__title {
    width: 100%;
    text-align: left;
  }
}
.lp-news__container {
  flex-grow: 1;
}
.lp-news__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: calc(10 / 1920 * 100vw);
  margin-bottom: calc(30 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .lp-news__list {
    gap: calc(15 / 750 * 100vw);
  }
}
.lp-news__list li > button {
  width: 100%;
  appearance: none;
  background: #404040;
  display: flex;
  padding: calc(30 / 1920 * 100vw);
  font-size: calc(18 / 1920 * 100vw);
  gap: calc(40 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .lp-news__list li > button {
    flex-direction: column;
    font-size: calc(24 / 750 * 100vw);
    text-align: left;
    gap: calc(0 / 750 * 100vw);
    padding: calc(30 / 750 * 100vw);
  }
}
.lp-news__list li > button time {
  color: #808080;
}
.lp-news__list li > button p {
  color: #cccccc;
  text-align: left;
}
.lp-news__more-button {
  width: fit-content;
  margin-left: auto;
  font-size: calc(16 / 1920 * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(20 / 1920 * 100vw);
  padding: calc(15 / 1920 * 100vw) calc(30 / 1920 * 100vw);
  line-height: 1;
  color: #4b4b4a;
}
.lp-news__more-button[hidden] {
  pointer-events: none;
  visibility: hidden;
}
@media screen and (max-width: 960px) {
  .lp-news__more-button {
    font-size: calc(24 / 750 * 100vw);
    padding: calc(15 / 750 * 100vw) calc(30 / 750 * 100vw);
  }
}
.lp-news__more-button:before {
  content: "";
  width: calc(8 / 1920 * 100vw);
  aspect-ratio: 1/1;
  border-bottom: calc(2 / 1920 * 100vw) solid currentColor;
  border-right: calc(2 / 1920 * 100vw) solid currentColor;
  rotate: 45deg;
}
@media screen and (max-width: 960px) {
  .lp-news__more-button:before {
    width: calc(10 / 750 * 100vw);
    border-bottom: calc(2 / 750 * 100vw) solid currentColor;
    border-right: calc(2 / 750 * 100vw) solid currentColor;
  }
}

.inview-title-style.has-inview {
  transition: 0.6s cubic-bezier(1, 0.36, 0.52, 0.99);
  opacity: 0;
  translate: 0 10px;
  filter: blur(10px);
}
.inview-title-style.has-inview.is-inview {
  translate: 0 0;
  opacity: 1;
  filter: blur(0px);
}

.lp-tour {
  position: relative;
  z-index: 1;
  margin-bottom: calc(90 / 1920 * 100vw);
}
.lp-tour__title {
  text-align: center;
  color: #c31e1e;
  font-size: calc(48 / 1920 * 100vw);
  margin-bottom: calc(80 / 1920 * 100vw);
  line-height: 1.2;
}
@media screen and (max-width: 960px) {
  .lp-tour__title {
    font-size: calc(48 / 750 * 100vw);
    margin-bottom: calc(40 / 750 * 100vw);
  }
}
.lp-tour__lead-text {
  color: #4b4b4a;
  text-align: center;
  font-size: calc(18 / 1920 * 100vw);
  margin: calc(80 / 1920 * 100vw) 0;
}
@media screen and (max-width: 960px) {
  .lp-tour__lead-text {
    font-size: calc(30 / 750 * 100vw);
    margin: calc(80 / 750 * 100vw) 0;
    text-align: left;
  }
}
.lp-tour__attention {
  color: #4b4b4a;
  display: flex;
  border: 1px solid currentColor;
  padding: calc(68 / 1920 * 100vw) 0;
}
@media screen and (max-width: 960px) {
  .lp-tour__attention {
    flex-direction: column;
    padding: calc(20 / 750 * 100vw) 4%;
  }
}
.lp-tour__attention-title {
  color: #c31e1e;
  font-size: calc(30 / 1920 * 100vw);
  font-weight: 800;
}
@media screen and (max-width: 960px) {
  .lp-tour__attention-title {
    font-size: calc(30 / 750 * 100vw);
  }
}
.lp-tour__attention dt {
  width: 19%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .lp-tour__attention dt {
    width: 100%;
    padding-bottom: calc(15 / 750 * 100vw);
  }
}
.lp-tour__attention dt .icon-wrapper {
  width: calc(63 / 1920 * 100vw);
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-size: calc(30 / 1920 * 100vw);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .lp-tour__attention dt .icon-wrapper {
    width: calc(63 / 750 * 100vw);
    font-size: calc(30 / 750 * 100vw);
  }
}
.lp-tour__attention dd {
  width: 81%;
  border-left: 1px solid currentColor;
  padding-left: calc(80 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .lp-tour__attention dd {
    width: 100%;
    border-left: none;
    border-top: 1px solid currentColor;
    padding-top: calc(20 / 750 * 100vw);
    padding-left: 0;
  }
}
.lp-tour__attention dd ul li {
  display: flex;
  align-items: center;
  gap: calc(20 / 1920 * 100vw);
  padding: calc(20 / 1920 * 100vw) calc(20 / 1920 * 100vw) calc(20 / 1920 * 100vw) 0;
  font-size: calc(18 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .lp-tour__attention dd ul li {
    gap: calc(10 / 750 * 100vw);
    padding: calc(10 / 750 * 100vw) calc(10 / 750 * 100vw) calc(10 / 750 * 100vw) 0;
    font-size: calc(27 / 750 * 100vw);
    align-items: flex-start;
  }
}
.lp-tour__attention dd ul li i {
  font-size: calc(24 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .lp-tour__attention dd ul li i {
    margin-top: calc(10 / 750 * 100vw);
    font-size: calc(30 / 750 * 100vw);
  }
}

.tour-info {
  color: white;
  margin-bottom: calc(120 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .tour-info {
    margin-bottom: calc(120 / 750 * 100vw);
  }
}
.tour-info:after {
  content: "※LOCAL TIME";
  display: block;
  text-align: right;
  margin-top: calc(20 / 1920 * 100vw);
  font-size: calc(16 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .tour-info:after {
    margin-top: calc(20 / 750 * 100vw);
    font-size: calc(16 / 750 * 100vw);
  }
}
.tour-info__item.has-inview {
  translate: 0 10px;
  transition: 0.4s ease-out;
  opacity: 0;
}
.tour-info__item.has-inview.is-inview {
  translate: 0 0;
  opacity: 1;
}
.tour-info__item:not(:last-child) {
  margin-bottom: calc(60 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .tour-info__item:not(:last-child) {
    margin-bottom: calc(60 / 750 * 100vw);
  }
}
.tour-info__city {
  text-align: center;
  color: #737373;
  font-size: calc(36 / 1920 * 100vw);
  width: fit-content;
  margin: 0 auto calc(40 / 1920 * 100vw) auto;
  position: relative;
}
@media screen and (max-width: 960px) {
  .tour-info__city {
    margin: 0 auto calc(40 / 750 * 100vw) auto;
    font-size: calc(54 / 750 * 100vw);
  }
}
.tour-info__city:before, .tour-info__city:after {
  content: "";
  width: calc(80 / 1920 * 100vw);
  height: 1px;
  background: #252525;
  position: absolute;
}
@media screen and (max-width: 960px) {
  .tour-info__city:before, .tour-info__city:after {
    width: calc(80 / 750 * 100vw);
  }
}
.tour-info__city:before, .tour-info__city:after {
  left: calc(100% + 20 / 1920 * 100vw);
  top: 50%;
}
.tour-info__city:before {
  translate: calc(20 / 1920 * 100vw) calc(-2 / 1920 * 100vw);
}
.tour-info__city:after {
  translate: 0 calc(2 / 1920 * 100vw);
}
.tour-info__city--wrap {
  display: block;
}
.tour-info__city--wrap:before, .tour-info__city--wrap:after {
  content: "";
  width: calc(80 / 1920 * 100vw);
  height: 1px;
  background: #252525;
  position: absolute;
}
@media screen and (max-width: 960px) {
  .tour-info__city--wrap:before, .tour-info__city--wrap:after {
    width: calc(80 / 750 * 100vw);
  }
}
.tour-info__city--wrap:before, .tour-info__city--wrap:after {
  right: calc(100% + 20 / 1920 * 100vw);
  top: 50%;
}
.tour-info__city--wrap:before {
  translate: 0 calc(-2 / 1920 * 100vw);
}
.tour-info__city--wrap:after {
  translate: calc(-20 / 1920 * 100vw) calc(2 / 1920 * 100vw);
}
.tour-info__table {
  width: 100%;
  border-collapse: collapse;
}
.tour-info__head {
  background: #252525;
  font-size: calc(18 / 1920 * 100vw);
  color: #8c8c8c;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .tour-info__head {
    display: none;
  }
}
.tour-info__head th {
  padding: calc(25 / 1920 * 100vw) 0;
  border-bottom: 2px solid black;
}
.tour-info__head-date {
  width: 23%;
}
.tour-info__head-venue {
  width: 33%;
}
.tour-info__head-open-start {
  width: 17%;
}
.tour-info__head-ticket {
  width: 27%;
}
.tour-info__body {
  background: #4b4b4a;
  text-align: center;
  color: #d9d9d9;
}
@media screen and (max-width: 960px) {
  .tour-info__body {
    display: block;
  }
  .tour-info__body tr {
    padding: calc(30 / 750 * 100vw);
    display: block;
    text-align: left;
  }
}
.tour-info__body td {
  padding-top: calc(20 / 1920 * 100vw);
  padding-bottom: calc(20 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .tour-info__body td {
    display: block;
    padding-top: calc(10 / 750 * 100vw);
    padding-bottom: calc(10 / 750 * 100vw);
    line-height: 1.3;
  }
}
.tour-info__date time {
  font-size: calc(32 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .tour-info__date time {
    font-size: calc(48 / 750 * 100vw);
  }
}
.tour-info__date span {
  font-size: calc(18 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .tour-info__date span {
    font-size: calc(27 / 750 * 100vw);
  }
}
.tour-info__venue {
  font-size: calc(26 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .tour-info__venue {
    font-size: calc(39 / 750 * 100vw);
  }
}
.tour-info__open-start {
  font-size: calc(22 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .tour-info__open-start {
    font-size: calc(33 / 750 * 100vw);
  }
  .tour-info__open-start:not(.has-no-openstart):before {
    content: "OPEN/START";
    font-size: calc(24 / 750 * 100vw);
    margin-right: calc(20 / 750 * 100vw);
  }
}
.tour-info__ticket {
  padding-right: calc(50 / 1920 * 100vw);
  padding-left: calc(50 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .tour-info__ticket {
    padding-right: calc(0 / 1920 * 100vw);
    padding-left: calc(0 / 1920 * 100vw);
  }
}
.tour-info__ticket a {
  display: block;
  background: #ffffff;
  color: #4b4b4a;
  font-size: calc(20 / 1920 * 100vw);
  padding: calc(10 / 1920 * 100vw) 0;
}
@media screen and (max-width: 960px) {
  .tour-info__ticket a {
    font-size: calc(30 / 750 * 100vw);
    text-align: center;
    padding: calc(30 / 750 * 100vw) 0;
  }
}
.tour-info__ticket a[aria-disabled=true] {
  color: #999999;
  border: calc(1 / 1920 * 100vw) solid #999999;
  background: transparent;
}
.lp-us-ep {
  margin-top: calc(300 / 1920 * 100vw);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: calc(500 / 1920 * 100vw);
  position: relative;
  padding: calc(200 / 1920 * 100vw) 0;
}
.lp-us-ep__bg {
  position: absolute;
  left: 0;
  width: 100%;
}
.lp-us-ep__bg img {
  width: 100%;
}
.lp-us-ep__bg--top {
  top: calc(-200 / 1920 * 100vw);
}
.lp-us-ep__bg--bottom {
  bottom: calc(-200 / 1920 * 100vw);
}
.lp-us-ep__coming-soon {
  text-align: center;
  padding: calc(200 / 1920 * 100vw) 0;
}
.lp-us-ep__coming-soon h2 {
  color: #c31e1e;
  font-size: calc(48 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .lp-us-ep__coming-soon h2 {
    font-size: calc(48 / 750 * 100vw);
  }
}
.lp-us-ep__coming-soon p {
  font-size: calc(100 / 1920 * 100vw);
  color: #333333;
}
@media screen and (max-width: 960px) {
  .lp-us-ep__coming-soon p {
    font-size: calc(100 / 750 * 100vw);
  }
}

.lp-about {
  margin-top: calc(300 / 1920 * 100vw);
  position: relative;
  z-index: 1;
  padding-bottom: calc(400 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .lp-about {
    margin-top: calc(300 / 750 * 100vw);
    padding-bottom: calc(200 / 750 * 100vw);
  }
}
.lp-about .section-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.lp-about__title {
  text-align: center;
  color: #c31e1e;
  font-size: calc(48 / 1920 * 100vw);
  margin-bottom: calc(40 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .lp-about__title {
    font-size: calc(48 / 750 * 100vw);
    margin-bottom: calc(40 / 750 * 100vw);
  }
}
.lp-about__text {
  text-align: center;
  font-size: calc(18 / 1920 * 100vw);
  color: #7b7b7b;
  line-height: 2.4;
}
@media screen and (max-width: 960px) {
  .lp-about__text {
    font-size: calc(30 / 750 * 100vw);
    line-height: 2;
  }
}
.lp-about__slider {
  margin-top: calc(100 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .lp-about__slider {
    margin-top: calc(100 / 750 * 100vw);
  }
}
.lp-about__slider .swiper {
  padding-bottom: calc(100 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .lp-about__slider .swiper {
    padding-bottom: calc(100 / 750 * 100vw);
  }
}
.lp-about__slider .swiper-slide:not(.swiper-slide-active) .slide__inner:before {
  opacity: 0;
}
.lp-about__slider .swiper-slide .slide__inner {
  position: relative;
  aspect-ratio: 78/76;
  z-index: 1;
  padding: calc(40 / 1920 * 100vw);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media screen and (max-width: 960px) {
  .lp-about__slider .swiper-slide .slide__inner {
    padding: calc(40 / 750 * 100vw);
  }
}
.lp-about__slider .swiper-slide .slide__inner:before {
  transition: 0.4s;
  content: "";
  z-index: -1;
  background: url(../images/member_slide_bg.png) no-repeat top center/cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lp-about__slider .swiper-slide .slide__name {
  text-align: right;
  font-size: calc(36 / 1920 * 100vw);
  padding-right: calc(40 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .lp-about__slider .swiper-slide .slide__name {
    font-size: calc(36 / 750 * 100vw);
    padding-right: calc(40 / 750 * 100vw);
  }
}
.lp-about__slider .member-slider-prev, .lp-about__slider .member-slider-next {
  color: #666666;
  bottom: calc(50 / 1920 * 100vw);
  width: calc(240 / 1920 * 100vw);
  height: calc(10 / 1920 * 100vw);
  border-bottom: calc(1 / 1920 * 100vw) solid currentColor;
  position: absolute;
  z-index: 2;
  font-size: calc(24 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .lp-about__slider .member-slider-prev, .lp-about__slider .member-slider-next {
    bottom: calc(50 / 750 * 100vw);
    width: calc(200 / 750 * 100vw);
    height: calc(10 / 750 * 100vw);
    border-bottom: calc(1 / 750 * 100vw) solid currentColor;
    font-size: calc(24 / 750 * 100vw);
  }
}
.lp-about__slider .member-slider-prev:after, .lp-about__slider .member-slider-next:after {
  display: block;
}
.lp-about__slider .member-slider-prev {
  border-left: calc(1 / 1920 * 100vw) solid currentColor;
  transform: skew(-40deg);
  left: 20%;
}
@media screen and (max-width: 960px) {
  .lp-about__slider .member-slider-prev {
    left: 10%;
  }
}
.lp-about__slider .member-slider-prev:after {
  content: "PREV";
  transform: skew(40deg) translateY(10px) translateX(calc(8 / 1920 * 100vw));
  margin-left: auto;
  width: fit-content;
}
.lp-about__slider .member-slider-next {
  border-right: calc(1 / 1920 * 100vw) solid currentColor;
  right: 20%;
  transform: skew(40deg);
}
@media screen and (max-width: 960px) {
  .lp-about__slider .member-slider-next {
    right: 10%;
  }
}
.lp-about__slider .member-slider-next:after {
  content: "NEXT";
  transform: skew(-40deg) translateY(10px) translateX(calc(-8 / 1920 * 100vw));
}

@media screen and (max-width: 960px) {
  .lp-fanclub {
    padding-bottom: calc(100 / 750 * 100vw);
  }
}
.lp-fanclub__title {
  font-size: calc(48 / 1920 * 100vw);
  color: #a52216;
  text-align: center;
  margin-bottom: calc(40 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .lp-fanclub__title {
    font-size: calc(48 / 750 * 100vw);
    margin-bottom: calc(40 / 750 * 100vw);
  }
}
.lp-fanclub__text {
  text-align: center;
  color: #7b7b7b;
  font-size: calc(18 / 1920 * 100vw);
  margin-bottom: calc(100 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .lp-fanclub__text {
    font-size: calc(30 / 750 * 100vw);
    margin-bottom: calc(40 / 750 * 100vw);
  }
}
.lp-fanclub__link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: calc(600 / 1920 * 100vw);
  aspect-ratio: 60/11;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #000;
  font-size: calc(24 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .lp-fanclub__link {
    width: 90%;
    font-size: calc(36 / 750 * 100vw);
  }
}

.lp-footer {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: calc(120 / 1920 * 100vw) 0;
}
.lp-footer__logo {
  width: calc(168 / 1920 * 100vw);
  margin: 0 auto calc(30 / 1920 * 100vw) auto;
  position: relative;
}
@media screen and (max-width: 960px) {
  .lp-footer__logo {
    width: calc(168 / 750 * 100vw);
  }
}
.lp-footer__logo:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #c31e1e;
  mix-blend-mode: darken;
  pointer-events: none;
}
.lp-footer__text {
  text-align: center;
  color: #737373;
  font-size: calc(24 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .lp-footer__text {
    font-size: calc(36 / 750 * 100vw);
    line-height: 1.3;
    margin: calc(80 / 750 * 100vw);
  }
}
.lp-footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(30 / 1920 * 100vw);
  margin: calc(50 / 1920 * 100vw) 0;
}
@media screen and (max-width: 960px) {
  .lp-footer__sns {
    gap: calc(30 / 750 * 100vw);
    margin: calc(50 / 750 * 100vw);
  }
}
.lp-footer__copy {
  text-align: center;
  display: block;
  color: #737373;
  font-size: calc(16 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .lp-footer__copy {
    font-size: calc(25 / 750 * 100vw);
  }
}

.news-modal.modal-container .modal-inner {
  background: #aaa;
}
.news-modal.modal-container .modal-content {
  color: #000;
}
.news-modal.modal-container .modal-content .jo1_us_news_cont .date {
  color: #666;
}
.news-modal.modal-container .modal-content .jo1_us_news_cont .tit {
  font-size: calc(20 / 1920 * 100vw);
  background: #000;
  color: #ddd;
  padding: calc(10 / 1920 * 100vw);
  margin-bottom: calc(20 / 1920 * 100vw);
}
@media screen and (max-width: 960px) {
  .news-modal.modal-container .modal-content .jo1_us_news_cont .tit {
    font-size: calc(26 / 750 * 100vw);
    padding: calc(10 / 750 * 100vw);
    margin-bottom: calc(20 / 750 * 100vw);
  }
}
@media screen and (max-width: 960px) {
  .news-modal.modal-container .modal-content .jo1_us_news_cont .txt {
    font-size: calc(20 / 750 * 100vw);
  }
}
.news-modal.modal-container .modal-content .jo1_us_news_cont .txt a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.languages {
  position: fixed;
  top: calc(140 / 1920 * 100vw);
  right: calc(40 / 1920 * 100vw);
  z-index: 999;
  background: #fff;
  padding: 0 10px;
  border-radius: 50px;
}

.wovn-languages {
  color: #333;
  font-size: 12px;
  position: relative;
  z-index: 2;
  width: 190px;
  height: 35px;
  cursor: pointer;
}
.wovn-languages::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -4px;
  border: 0px;
  border-bottom: solid 2px;
  border-right: solid 2px;
  transform: rotate(45deg) translateY(-50%);
  z-index: 10;
}
.wovn-languages .langIcon {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  margin: auto;
  line-height: 1;
  transform: translateY(-50%);
}
.wovn-languages .langIcon svg {
  fill: #333;
}
.wovn-languages .langIcon svg path {
  stroke: none;
}
.wovn-languages .nav-dropdown {
  position: absolute;
  top: 50%;
  left: 30px;
  line-height: 1.4;
  text-align: left;
  z-index: 2;
  transform: translateY(-50%);
}
.wovn-languages .list--language {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.wovn-languages .list--language li {
  width: 100%;
  display: none;
  cursor: pointer;
  padding-bottom: 0;
  text-align: left;
  padding: 0;
}
.wovn-languages .list--language li::after {
  content: none;
}
.wovn-languages .list--language li.selected {
  display: block;
  order: -1;
}
.wovn-languages.visible::before {
  content: none;
}
.wovn-languages.visible .nav-dropdown {
  opacity: 1;
  pointer-events: visible;
  z-index: 1;
  border: none;
  color: #fff;
  top: 0;
  transform: translateY(0);
  background: #333;
  padding: 10px 10px 0;
  border-radius: 10px;
}
.wovn-languages.visible .nav-dropdown .list--language li {
  display: block;
  transition: opacity 0.4s;
  margin-bottom: 10px;
}
.wovn-languages.visible .nav-dropdown .list--language li.selected {
  pointer-events: none;
  background: transparent;
  padding: 0;
  opacity: 0.5;
  transition: none;
}

@media screen and (min-width: 581px) and (max-width: 1000px) {
  .wovn-languages.visible .nav-dropdown {
    left: 21px;
  }
  .wovn-languages.visible .nav-dropdown .list--language li.selected {
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 960px) {
  .languages {
    top: calc(50 / 750 * 100vw);
    width: fit-content;
    right: calc(150 / 750 * 100vw);
  }
  .wovn-languages {
    width: 150px;
  }
}
/* -----------------------------

vendor style

----------------------------- */
body.is-modal-open {
  overflow: hidden;
}

.modal-container {
  display: none;
}
.modal-container.is-modal-active {
  z-index: 9999;
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.modal-container.is-modal-active .modal-inner {
  animation: showModalContent 0.4s 1 ease-out forwards;
}
.modal-container.is-modal-active-from-right .modal-inner {
  animation: showModalContentFromRight 0.4s 1 ease-out forwards;
}
.modal-container.is-modal-active-from-left .modal-inner {
  animation: showModalContentFromLeft 0.4s 1 ease-out forwards;
}
.modal-container.is-modal-closing .modal-inner {
  animation: closingModalContent 0.2s 1 ease-out forwards;
}
.modal-container.is-modal-closing-to-left .modal-inner {
  animation: closingModalContentToLeft 0.2s 1 ease-in forwards;
}
.modal-container.is-modal-closing-to-right .modal-inner {
  animation: closingModalContentToRight 0.2s 1 ease-in forwards;
}
.modal-container.is-modal-closing .modal-close {
  animation: closingModalBg 0.2s 1 ease forwards;
}
.modal-container .modal-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 20vw;
  max-width: 80vw;
  min-height: 20vh;
  max-height: 90vh;
  margin: 0 auto;
  background: #fff;
  border-radius: 6px;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
  pointer-events: all;
  overflow: hidden;
}
.modal-container .modal-content {
  flex: 1;
  min-height: 0;
  padding: 5vw;
  overflow: auto;
}
.modal-container .modal-content img {
  max-width: 100%;
  max-height: 100%;
}
.modal-container .modal-close {
  z-index: 9999;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: none;
  background: transparent;
  text-indent: -9999px;
  pointer-events: all;
  padding: 0;
}
@media screen and (max-width: 960px) {
  .modal-container .modal-close {
    width: 30px;
    height: 30px;
    top: 0;
    right: 0;
  }
}
.modal-container .modal-close:before, .modal-container .modal-close:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 2px;
  margin: auto;
  background: #000;
  content: "";
}
.modal-container .modal-close:before {
  transform: rotate(45deg);
}
.modal-container .modal-close:after {
  transform: rotate(-45deg);
}
.modal-container .modal-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.modal-container .modal-nav--prev, .modal-container .modal-nav--next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  appearance: none;
  z-index: 9998;
  width: 3vw;
  height: 3vw;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  pointer-events: all;
}
.modal-container .modal-nav--prev:before, .modal-container .modal-nav--next:before {
  display: block;
  position: absolute;
  top: 0.75vw;
  width: 1.5vw;
  height: 1.5vw;
  border-bottom: 2px solid #fff;
  content: "";
}
.modal-container .modal-nav--prev {
  left: 2.5vw;
}
.modal-container .modal-nav--prev:before {
  transform: rotate(45deg);
  left: calc(0.75vw + 2px);
  border-left: 2px solid #fff;
}
.modal-container .modal-nav--next {
  right: 2.5vw;
}
.modal-container .modal-nav--next:before {
  transform: rotate(-45deg);
  left: calc(0.75vw - 2px);
  border-right: 2px solid #fff;
}

.modal-bg {
  z-index: 9998;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.modal-bg:not(.is-bg-kept) {
  animation: showModal 0.4s 1 ease-out forwards;
}
.modal-bg.is-modal-closing {
  animation: closingModalBg 0.2s 1 ease-out forwards;
}

@keyframes showModal {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes showModalContent {
  0% {
    display: none;
    opacity: 0;
    translate: 0 20px;
  }
  1% {
    display: flex;
    opacity: 0;
    translate: 0 20px;
  }
  100% {
    display: flex;
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes showModalContentFromLeft {
  0% {
    display: none;
    opacity: 0;
    translate: -20px 0;
  }
  1% {
    display: flex;
    opacity: 0;
    translate: -20px 0;
  }
  100% {
    display: flex;
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes showModalContentFromRight {
  0% {
    display: none;
    opacity: 0;
    translate: 20px 0;
  }
  1% {
    display: flex;
    opacity: 0;
    translate: 20px 0;
  }
  100% {
    display: flex;
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes closingModalContent {
  0% {
    opacity: 1;
    translate: 0 0;
  }
  100% {
    opacity: 0;
    translate: 0 20px;
  }
}
@keyframes closingModalContentToLeft {
  0% {
    opacity: 1;
    translate: 0 0;
  }
  100% {
    opacity: 0;
    translate: -20px 0;
  }
}
@keyframes closingModalContentToRight {
  0% {
    opacity: 1;
    translate: 0 0;
  }
  100% {
    opacity: 0;
    translate: 20px 0;
  }
}
@keyframes closingModalBg {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*# sourceMappingURL=style.css.map */
