@charset "utf-8";

:root {
  --full-width: 750;
}
@media screen and (min-width: 751px) {
  :root {
    --full-width: 1440;
  }
}

* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background-color: #000;
  line-height: 1.5;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: calc(28 / var(--full-width) * 100vw);
  font-weight: 400;
  color: #fff;
}
@media screen and (min-width: 751px) {
  body {
    font-size: calc(18 / var(--full-width) * 100vw);
  }
}

a {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: inherit;
  appearance: none;
  cursor: pointer;
}

/* ========== parts ========== */
/* scrolltop */
.scrolltop {
  position: fixed;
  z-index: 10;
  bottom: calc(50 / var(--full-width) * 100vw);
  left: calc(30 / var(--full-width) * 100vw);
  display: block;
  width: calc(80 / var(--full-width) * 100vw);
  height: auto;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s, translate 0.3s;
}
.scrolltop.is-view {
  pointer-events: auto;
  opacity: 1;
}
@media (hover: hover) {
  .scrolltop:hover {
    translate: 0 -10%;
  }
}

@media screen and (min-width: 751px) {
  .scrolltop {
    bottom: calc(80 / var(--full-width) * 100vw);
    left: calc(120 / var(--full-width) * 100vw);
    width: calc(50 / var(--full-width) * 100vw);
  }
}

/* ticketbtn */
.ticketbtn {
  position: fixed;
  z-index: 10;
  bottom: calc(50 / var(--full-width) * 100vw);
  right: calc(12 / var(--full-width) * 100vw);
  display: block;
  width: calc(244 / var(--full-width) * 100vw);
  height: auto;
  aspect-ratio: 244 / 244;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s, scale 0.2s;
}
.ticketbtn.is-view {
  pointer-events: auto;
  opacity: 1;
}
@media (hover: hover) {
  .ticketbtn:hover {
    scale: 0.95;
  }
}

@media screen and (min-width: 751px) {
  .ticketbtn {
    bottom: calc(62 / var(--full-width) * 100vw);
    right: calc(42 / var(--full-width) * 100vw);
    width: calc(160 / var(--full-width) * 100vw);
  }
}

/* ========== common ========== */
@media screen and (max-width: 750px) {
  .c-pc {
    display: none;
  }
}

@media screen and (min-width: 751px) {
  .c-sp {
    display: none;
  }
}

.sec-ttl {
  position: relative;
}
.sec-ttl::before {
  content: '';
  position: absolute;
  z-index: 1;
  display: block;
  height: auto;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.sec-ttl img {
  position: relative;
  z-index: 2;
}

/* ========== lead ========== */
#lead {
  position: relative;
  padding: calc(120 / var(--full-width) * 100vw) calc(60 / var(--full-width) * 100vw)
    calc(100 / var(--full-width) * 100vw);
  background: top/100% repeat-y url(../img/contents/lead-bg.webp);
}
#lead::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 750 / 300;
  background: center/contain no-repeat url(../img/contents/lead-bg-top.webp);
}

.lead-txt {
  position: relative;
  z-index: 3;
  padding: 0;
  text-align: center;
  text-shadow: 0 0 calc(10 / var(--full-width) * 100vw) rgb(0 0 0 / 60%);
}

.lead-lightsaber::before,
.lead-lightsaber::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  display: block;
  width: calc(178 / var(--full-width) * 100vw);
  height: auto;
  aspect-ratio: 178 / 450;
  background: center/contain no-repeat;
}
.lead-lightsaber::before {
  left: 0;
  background-image: url(../img/contents/lead-bg-left__l.webp);
}
.lead-lightsaber::after {
  right: 0;
  background-image: url(../img/contents/lead-bg-right__l.webp);
}

@media screen and (min-width: 751px) {
  #lead {
    padding: calc(135 / var(--full-width) * 100vw) calc(340 / var(--full-width) * 100vw)
      calc(100 / var(--full-width) * 100vw);
    background-image: url(../img/contents/lead-bg__l.webp);
  }
  #lead::before {
    aspect-ratio: 1440 / 220;
    background-image: url(../img/contents/lead-bg-top__l.webp);
  }

  .lead-txt {
    font-size: calc(20 / var(--full-width) * 100vw);
  }

  .lead-lightsaber::before,
  .lead-lightsaber::after {
    width: calc(342 / var(--full-width) * 100vw);
    aspect-ratio: 342 / 670;
  }
  .lead-lightsaber::before {
    background-image: url(../img/contents/lead-bg-left__l.webp);
  }
  .lead-lightsaber::after {
    background-image: url(../img/contents/lead-bg-right__l.webp);
  }
}

