@charset "UTF-8";
/*--------------------------------
サンクスページ
---------------------------------*/
.pc-only {
  display: block;
}
 @media screen and (max-width: 767px) {
  .pc-only {
  display: none;
}
 }
.content {
  margin-top: 40px;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--bg);
}

.sp {
  display: none;
}

.thanks-message {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background-color: #fff;
  padding: 64px;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
}

.thanks-message_title {
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.thanks-message_text-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
  width: fit-content;
}

.thanks-message_text {
  color: var(--navy);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.btn-back_wrap {
  display: flex;
  justify-content: center;
  gap: 3%;
  width: 100%;
}

.btn-back {
  color: var(--navy);
  background-color: #fff;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3",
        "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic",
        sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  border: var(--navy) solid 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  line-height: 60px;
  border-radius: 200px;
  transition: 0.5s ease;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.btn-back:hover {
  color: #fff;
  transform: scale(1.1, 1.1);
}

.btn-back::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
  overflow: hidden;
  z-index: -1;
}

.btn-back:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.br-tab {
  display: none;
}
.-tel {
text-align: center;
font-weight: 700;
margin-top: 32px;
}

@media screen and (max-width: 767px) {
  .thanks-message_title {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .br-tab {
    display: block;
  }
}

@media screen and (max-width: 575px) {
  .br-tab {
    display: none;
  }
  .sp {
    display: block;
  }

  .btn-back_wrap {
    flex-direction: column;
    gap: 20px;
  }

  .btn-back {
    max-width: 100%;
  }

  .message_title {
margin-bottom: 12px;
  }

  .thanks-message_text-wrap {
    margin-bottom: 22px;
    gap: 12px;
  }
  .thanks-message {
  gap: 10px;
  }

  .thanks-message {
    padding: 40px;
  }
}



