/* サンクスページ（送信完了） */
.thanks {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 50vh;
  padding: 18rem 2rem 12rem;
}

.thanks__inner {
  text-align: center;
  max-width: 80rem;
  width: 100%;
}

.thanks__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: #d86597;
  margin-bottom: 3rem;
}

.thanks__text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2;
  color: #4b4b4b;
  margin-bottom: 4.5rem;
}

.thanks__btn a {
  display: inline-block;
  background-color: #d86597;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  padding: 1.5rem 5rem;
  border-radius: 5rem;
  transition: opacity 0.3s ease;
}

.thanks__btn a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 699.98px) {
  .thanks {
    min-height: 40vh;
    padding: 11rem 2rem 8rem;
  }
  .thanks__title {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
  }
  .thanks__text {
    font-size: 1.5rem;
    margin-bottom: 3.5rem;
  }
  .thanks__btn a {
    font-size: 1.5rem;
    padding: 1.4rem 4rem;
  }
}
