@import url(https://fonts.googleapis.com/css2?family=Oswald:wght@600&display=swap);
@charset "UTF-8";
/* Global Variable */
:root {
  --screen-height: 100vh;
}

/* Fonts */
/* Color */
/* Global Component Height */
/* Responsive Break Point */
/* telemetry fps */
/**
 * vw計算関数
 */
/*** The new CSS Reset - version 1.4.1 (last updated 23.11.2021) ***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

/* Remove list styles (bullets/numbers) */
ol,
ul {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly. */
:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}

/* Global Variable */
:root {
  --screen-height: 100vh;
}

html,
body,
button,
select {
  color: #fff;
  font-weight: 400;
  line-height: 1.43;
  letter-spacing: 0.02em;
  font-size: 14px;
  font-family: "Oswald", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-feature-settings: "palt" on;
  -webkit-font-smoothing: antialiased;
  -webkit-text-rendering: geometricPrecision;
}

html {
  background: #000;
}

img,
svg {
  height: auto;
  vertical-align: bottom;
}

a {
  cursor: pointer;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.openLoader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  z-index: 1000;
  transition: opacity linear 0.5s;
}
.is-loaded .openLoader {
  opacity: 0;
  pointer-events: none;
}
.is-loaded .openLoader .loader {
  opacity: 0;
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5em;
  height: 5em;
  margin: -2.5em 0 0 -2.5em;
  font-size: 10px;
  text-indent: -9999em;
  border: 0.6em solid rgba(0, 62, 178, 0.8);
  border-top: 0.6em solid rgba(0, 62, 178, 0.3);
  animation: loader 1.1s infinite linear;
  transition: all ease-in-out 0.5s;
  border-radius: 50%;
  z-index: 0;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .loader-img {
    width: 70vw;
  }
}
/**
 * vw計算関数
 */
@keyframes heroCrack {
  0%, 100% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-0.35vw, 0);
  }
  40% {
    transform: translate(0.35vw, -0.35vw);
  }
  60% {
    transform: translate(0, -0.35vw);
  }
  80% {
    transform: translate(-0.35vw, -0.35vw);
  }
}
html {
  height: 100%;
  background: #000;
}

body {
  position: relative;
  min-height: 100%;
  padding: 0;
  background: #000;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg.jpg") no-repeat center top/cover;
  opacity: 0.6;
  z-index: 0;
}

.teaser {
  position: relative;
  width: 100%;
  padding: 0 0 14vw;
  margin: 0 auto;
  overflow: visible;
  border-top: 0.5rem solid #000;
  border-bottom: 0.5rem solid #000;
}
.teaser img {
  pointer-events: none;
}
.teaser__bg {
  position: relative;
  z-index: 0;
  width: 100%;
}
.teaser__logo {
  position: absolute;
  z-index: 2;
  width: 100%;
  top: 3vw;
  right: 50%;
  translate: 50% 0;
  overflow: hidden;
}
.teaser__logo img {
  width: 105%;
  max-width: 105%;
  margin-left: -2.5%;
}
.teaser__illust {
  position: absolute;
  bottom: 0;
  right: 50%;
  translate: 50% 0;
  width: 100%;
  z-index: 4;
  margin: 0;
}
.teaser__meta {
  position: absolute;
  z-index: 6;
  bottom: 3vw;
  right: 50%;
  translate: 50% 50%;
  width: 100%;
  padding: 0 4vw;
  filter: drop-shadow(0 0.5rem 1rem black);
}

.copyright {
  position: relative;
  z-index: 10;
  margin-top: 20vw;
  padding-bottom: 1.5rem;
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
}

@media screen and (min-width: 767px) {
  body {
    padding: 0;
  }
  .teaser {
    padding: 0;
    width: auto;
    height: min(138.7vw, 100vh);
    aspect-ratio: 1/1.387;
    overflow: hidden;
    border: 1rem solid #000;
  }
  .teaser__logo {
    top: 0;
  }
  .teaser__logo img {
    width: 105%;
    max-width: 105%;
    margin-left: -2.5%;
  }
  .teaser__meta {
    bottom: 3rem;
    padding: 0 6%;
    translate: 50% 0;
  }
  .copyright {
    margin-top: -3.6rem;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1023px) {
  .teaser {
    height: min(120vw, 100vh);
    aspect-ratio: 1/1.2;
    border-top: none;
    border-bottom: none;
  }
  .copyright {
    margin-top: -2.6rem;
  }
}
br.is-pc {
  display: none !important;
}
