@charset "UTF-8";
@font-face {
  font-family: 'NoirEtBlank';
  src: url('Assets/Fonts/noiretblanc_med_bold_italic-webfont.woff2') format('woff2'),
       url('Assets/Fonts/noiretblanc_med_bold_italic-webfont.woff') format('woff');
  font-style: normal;
}
@font-face {
  font-family: 'FranklinGothic';
  src: url('Assets/Fonts/franklingothic_cond-webfont.woff2') format('woff2'),
       url('Assets/Fonts/franklingothic_cond-webfont.woff') format('woff');
  font-style: normal;
}
@font-face {
  font-family: 'FranklinGothicBold';
  src: url('Assets/Fonts/franklingothic_bold-webfont.woff2') format('woff2'),
       url('Assets/Fonts/franklingothic_bold-webfont.woff') format('woff');
  font-style: normal;
}
.logo-box {
  max-width: 2000px;
  margin: 0 auto;
	padding-top: 30px;
	padding-bottom: 40px;
	padding-left: 20px;
	padding-right: 20px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.site-logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
}
.center-screen {
  display: flex;
  justify-content: center;
  align-items: top;
  height: calc(100vh - 150px);
  width: 100%;
  overflow: hidden;
}
.main-box-wrapper {
  width: 1250px;
  height: 750px;
  position: relative;
  transform-origin: top center;
  transform: scale(calc(
    min(
      100% / 1000,
      (100vh - 100px) / 750
    )
  ));
}
.main-box {
  position: relative;
  width: 1250px;
  height: 750px;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1000 / 750;
  transform-origin: top center;
}
.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.sketch-image {
  position: absolute;
  top: 0px;
  left: 460px;
  width: 367px;
  height: 560px;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transform: scale(0.95);
  animation: fadeScale 1s ease-out forwards;
  animation-delay: 1.5s;
}
@keyframes fadeScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.sticker {
  position: absolute;
  width: 65px;
  opacity: 0;
  z-index: 3;
  transform: translate(10px, -10px);
  animation: stickerIn 0.5s cubic-bezier(.25,.8,.25,1) forwards;
}

.s1 { animation-delay: 1.1s; }
.s2 { animation-delay: 1.35s; }
.s3 { animation-delay: 1.6s; }

.s1 { top: 540px; left: 120px; }
.s2 { top: 645px; left: 70px; }
.s3 { top: 610px; left: 140px;
}
@keyframes stickerIn {
  from {
    opacity: 0;
    transform: translate(10px, -10px);
  }
  to {
    opacity: 1;
    transform: translate(-20px, 20px);
  }
}
.overlay-video {
  position: absolute;
  bottom: 0px;
  left: 555px;
  width: 450px;
  height: 450px;
  overflow: hidden;
  z-index: 4;
  clip-path: circle(0% at 50% 50%);
  animation: irisIn 1.5s ease-out forwards;
  animation-delay: 1s;
}
.overlay-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}
@keyframes irisIn {
  to {
    clip-path: circle(50% at 50% 50%);
  }
}
.text-box {
  position: absolute;
  top: 25px;
  left: 855px;
  width: 360px;
  text-align: left;
  color: #222222;
  z-index: 3;
}
.text-box h {
  font-family: 'NoirEtBlank', 'Arial', sans-serif;
  font-size: 1.2rem;
  margin: 0 0 10px 0;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.text-box p {
  font-family: 'FranklinGothic', 'Arial', sans-serif;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.2;
}
.credit-list-a {
  position: absolute;
  top: 90px;
  left: 855px;
  width: 150px;
  text-align: left;
  color: #222222;
  z-index: 3;
}
.credit-list-a p {
  font-family: 'FranklinGothic', 'Arial', sans-serif;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}
.credit-list-b {
  position: absolute;
  top: 90px;
  left: 1000px;
  width: 200px;
  text-align: left;
  color: #222222;
  z-index: 3;
}
.credit-list-b p {
  font-family: 'FranklinGothicBold', 'Arial', sans-serif;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}
.fade-up {
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.5s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}