@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-yt {
  margin-top: calc(60 / var(--full-width) * 100vw);
}

.lead-yt iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.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/100% 100% 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-subttl {
  margin-top: calc(30 / var(--full-width) * 100vw);
  padding: calc(10 / var(--full-width) * 100vw) 1em;
  background-color: #fff;
  font-weight: 400;
  color: #111;
}

.eventCard-txt {
  margin-top: calc(30 / var(--full-width) * 100vw);
}
.eventCard-subttl + .eventCard-txt,
.eventCardSchedule-ttl + .eventCard-txt {
  margin-top: calc(10 / var(--full-width) * 100vw);
}

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

.eventCard-maps {
  margin-top: calc(20 / var(--full-width) * 100vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: calc(30 / var(--full-width) * 100vw);
}

.eventCard-btn {
  margin: calc(32 / var(--full-width) * 100vw) auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(340 / var(--full-width) * 100vw);
  height: calc(80 / var(--full-width) * 100vw);
  background-color: #0078ff;
  text-align: center;
  font-size: calc(24 / var(--full-width) * 100vw);
}

.eventCard-section {
  margin-top: calc(64 / var(--full-width) * 100vw);
  padding: calc(40 / var(--full-width) * 100vw) calc(30 / var(--full-width) * 100vw)
    calc(24 / var(--full-width) * 100vw);
  border: calc(2 / var(--full-width) * 100vw) solid #fff;
}

@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-imgs + .eventCard-ttl,
  .eventCard-maps + .eventCard-ttl {
    margin-top: calc(40 / var(--full-width) * 100vw);
  }

  .eventCard-subttl {
    font-size: calc(20 / 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-maps {
    margin-top: calc(10 / var(--full-width) * 100vw);
    flex-direction: row;
  }
  .eventCard-maps > * {
    width: calc((100% - (30 / var(--full-width) * 100vw)) / 2);
  }

  .eventCard-btn {
    margin-top: calc(16 / var(--full-width) * 100vw);
    width: calc(200 / var(--full-width) * 100vw);
    height: calc(40 / var(--full-width) * 100vw);
    font-size: calc(14 / 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);
  }
}

.eventCardSchedule {
  margin-top: calc(48 / var(--full-width) * 100vw);
}

.eventCardSchedule-ttl {
  padding: calc(10 / var(--full-width) * 100vw) 1em;
  background-color: #fff;
  font-weight: 400;
  color: #111;
}

.eventCardSchedule-tableWrapper {
  margin-top: calc(10 / var(--full-width) * 100vw);
}

.eventCardSchedule-table {
  width: 100%;
}

.eventCardSchedule-table tr + tr {
  border-top: calc(2 / var(--full-width) * 100vw) solid #fff;
}

.eventCardSchedule-table th,
.eventCardSchedule-table td {
  padding: calc(32 / var(--full-width) * 100vw) 0;
  vertical-align: middle;
  font-weight: 400;
}

.eventCardSchedule-table th {
  position: relative;
  width: 25%;
  padding-right: 1em;
}
.eventCardSchedule-table th::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  display: block;
  width: calc(2 / var(--full-width) * 100vw);
  height: calc(100% - (48 / var(--full-width) * 100vw));
  background-color: #fff;
}

.eventCardSchedule-table._table2 th {
  width: 35%;
}

.eventCardSchedule-table td {
  width: 75%;
  padding-left: 1em;
  font-weight: 400;
}
.eventCardSchedule-table._table2 td {
  width: 65%;
}

@media screen and (min-width: 751px) {
  .eventCardSchedule {
    margin-top: calc(15 / var(--full-width) * 100vw);
  }

  .eventCardSchedule-ttl {
    padding: calc(5 / var(--full-width) * 100vw) 1em;
    font-size: calc(20 / var(--full-width) * 100vw);
  }

  .eventCardSchedule-tableWrapper {
    margin-top: 0;
  }

  .eventCardSchedule-table th,
  .eventCardSchedule-table td {
    padding-top: calc(24 / var(--full-width) * 100vw);
    padding-bottom: calc(24 / var(--full-width) * 100vw);
  }

  .eventCardSchedule-table th::after {
    height: calc(100% - (36 / var(--full-width) * 100vw));
  }
}

.eventCardAccordion-head {
  position: relative;
  margin-top: calc(50 / var(--full-width) * 100vw);
  background-color: #fff;
  color: #111;
  cursor: pointer;
}
.eventCardAccordion-head::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 50%;
  right: calc(40 / var(--full-width) * 100vw);
  translate: 0 -50%;
  display: block;
  width: calc(12 / var(--full-width) * 100vw);
  height: calc(12 / var(--full-width) * 100vw);
  border-bottom: calc(4 / var(--full-width) * 100vw) solid #111;
  border-right: calc(4 / var(--full-width) * 100vw) solid #111;
  rotate: 45deg;
  transition: rotate 0.3s;
}
.eventCardAccordion-head.is-open::after {
  rotate: 225deg;
}

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

