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

body, p {
  margin: 0;
  padding: 0;
}

body {
  text-rendering: optimizeSpeed;
  font-size: calc(100vw / 1440 * 10);
  min-width: 360px;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-family: 'ABCGaisyr';
  color: #e9e9e9;
}

/* Links */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  display: inline-block;
  position: relative;
}

a, a:focus {
  text-decoration: none;
  outline: 0;
}

/* Paragraphs */
p {
  font-size: inherit;
  font-weight: inherit;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

/* Fonts */
@font-face {
  font-family: 'ABCGaisyr';
  src: url('/font/ABCGaisyr-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'ABCGaisyr';
  src: url('/font/ABCGaisyr-RegularItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: block;
}

html {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* Layout & Components */
.home {
  height: 100svh; 
  position: relative;
  overflow: hidden; 
  opacity: 0;
  transition: opacity 0.5s;
}

.home.is-ready {
  opacity: 1;
}

.home__inner {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  position: relative;
  overscroll-behavior: none;
}

.home__scroll-track {
  height: 200svh; 
  position: relative;
  width: 100%;
}

.home__sticky-content {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

.home__video,
.home__inner1,
.home__inner2 {
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home__inner1 {
  display: flex;
  flex-flow: column;
  align-items: center;
  row-gap: 25px;
  justify-content: flex-end;
  padding-bottom: 25px;
  z-index: 2;
}

.home__inner1__countdown p {
  display: flex;
  column-gap: 22px;
  font-size: 4.8rem;   
  line-height: 0.7;
  font-variant-caps: small-caps;         
  color: #ffffff;
}

.home__inner1__countdown__button {
  display: flex;
  align-items: center;
  column-gap: 5px;
  font-size: 13px;
  font-variant-caps: small-caps;       
  line-height: 1;
  letter-spacing: 1%;
  padding: 10px;
  margin: -10px;
  cursor: pointer;
}

.home__inner2 {
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(0px);
  z-index: 3;
}

.home__inner2__inner {
  width: 544px;
}

.home__inner2__inner p {
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -1%;
  text-align: justify;
}

.home__inner2__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

@media (min-width: 1440px) {
  .home__inner1__countdown p {
    font-size: 48px;   
  }
}

@media (max-width: 656px) {
  html {
    font-size: calc(100vw / 390 * 10);
  }

  .home__inner1 {
    row-gap: 14px;
    padding-bottom: 33px;
  }

  .home__inner1__countdown p {
    column-gap: 14px;
    font-size: 2.5rem;
    letter-spacing: 2%;
  }

  .home__inner1__countdown__button {
    column-gap: 4px;
    font-size: 12px;
  }

  .home__inner2 {
    padding: 0 20px;
  }

  .home__inner2__inner {
    width: auto;
  }

  .home__inner2__inner p {
    font-size: 13px;
    line-height: 1.15;
  }

  .home__inner2__logos {
    margin-top: 23px;
  }

  .home__inner2__logos img {
    height: 24px;
  }
}