@charset "UTF-8";
/* -- div#thanks -------------------------------------------------------------------------------- */

html {
  background-color: #000;
}

body {
  /* font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif; */
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-size: 1rem;
  background: #000;
  margin: 0px;
  color: #fff;
  background-color: #0000;
}

h1 {
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  margin: 120px auto 45px;
  text-align: center;
  color: #fff;
}
h1 span {
  display: inline-block;
  width: 160px;
  height: 1px;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #d84d97 0%, #3ebbea 100%);
}

.thanks-Box {
  width: 95%;
  max-width: 650px;
  height: auto;
  padding: 25px 18px;
  box-sizing: border-box;
  margin: 0 auto 25px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  background-color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}
.thanks-Box .women {
  position: absolute;
  bottom: 20px;
  left: 18px;
  width: 23%;
  height: auto;
}
.thanks-Box .men {
  position: absolute;
  bottom: 20px;
  right: 18px;
  width: 23%;
  height: auto;
}

.arrow {
  width: 5%;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%); /* 初期位置 */
  display: flex;
  flex-direction: column;
  background: linear-gradient(90deg, #d84d97 0%, #3ebbea 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  /* ▼ ここを追加: アニメーションの設定 ▼ */
  animation: move-y 2s infinite ease-in-out;
}

/* ▼ ここを追加: 動きの定義 ▼ */
@keyframes move-y {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px); /* 10px下に動く */
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}

.arrow p {
  margin: 0;
}

.thanks-Box .discription {
  color: #000;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  text-align: left;
  margin-bottom: 160px;
}
.thanks-Box .discription span {
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.thanks-Box .btn-subtit {
  color: #fff;
  text-align: center;
  font-size: clamp(15px, 12.2px + 0.48vw, 20px);
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: 3px;
  /* 12px */
  text-align: center;
  margin-bottom: 8px;
}
.thanks-Box .btn-subtit span {
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
}

.line-btn {
  display: flex;
  margin: 0 auto;
  width: 70%;
  max-width: 400px;
  justify-content: space-around;
  align-items: center;
  gap: 7px;
  border-radius: 50px;
  background: linear-gradient(90deg, #d84d97 0%, #3ebbea 100%);
  position: relative;
  padding: 4% 2%;
  text-decoration: none;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  box-shadow: 0px 5px 4px rgba(46, 46, 46, 0.6);
  border: 1px solid #fff;
  overflow: hidden;
}

.line-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; /* 最初は左側の見えない位置に置く */
  width: 50%; /* 光の幅 */
  height: 100%;
  /* 白い光のグラデーション（端は透明、真ん中が白） */
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  /* 少し斜めにする */
  transform: skewX(-25deg);
  /* アニメーション設定：名前shine、3秒かけて無限ループ */
  animation: shine 3s infinite;
  z-index: 1;
}

.line-btn p {
  color: #fff;
  text-decoration: none;
  font-size: clamp(
    17px,
    calc(12.408163265306122px + 1.2244897959183674vw),
    32px
  );
  margin: 0;
  position: relative;
  z-index: 2;
}

@keyframes shine {
  0% {
    left: -100%; /* 左外 */
  }
  50% {
    left: 200%; /* 右外まで移動（ここまで1.5秒） */
  }
  100% {
    left: 200%; /* 残りの時間は待機（光らない時間を作る） */
  }
}
.line-btn a {
  /* width: 100%; */

  /* 17px */
  text-decoration: none;
  display: block;
  font-size: 26px;
  z-index: 2;
}
.line-btn img {
  width: 10%;
  max-width: 30px;
  height: auto;
}

.contact-descrption {
  width: 100%;
  max-width: 650px;
  height: auto;
  margin: 5% auto 0 auto;
  line-height: 140%;
  padding: 0 18px;
  box-sizing: border-box;
  font-size: 20px;
}
.contact-descrption span {
  font-size: 1rem;
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.contact-descrption phone-number,
.contact-descrption mail {
  font-size: 18px;
}
.contact-descrption a {
  color: #fff;
}

.contact-info {
  padding: 0 18px;
  width: 100%;
  max-width: 650px;
  height: auto;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
  font-size: 16px;
}
.contact-info p {
  margin: 0;
}
.contact-info .under-line {
  text-decoration: underline;
}
.contact-info .bold {
  font-weight: bold;
}

.backk-btn-area {
  width: 95%;
  max-width: 650px;
  margin: 0 auto;
  text-align: end;
  margin-top: 40px;
  padding-right: 18px;
}

.backk-btn {
  display: inline-block;
  width: 26%;
  padding: 10px 0px;
  border-radius: 50px;
  text-align: center;
  background: #fff;
  cursor: pointer;
}
.backk-btn a {
  background: linear-gradient(90deg, #ff8473 0%, #ffb762 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}

footer {
  width: 100%;
  height: auto;
  background-color: #000;
  margin-top: 56px;
  padding: 64px 0 0;
}
footer .logo {
  width: 5%;
}
footer .ft-sec {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  gap: 32px;
}
footer .ft-sec div {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  gap: 4px;
  align-items: center;
  margin-bottom: 16px;
}

footer p {
  margin: 0;
  text-align: center;
  line-height: 12px;
}
footer .ft-sec .nd {
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-style: normal;
  font-weight: 100;
  font-size: 12px;
  line-height: 100%;
  /* 14px */
  letter-spacing: -0.28px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  cursor: pointer;
  margin: 0;
  text-decoration: none;
}

footer .ft-sec .company-profile {
  font-weight: 500;
}
footer .ft-sec p .privacy {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
footer .ft-sec p .privacy:hover {
  opacity: 0.7;
}
footer .ft-sec .sns a {
  text-decoration: none;
  color: #0a0a0a;
}

#modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}
#modal .modal {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 400px;
  background-color: rgba(46, 46, 46, 0.6);
  z-index: 2;
}
#modal .modal .modal-text-area {
  padding: 16px;
  width: 90%;
  height: 80%;
  overflow: scroll;
  border: solid 1px #333333;
  color: #fafafa;
  text-align: center;
  font-size: clamp(12px, 2.5vw, 14px);
}
#modal .modal .modal-text-area h2 {
  font-weight: 700;
  font-size: clamp(14px, 2.5vw, 16px);
  padding: 25px 0;
}
#modal .modal .modal-text-area h3 {
  font-weight: 600;
  padding: 18px 0;
}
#modal .modal .modal-text-area p {
  padding: 5px 0;
}
#modal .modal .modal-text-area ul {
  padding: 0;
}
#modal .modal .modal-text-area ul li {
  padding: 5px 0;
}
#modal .modal .modal-text-area ul li a {
  text-decoration: none;
  color: #fe8e1e;
}
#modal .modal .modal-text-area li {
  list-style: none;
}
#modal .modal .modal-text-area li a {
  text-decoration: none;
  color: #fe8e1e;
}
#modal .modal #closeModal {
  margin: 10px 0;
  width: 50%;
  height: 50px;
  border: none;
  border-radius: 6px;
  color: #fafafa;
  background: #ff8473;
}

