/* ==========================================================================//
//
// thanks
//
// ========================================================================== */
.thanks_ttl {
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 18px;
  margin-bottom: 30px;
}
@media all and (min-width: 751px) {
  .thanks_ttl {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
  }
}

@media all and (min-width: 751px) {
  .thanks_txt {
    text-align: center;
  }
}
.thanks_txt p:not(:last-child) {
  margin-bottom: 2em;
}

.thanks_btn {
  text-align: center;
  margin-top: 50px;
}
@media all and (min-width: 751px) {
  .thanks_btn {
    margin-top: 90px;
  }
}
.thanks_btn a {
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.075em;
  font-size: 13px;
  padding: 10px;
}
@media all and (min-width: 751px) {
  .thanks_btn a {
    font-size: 15px;
  }
}
.thanks_btn a .arrow {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: #2C2F36;
  margin-right: 14px;
  margin-bottom: 4px;
}
.thanks_btn a .arrow::before {
  position: absolute;
  content: "";
  top: calc(50% - 0.5px);
  left: 0;
  width: 7px;
  height: 1px;
  background-color: inherit;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: 0.5px 50%;
          transform-origin: 0.5px 50%;
}
@media (hover: hover) {
  .thanks_btn a .arrow {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .thanks_btn a:hover .arrow {
    -webkit-transform: translateX(-6px);
            transform: translateX(-6px);
  }
}