/* ========================================
Thanks
======================================== */

.thanks-wrapper {
  padding: 0 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
}

.thanks-inner {
  text-align: center;
}

/* en */

.thanks-en {
  font-size: clamp(2rem, 1.714vw, 3rem);
  line-height: 1.5;
}

/* title */

.thanks-title {
  margin-top: clamp(4.8rem, 5.86vw, 6rem);
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 1.6;
}

/* text */

.thanks-text {
  margin-top: 4rem;
  font-size: clamp(1.4rem, 1.143vw, 1.6rem);
  line-height: 2.2;
}

/* link */

.thanks-link {
  display: inline-block;

  margin-top: 6rem;

  font-size: clamp(1.4rem, 1.143vw, 1.6rem);
  line-height: 1.5;

  position: relative;
}

.thanks-link::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -0.2rem;

  width: 100%;
  height: 1px;

  background: #000;

  transform-origin: right;
  transform: scaleX(1);

  transition: transform 0.4s ease;
}

.thanks-link:hover::after {
  transform-origin: left;
  transform: scaleX(0);
}

@media screen and (max-width: 599px) {
  .thanks-text br {
    display: none;
  }
  .thanks-title {
    margin-top: 3rem;
  }
}
