.message--fv {
  width: 100%;
  height: 43.43vw;
  max-height: 80vh;
  margin-top: 5rem;
  position: relative;
  background-image: url("../images/message-fv.jpg");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 2000px) {
  .message--fv {
    background-size: contain;
  }
}
@media (max-width: 1020px) {
  .message--fv {
    margin-top: 0;
  }
}
.message--fv_content {
  margin: 0 auto;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1200px) {
  .message--fv_content {
    right: auto;
    left: 2rem;
  }
}
.message--fv_content h2 {
  margin: 0 -0.5em 1rem auto;
  font-size: 5.5rem;
  color: #006;
  text-align: center;
}
@media (max-width: 1020px) {
  .message--fv_content h2 {
    font-size: 4rem;
  }
}
.message--fv_content p {
  width: 100%;
  padding: 1rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: var(--white);
  letter-spacing: 0.2em;
  background-color: var(--black);
}
@media (max-width: 1020px) {
  .message--fv_content p {
    font-size: 1.8rem;
  }
}
.message--images {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}