.fv {
  height: auto;
  /* min-height: calc(100vh - 3rem); */
  border-bottom: 16px solid var(--subaru-blue);
}

.fv-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.fv-content {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 3rem - 80px);
  padding: 4vw 0 4vw 4vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
  overflow: hidden;
  color: var(--subaru-blue);
}

.top-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.top-content > h1 {
  font-size: calc(var(--vw-safe) / 100 * 7);
  font-weight: 700;
  margin: 0;
  line-height: 1em;
}

.top-content > p {
  font-size: calc(var(--vw-safe) / 100 * 4);
  font-weight: 600;
  margin: 0;
  line-height: 1em;
}

.bottom-content > p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: calc(var(--vw-safe) / 100 * 2);
  font-weight: 600;
  margin: 0 0 1rem 0;
  line-height: 1.2em;
}

.fv-prize {
  transform: translateX(-1.8vw);
}

@media screen and (max-width: 768px) {
  .fv-content {
    padding: 8vw 0 8vw 5vw;
    min-height: calc(100svh - 3rem - 40px);
  }
  .top-content > h1 {
    font-size: 12vw;
  }
  .top-content > p {
    font-size: 7vw;
    line-height: 1.4em;
    margin-top: 1rem;
  }
  .bottom-content > p {
    font-size: 4vw;
  }
}

@media screen and (max-width: 540px) {
  .fv-content {
    padding: 10vw 0 10vw 5vw;
  }
  .top-content > h1 {
    font-size: 13.4vw;
  }
  .top-content > p {
    font-size: 7vw;
  }
  .bottom-content > p {
    font-size: 4.6vw;
  }
}