@charset "UTF-8";
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
figure {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* base
--------------------------------------------- */
body {
  font-family: "Shippori Mincho", serif;
  color: #333;
  font-weight: 600;
}

/* component
--------------------------------------------- */
/* ボタン */
.contact-button {
  display: block;
  width: 80%;
  margin-inline: auto;
  border-radius: 75px;
  overflow: hidden;
  position: relative;
}
.contact-button::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -30%;
  width: 80px;
  height: 100%;
  -webkit-transform: scale(2) rotate(20deg);
          transform: scale(2) rotate(20deg);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.5) 100%, rgba(255, 255, 255, 0) 0%);
  -webkit-animation-name: shine;
          animation-name: shine;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.contact-button img {
  display: block;
  border-radius: 75px;
  width: 15%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

@-webkit-keyframes shine {
  0% {
    -webkit-transform: scale(0) rotate(25deg);
            transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1) rotate(25deg);
            transform: scale(1) rotate(25deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(25deg);
            transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}

@keyframes shine {
  0% {
    -webkit-transform: scale(0) rotate(25deg);
            transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1) rotate(25deg);
            transform: scale(1) rotate(25deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(25deg);
            transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}
/* 送信ボタン */
.submit-button {
  width: 100%;
  max-width: clamp(19.375rem, 82.67vw, 38.75rem);
  width: 100%;
  padding: clamp(1.406rem, 6vw, 2.813rem) clamp(0.313rem, 1.33vw, 0.625rem) clamp(1.406rem, 6vw, 2.813rem);
  border-radius: 100vh;
  background: -webkit-gradient(linear, left top, right top, from(#b39855), color-stop(50%, #fff9e6), to(#b39855));
  background: linear-gradient(90deg, #b39855 0%, #fff9e6 50%, #b39855 100%);
  color: #3f240d;
  border: clamp(0.125rem, 0.53vw, 0.25rem) solid #a07e20;
  font-size: clamp(1.5rem, 6.4vw, 3rem);
  line-height: 1;
  cursor: pointer;
}

/* layout
--------------------------------------------- */
/* コンテンツ幅 */
.content-wrap {
  max-width: 750px;
  margin-inline: auto;
}

/* footer */
.footer {
  margin-top: clamp(3.563rem, 15.2vw, 7.125rem);
}
.footer.footer--policy {
  margin-top: 0;
  padding: clamp(1rem, 4.27vw, 2rem) 0;
}

.footer__copyright {
  text-align: center;
  color: #FFF;
  font-size: clamp(0.75rem, 0.5rem + 1.07vw, 1rem);
  line-height: 2.5;
  letter-spacing: 0.04em;
}
.footer__copyright.footer__copyright--policy {
  color: #333;
}

/* utility
--------------------------------------------- */
.u-marker-yellow {
  display: inline;
}
.u-marker-blue {
  display: inline;
  line-height: 1;
}
@media screen and (max-width:768px) {
  .u-tab-hidden {
    display: none;
  }
}

.u-tab-display {
  display: none;
}
@media screen and (max-width:768px) {
  .u-tab-display {
    display: inline;
  }
}

.u-sm-display {
  display: none;
}
@media screen and (max-width:500px) {
  .u-sm-display {
    display: block;
  }
}

.u-sp-lg-display {
  display: none;
}
@media screen and (max-width: 400px) {
  .u-sp-lg-display {
    display: inline;
  }
}

.u-sp-lg-hidden {
  display: inline;
}
@media screen and (max-width: 400px) {
  .u-sp-lg-hidden {
    display: none;
  }
}

/* margin */
.u-mt60 {
  margin-top: clamp(1.875rem, 8vw, 3.75rem);
}

.u-mt100 {
  margin-top: clamp(3.125rem, 13.33vw, 6.25rem);
}

.u-mt120 {
  margin-top: clamp(3.75rem, 16vw, 7.5rem);
}

/* fv
--------------------------------------------- */
.fv {
  position: relative;
}
.fv img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__btn-wrap {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 65px;
  width: 100%;
}
@media (max-width: 700px) {
  .fv__btn-wrap {
    bottom: 55px;
  }
}
@media screen and (max-width:600px) {
  .fv__btn-wrap {
    bottom: 50px;
  }
}
@media screen and (max-width:500px) {
  .fv__btn-wrap {
    bottom: 40px;
  }
}
@media screen and (max-width: 400px) {
  .fv__btn-wrap {
    bottom: 35px;
  }
}

/* lead
--------------------------------------------- */
.lead {
  position: relative;
  z-index: 2;
  margin-top: -40px;
}

.lead__top {
  position: relative;
}

.lead__bottom {
  position: relative;
  background-image: url(../img/lead-bg02.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: clamp(5.625rem, 24vw, 11.25rem) 0 clamp(2.5rem, 10.67vw, 5rem);
}

.lead__box01 {
  position: absolute;
  right: clamp(1.625rem, 6.93vw, 3.25rem);
  top: clamp(6rem, 25.6vw, 12rem);
}

.lead__box02 {
  position: absolute;
  left: clamp(1.25rem, 5.33vw, 2.5rem);
  bottom: clamp(3.125rem, 13.33vw, 6.25rem);
}

.lead__text {
  font-size: clamp(1.25rem, 5.33vw, 2.5rem);
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.lead__triangle {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: clamp(1.313rem, 5.6vw, 2.625rem);
  display: block;
  width: clamp(3.75rem, 16vw, 7.5rem);
  -o-object-fit: cover;
     object-fit: cover;
}

.lead__bottom-text01 {
  width: 85%;
  margin: 0 auto;
}
.lead__bottom-text01 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lead__bottom-photo {
  margin-top: 50px;
}
.lead__bottom-photo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lead__bottom-text02 {
  width: 60%;
  margin: clamp(2.5rem, 10.67vw, 5rem) auto 0;
}
.lead__bottom-text02 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* info
--------------------------------------------- */
.info__heading-block img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.info__content-wrap {
  background-image: url(../img/info-bg02.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.info__content {
  background-color: #FFF;
  width: 95%;
  margin: 0 auto;
  padding: clamp(2rem, 8.53vw, 4rem) clamp(1.25rem, 5.33vw, 2.5rem) clamp(3.125rem, 13.33vw, 6.25rem);
}

.info__bottom img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.info__title {
  color: #a07e20;
  font-size: clamp(1.125rem, 4.8vw, 2.25rem);
  line-height: 1.25;
}
.info__title + * {
  margin-top: clamp(0.438rem, 1.87vw, 0.875rem);
}

.info__item:not(:first-child) {
  margin-top: 100px;
  margin-top: clamp(3.125rem, 13.33vw, 6.25rem);
}

.info__text,
.info__sub-text {
  font-size: clamp(0.938rem, 4vw, 1.875rem);
  line-height: 1.5;
}
.info__text span,
.info__sub-text span {
  display: inline-block;
  margin-top: clamp(0.125rem, 0.53vw, 0.25rem);
}
.info__text span.day,
.info__sub-text span.day {
  font-size: clamp(1.75rem, 7.47vw, 3.5rem);
  margin-left: clamp(0.313rem, 1.33vw, 0.625rem);
}

.info__sub-text:not(:first-child) {
  margin-top: clamp(1.438rem, 6.13vw, 2.875rem);
}

.info__item-list,
.info__flow-list {
  font-size: clamp(0.938rem, 4vw, 1.875rem);
  line-height: 1.5;
}

.info__sub-textarea.info__sub-textarea--date {
  margin-top: clamp(2rem, 8.53vw, 4rem);
}

.info__flow-notice {
  font-size: clamp(0.938rem, 4vw, 1.875rem);
}

.info__price-notice {
  font-size: clamp(0.938rem, 4vw, 1.875rem);
}

.info__price-notice02,
.info__price-notice03 {
  margin-top: clamp(1.75rem, 7.47vw, 3.5rem);
  font-size: clamp(0.938rem, 4vw, 1.875rem);
}

.info__price-notice02 {
  color: #a81030;
}

/* feature
--------------------------------------------- */
.feature {
  background-image: url(../img/feature-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: clamp(4.813rem, 20.53vw, 9.625rem) 0 clamp(2.813rem, 12vw, 5.625rem);
}

.feature__inner {
  width: 85%;
  margin-inline: auto;
}

.feature__heading {
  width: 85%;
  margin-inline: auto;
}
.feature__heading img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature__items {
  margin-top: clamp(3.438rem, 14.67vw, 6.875rem);
}

.feature__item {
  background-color: #FFF;
}
.feature__item:not(:first-child) {
  margin-top: clamp(2rem, 8.53vw, 4rem);
}

.feature__item-photo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature__item-title {
  margin-top: clamp(0.813rem, 3.47vw, 1.625rem);
  text-align: center;
  color: #a07e20;
  font-size: clamp(1.5rem, 6.4vw, 3rem);
  line-height: 1.3333333333;
}

.feature__item-body {
  padding: clamp(1.563rem, 6.67vw, 3.125rem) clamp(0.938rem, 4vw, 1.875rem) clamp(1.688rem, 7.2vw, 3.375rem);
}

.feature__item-number {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: clamp(0.188rem, 0.8vw, 0.375rem);
  border-bottom: 1.5px solid #a07e20;
  color: #a07e20;
  font-size: clamp(0.875rem, 3.73vw, 1.75rem);
  line-height: 1;
}
.feature__item-number span.lg {
  font-size: clamp(1.875rem, 8vw, 3.75rem);
}

.feature__item-textarea {
  margin-top: clamp(1.875rem, 8vw, 3.75rem);
}

.feature__item-text {
  font-size: clamp(0.938rem, 4vw, 1.875rem);
  line-height: 1.5;
}
.feature__item-text span.deco {
  color: #a81030;
  text-decoration: underline;
}

/* flow
--------------------------------------------- */
.flow {
  background-color: #fdf8da;
}

.flow__heading img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.flow__content {
  padding: clamp(2.5rem, 10.67vw, 5rem) 0 clamp(4.563rem, 19.47vw, 9.125rem);
}

.flow__inner {
  width: 88%;
  margin-inline: auto;
}

.flow__item:not(:first-child) {
  margin-top: clamp(2.125rem, 9.07vw, 4.25rem);
}
.flow__item:last-of-type .flow__item-body {
  padding: 0;
}
.flow__item:last-of-type .flow__item-body::after {
  content: none;
}

.flow__item-title {
  width: clamp(4.375rem, 18.67vw, 8.75rem);
  margin-inline: auto;
  position: relative;
}

.flow__item-title-pic {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 2;
}

.flow__step-deco {
  position: absolute;
  display: inline-block;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 1;
}
.flow__step-deco.flow__step-deco--01 {
  top: 0px;
  left: calc(clamp(2.656rem, 11.33vw, 5.313rem) * -1);
  width: clamp(4.125rem, 17.6vw, 8.25rem);
}
.flow__step-deco.flow__step-deco--02 {
  top: 10px;
  right: calc(clamp(1.656rem, 7.07vw, 3.313rem) * -1);
  width: clamp(4.125rem, 17.6vw, 8.25rem);
}
.flow__step-deco.flow__step-deco--03 {
  top: clamp(0.156rem, 0.67vw, 0.313rem);
  left: clamp(2.719rem, 11.6vw, 5.438rem);
  width: clamp(4.125rem, 17.6vw, 8.25rem);
}

.flow__item-body {
  margin-top: clamp(1.25rem, 5.33vw, 2.5rem);
  padding: 0 0 clamp(3.75rem, 16vw, 7.5rem);
  position: relative;
}
.flow__item-body::before, .flow__item-body::after {
  content: "";
  position: absolute;
  display: inline-block;
}
.flow__item-body::before {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.flow__item-body::after {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  bottom: 0;
  left: 0;
  background-image: url(../img/flow-step-line.webp);
  width: 100%;
  height: 34px;
}
.flow__item-body.flow__item-body--01::before {
  background-image: url(../img/flow-step01-pic.webp);
  width: clamp(4.219rem, 18vw, 8.438rem);
  height: clamp(3.281rem, 14vw, 6.563rem);
  left: 0;
  top: 0;
}
.flow__item-body.flow__item-body--02::before {
  background-image: url(../img/flow-step02-pic.webp);
  width: clamp(3.375rem, 14.4vw, 6.75rem);
  height: clamp(2.938rem, 12.53vw, 5.875rem);
  bottom: clamp(2.75rem, 11.73vw, 5.5rem);
  left: 0;
}
.flow__item-body.flow__item-body--03::before {
  background-image: url(../img/flow-step03-pic.webp);
  width: clamp(3rem, 12.8vw, 6rem);
  height: clamp(3.438rem, 14.67vw, 6.875rem);
  bottom: clamp(2.719rem, 11.6vw, 5.438rem);
  right: 0;
}

.flow__item-step-title {
  text-align: center;
  font-size: clamp(2rem, 8.53vw, 4rem);
  line-height: 1.1428571429;
}

.flow__item-textarea {
  margin-top: clamp(1.125rem, 4.8vw, 2.25rem);
}

.flow__item-text {
  font-size: clamp(1.125rem, 4.8vw, 2.25rem);
  line-height: 1.5714285714;
  text-align: center;
}
.flow__item-text span.deco,
.flow__item-text a.deco {
  color: #a81030;
  text-decoration: underline;
}

/* profile
--------------------------------------------- */
.profile__top {
  background-image: url(../img/profile-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: clamp(1.75rem, 7.47vw, 3.5rem) 0 86px;
}

.profile__bottom {
  margin-top: -50px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 400px) {
  .profile__bottom {
    margin-top: -30px;
  }
}

.profile__bottom-contents {
  padding: 220px 0 120px;
  background-image: url(../img/profile-bg02.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 400px) {
  .profile__bottom-contents {
    padding: 160px 0 120px;
  }
}

.profile__frame {
  width: 95%;
  margin-inline: auto;
}
.profile__frame img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile__result01 {
  width: 90%;
  margin: clamp(2rem, 8.53vw, 4rem) auto 0;
}
.profile__result01 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile__result02 {
  width: 86%;
  margin: 0 auto;
}
.profile__result02 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile__medal {
  width: 77%;
  margin: clamp(2.313rem, 9.87vw, 4.625rem) auto 0;
}
.profile__medal img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile__result03 {
  width: 85%;
  margin: clamp(2.188rem, 9.33vw, 4.375rem) auto 0;
}
.profile__result03 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile__desc {
  margin-top: clamp(1.125rem, 4.8vw, 2.25rem);
}

.profile__desc-text {
  text-align: center;
  font-size: clamp(0.875rem, 3.73vw, 1.75rem);
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.profile__desc-text span.md {
  font-size: clamp(0.938rem, 4vw, 1.875rem);
  line-height: 2.0666666667;
}
.profile__desc-text span.colored {
  color: #a07e20;
  font-size: clamp(1.25rem, 5.33vw, 2.5rem);
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.profile__bottom-photo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* message
--------------------------------------------- */
.message {
  padding: clamp(3.563rem, 15.2vw, 7.125rem) 0 clamp(7.188rem, 30.67vw, 14.375rem);
  background-image: url(../img/message-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.message::before, .message::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.message::before {
  background-image: url(../img/message-deco-bottom-left.webp);
  width: clamp(7.313rem, 31.2vw, 14.625rem);
  height: clamp(6.25rem, 26.67vw, 12.5rem);
  left: clamp(0.625rem, 2.67vw, 1.25rem);
  bottom: clamp(1.125rem, 4.8vw, 2.25rem);
}
.message::after {
  background-image: url(../img/message-deco-bottom-right.webp);
  width: clamp(7.313rem, 31.2vw, 14.625rem);
  height: clamp(6.25rem, 26.67vw, 12.5rem);
  right: clamp(0.625rem, 2.67vw, 1.25rem);
  bottom: clamp(1.125rem, 4.8vw, 2.25rem);
}

.message__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.message__heading .left-pic {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 clamp(3.75rem, 16vw, 7.5rem);
          flex: 0 0 clamp(3.75rem, 16vw, 7.5rem);
  width: clamp(3.75rem, 16vw, 7.5rem);
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  -webkit-transform: translateY(calc(clamp(1.25rem, 5.33vw, 2.5rem) * -1));
          transform: translateY(calc(clamp(1.25rem, 5.33vw, 2.5rem) * -1));
}
.message__heading .right-pic {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 clamp(4.063rem, 17.33vw, 8.125rem);
          flex: 0 0 clamp(4.063rem, 17.33vw, 8.125rem);
  width: clamp(4.063rem, 17.33vw, 8.125rem);
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  -webkit-transform: translateY(calc(clamp(1.25rem, 5.33vw, 2.5rem) * -1));
          transform: translateY(calc(clamp(1.25rem, 5.33vw, 2.5rem) * -1));
}
.message__heading span.text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: inline-block;
  text-align: center;
  padding: 0 clamp(0.625rem, 2.67vw, 1.25rem);
  font-size: clamp(1.75rem, 7.47vw, 3.5rem);
  line-height: 1.0476190476;
  letter-spacing: 0.06em;
  padding-bottom: clamp(0.5rem, 2.13vw, 1rem);
  position: relative;
}
.message__heading span.text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-block;
  width: 100%;
  height: clamp(0.125rem, 0.53vw, 0.25rem);
  background-image: url(../img/profile-line.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.message__textarea.textarea02 {
  margin-top: clamp(2.813rem, 12vw, 5.625rem);
}

.message__text {
  text-align: center;
  font-size: clamp(1.063rem, 4.53vw, 2.125rem);
  line-height: 1.6176470588;
  letter-spacing: 0.02em;
}
.message__text span.colored {
  color: #a81030;
}
.message__text span.lg {
  font-size: clamp(1.563rem, 6.67vw, 3.125rem);
  line-height: 1.48;
}

.message__photo {
  width: 90%;
  margin: clamp(2.813rem, 12vw, 5.625rem) auto 0;
}
.message__photo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* faq
--------------------------------------------- */
.faq__contents {
  background-image: url(../img/faq-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.faq__content {
  width: 95%;
  margin-inline: auto;
  padding: clamp(3.125rem, 13.33vw, 6.25rem) clamp(1.438rem, 6.13vw, 2.875rem) clamp(5.125rem, 21.87vw, 10.25rem);
  background-color: #FFF;
}

.faq__heading img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.faq__list-item:not(:first-child) {
  margin-top: clamp(3.125rem, 13.33vw, 6.25rem);
}
.faq__list-item:not(:first-child) .faq__list-desc {
  display: none;
}

.faq__list-term {
  color: #a07e20;
  font-size: clamp(1.188rem, 5.07vw, 2.375rem);
  line-height: 1.3947368421;
  padding-bottom: clamp(2rem, 8.53vw, 4rem);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(0.438rem, 1.87vw, 0.875rem);
  cursor: pointer;
}
.faq__list-term::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: clamp(0.813rem, 3.47vw, 1.625rem);
  background-image: url(../img/faq-arrow.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: inline-block;
  width: clamp(0.875rem, 3.73vw, 1.75rem);
  height: clamp(0.625rem, 2.67vw, 1.25rem);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.faq__list-term.js-is-open::after {
  -webkit-transform: translateX(-50%) rotate(180deg);
          transform: translateX(-50%) rotate(180deg);
}
.faq__list-term span.question {
  font-size: clamp(1.344rem, 5.73vw, 2.688rem);
  line-height: 1.0465116279;
}

.faq__list-desc {
  font-size: clamp(1rem, 4.27vw, 2rem);
  line-height: 1.46875;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(0.438rem, 1.87vw, 0.875rem);
}
.faq__list-desc span.answer {
  color: #a81030;
  font-size: clamp(1.344rem, 5.73vw, 2.688rem);
  line-height: 1.0465116279;
}

/* contact + footer */
.page-bottom {
  padding: clamp(4.813rem, 20.53vw, 9.625rem) 0 clamp(2.313rem, 9.87vw, 4.625rem);
  background-image: url(../img/contact-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* contact
--------------------------------------------- */
.contact__heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  padding: 0 clamp(0.313rem, 1.33vw, 0.625rem) clamp(0.625rem, 2.67vw, 1.25rem);
  font-size: clamp(1.875rem, 8vw, 3.75rem);
  color: #FFF;
  line-height: 1.45;
  position: relative;
}
.contact__heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-image: url(../img/contact-title-line.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.contact__inner {
  width: 85%;
  margin-inline: auto;
}

/* form */
.form__wrap {
  margin-top: clamp(2.813rem, 12vw, 5.625rem);
}

.form__notice {
  margin-top: clamp(1.25rem, 5.33vw, 2.5rem);
}

.form__notice-text {
  font-size: clamp(1.063rem, 4.53vw, 2.125rem);
  color: #FFF;
  line-height: 1.5588235294;
  letter-spacing: 0.02em;
}
.form__notice-text span.underline {
  border-bottom: 2px solid #FFF;
}

.form__no {
  display: block;
  padding-left: clamp(0.313rem, 1.33vw, 0.625rem);
  color: #FFF;
  font-size: clamp(0.813rem, 3.47vw, 1.625rem);
}

.wpcf7-not-valid-tip {
  font-size: clamp(0.938rem, 4vw, 1.875rem);
}

.form__privacy {
  margin-top: clamp(2.625rem, 11.2vw, 5.25rem);
  border: 1px solid #FFF;
  padding: clamp(1.438rem, 6.13vw, 2.875rem) clamp(1.25rem, 5.33vw, 2.5rem) clamp(1.344rem, 5.73vw, 2.688rem);
}

.form__privacy-text01,
.form__privacy-text02 {
  color: #FFF;
  font-size: clamp(0.875rem, 3.73vw, 1.75rem);
  line-height: 1.5714285714;
}

.form__privacy-text02 {
  margin-top: clamp(1.75rem, 7.47vw, 3.5rem);
}

.form__privacy-link {
  color: #efd486;
  font-size: clamp(1.125rem, 4.8vw, 2.25rem);
  line-height: 1.3888888889;
  border-bottom: 2px solid #efd486;
}

.form {
  /* テキスト */
  /* ラジオボタン */
}
.form input[type=text],
.form input[type=tel],
.form input[type=email],
.form textarea {
  width: 100%;
  padding: 8px;
  background-color: #FFF;
  font-size: clamp(0.938rem, 4vw, 1.875rem);
}
.form input[type=text],
.form input[type=tel],
.form input[type=email] {
  height: clamp(2.438rem, 10.4vw, 4.875rem);
}
.form textarea {
  height: clamp(9.781rem, 41.73vw, 19.563rem);
}
.form input[type=radio] {
  position: absolute;
  opacity: 0;
}
.form input[type=radio] + span {
  display: inline-block;
  padding-left: clamp(1.563rem, 6.67vw, 3.125rem);
  font-size: clamp(0.938rem, 4vw, 1.875rem);
  line-height: 1.9;
  color: #FFF;
  cursor: pointer;
  position: relative;
}
.form input[type=radio] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: clamp(0.375rem, 1.6vw, 0.75rem);
  display: inline-block;
  width: clamp(1.188rem, 5.07vw, 2.375rem);
  height: clamp(1.188rem, 5.07vw, 2.375rem);
  border-radius: 50%;
  background-color: #FFF;
}
.form input[type=radio] + span span.sm {
  display: inline-block;
  margin-left: clamp(0.438rem, 1.87vw, 0.875rem);
  font-size: clamp(0.813rem, 3.47vw, 1.625rem);
  line-height: 1.8461538462;
}
.form input[type=radio]:checked + span::after {
  content: "";
  position: absolute;
  top: clamp(0.594rem, 2.53vw, 1.188rem);
  left: clamp(0.219rem, 0.93vw, 0.438rem);
  display: inline-block;
  width: clamp(0.781rem, 3.33vw, 1.563rem);
  height: clamp(0.781rem, 3.33vw, 1.563rem);
  background-color: #333;
  border-radius: 50%;
}

.form__acceptance-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.438rem, 1.87vw, 0.875rem);
}

.form__acceptance-item,
.wpcf7-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form__item:not(:first-child) {
  margin-top: clamp(2.5rem, 10.67vw, 5rem);
}

.form__label-text {
  color: #FFF;
  font-size: clamp(0.938rem, 4vw, 1.875rem);
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__label-text.inline-block {
  display: inline-block;
}

.form__btn-wrap {
  margin-top: clamp(2.938rem, 12.53vw, 5.875rem);
  text-align: center;
}

.form__required {
  background-color: #a81030;
  color: #FFF;
  font-size: clamp(0.531rem, 2.27vw, 1.063rem);
  width: clamp(1.688rem, 7.2vw, 3.375rem);
  height: clamp(0.813rem, 3.47vw, 1.625rem);
  display: inline-grid;
  place-items: center;
  border-radius: clamp(0.125rem, 0.53vw, 0.25rem);
  text-align: center;
}
.form__required.ml16 {
  margin-left: clamp(0.5rem, 2.13vw, 1rem);
}
.form__required.align-center {
  position: relative;
  -webkit-transform: translateY(clamp(0.125rem, 0.53vw, 0.25rem));
          transform: translateY(clamp(0.125rem, 0.53vw, 0.25rem));
}
.form__required.translate-minus {
  position: relative;
  -webkit-transform: translateY(calc(clamp(0.25rem, 1.07vw, 0.5rem) * -1));
          transform: translateY(calc(clamp(0.25rem, 1.07vw, 0.5rem) * -1));
  margin-left: 0;
}

.form__control.acceptance {
  margin-top: clamp(0.938rem, 4vw, 1.875rem);
}
.form__control.mt10 {
  margin-top: clamp(0.313rem, 1.33vw, 0.625rem);
}

.form__item.acceptance .wpcf7-form-control-wrap {
  display: inline-block;
  margin-top: clamp(0.938rem, 4vw, 1.875rem);
}
.form__item.acceptance .wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.438rem, 1.87vw, 0.875rem);
}
.form__item.gender .wpcf7-form-control-wrap.mt10 {
  margin-top: clamp(0.313rem, 1.33vw, 0.625rem);
}
.form__item.gender .wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.438rem, 1.87vw, 0.875rem);
}
.form__item.option .wpcf7-form-control-wrap.mt10 {
  margin-top: clamp(0.313rem, 1.33vw, 0.625rem);
}
.form__item.option .wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.438rem, 1.87vw, 0.875rem);
}
.form__item.where .wpcf7-form-control-wrap.mt10 {
  margin-top: clamp(0.313rem, 1.33vw, 0.625rem);
}
.form__item.where .wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.438rem, 1.87vw, 0.875rem);
}

/* privacy policy
--------------------------------------------- */
.policy {
  padding: clamp(3.125rem, 13.33vw, 6.25rem) 0;
  width: 90%;
  max-width: 750px;
  margin-inline: auto;
}

.policy__heading {
  font-size: clamp(1.875rem, 1.625rem + 1.07vw, 2.125rem);
}

.policy__textarea:not(:first-child) {
  margin-top: 32px;
}

.policy__text {
  font-size: clamp(1rem, 0.875rem + 0.53vw, 1.125rem);
  line-height: 1.7;
}

.policy__sub-text {
  margin-top: 16px;
  font-size: clamp(1rem, 0.875rem + 0.53vw, 1.125rem);
}

/* サンクスページ */
.thanks {
  min-height: 100vh;
  background-image: url(../img/thanks-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: clamp(5.781rem, 24.67vw, 11.563rem) 16px clamp(3.75rem, 16vw, 7.5rem);
}

.thanks__title {
  text-align: center;
  color: #f7e78f;
  font-size: clamp(1.594rem, 6.8vw, 3.188rem);
  line-height: 1.5660377358;
  position: relative;
}
.thanks__title::before {
  content: "";
  position: absolute;
  top: calc(clamp(0.938rem, 4vw, 1.875rem) * -1);
  left: clamp(1.406rem, -0.625rem + 8.67vw, 3.438rem);
  background-image: url(../img/thanks-deco-text.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: inline-block;
  width: clamp(4.031rem, 17.2vw, 8.063rem);
  height: clamp(2.563rem, 10.93vw, 5.125rem);
}

.thanks__deco {
  width: min(clamp(16.875rem, 72vw, 33.75rem), 100%);
  margin: clamp(5.125rem, 21.87vw, 10.25rem) auto;
}
.thanks__deco img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.thanks__message {
  font-size: clamp(0.969rem, 4.13vw, 1.938rem);
  text-align: center;
  line-height: 1.7419354839;
  color: #FFF;
}

.thanks__btn-wrap {
  margin-top: clamp(2.813rem, 12vw, 5.625rem);
  text-align: center;
}

.thanks__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(0.75rem, 3.2vw, 1.5rem);
  background-color: #FFF;
  border-radius: clamp(1.563rem, 6.67vw, 3.125rem);
  max-width: clamp(10.781rem, 46vw, 21.563rem);
  width: 100%;
  padding: clamp(0.75rem, 3.2vw, 1.5rem) clamp(0.313rem, 1.33vw, 0.625rem);
}
.thanks__btn img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 clamp(1.094rem, 4.67vw, 2.188rem);
          flex: 0 0 clamp(1.094rem, 4.67vw, 2.188rem);
  width: clamp(1.094rem, 4.67vw, 2.188rem);
  -o-object-fit: contain;
     object-fit: contain;
}
.thanks__btn span.text {
  color: #181c5d;
  font-size: clamp(0.938rem, 4vw, 1.875rem);
  line-height: 1.5333333333;
}/*# sourceMappingURL=style.css.map */