/* ========== event ========== */
#event {
  padding-bottom: calc(15 / var(--full-width) * 100vw);
  background: top/100% repeat-y url(../img/contents/event-bg.webp);
}

.event-ttl::before {
  top: calc(-37 / var(--full-width) * 100vw);
  right: calc(30 / var(--full-width) * 100vw);
  width: calc(313 / var(--full-width) * 100vw);
  aspect-ratio: 313 / 106;
  background-image: url(../img/contents/event-ttl-deco.webp);
}

.event-list {
  margin-top: calc(23 / var(--full-width) * 100vw);
}

.event-list > li + li {
  margin-top: calc(5 / var(--full-width) * 100vw);
}

@media screen and (min-width: 751px) {
  #event {
    padding-bottom: calc(35 / var(--full-width) * 100vw);
    background-image: url(../img/contents/event-bg__l.webp);
  }

  .event-ttl::before {
    top: calc(-19 / var(--full-width) * 100vw);
    right: calc(284 / var(--full-width) * 100vw);
  }

  .event-ttl img {
    margin: 0 auto;
    width: calc(750 / var(--full-width) * 100vw);
  }

  .event-list {
    margin-left: auto;
    margin-right: auto;
    width: calc(1051 / var(--full-width) * 100vw);
  }

  .event-list > li + li {
    margin-top: calc(10 / var(--full-width) * 100vw);
  }
}

.eventCard::before,
.eventCard::after {
  content: '';
  display: block;
  width: 100%;
  height: auto;
  background: center/contain no-repeat;
}
.eventCard::before {
  aspect-ratio: 750 / 108;
  background-image: url(../img/contents/event-frame-top.webp);
}
.eventCard::after {
  aspect-ratio: 750 / 118;
  background-image: url(../img/contents/event-frame-bottom.webp);
}

.eventCard-inner {
  padding: 0 calc(60 / var(--full-width) * 100vw);
  background: top/100% repeat-y url(../img/contents/event-frame-middle.webp);
}

.eventCard-ttl {
  text-align: center;
  font-size: calc(40 / var(--full-width) * 100vw);
  font-weight: 600;
}

.eventCard-txt {
  margin-top: calc(30 / var(--full-width) * 100vw);
}

.eventCard-img {
  margin-top: calc(55 / var(--full-width) * 100vw);
}

@media screen and (min-width: 751px) {
  .eventCard::before {
    aspect-ratio: 1054 / 116;
    background-image: url(../img/contents/event-frame-top__l.webp);
  }
  .eventCard::after {
    aspect-ratio: 1054 / 101;
    background-image: url(../img/contents/event-frame-bottom__l.webp);
  }

  .eventCard-inner {
    padding: 0 calc(90 / var(--full-width) * 100vw);
    background-image: url(../img/contents/event-frame-middle__l.webp);
  }

  .eventCard-ttl {
    font-size: calc(28 / var(--full-width) * 100vw);
  }

  .eventCard-txt {
    margin-top: calc(20 / var(--full-width) * 100vw);
  }

  .eventCard-img {
    margin: calc(40 / var(--full-width) * 100vw) auto 0;
    width: calc(480 / var(--full-width) * 100vw);
  }
}

.eventCard-slider {
  margin-top: calc(55 / var(--full-width) * 100vw);
  padding-bottom: calc(40 / var(--full-width) * 100vw);
}

.eventCard-slider #splide {
  margin: 0 auto;
  width: calc(580 / var(--full-width) * 100vw);
}

.eventCard-slider #splide .splide__arrow {
  width: calc(77 / var(--full-width) * 100vw);
  height: auto;
  background: none;
  border-radius: 0;
  opacity: 1;
}

.eventCard-slider #splide .splide__arrow--prev {
  left: calc(-41 / var(--full-width) * 100vw);
}

.eventCard-slider #splide .splide__arrow--next {
  right: calc(-41 / var(--full-width) * 100vw);
}

.eventCard-slider #splide .splide__pagination {
  bottom: calc(-40 / var(--full-width) * 100vw);
  gap: calc(16 / var(--full-width) * 100vw);
}

.eventCard-slider #splide .splide__pagination__page {
  margin: 0;
  width: calc(20 / var(--full-width) * 100vw);
  height: calc(20 / var(--full-width) * 100vw);
  background-color: #fff;
  opacity: 0.4;
}

.eventCard-slider #splide .splide__pagination__page.is-active {
  transform: none;
  opacity: 1;
}

.eventCardSlide-ttl {
  padding: 0.5em 1em;
  text-align: center;
  font-size: calc(32 / var(--full-width) * 100vw);
}

