/* =====================
BASE
===================== */
body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  line-height: 2;
  letter-spacing: 0.04em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

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

.thanks-page {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #000;
  color: #e8e1d4;
  overflow: hidden;
}

.thanks-section {
  min-height: 70vh;
  padding: 150px 24px 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-inner {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.thanks-en-title {
  margin: 0 0 24px;
  color: #c8a45d;
  font-size: 13px;
  letter-spacing: 0.28em;
}

.thanks-title {
  margin: 0 0 40px;
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.12em;
}

.thanks-text {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 2.1;
}

.thanks-note {
  margin: 0;
  color: rgba(232, 225, 212, 0.78);
  font-size: 15px;
  line-height: 2;
}

.thanks-button-wrap {
  margin-top: 56px;
}

.thanks-button {
  display: inline-block;
  padding: 14px 42px;
  border: 1px solid rgba(200, 164, 93, 0.7);
  color: #c8a45d;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: 0.3s ease;
}

.thanks-button:hover {
  background: #c8a45d;
  color: #000;
}

/* スマホ */
@media screen and (max-width: 767px) {
  .thanks-section {
    min-height: 65vh;
    padding: 110px 20px 90px;
  }

  .thanks-en-title {
    font-size: 12px;
  }

  .thanks-title {
    margin-bottom: 32px;
    font-size: 24px;
    line-height: 1.7;
  }

  .thanks-text {
    font-size: 16px;
    line-height: 2;
  }

  .thanks-note {
    font-size: 14px;
    line-height: 2;
    text-align: left;
  }

  .thanks-button-wrap {
    margin-top: 46px;
  }

  .thanks-button {
    padding: 13px 34px;
    font-size: 12px;
  }
}