.pre-footer-hero {
  position: relative;
  height: calc(80svh * var(--viewport-scale, 1));
  padding: 40px 56px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: rgba(51, 51, 51, 0.5);
}
.pre-footer-hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  pointer-events: none;
}
.pre-footer-hero .hero-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh * var(--viewport-scale, 1));
  object-fit: cover;
  z-index: -1;
}
.pre-footer-hero .hero-content {
  position: relative;
  z-index: 2;
}
.pre-footer-hero .hero-title {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Meiryo", sans-serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin: 0;
}

@media (max-width: 1024px) {
  .pre-footer-hero {
    height: 80vh;
    padding: 30px 40px;
  }
}
@media (max-width: 960px) {
  .pre-footer-hero {
    height: 80vh;
    padding: 40px 16px;
    background-attachment: scroll;
  }
  .pre-footer-hero .hero-background-video {
    height: 100vh;
  }
  .pre-footer-hero .hero-title {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .pre-footer-hero .hero-title {
    font-size: 32px;
    letter-spacing: 0.05em;
  }
}
