@charset "UTF-8";


@import url("../https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&display=swap");
/* ============================================
   style.css — Landing Page Styles
   ============================================ */

/* ------------------------------------------
   rem 基準設定
   html に font-size: 62.5% を設定することで
   1rem = 10px として扱えるようになる
   （例: 1.6rem = 16px, 2.4rem = 24px）
   ------------------------------------------ */
html {
  font-size: 62.5%;
  /* 10px base */
}


/* ------------------------------------------
   Animations
   ------------------------------------------ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* ------------------------------------------
   Responsive Helpers
   ------------------------------------------ */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}

body {
  font-family: "Shippori Mincho", serif;
}












.thanks-page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 110px 20px 140px;
  background: #fbfaf7;
  color: #333;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  box-sizing: border-box;
}

.thanks-page::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 165, 106, .12) 0%, rgba(194, 165, 106, 0) 70%);
}

.thanks-page::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -160px;
  width: 120%;
  height: 300px;
  background: #f2ede4;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
  transform: rotate(2deg);
}

.thanks-page__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.thanks-page__icon {
  position: relative;
  width: 74px;
  height: 74px;
  margin: 0 auto 34px;
  border: 2px solid #b79a58;
  border-radius: 50%;
}

.thanks-page__icon::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 20px;
  width: 28px;
  height: 14px;
  border-left: 2px solid #b79a58;
  border-bottom: 2px solid #b79a58;
  transform: rotate(-45deg);
}

.thanks-page__title {
  margin: 0;
  font-size: 46px;
  font-weight: 400;
  letter-spacing: .12em;
  line-height: 1.5;
}

.thanks-page__line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 220px;
  margin: 32px auto 42px;
}

.thanks-page__line::before,
.thanks-page__line::after {
  content: "";
  display: block;
  width: 84px;
  height: 1px;
  background: #c2a56a;
}

.thanks-page__line span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c2a56a;
}

.thanks-page__box {
  position: relative;
  padding: 58px 60px;
  border: 1px solid rgba(194, 165, 106, .55);
  background: rgba(255, 255, 255, .72);
}

.thanks-page__box::before,
.thanks-page__box::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
}

.thanks-page__box::before {
  top: 7px;
  left: 7px;
  border-top: 2px solid #b79a58;
  border-left: 2px solid #b79a58;
}

.thanks-page__box::after {
  right: 7px;
  bottom: 7px;
  border-right: 2px solid #b79a58;
  border-bottom: 2px solid #b79a58;
}

.thanks-page__text {
  margin: 0;
  font-size: 17px;
  line-height: 2.4;
  letter-spacing: .06em;
}

.thanks-page__text span {
  display: block;
}

@media(max-width:767px) {
  .thanks-page {
    padding: 70px 20px 110px;
  }

  .thanks-page::after {
    bottom: -100px;
    height: 180px;
  }

  .thanks-page__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 26px;
  }

  .thanks-page__icon::before {
    top: 19px;
    left: 16px;
    width: 23px;
    height: 12px;
  }

  .thanks-page__title {
    font-size: 30px;
    letter-spacing: .08em;
  }

  .thanks-page__line {
    width: 150px;
    margin: 24px auto 30px;
  }

  .thanks-page__line::before,
  .thanks-page__line::after {
    width: 55px;
  }

  .thanks-page__box {
    padding: 38px 24px;
  }

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

  .thanks-page__text span {
    display: inline;
  }
}


.thanks-page-to-top {
  font-size: 22px;
  margin-top: 40px;
  display: block;
  transition: opacity .3s ease;
  color: #0000EE;
}




.thanks-page-to-top:hover {
  opacity: .6;
}

@media(max-width:767px) {
  .thanks-page-to-top {
    font-size: 16px;
    margin-top: 40px;
    display: block;
    transition: opacity .3s ease;
    color: #0000EE;
  }
}