@media screen and (min-width: 751px) {
  .eventCard-slider {
    margin-top: calc(40 / var(--full-width) * 100vw);
    padding-bottom: calc(28 / var(--full-width) * 100vw);
    overflow: hidden;
  }

  .eventCard-slider #splide {
    width: calc(400 / var(--full-width) * 100vw);
  }

  .eventCard-slider #splide .splide__track {
    overflow: visible;
  }

  .eventCard-slider #splide .splide__arrow {
    width: calc(60 / var(--full-width) * 100vw);
  }

  .eventCard-slider #splide .splide__arrow--prev {
    left: calc(-25 / var(--full-width) * 100vw);
  }

  .eventCard-slider #splide .splide__arrow--next {
    right: calc(-25 / var(--full-width) * 100vw);
  }

  .eventCard-slider #splide .splide__pagination {
    bottom: calc(-28 / var(--full-width) * 100vw);
    gap: calc(12 / var(--full-width) * 100vw);
  }

  .eventCard-slider #splide .splide__pagination__page {
    width: calc(12 / var(--full-width) * 100vw);
    height: calc(12 / var(--full-width) * 100vw);
  }

  .eventCardSlide-ttl {
    font-size: calc(22 / var(--full-width) * 100vw);
  }
}

/* ========== schedule ========== */
#schedule {
  position: relative;
  padding-top: calc(110 / var(--full-width) * 100vw);
  background: top/100% repeat-y url(../img/contents/schedule-bg.webp);
}
#schedule::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 750 / 1386;
  background: top/100% no-repeat url(../img/contents/schedule-bg-deco.webp);
}

.schedule-ttl {
  z-index: 2;
}
.schedule-ttl::before {
  top: calc(-103 / var(--full-width) * 100vw);
  right: calc(27 / var(--full-width) * 100vw);
  width: calc(248 / var(--full-width) * 100vw);
  aspect-ratio: 248 / 143;
  background-image: url(../img/contents/schedule-ttl-deco.webp);
}

.schedule-list {
  position: relative;
  z-index: 2;
  margin-top: calc(10 / var(--full-width) * 100vw);
}

.schedule-list li + li {
  margin-top: calc(-27 / var(--full-width) * 100vw);
}

@media screen and (min-width: 751px) {
  #schedule {
    background-image: url(../img/contents/schedule-bg__l.webp);
  }
  #schedule::before {
    aspect-ratio: 1440 / 1274;
    background-image: url(../img/contents/schedule-bg-deco__l.webp);
  }

  .schedule-ttl::before {
    top: calc(-53 / var(--full-width) * 100vw);
    right: calc(278 / var(--full-width) * 100vw);
  }

  .schedule-ttl img {
    margin: 0 auto;
    width: calc(750 / var(--full-width) * 100vw);
  }

  .schedule-list {
    margin: calc(23 / var(--full-width) * 100vw) auto 0;
    width: calc(1051 / var(--full-width) * 100vw);
  }

  .schedule-list li + li {
    margin-top: calc(-35 / var(--full-width) * 100vw);
  }
}

.scheduleCard {
  position: relative;
}

.scheduleCard-btnContainer {
  position: absolute;
  z-index: 1;
  top: calc(204 / var(--full-width) * 100vw);
  left: 50%;
  translate: -50% 0;
  display: flex;
  justify-content: space-between;
  width: calc(490 / var(--full-width) * 100vw);
}

.scheduleCard-btn {
  display: block;
  width: calc(230 / var(--full-width) * 100vw);
  padding: calc(20 / var(--full-width) * 100vw);
  background-color: #0078ff;
  text-align: center;
  font-size: calc(24 / var(--full-width) * 100vw);
  font-weight: 500;
  transition: opacity 0.2s;
}
.scheduleCard-btn._ticket {
  background-color: #fff;
  box-shadow: 0 0 calc(10 / var(--full-width) * 100vw) 0 rgb(0 0 0 / 24%);
  color: #000;
}
@media (hover: hover) {
  .scheduleCard-btn:hover {
    opacity: 0.8;
  }
}

@media screen and (min-width: 751px) {
  .scheduleCard-btnContainer {
    top: calc(94 / var(--full-width) * 100vw);
    left: calc(578 / var(--full-width) * 100vw);
    translate: 0;
    width: calc(384 / var(--full-width) * 100vw);
  }

  .scheduleCard-btn {
    width: calc(180 / var(--full-width) * 100vw);
    font-size: calc(18 / var(--full-width) * 100vw);
  }
}
