@charset "UTF-8";
:root {
  --color-black: #000;
  --color-white: #fff;
  --font-family-minion-condensed: minion-pro-condensed, serif;
  --font-family-minion: minion-pro, serif;
  --font-family-din: din-2014-narrow, sans-serif;
  --font-family-montserrat: montserrat, sans-serif;
  --font-family-noto: "Noto Sans JP", sans-serif;
  --color-gray-5: #f6f6f6;
  --color-transparent-light-200: rgba(255, 255, 255, 0.2);
  --duration-default: 0.6s;
}

html {
  font-size: 62.5%;
  background-color: var(--color-black);
}

body {
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  color: var(--color-white);
  background-color: transparent;
}

.page-mask {
  display: none;
}

html.js .page-mask {
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: var(--color-black);
  pointer-events: none;
}
html.js .page-mask.is-hidden {
  display: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../images/teaser-hero-pc.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: -1;
  /* 画像やテキストの選択を無効化 */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 519px) {
  .background {
    background-image: url("../images/teaser-hero-sp.webp");
  }
}
@media (orientation: portrait) {
  .background {
    background-image: url("../images/teaser-hero-sp.webp");
  }
}
@media (orientation: landscape) {
  .background {
    background-image: url("../images/teaser-hero-pc.webp");
  }
}
.background__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--color-black);
  opacity: 1;
  transition: opacity 3.7s ease;
}
.background__overlay.is-hidden {
  opacity: 0;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  min-height: 100vh;
  min-height: 100dvh;
  transition: min-height 1s ease;
}
@media (orientation: portrait) {
  .main {
    min-height: max(100vh, 600px);
    min-height: max(100dvh, 600px);
  }
}
@media (orientation: landscape) {
  .main {
    min-height: max(100vh, 360px);
    min-height: max(100dvh, 360px);
  }
}
@media screen and (min-width: 960px) and (max-height: 679px) {
  .main {
    min-height: 680px;
  }
}

.hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 455/254;
  margin-top: -4.4871794872vw;
  width: 80%;
}
@media screen and (min-width: 520px) {
  .hero {
    margin-top: 1.25vw;
    width: 47.3958333333vw;
  }
}
.hero__logo {
  display: block;
  width: 80.1282051282vw;
  aspect-ratio: 848/473;
}
@media screen and (min-width: 520px) {
  .hero__logo {
    width: 100%;
  }
}
.hero__logo-static {
  display: block;
  width: 80.1282051282vw;
  aspect-ratio: 848/473;
  object-fit: contain;
}
@media screen and (min-width: 520px) {
  .hero__logo-static {
    width: 100%;
  }
}

html.js .hero__logo-static {
  display: none;
}
html.js body.is-fallback .hero__logo {
  display: none;
}
html.js body.is-fallback .hero__logo-static {
  display: block;
}

.countdown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 1s ease;
}
@media screen and (max-width: 519px) {
  .countdown {
    bottom: -12.8205128205vw;
  }
}
@media screen and (min-width: 520px) {
  .countdown {
    bottom: 7.1875vw;
    margin-left: 15.625vw;
  }
}

.button-wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 5.1282051282vw;
  width: max-content;
  min-width: 140px;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}
@media screen and (min-width: 520px) {
  .button-wrapper {
    margin-top: 1.6666666667vw;
  }
}
.button-wrapper.is-visible {
  opacity: 1;
}
.button-wrapper.is-shift-up {
  transform: translate(-50%, -60px);
}
@media screen and (min-width: 520px) {
  .button-wrapper.is-shift-up {
    transform: translate(-50%, -40px);
  }
}

