@charset "UTF-8";
/* ======================================
   section spacing（上下）
====================================== */
/* pc */
/* sp */
/* ======================================
   inner（左右）
====================================== */
/* PC width */
/* SP padding */
@font-face {
  font-family: "TimeLightGothic";
  src: url("/specialevent/opening/assets/fonts/TimeLightGothic.woff2") format("woff2"), url("/specialevent/opening/assets/fonts/TimeLightGothic.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TimeLightGothicBold";
  src: url("/specialevent/opening/assets/fonts/TimeLightGothic-Bold.woff2") format("woff2"), url("/specialevent/opening/assets/fonts/TimeLightGothic-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* ==========================================================================
   Primitive color
========================================================================== */
/* Blue scale */
/* Navy */
/* Yellow */
/* Gray */
/* Base */
/* ==========================================================================
   Semantic color
========================================================================== */
/* Brand */
/* Accent */
/* Text */
/* ==========================================================================
   Surface
========================================================================== */
/* ==========================================================================
   State
========================================================================== */
/* Button - CTA */
/* Button - Primary */
/* Button - Secondary */
/* Tab */
/* Slide item card */
/* shadow */
/* Header */
/* Footer */
/* breakpoint */
/* sp */
/* pc */
/* tablet */
/* hover */
/* reduce motion */
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

:root {
  --header-h: 80px;
}

@media (max-width: 767px) {
  :root {
    --header-h: 50px;
  }
}
html {
  margin: 0;
  font-size: 62.5%;
  line-height: 1.5;
  word-wrap: break-word;
  scrollbar-gutter: stable;
  scroll-padding-top: var(--header-h);
}
@media (min-width: 768px) and (max-width: 1279px) {
  html {
    scroll-padding-top: 80px;
  }
}

body {
  min-height: 100%;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  background: #000000;
  overflow-x: hidden;
  overflow-x: clip;
  padding-top: var(--header-h);
}

/* motion軽減設定の人にはスムーズスクロールを無効化 */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
a {
  text-decoration: none;
  transition: opacity 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    cursor: pointer;
  }
}
a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

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

ol,
ul {
  padding-inline-start: 0;
  list-style: none;
}

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

button {
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

/* visually-hidden（フォーカス時は見える） */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: #000000;
  color: #ffffff;
}
.l-header__inner {
  display: flex;
  align-items: center;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .l-header__inner {
    height: 80px;
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .l-header__inner {
    justify-content: space-between;
    height: 50px;
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  .l-header__logo {
    flex-shrink: 0;
  }
}
@media (min-width: 768px) {
  .l-header__logo img {
    width: 70px;
    height: 66px;
  }
}
@media (max-width: 767px) {
  .l-header__logo img {
    width: 41px;
    height: 38px;
  }
}
@media (min-width: 768px) {
  .l-header__nav {
    display: block;
    position: static;
    transform: none;
    height: auto;
    margin-left: auto;
    margin-right: 60px;
  }
}
@media (max-width: 767px) {
  .l-header__nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    width: 100%;
    height: calc(100dvh - var(--header-h));
    padding: 40px 22px;
    transform: translateX(100%);
    transition: transform 0.2s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1300;
  }
}
@media (max-width: 767px) {
  .l-header.is-open .l-header__nav {
    transform: translateX(0);
  }
}
@media (min-width: 768px) {
  .l-header__cta {
    flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .l-header__cta {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .l-header__cta--pc {
    display: block;
  }
}
@media (max-width: 767px) {
  .l-header__cta--pc {
    display: none;
  }
}
.l-header__nav-list {
  font-family: "TimeLightGothic", sans-serif;
  font-weight: 400;
}
@media (min-width: 768px) {
  .l-header__nav-list {
    display: flex;
    gap: 30px;
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .l-header__nav-list {
    width: 100%;
    padding: 0 18px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-size: 2rem;
  }
}
.l-header__nav-list a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.l-header__nav-list a::first-letter {
  font-family: "TimeLightGothicBold", sans-serif;
  font-weight: 700;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__nav-list a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .l-header__overlay {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(/specialevent/opening/assets/img/common/navi-bg_sp.jpg);
  }
}
@media (min-width: 768px) {
  .l-header__drawer-extra {
    display: none;
  }
}
@media (max-width: 767px) {
  .l-header__drawer-extra {
    display: block;
    margin-top: 60px;
  }
}
.l-header__sns {
  margin: 40px 0 0 0;
  padding: 30px 0 0 0;
  border-top: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.l-header__sns ._logo {
  max-width: 27px;
  max-height: 27px;
}
.l-header {
  /* ---------- hamburger ---------- */
}
@media (min-width: 768px) {
  .l-header__toggle {
    display: none;
  }
}
@media (max-width: 767px) {
  .l-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    padding: 0;
    position: relative;
  }
}
.l-header__toggleLine {
  position: absolute;
  left: 5px;
  right: 5px;
  height: 4px;
  background: #ffffff;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.l-header__toggleLine:nth-child(1) {
  top: 11px;
}
.l-header__toggleLine:nth-child(2) {
  top: 21px;
}
.l-header__toggleLine:nth-child(3) {
  top: 31px;
}
@media (max-width: 767px) {
  .l-header.is-open .l-header__toggle {
    position: fixed;
    top: 8px;
    right: 10px;
    z-index: 1300;
  }
}
.l-header.is-open .l-header__toggleLine {
  background: #ffffff;
}
.l-header.is-open .l-header__toggleLine:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.l-header.is-open .l-header__toggleLine:nth-child(2) {
  opacity: 0;
}
.l-header.is-open .l-header__toggleLine:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}

.l-footer {
  background: #002383;
  color: #ffffff;
}
.l-footer__inner {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .l-footer__inner {
    max-width: 800px;
    padding: 60px 0 100px;
  }
}
@media (max-width: 767px) {
  .l-footer__inner {
    position: relative;
    padding: 40px 20px 120px;
  }
}
.l-footer__logo {
  text-align: center;
  display: flex;
  justify-content: center;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__logo a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .l-footer__logo img {
    width: 90px;
    height: 84px;
  }
}
.l-footer__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0 0 0;
}
@media (min-width: 768px) {
  .l-footer__sns {
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .l-footer__sns {
    gap: 25px;
  }
}
.l-footer__sns ._link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__sns ._link:hover {
    opacity: 0.7;
  }
}
.l-footer__sns ._link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
  border-radius: 6px;
}
.l-footer__sns ._logo {
  display: block;
}
@media (min-width: 768px) {
  .l-footer__sns ._logo {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .l-footer__sns ._logo {
    width: 28px;
    height: 28px;
  }
}
.l-footer__nav {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 1.4rem;
  padding: 20px 0;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 768px) {
  .l-footer__nav {
    margin: 40px 0 0 0;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .l-footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0 0 0;
    gap: 20px 40px;
  }
}
.l-footer__nav a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .l-footer__nav a {
    width: calc((100% - 40px) / 2);
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__nav a:hover {
    opacity: 0.7;
  }
}
.l-footer__nav a:nth-child(odd) {
  text-align: right;
}
.l-footer__copyright {
  text-align: center;
  font-family: "TimeLightGothic", sans-serif;
  font-weight: 500;
}
@media (min-width: 768px) {
  .l-footer__copyright {
    margin: 40px 0 0 0;
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .l-footer__copyright {
    margin: 30px 0 0 0;
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .l-section {
    padding-block-start: 60px;
    padding-block-end: 80px;
  }
}
@media (min-width: 768px) {
  .l-section {
    padding-block-start: 80px;
    padding-block-end: 100px;
  }
}

.l-inner {
  margin-inline: auto;
}
@media (min-width: 768px) {
  .l-inner {
    padding-inline: 20px;
  }
}
@media (max-width: 767px) {
  .l-inner {
    padding-left: max(clamp(20px, 4vw, 55px), env(safe-area-inset-left));
    padding-right: max(clamp(20px, 4vw, 55px), env(safe-area-inset-right));
  }
}
@media (min-width: 768px) {
  .l-inner--sm {
    max-width: 840px;
  }
}
@media (min-width: 768px) {
  .l-inner--md {
    max-width: 1040px;
  }
}
@media (min-width: 768px) {
  .l-inner--lg {
    max-width: 1280px;
  }
}
.l-inner--full {
  max-width: none;
}
@media (max-width: 767px) {
  .l-inner--sp-wide {
    padding-inline: 55px;
  }
}

.c-title {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .c-title {
    margin-bottom: 30px;
  }
}
.c-title__main {
  font-family: "TimeLightGothic", sans-serif;
  display: block;
  font-weight: 400;
}
@media (min-width: 768px) {
  .c-title__main {
    font-size: 6rem;
  }
}
@media (max-width: 767px) {
  .c-title__main {
    font-size: 3.6rem;
  }
}
.c-title__first {
  font-family: "TimeLightGothicBold", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.03em;
}
.c-title__sub {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  display: block;
  font-weight: 500;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .c-title__sub {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .c-title__sub {
    font-size: 1.4rem;
  }
}
.c-title__sub--en {
  font-family: "TimeLightGothic", sans-serif;
  font-weight: 400;
}

.c-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.c-button:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 4px;
}
.c-button__icon {
  width: 1.25em;
  height: 1.25em;
  fill: currentColor;
  flex-shrink: 0;
}
.c-button {
  /* ボタンの種類 */
}
.c-button--cta {
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: #002964;
  background-image: url(/specialevent/opening/assets/img/common/button-cta-bg.jpg);
}
@media (hover: hover) and (pointer: fine) {
  .c-button--cta:hover {
    border-color: #002964;
    color: #002964;
    background-color: #ffffff;
    background-image: url(/specialevent/opening/assets/img/common/button-cta-hover-bg.jpg);
  }
}
.c-button--primary {
  border: 2px solid #002964;
  color: #002964;
  background-color: #ffffff;
}
@media (hover: hover) and (pointer: fine) {
  .c-button--primary:hover {
    border-color: #ffffff;
    color: #ffffff;
    background-color: #002964;
  }
}
.c-button--secondary {
  border: 2px solid #002964;
  color: #002964;
  background-color: #ffffff;
}
@media (hover: hover) and (pointer: fine) {
  .c-button--secondary:hover {
    opacity: 0.7;
  }
}
.c-button {
  /* ボタンのサイズ */
}
.c-button--size-header {
  min-height: 48px;
  padding-inline: 36px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .c-button--size-cta {
    min-height: 76px;
    min-width: 360px;
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .c-button--size-cta {
    min-height: 60px;
    min-width: 300px;
    font-size: 1.8rem;
  }
}
.c-button--lg {
  border-radius: 10px;
}
@media (min-width: 768px) {
  .c-button--lg {
    width: 380px;
    height: 70px;
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .c-button--lg {
    width: 77vw;
    height: 60px;
    font-size: 1.6rem;
  }
}
.c-button--md {
  padding-inline: 20px;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .c-button--md {
    width: 340px;
    height: 70px;
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .c-button--md {
    width: 72vw;
    height: 50px;
    font-size: 1.6rem;
  }
}
.c-button--ad {
  border-radius: 10px;
}
@media (min-width: 768px) {
  .c-button--ad {
    width: 300px;
    height: 60px;
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .c-button--ad {
    width: 77vw;
    height: 50px;
    font-size: 1.6rem;
  }
}
.c-button {
  /* ボタンの形状 */
}
.c-button--skew {
  transform: skewX(-15deg);
  border-width: 3px;
}
.c-button--skew .c-button__inner {
  position: relative;
  transform: skewX(15deg);
  gap: 20px;
}
.c-button {
  /* ボタンのアイコン */
}
.c-button--icon-after {
  gap: 20px;
}
.c-button--icon-edge {
  position: relative;
}
.c-button--icon-edge .c-button__inner {
  justify-content: center;
  align-items: center;
  width: 100%;
}
.c-button--icon-edge .c-button__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .c-button--icon-edge .c-button__icon {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .c-button--icon-edge .c-button__icon {
    right: 10px;
  }
}

.c-tabs__list {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .c-tabs__list {
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .c-tabs__list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.c-tabs__tab {
  padding: 10px 60px;
  font-weight: 700;
  border-radius: 10px;
  transition: opacity 0.4s ease;
  background-color: #002964;
  border: 2px solid transparent;
  color: #ffffff;
}
@media (min-width: 768px) {
  .c-tabs__tab {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .c-tabs__tab {
    font-size: 1.8rem;
  }
}
.c-tabs__tab:is(.is-active, [aria-selected=true]) {
  background-color: #ffffff;
  border: 2px solid #002964;
  color: #002964;
}
@media (hover: hover) and (pointer: fine) {
  .c-tabs__tab:hover {
    opacity: 0.6;
  }
}

.c-movie {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.c-movie iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.c-fade--up {
  opacity: 0;
  transform: translateY(30px);
}
.c-fade--up.is-animated {
  animation: fade-up 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  will-change: opacity, transform;
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-fade--up {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}
.c-fixed-cta {
  position: fixed;
  z-index: 100;
}
@media (min-width: 768px) {
  .c-fixed-cta {
    bottom: 50px;
    right: 50px;
  }
}
@media (max-width: 767px) {
  .c-fixed-cta {
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
  }
}

.c-pagetop {
  position: fixed;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #002964;
  border: 1px solid #002964;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  text-decoration: none;
}
@media (min-width: 768px) {
  .c-pagetop {
    width: 60px;
    height: 60px;
    left: 50px;
    bottom: 30px;
  }
}
@media (max-width: 767px) {
  .c-pagetop {
    width: 40px;
    height: 40px;
    left: 16px;
    bottom: 40px;
  }
}
.c-pagetop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.c-pagetop__icon {
  font-weight: 500;
  transition: transform 0.25s ease;
  line-height: 1;
}
@media (min-width: 768px) {
  .c-pagetop__icon {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .c-pagetop__icon {
    font-size: 2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-pagetop:hover .c-pagetop__icon {
    transform: translateY(-4px);
  }
}

.c-coming-soon {
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "TimeLightGothic", sans-serif;
  color: #ffffff;
  font-weight: 400;
}
@media (min-width: 768px) {
  .c-coming-soon {
    width: 1000px;
    height: 329px;
    font-size: 4rem;
  }
}
@media (max-width: 767px) {
  .c-coming-soon {
    aspect-ratio: 1/1;
    margin: 0 30px;
    height: auto;
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  .c-coming-soon--img {
    width: 800px;
    height: 450px;
  }
}
@media (max-width: 767px) {
  .c-coming-soon--img {
    aspect-ratio: 167/94;
    margin: 0;
    width: 100%;
    height: auto;
  }
}

.c-modal-ad {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.c-modal-ad.is-open {
  opacity: 1;
  pointer-events: auto;
}
.c-modal-ad__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.c-modal-ad__inner {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .c-modal-ad__inner {
    max-width: 862px;
  }
}
@media (max-width: 767px) {
  .c-modal-ad__inner {
    width: 77vw;
  }
}
.c-modal-ad__banner img {
  height: auto;
  display: block;
}
@media (min-width: 768px) {
  .c-modal-ad__banner img {
    width: 862px;
    height: 485px;
  }
}
@media (max-width: 767px) {
  .c-modal-ad__banner img {
    width: 77vw;
    aspect-ratio: 41/73;
  }
}
.c-modal-ad__close {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .c-modal-ad__close {
    margin: 60px auto 0;
  }
}
@media (max-width: 767px) {
  .c-modal-ad__close {
    margin: 40px auto 0;
  }
}

.p-kv {
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-kv {
    aspect-ratio: 1770/708;
  }
}
@media (max-width: 767px) {
  .p-kv {
    aspect-ratio: 1/1;
  }
}
.p-kv__video {
  position: absolute;
  inset: 0;
  z-index: 1;
}
@media (min-width: 768px) {
  .p-kv__video--sp {
    display: none;
  }
}
@media (max-width: 767px) {
  .p-kv__video--pc {
    display: none;
  }
}
.p-kv {
  /* YouTube iframe cover */
}
.p-kv__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  pointer-events: none;
}
.p-kv {
  /* SP動画（正方形動画対応） */
}
@media (max-width: 767px) {
  .p-kv__video iframe {
    width: 100vw;
    height: 100vw;
  }
}
.p-kv__poster {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.p-kv__poster img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-kv__poster.is-hide {
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.p-kv__controls {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .p-kv__controls {
    right: 10px;
    bottom: 10px;
  }
}
.p-kv__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  cursor: pointer;
}
@media (max-width: 767px) {
  .p-kv__btn {
    width: 30px;
    height: 30px;
  }
}
.p-kv__btn .material-symbols-rounded {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
  font-size: 20px;
  transition: 0.2s;
}
@media (max-width: 767px) {
  .p-kv__btn .material-symbols-rounded {
    font-size: 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-kv__btn:hover .material-symbols-rounded {
    opacity: 0.6;
  }
}

.p-gameinfo {
  overflow-x: hidden;
  overflow-x: clip;
  color: #ffffff;
}
.p-gameinfo__detail {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.p-gameinfo__detail img {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-gameinfo__detail img {
    max-width: 780px;
  }
}
@media (max-width: 767px) {
  .p-gameinfo__detail img {
    height: auto;
  }
}
@media (max-width: 767px) {
  .p-gameinfo__detail--1 img {
    width: 77%;
    aspect-ratio: 300/380;
  }
}
.p-gameinfo__detail--2 {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .p-gameinfo__detail--2 img {
    width: 90%;
    aspect-ratio: 350/204;
  }
}
.p-gameinfo__detail--3 {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .p-gameinfo__detail--3 img {
    width: 40%;
    aspect-ratio: 158/40;
  }
}
.p-gameinfo__button {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .p-gameinfo__button {
    margin: 60px 0 0 0;
  }
}
@media (max-width: 767px) {
  .p-gameinfo__button {
    margin: 50px 0 0 0;
  }
}

.p-movie {
  background-color: #000000;
}

.p-slogan {
  overflow-x: hidden;
  overflow-x: clip;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #ffffff;
}
@media (min-width: 768px) {
  .p-slogan {
    background-image: url(/specialevent/opening/assets/img/slogan/slogan-bg_pc.jpg);
  }
}
@media (max-width: 767px) {
  .p-slogan {
    background-image: url(/specialevent/opening/assets/img/slogan/slogan-bg_sp.jpg);
  }
}
.p-slogan__text {
  line-height: 2;
  text-align: center;
}
.p-slogan__txt {
  margin: 0 0 3rem;
}
@media (min-width: 768px) {
  .p-slogan__txt {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  .p-slogan__txt {
    font-size: 1.4rem;
  }
}
.p-slogan__txt span {
  display: block;
}
@media (min-width: 768px) {
  .p-slogan__txt .u-sp-break {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .p-slogan__txt .u-sp-break {
    display: block;
  }
}
@media (min-width: 768px) {
  .p-slogan__em {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .p-slogan__em {
    font-size: 2.4rem;
  }
}
@media (min-width: 768px) {
  .p-slogan__em span + span {
    margin: 0 0 0 2rem;
  }
}
@media (max-width: 767px) {
  .p-slogan__em span {
    display: block;
  }
}
.p-slogan__logo {
  text-align: center;
  margin: 60px 0 0 0;
}
.p-slogan__logo picture {
  display: inline-block;
}
.p-slogan__logo ._img {
  display: block;
  height: auto;
}

.p-ceremony {
  overflow-x: hidden;
  overflow-x: clip;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  color: #ffffff;
}
@media (min-width: 768px) {
  .p-ceremony {
    background-image: url(/specialevent/opening/assets/img/ceremony/bg_pc.jpg);
  }
}
@media (max-width: 767px) {
  .p-ceremony {
    background-image: url(/specialevent/opening/assets/img/ceremony/bg_sp.jpg);
  }
}
.p-ceremony__img {
  margin: 0 auto;
}
.p-ceremony__text {
  margin: 40px 0 0 0;
  font-weight: 400;
  text-align: center;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .p-ceremony__text {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .p-ceremony__text {
    font-size: 1.4rem;
  }
}

.p-event {
  overflow-x: hidden;
  overflow-x: clip;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  color: #ffffff;
}
@media (min-width: 768px) {
  .p-event {
    background-image: url(/specialevent/opening/assets/img/event/bg_pc.jpg);
  }
}
@media (max-width: 767px) {
  .p-event {
    background-image: url(/specialevent/opening/assets/img/event/bg_sp.jpg);
  }
}
.p-event__img {
  margin: 0 auto;
}
.p-event__text {
  margin: 40px 0 0 0;
  font-weight: 400;
  text-align: center;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .p-event__text {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .p-event__text {
    font-size: 1.4rem;
  }
}

.p-service {
  background-color: #000000;
  color: #ffffff;
}
.p-service__block {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .p-service__block {
    gap: 60px;
  }
}
@media (max-width: 767px) {
  .p-service__block {
    flex-direction: column;
    gap: 30px;
  }
}
.p-service__img {
  display: flex;
}
@media (min-width: 768px) {
  .p-service__img {
    gap: 35px;
  }
}
@media (max-width: 767px) {
  .p-service__img {
    justify-content: center;
    gap: 20px;
  }
}
.p-service__list {
  display: flex;
}
@media (min-width: 768px) {
  .p-service__list {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .p-service__list {
    flex-wrap: wrap;
    gap: 3px;
  }
}
.p-service__item {
  border-radius: 10px;
  border: 2px solid #0081CC;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-service__item {
    min-width: 450px;
    padding: 20px 30px;
  }
}
@media (max-width: 767px) {
  .p-service__item {
    text-align: center;
    width: calc((100% - 3px) / 2);
    padding: 15px 20px;
  }
}
.p-service__item-title {
  margin: 0 0 10px;
  color: #002964;
}
@media (min-width: 768px) {
  .p-service__item-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .p-service__item-title {
    min-height: 36px;
    font-size: 1.4rem;
  }
}
.p-service__item-text {
  color: #000000;
}
@media (min-width: 768px) {
  .p-service__item-text {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .p-service__item-text {
    font-size: 1rem;
  }
}
.p-service__download {
  padding: 30px 30px 28px 30px;
  border-radius: 10px;
  background-color: #002964;
  text-align: center;
}
@media (min-width: 768px) {
  .p-service__download {
    margin: 70px 0 0 0;
  }
}
@media (max-width: 767px) {
  .p-service__download {
    margin: 40px 0 0 0;
  }
}
.p-service__download-title {
  margin: 0 0 10px;
}
@media (min-width: 768px) {
  .p-service__download-title {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .p-service__download-title {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .p-service__download-text {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .p-service__download-text {
    font-size: 1.4rem;
  }
}
.p-service__stores {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px 0 0 0;
}
@media (min-width: 768px) {
  .p-service__stores img {
    height: 50px;
  }
}
@media (max-width: 767px) {
  .p-service__stores img {
    height: 45px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-service__stores:hover {
    opacity: 0.6;
  }
}

.p-section-bg {
  position: relative;
  overflow: hidden;
}

/* 背景レイヤー */
.p-section-bg__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

/* -------------------------
   GAMEINFO
   SPだけ固定
------------------------- */
@media (min-width: 768px) {
  .p-section-bg--gameinfo .p-section-bg__bg {
    background-image: url(/specialevent/opening/assets/img/gameinfo/bg_pc.jpg);
  }
}
@media (max-width: 767px) {
  .p-section-bg--gameinfo .p-section-bg__bg {
    background-image: url(/specialevent/opening/assets/img/gameinfo/bg_sp.jpg);
    position: fixed;
    inset: 0;
    height: 100vh;
    width: 100vw;
    transform: translateZ(0);
  }
}

/* -------------------------
   GOODS / FOOD
   PC + SP 固定
------------------------- */
@media (min-width: 768px) {
  .p-section-bg--goodsfood {
    background-image: url(/specialevent/opening/assets/img/goods/bg_pc.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
}
@media (max-width: 767px) {
  .p-section-bg--goodsfood .p-section-bg__bg {
    background-image: url(/specialevent/opening/assets/img/goods/bg_sp.jpg);
    position: fixed;
    inset: 0;
    height: 100vh;
    width: 100vw;
    transform: translateZ(0);
  }
}

@media (min-width: 768px) {
  .p-item-slider {
    --content-w: 1040px;
    --slide-w: 300px;
  }
}
.p-item-slider__inner {
  position: relative;
}
@media (min-width: 768px) {
  .p-item-slider__inner {
    max-width: var(--content-w);
    margin: 0 auto;
    position: relative;
  }
}
@media (max-width: 767px) {
  .p-item-slider__inner {
    max-width: none;
    margin: 0 30px;
  }
}
.p-item-slider__rail {
  position: relative;
}
@media (min-width: 768px) {
  .p-item-slider__rail {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}
@media (max-width: 767px) {
  .p-item-slider__rail {
    width: 100%;
    margin: 0;
  }
}
.p-item-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.2s;
  z-index: 10;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (min-width: 768px) {
  .p-item-slider__nav {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 767px) {
  .p-item-slider__nav {
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 768px) {
  .p-item-slider__nav--prev {
    left: -110px;
  }
}
@media (max-width: 767px) {
  .p-item-slider__nav--prev {
    left: -40px;
  }
}
@media (min-width: 768px) {
  .p-item-slider__nav--next {
    right: -110px;
  }
}
@media (max-width: 767px) {
  .p-item-slider__nav--next {
    right: -40px;
  }
}
.p-item-slider__nav span {
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-item-slider__nav span {
    font-size: 4.5rem;
  }
}
@media (max-width: 767px) {
  .p-item-slider__nav span {
    font-size: 2.8rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-item-slider__nav:hover {
    opacity: 0.7;
  }
}
.p-item-slider__button {
  display: flex;
  justify-content: center;
  margin: 80px 0 0 0;
}
@media (min-width: 768px) {
  .p-item-slider .swiper {
    overflow: visible;
  }
}
.p-item-slider .swiper-wrapper {
  align-items: stretch;
}
@media (min-width: 768px) {
  .p-item-slider .swiper-wrapper {
    padding-left: max(20px, (100vw - 1040px) / 2);
    padding-right: max(20px, (100vw - 1040px) / 2);
  }
}
.p-item-slider .swiper-slide {
  flex: 0 0 auto;
  height: auto;
}
@media (min-width: 768px) {
  .p-item-slider .swiper-slide {
    width: 300px;
  }
}
.p-item-slider .swiper-slide > * {
  height: 100%;
}

.p-item-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background-color: #ffffff;
  color: #000000;
  border: 3px solid #0081CC;
  height: 100%;
}
@media (min-width: 768px) {
  .p-item-card {
    width: 300px;
  }
}
@media (max-width: 767px) {
  .p-item-card {
    width: 100%;
  }
}
.p-item-card__img {
  margin: 0;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.p-item-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-item-card__body {
  padding: 10px 15px 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.p-item-card__meta {
  font-size: 1.4rem;
  font-weight: 600;
}
.p-item-card__name {
  margin: 3px 0 0 0;
  font-size: 2rem;
  font-weight: 700;
}
.p-item-card__price {
  font-size: 1.6rem;
  font-weight: 500;
}
.p-item-card__price span {
  margin: 0 3px 0 0;
  font-size: 2.5rem;
  font-family: "TimeLightGothic", sans-serif;
  font-weight: 400;
}

.p-gallery {
  background-color: #000000;
  color: #ffffff;
}
@media (max-width: 767px) {
  .p-gallery {
    overflow: hidden;
  }
}
.p-gallery__slidewrap {
  position: relative;
}
@media (min-width: 768px) {
  .p-gallery__slidewrap {
    margin: 0 0 20px;
    padding-left: max(20px, (100vw - 1040px) / 2);
    padding-right: max(20px, (100vw - 1040px) / 2);
  }
}
@media (max-width: 767px) {
  .p-gallery__slidewrap {
    margin: 0 0 80px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-gallery__slider {
  overflow: visible;
}
@media (min-width: 768px) {
  .p-gallery__slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}
@media (max-width: 767px) {
  .p-gallery__slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-gallery__item img {
  aspect-ratio: 1/1.414;
  width: 100%;
  height: auto;
}
.p-gallery__nav {
  position: absolute;
  transform: translateY(-50%);
  z-index: 20;
  border-radius: 50%;
  background: #002964;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  cursor: pointer;
}
@media (min-width: 768px) {
  .p-gallery__nav {
    top: 50%;
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 767px) {
  .p-gallery__nav {
    bottom: -100px;
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 768px) {
  .p-gallery__nav--prev {
    left: -110px;
  }
}
@media (max-width: 767px) {
  .p-gallery__nav--prev {
    left: 30%;
  }
}
@media (min-width: 768px) {
  .p-gallery__nav--next {
    right: -110px;
  }
}
@media (max-width: 767px) {
  .p-gallery__nav--next {
    right: 30%;
  }
}
.p-gallery__nav span {
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-gallery__nav span {
    font-size: 4.5rem;
  }
}
@media (max-width: 767px) {
  .p-gallery__nav span {
    font-size: 2.8rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-gallery__nav:hover {
    opacity: 0.7;
  }
}
.p-gallery__nav .is-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.p-gallery .swiper {
  overflow: visible;
}
@media (min-width: 768px) {
  .p-gallery .swiper {
    padding-left: max(20px, (100vw - 1040px) / 2);
    padding-right: max(20px, (100vw - 1040px) / 2);
  }
}
@media (max-width: 767px) {
  .p-gallery .swiper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-gallery .swiper-wrapper {
  align-items: stretch;
  will-change: transform;
}
.p-gallery .swiper-slide {
  flex: 0 0 auto;
}
@media (min-width: 768px) {
  .p-gallery .swiper-slide {
    width: 325px;
  }
}
@media (max-width: 767px) {
  .p-gallery .swiper-slide {
    width: 58vw;
    max-width: 320px;
  }
}

.p-news {
  overflow-x: hidden;
  overflow-x: clip;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  color: #ffffff;
}
@media (min-width: 768px) {
  .p-news {
    background-image: url(/specialevent/opening/assets/img/news/bg_pc.jpg);
  }
}
@media (max-width: 767px) {
  .p-news {
    background-image: url(/specialevent/opening/assets/img/news/bg_sp.jpg);
  }
}
.p-news__list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-news__list {
    margin: 60px auto;
    max-width: 890px;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .p-news__list {
    margin: 60px auto 40px;
    gap: 20px;
  }
}
.p-news__item {
  position: relative;
  width: 100%;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 0 2px 0 #002964;
}
@media (min-width: 768px) {
  .p-news__item {
    padding: 20px 40px 20px 20px;
  }
}
@media (max-width: 767px) {
  .p-news__item {
    padding: 12px 20px 10px 12px;
    font-size: 1.4rem;
  }
}
.p-news__item::after {
  content: "\e5df";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #002964;
  font-size: 3rem;
}
@media (min-width: 768px) {
  .p-news__item::after {
    right: 10px;
  }
}
@media (max-width: 767px) {
  .p-news__item::after {
    right: 0;
  }
}
.p-news__link {
  width: 100%;
  display: flex;
}
@media (min-width: 768px) {
  .p-news__link {
    align-items: center;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .p-news__link {
    flex-direction: column;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-news__link:hover {
    opacity: 0.8;
  }
}
.p-news__date {
  color: #000000;
  font-family: "TimeLightGothic", sans-serif;
  font-weight: 400;
}
@media (min-width: 768px) {
  .p-news__date {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .p-news__date {
    margin: 0 0 10px;
    font-size: 1.4rem;
  }
}
.p-news__title {
  color: #002964;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-news__title {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .p-news__title {
    font-size: 1.4rem;
  }
}
.p-news__button {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .p-news__button {
    margin: 60px 0 0 0;
  }
}
@media (max-width: 767px) {
  .p-news__button {
    margin: 50px 0 0 0;
  }
}

@media (min-width: 768px) {
  .u-display--sp-only {
    display: none;
  }
}
@media (max-width: 767px) {
  .u-display--sp-only {
    display: block;
  }
}
@media (min-width: 768px) {
  .u-display--pc-only {
    display: block;
  }
}
@media (max-width: 767px) {
  .u-display--pc-only {
    display: none;
  }
}