.sp-none {
  display: none;
}

.contact-descrption div {
  display: flex;
  justify-content: center;
}

.btn-schedule {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  background: #ff986d;
  color: #fff;
}
@media (hover: hover) {
  .btn-schedule:hover {
    opacity: 0.9;
  }
}

/* -- responsive ----------------------------------------------------------------------------------------------------------------------- */
/* 1000pixel start */
@media screen and (max-width: 1000px) {
  h1 {
    font-size: 20px;
    margin: 48px auto 45px;
  }
  .thanks-Box {
    padding: 2% 4% 6%;
    margin: 0 auto;
  }
  .arrow {
    width: 5%;
    top: 5.5%;
  }

  .thanks-Box .women {
    width: 25%;
    height: auto;
    left: 3%;
    bottom: 9%;
  }
  .thanks-Box .men {
    width: 25%;
    height: auto;
    right: 3%;
    bottom: 9%;
  }
  .thanks-Box .discription {
    margin-bottom: 24%;
    font-size: clamp(14px, 8px + 1.6vw, 16px);
  }
  .thanks-Box .btn-subtit {
    font-size: 13px;
  }
  .line-btn {
    width: 90%;
  }
  .line-btn a {
    padding: 6% 2%;
    font-size: 18px;
  }
  .backk-btn {
    width: 40%;
  }
  .contact-descrption p {
    font-size: clamp(16px, 8px + 1.6vw, 20px);
  }
  .contact-info p {
    font-size: clamp(12px, 8px + 1.6vw, 14px);
  }
  footer .ft-sec {
    gap: 2%;
  }
  .sp-none {
    display: inline-block;
  }

  .settinglp-thanks footer .ft-sec {
    flex-direction: row;
    height: 60px;
  }
}
/* 1000pixel end */ /*# sourceMappingURL=thanks.css.map */

/* v014サンクスページ */

.settinglp-thanks {
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  background-color: transparent;

  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
}

.settinglp-thanks .thanks-Box {
  padding-top: 52px;
  padding: 52px 0 0;
  margin: 0 auto 32px;
}

.settinglp-thanks .discription {
  text-align: center;
  margin-bottom: 0;
}

.settinglp-thanks .discription h1 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.settinglp-thanks .discription h1 {
  margin: 0 0 16px 0;
}

.settinglp-thanks .discription span {
  font-size: 16px;
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
}

.settinglp-thanks .discription span:nth-last-of-type {
  font-size: 12px;
}

.settinglp-thanks .line-btn {
  display: inline-block;
  width: 240px;
  background: transparent;
  border: 2px solid rgb(229 40 1);
  color: rgb(229 40 1);
  padding: 12px 0px;
  font-size: 16px;
  box-shadow: none;
}

.settinglp-thanks .line-btn p {
  color: #5eb8e6;
}

.settinglp-thanks footer .ft-sec {
  display: flex;
  flex-direction: column;
  height: 50px;
  background: #ff6667;
  line-height: 24px;
  color: #fff;
  text-decoration-style: none;
  font-size: 12px;
  font-family: Montserrat, sans-serif;
}

.settinglp-thanks footer .ft-sec .nd {
  color: #fff;
  text-decoration: none;
  line-height: inherit;
  font-weight: normal;
  width: auto;
}

.settinglp-thanks footer {
  margin-top: 0;
  padding: 0;
}

/* .settinglp-thanks footer .ft-sec div {
  display: block;
} */

.settinglp-thanks footer .ft-sec p {
  margin: 0;
}

@media screen and (min-width: 1000px) {
  .settinglp-thanks footer .ft-sec {
    flex-direction: row;
    height: 60px;
    justify-content: center;
  }
}

/* [追加] idom用iframeのレスポンシブ対応スタイル */
.schedule-iframe {
  width: 100%;
  max-width: 1280px; /* PCでの最大幅 */
  height: 80vh; /* 画面の高さの80% */
  min-height: 800px; /* 最低限の高さを確保 */
  border: none;
}