.button-type2 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 320px;
  width: 100%;
  min-width: 140px;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 9999px;
  color: var(--color-gray-5);
  background-color: transparent;
  border: 1px solid var(--color-gray-5);
  text-decoration: none;
  transition: background-color var(--duration-default);
}
@media (hover: hover) {
  .button-type2:hover {
    background-color: var(--color-transparent-light-200);
  }
}
.button-type2[data-variant=inverted] {
  color: var(--color-gray-5);
  background-color: transparent;
  border: 1px solid var(--color-gray-5);
}
@media (hover: hover) {
  .button-type2[data-variant=inverted]:hover {
    background-color: var(--color-transparent-light-200);
  }
}
.button-type2__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.button-type2 .en {
  font-family: var(--font-family-montserrat);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.button-type2 .separator {
  font-family: var(--font-family-montserrat);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
}
.button-type2 .jp {
  font-family: var(--font-family-noto);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.countdown-time {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 3.2051282051vw;
  transition: opacity 1s ease;
}
.countdown-time.is-fade-out {
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 520px) {
  .countdown-time {
    justify-content: flex-start;
    gap: 1.0416666667vw;
  }
}
.countdown-time__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown-time__unit {
  color: var(--color-white);
  font-family: var(--font-family-din);
  font-size: 3.2051282051vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.005em;
}
@media screen and (min-width: 520px) {
  .countdown-time__unit {
    font-size: 1.0416666667vw;
  }
}
.countdown-time__value {
  color: var(--color-white);
  font-family: var(--font-family-minion-condensed);
  font-size: 12.8205128205vw;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
@media screen and (min-width: 520px) {
  .countdown-time__value {
    font-size: 4.1666666667vw;
  }
}
.countdown-time__separator {
  flex-shrink: 0;
  color: var(--color-white);
  font-family: var(--font-family-minion);
  font-size: 12.8205128205vw;
  font-weight: 400;
  line-height: 1;
  padding-bottom: 0.641025641vw;
}
@media screen and (min-width: 520px) {
  .countdown-time__separator {
    font-size: 4.1666666667vw;
    padding-bottom: 0.2083333333vw;
  }
}
@media screen and (max-width: 519px) {
  .countdown-time__separator--days-hours {
    width: auto;
  }
}
@media screen and (min-width: 520px) {
  .countdown-time__separator--days-hours {
    width: 1.25vw;
  }
}
.countdown-time__separator--gap {
  width: 2.5641025641vw;
}
@media screen and (min-width: 520px) {
  .countdown-time__separator--gap {
    width: 1.25vw;
  }
}

.links {
  margin-top: auto;
  padding: 6.4102564103vw 6.4102564103vw 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9.6153846154vw;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease, padding-top 1s ease;
}
@media screen and (min-width: 520px) {
  .links {
    padding: 2.0833333333vw 2.0833333333vw 0;
    gap: 3.125vw;
  }
}
.links__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease-out;
}
.links__link:hover {
  opacity: 0.7;
}
.links__link .protect {
  pointer-events: none;
}
.links__logo {
  display: block;
  width: 22.4358974359vw;
  height: auto;
  transition: filter 3.2s ease;
}
@media screen and (min-width: 520px) {
  .links__logo {
    width: 7.2916666667vw;
  }
}
.links__icon {
  display: block;
  width: 10.2564102564vw;
  height: auto;
  transition: filter 3.2s ease;
}
@media screen and (min-width: 520px) {
  .links__icon {
    width: 3.3333333333vw;
  }
}

.footer {
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}
.footer__copyright {
  margin: 0;
  padding: 5.1282051282vw 6.4102564103vw 6.4102564103vw;
  color: var(--color-white);
  font-family: var(--font-family-montserrat);
  font-size: 3.2051282051vw;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 520px) {
  .footer__copyright {
    padding: 1.6666666667vw 2.0833333333vw 2.0833333333vw;
    font-size: 1.0416666667vw;
  }
}

body.is-hero-phase .hero__logo-static,
body.is-hero-phase .links__logo,
body.is-hero-phase .links__icon {
  filter: brightness(0) invert(1);
}

body.is-content-visible .countdown,
body.is-content-visible .links,
body.is-content-visible .footer {
  opacity: 1;
}

body.is-countdown-ended .links {
  padding-top: 2.5641025641vw;
}
@media screen and (min-width: 520px) {
  body.is-countdown-ended .links {
    padding-top: 0.8333333333vw;
  }
}

body.is-join-overlap .main {
  min-height: calc(100vh + var(--join-clearance, 0px));
  min-height: calc(100dvh + var(--join-clearance, 0px));
}
@media (orientation: portrait) {
  body.is-join-overlap .main {
    min-height: max(100vh + var(--join-clearance, 0px), 600px + var(--join-clearance, 0px));
    min-height: max(100dvh + var(--join-clearance, 0px), 600px + var(--join-clearance, 0px));
  }
}
@media (orientation: landscape) {
  body.is-join-overlap .main {
    min-height: max(100vh + var(--join-clearance, 0px), 360px + var(--join-clearance, 0px));
    min-height: max(100dvh + var(--join-clearance, 0px), 360px + var(--join-clearance, 0px));
  }
}
@media screen and (min-width: 960px) and (max-height: 679px) {
  body.is-join-overlap .main {
    min-height: calc(680px + var(--join-clearance, 0px));
  }
}

.protect {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
  -o-user-drag: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
}
