@charset "utf-8";

/* サンクスページ固有のスタイル */

.thanks-body {
  min-height: 100vh;
  background-image: url("/assets/img/common/bg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-color: #f8f4ff;
}

.thanks {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.thanks__inner {
  flex: 1;
  width: 100%;
  box-sizing: border-box;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  text-align: center;
}

.thanks__title {
  background: conic-gradient(
    from 135deg at 50% 50%,
    #1daec7 0%,
    #776ff9 36%,
    #776ff9 70%,
    #1daec7 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.212;
  letter-spacing: 0;
}

.thanks__desc {
  margin-top: 80px;
  color: #000;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.thanks__notice {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  padding: 48px 16px;
  background-color: #f4f4f4;
  border-radius: 4px;
}

.thanks__notice p {
  color: #444;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.512;
  letter-spacing: 0.05em;
}

/* SP */
@media (max-width: 567px) {
  .thanks__inner {
    padding: 48px 16px 24px;
  }

  .thanks__title {
    font-size: 40px;
  }

  .thanks__desc {
    margin-top: 48px;
    font-size: 16px;
  }

  .thanks__notice {
    margin-top: 48px;
  }

  .thanks__notice p {
    font-size: 20px;
  }
}
