@charset "utf-8";
main {
  background-image: url("../images/home__bg--pc.png");
  background-size: cover;
  background-position: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  height: 100dvh;
  width: 100%;
}
@media (max-width: 600px) {
  main {
    background-image: url("../images/home__bg--sp.png");
    background-attachment: fixed;
  }
}
main section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: 500;
  color: #8f9ca2;
}
.thanks-text {
  font-size: 10rem;
  line-height: 1;
}
@media (max-width: 600px) {
  .thanks-text {
    font-size: 5rem;
    line-height: 1;
  }
}

.send-text {
  font-size: 3dvh;
}

.top-link {
  color: #8f9ca2;
  font-weight: 400;
}
