body {
  margin: 0;
  overflow-x: hidden;
  background: #000;
  color: #fff;
  font-size: 20px;
  font-family: source-han-sans-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 200%;
}

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

figure {
  width: 100%;
  margin: 0;
}

figcaption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.4;
  text-align: left;
  color: rgba(255, 255, 255, 0.7);
}

/* =========================
LANG SWITCH
========================= */

.lang-switch {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;

  display: flex;
  gap: 10px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 16px;

  background: rgba(0,0,0,0.55);

  border: 1px solid rgba(255,255,255,0.4);

  backdrop-filter: blur(10px);

  color: #fff;

  text-decoration: none;

  font-size: 0.9rem;

  line-height: 1;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    opacity 0.3s ease;
}

.lang-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}

@media screen and (max-width: 768px) {

  .lang-switch {
    top: 15px;
    right: 15px;
  }

  .lang-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

}

/* =========================
HERO WRAP
========================= */

.hero_wrap {
  position: relative;
  width: 100%;
  height: 900vh;
}

/* =========================
VIDEO 1
========================= */

.cinematic {
  position: relative;
  z-index: 1;
  visibility: hidden;
}

/* .cinematic.active {
  position: fixed;
  inset: 0;
  z-index: 5;
} */

/* =========================
HERO
========================= */

.hero {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  background-image: url(images/hero01.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================
LOGO
========================= */

.logo img {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
}

/* =========================
TEXT
========================= */

.hero_desc {
  position: absolute;
  top: 70%;
  left: 5%;
  transform: translateY(-50%);
  width: 40%;
}

.hero_desc h1 {
  line-height: 130%;
}

.hero_title_bottom {
  margin: 0 0 1rem;
  font-family: source-han-serif-japanese, serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3.5rem;
  text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.6);
  display: block;
}

@media screen and (max-width: 768px) {
  .hero_title_bottom {
    display: block;
    line-height: 105%;
  }
}

.hero_title_top {
  display: block;
  font-family: source-han-serif-japanese, serif;
  font-size: 1.5rem;
}

.hero_desc p {
  margin: 0;
  padding-top: 1rem;
  font-size: 1.25rem;
  line-height: 180%;
  text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.scroll-indicator {
  position: fixed;
  left: 50%;
  bottom: 1%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.scroll-indicator span {
  font-size: 0.8rem;
  color: #fff;
}

/* 矢印 */
.scroll-indicator::after {
  content: "";
  width: 1px;
  height: 20px;
  background: #fff;

  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* =========================
VIDEO
========================= */

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* =========================
CANVAS
========================= */

.scroll-canvas {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: block;
  background: #000;
  opacity: 0;
}

.cinematic .scroll-canvas {
  opacity: 0;
}

/* =========================
VIDEO 2
========================= */

.video_section {
  position: relative;
  width: 100%;
  height: 900vh;
}

.overlay-text {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

.text {
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 40%;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  background-color: #000;
  color: #fff;
  padding: 20px;
  border-radius: 3px;
  font-size: 1.25rem;
  line-height: 160%;
}

.visual {
  position: fixed;
  inset: 0;

  width: 100vw;
  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 200;

  opacity: 0;

  overflow: hidden;

  pointer-events: none;

  transform: scale(0.95);

  filter: blur(10px);
}

.visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.margin_space {
  margin: 10vh 0 0;
}

.inner {
  width: min(700px, 100%);
  margin: 0 auto;
}

.notice_wrap {
  margin: 5rem auto;
}

.notice {
  margin: 1rem auto;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.notice h5 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
  margin: 1rem auto;
}

.notice p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #fff
}

.byline, .byline02 {
  margin: 0 auto;
  width: min(400px, 100%);
}

.byline02 {
  margin-top: 3rem!important;
}

.byline, .byline02, dt, dd {
  padding: 0;
  margin: 0 auto;
  text-align: center;
}

.byline dt, .byline02 dt {
  font-size: 0.85rem;
  color: #fff;
}

.byline dd, .byline02 dd {
  font-size: 1rem;
  color: #fff;
  line-height: 140%;
}

.byline_profile {
  margin-top: 0.5rem;
  font-size: 0.875rem!important;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}



footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #191919;
  color: rgba(255, 255, 255, 0.7);
}

footer p {
  margin: 0.5rem 0;
  font-size: 0.875rem;
  line-height: 1.4;
}

.tagline {
  font-family: "bebas-neue-by-fontfabric", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-style: normal;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 120%;
}

.overlay-2 {
  z-index: 20;
  opacity: 1;
  visibility: visible;
}

.video_section .video-container {
  position: relative;
  height: 100%;
}

/* =========================
SP
========================= */

@media screen and (max-width: 960px) {
  .hero_desc {
    width: 90%;
    top: 70%;
  }

  .text {
    width: 70%;
    bottom: 10%;
  }
}

@media screen and (max-width: 768px) {
  .hero_wrap {
    height: 1400vh;
  }

  .video_section {
    height: 1400vh;
  }

  h1 {
    font-size: 2.5rem;
  }

  h1 span {
    font-size: 1.2rem;
  }

  .hero_desc p {
    font-size: 1rem;
    line-height: 140%;
  }

  .inner {
    padding: 0 10%;
    box-sizing: border-box;
  }
}

.loading {
  position: fixed;
  inset: 0;

  background: #000;

  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.loading-inner {
  position: relative;
  text-align: center;
}

.loading-tagline {
  font-family: "bebas-neue-by-fontfabric", sans-serif;
  font-weight: 700;
  font-style: normal;

  font-size: clamp(1.4rem, 3vw, 2.4rem);

  line-height: 1.4;
  letter-spacing: 0.08em;

  color: #fff;

  opacity: 0;

  filter: blur(12px);

  transform: translateY(10px);

  text-transform: uppercase;
}

.loading-bar {
  width: 180px;
  height: 1px;

  margin: 30px auto 0;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.15);
}

.loading-bar-fill {
  width: 40%;
  height: 100%;

  background: #fff;

  animation: loadingBreath 1.8s ease-in-out infinite;
}

@keyframes loadingBreath {
  0% {
    transform: translateX(-100%);
    opacity: 0.2;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateX(300%);
    opacity: 0.2;
  }
}