.eventCardAccordion-body {
  display: none;
  padding: calc(8 / var(--full-width) * 100vw) calc(30 / var(--full-width) * 100vw);
  border: calc(2 / var(--full-width) * 100vw) solid #fff;
}

@media screen and (min-width: 751px) {
  .eventCardAccordion-head::after {
    width: calc(10 / var(--full-width) * 100vw);
    height: calc(10 / var(--full-width) * 100vw);
    border-bottom: calc(3 / var(--full-width) * 100vw) solid #111;
    border-right: calc(3 / var(--full-width) * 100vw) solid #111;
  }

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

  .eventCardAccordion-body {
    display: none;
    padding: calc(8 / var(--full-width) * 100vw) calc(30 / var(--full-width) * 100vw);
    border: calc(2 / var(--full-width) * 100vw) solid #fff;
  }
}

/* ========== 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);
  }
}

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

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

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

@media screen and (min-width: 751px) {
  .news-ttl {
    margin: 0 auto;
    width: calc(750 / var(--full-width) * 100vw);
  }

  .news-inner {
    width: calc(1051 / var(--full-width) * 100vw);
  }
  .news-inner::before {
    aspect-ratio: 1054 / 116;
    background-image: url(../img/contents/event-frame-top__l.webp);
  }
  .news-inner::after {
    aspect-ratio: 1054 / 101;
    background-image: url(../img/contents/event-frame-bottom__l.webp);
  }

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

.newsCard {
  padding: calc(30 / var(--full-width) * 100vw) 0;
}
.newsCard:last-child {
  padding-bottom: 0;
}

.newsCard a {
  display: block;
}

.newsCard-attr {
  margin-bottom: calc(10 / var(--full-width) * 100vw);
  display: flex;
  gap: calc(10 / var(--full-width) * 100vw);
  font-size: 0.85em;
}

.newsCard-date {
  color: #fff;
}

.newsCard-tag {
  display: flex;
  flex-wrap: wrap;
  gap: calc(10 / var(--full-width) * 100vw) calc(20 / var(--full-width) * 100vw);
}

.newsCard-tag > li {
  padding: 0 calc(20 / var(--full-width) * 100vw);
  border-radius: calc(6 / var(--full-width) * 100vw);
}
.newsCard-tag > li._event {
  background-color: #ff0000;
  color: #fafafa;
}
.newsCard-tag > li._goods {
  background-color: #00cc99;
  color: #fafafa;
}
.newsCard-tag > li._ticket {
  background-color: #99cc33;
  color: #fafafa;
}
.newsCard-tag > li._campaign {
  background-color: #cc6600;
  color: #fafafa;
}
.newsCard-tag > li._presrelease {
  background-color: #999933;
}
.newsCard-tag > li._gourmet {
  background-color: #f7991d;
}
.newsCard-tag > li._fav {
  background-color: #000066;
}

.newsCard-ttl {
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.newsCard-ttl::after {
  content: '';
  position: absolute;
  top: calc(100% - (2 / var(--full-width) * 100vw));
  left: 0;
  display: block;
  width: 100%;
  height: calc(2 / var(--full-width) * 100vw);
  background-color: #ffffff;
  transform: translateX(-100%);
  transition: transform 1s;
}

.newsCard._new .newsCard-attr::before {
  content: 'NEW';
  font-weight: 700;
  color: #ff0000;
}

@media (hover: hover) {
  .newsCard a:hover .newsCard-ttl:after {
    transform: translateX(0);
  }
}
