@charset "UTF-8";
/*----------------- 共通 -------------------*/
/*-----------------------------------------
    color
-----------------------------------------*/
/*-----------------------------------------
    font
-----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
/*-----------------------------------------
    メディアクエリ
-----------------------------------------*/
/*-----------------------------------------

リセット

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

html,
body {
  padding: 0;
  margin: 0;
  font-size: 62.5%;
}

@media screen and (min-width: 768px) and (max-width: 1440px) {
  html {
    font-size: 0.625vw;
  }
}
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
  font-weight: normal;
}

/*-----------------------------------------

全体指定

----------------------------------------*/
.inner {
  width: 960px;
  margin: 0 auto;
  max-width: 75%;
}
@media (max-width: 767px) {
  .inner {
    width: 100%;
    max-width: 90%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

body {
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  background: #fff;
  color: #444444;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
}

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

@media (min-width: 767px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
li {
  list-style: none;
}

dt, dd {
  margin: 0;
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.btn {
  display: inline-block;
  font-size: clamp(10px, 1.3vw, 14px);
  font-weight: 500;
  letter-spacing: 0.05rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 1.5rem 0;
  width: clamp(115px, 14vw, 200px);
  background: linear-gradient(90deg, rgb(208, 118, 204) 0%, rgb(106, 60, 171) 100%);
  background-size: 150% 100%;
  background-position: left center;
  transition: background-position 0.6s ease;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.5vw;
  transform: translateY(-50%);
  width: 2.5vw;
  height: 2.5vw;
  background: url(../img/btn-arrow.svg) no-repeat center center/contain;
  transition: all 0.6s ease 0s;
}
.btn:hover {
  background-position: right center;
}
.btn:hover:after {
  right: -2vw;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  gap: 2rem;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding-left: 4rem;
  padding-right: 4rem;
  z-index: 10;
}
@media (max-width: 767px) {
  .header {
    height: 60px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.header__logo-area {
  width: clamp(110px, 14vw, 190px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4rem;
}
.header__nav .header-nav {
  display: flex;
  align-items: center;
  justify-content: start;
}
@media (max-width: 767px) {
  .header__nav .header-nav {
    display: none;
  }
}
.header__nav .header-nav a {
  padding: 0 10px;
  font-size: clamp(10px, 1.3vw, 15px);
  letter-spacing: 0.02rem;
  transition: all 0.6s ease 0s;
}
.header__nav .header-nav a:hover {
  color: #D076CC;
}
@media (max-width: 767px) {
  .header__button {
    display: none;
  }
}

/*-----------------------------------------
    //drawer
-----------------------------------------*/
.drawer__icon {
  position: fixed;
  top: 1.7rem;
  right: 2.1rem;
  z-index: 100;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  display: none;
}
@media (max-width: 767px) {
  .drawer__icon {
    display: block;
  }
}
.drawer__icon.is-active span:nth-child(1) {
  transform: translateX(-50%) rotate(-15deg);
}
.drawer__icon.is-active span:nth-child(2) {
  transform: translateX(-50%) rotate(15deg);
  top: 10px;
}

.drawer__bars {
  width: 40px;
  height: 12px;
  position: relative;
  cursor: pointer;
}
.drawer__bars span {
  width: 100%;
  height: 1px;
  border-radius: 1px;
  background: #8B668A;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease 0s;
}
.drawer__bars span:nth-child(1) {
  top: 9px;
}
.drawer__bars span:nth-child(2) {
  top: 16px;
}

.drawer__content {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 99;
  display: none;
  padding: 2rem;
  background: #fff;
  overflow-y: scroll;
}
.drawer__content::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: clamp(380px, 100vw, 780px);
  height: clamp(580px, 153.2vw, 1196px);
  background: url(../img/drawer-bgdeco.webp) no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 767px) {
  .drawer__content::before {
    width: clamp(368px, 100vw, 780px);
    height: clamp(560px, 153.2vw, 1196px);
  }
}
.drawer__content::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: 0;
  width: clamp(417px, 101vw, 780px);
  height: clamp(502px, 122vw, 944px);
  background: url(../img/drawer-bgdeco02.webp) no-repeat center center/contain;
  z-index: -2;
}
@media (max-width: 767px) {
  .drawer__content::after {
    bottom: -10%;
    width: clamp(370px, 101vw, 780px);
    height: clamp(453px, 122vw, 944px);
  }
}
.drawer__content .drawer-nav:not(:first-child) {
  margin-top: 8rem;
}
.drawer__content .drawer-nav li:not(:first-child) {
  margin-top: 15px;
}
.drawer__content .drawer-nav li a {
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.02rem;
  font-weight: 400;
  padding: 5px;
}

.drawer__inner {
  display: flex;
  justify-content: start;
  flex-direction: column;
  padding-top: 5rem;
  height: 100%;
}

.drawer__button {
  margin-top: 80px;
  text-align: center;
}

.drawer__btn {
  padding: 0;
  height: clamp(60px, 9vw, 70px);
  line-height: clamp(60px, 9vw, 70px);
  width: clamp(280px, 43vw, 330px);
  font-size: clamp(18px, 3.6vw, 22px);
}
.drawer__btn:after {
  right: -25px;
  width: 50px;
  height: 50px;
}
.drawer__btn:hover:after {
  right: -25px;
}
.drawer__btn .fukidasi {
  position: absolute;
  top: -30%;
  left: 10px;
  color: #D076CC;
  background: #fff;
  border-radius: 30px;
  text-align: center;
  line-height: 1.6;
  padding: 6px 20px;
  border: 1px solid #D076CC;
  letter-spacing: 0.1rem;
  font-size: clamp(10px, 0.9vw, 12px);
}
.drawer__btn .fukidasi::after {
  content: "";
  position: absolute;
  bottom: -10.95px;
  left: 30px;
  width: 10px;
  height: 11px;
  background: url(../img/fukidasi-arrow.svg) no-repeat center center/contain;
}

/*-----------------------------------------
    section
-----------------------------------------*/
.section__head--center {
  text-align: center;
}
.section__title {
  display: flex;
  align-items: center;
  font-size: clamp(28px, 3.5vw, 50px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.08rem;
  margin-top: 1.5px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .section__title {
    display: block;
    margin-top: 0;
    line-height: 1;
    font-size: clamp(26px, 4.2vw, 32px);
  }
}
.section__title--center {
  text-align: center;
  justify-content: center;
}
.section__title .img {
  display: inline-block;
  width: 34rem;
  max-width: 340px;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .section__title .img {
    width: clamp(170px, 29vw, 220px);
    max-width: none;
  }
}
.section__title .img #logo {
  fill: #444444;
}
.section__lead {
  font-family: "futura-pt", sans-serif;
  font-size: clamp(13px, 1.4vw, 20px);
  letter-spacing: 0.08rem;
  color: #D076CC;
}
@media (max-width: 767px) {
  .section__lead {
    font-size: clamp(12px, 2.3vw, 14px);
  }
}

/*-----------------------------------------
    contact
-----------------------------------------*/
.contact {
  padding-top: clamp(130px, 20vw, 190px);
  padding-bottom: clamp(60px, 8vw, 100px);
  position: relative;
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6.8vw;
  background: url(../img/bg-deco02.webp) no-repeat center bottom/cover;
  z-index: 1;
}
.contact::after {
  content: "";
  position: absolute;
  top: -15%;
  left: 0;
  width: 56.8rem;
  height: 94.2rem;
  background: url(../../img/contact-bgdeco.webp) no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 767px) {
  .contact::after {
    width: 74vw;
    height: 123vw;
  }
}
@media (max-width: 767px) {
  .contact__inner {
    max-width: 100%;
  }
}
.contact__content {
  margin-top: 50px;
}
.contact__lead {
  font-size: clamp(13px, 1.3vw, 16px);
  text-align: center;
  letter-spacing: 0.05rem;
}
.contact__form {
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.05);
  padding: 6rem 10rem;
  position: relative;
  background: #fff;
}
@media (max-width: 767px) {
  .contact__form {
    padding: 4rem 2rem;
  }
}
.contact__form::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, rgba(221, 247, 255, 0.3) 1%, rgba(238, 206, 239, 0.3) 100%);
  filter: blur(30px);
  z-index: -1;
  border-radius: 10px;
}

/*----------------- お問い合わせフォーム -------------------*/
.contact-form__row {
  display: flex;
  align-items: center;
  justify-content: start;
}
@media (max-width: 767px) {
  .contact-form__row {
    flex-direction: column;
  }
}
.contact-form__row:not(:first-child) {
  margin-top: clamp(20px, 3vw, 40px);
}

/*----------------- label -------------------*/
.contact-form__label {
  width: 210px;
  margin: 0;
  padding: 0;
  font-size: clamp(16px, 1.3vw, 18px);
  font-size: clamp(14px, 1.3vw, 16px);
}
@media (max-width: 767px) {
  .contact-form__label {
    width: 100%;
    font-size: clamp(12px, 3.6vw, 14px);
  }
}
.contact-form__label label.is-required {
  display: inline-block;
  position: relative;
  padding-right: clamp(40px, 4vw, 6rem);
}
.contact-form__label label.is-required::after {
  content: "※必須";
  position: absolute;
  right: 0;
  top: 45%;
  transform: translateY(-50%);
  font-size: 12px;
  text-align: center;
  color: #D076CC;
}
@media (max-width: 767px) {
  .contact-form__label label.is-required::after {
    font-size: 10px;
  }
}

.contact__text-area {
  margin-top: 3.6rem;
}

/*----------------- input -------------------*/
.contact-form__input {
  width: calc(100% - 210px);
  font-size: clamp(13px, 1.3vw, 14px);
}
@media (max-width: 767px) {
  .contact-form__input {
    width: 100%;
    font-size: clamp(13px, 2.3vw, 14px);
  }
}
.contact-form__input [type=text] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border: 1px solid #999999;
  border-radius: 1px;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: clamp(13px, 1.3vw, 14px);
  width: 100%;
  height: clamp(25px, 2.3vw, 30px);
  line-height: clamp(25px, 2.3vw, 30px);
  padding: 0 1.6rem;
  outline: none;
  transition: all 0.6s ease 0s;
}
.contact-form__input [type=text]::-moz-placeholder {
  color: #999;
}
.contact-form__input [type=text]::placeholder {
  color: #999;
}
.contact-form__input [type=text]:focus, .contact-form__input [type=text]:hover {
  border-color: #D076CC;
}
.contact-form__input [type=tel] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border: 1px solid #999999;
  border-radius: 1px;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: clamp(13px, 1.3vw, 14px);
  width: 100%;
  height: clamp(25px, 2.3vw, 30px);
  line-height: clamp(25px, 2.3vw, 30px);
  padding: 0 1.6rem;
  outline: none;
  transition: all 0.6s ease 0s;
}
.contact-form__input [type=tel]::-moz-placeholder {
  color: #999;
}
.contact-form__input [type=tel]::placeholder {
  color: #999;
}
.contact-form__input [type=tel]:focus, .contact-form__input [type=tel]:hover {
  border-color: #D076CC;
}
.contact-form__input [type=email] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border: 1px solid #999999;
  border-radius: 1px;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: clamp(13px, 1.3vw, 14px);
  width: 100%;
  line-height: clamp(25px, 2.3vw, 30px);
  line-height: clamp(25px, 2.3vw, 30px);
  padding: 0 1.6rem;
  outline: none;
  transition: all 0.6s ease 0s;
}
.contact-form__input [type=email]::-moz-placeholder {
  color: #999;
}
.contact-form__input [type=email]::placeholder {
  color: #999;
}
.contact-form__input [type=email]:focus, .contact-form__input [type=email]:hover {
  border-color: #D076CC;
}
.contact-form__input [type=url] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border: 1px solid #999999;
  border-radius: 1px;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: clamp(13px, 1.3vw, 14px);
  width: 100%;
  line-height: clamp(25px, 2.3vw, 30px);
  line-height: clamp(25px, 2.3vw, 30px);
  padding: 0 1.6rem;
  outline: none;
  transition: all 0.6s ease 0s;
}
.contact-form__input [type=url]::-moz-placeholder {
  color: #999;
}
.contact-form__input [type=url]::placeholder {
  color: #999;
}
.contact-form__input [type=url]:focus, .contact-form__input [type=url]:hover {
  border-color: #D076CC;
}
.contact-form__input textarea {
  margin-top: 5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: vertical;
  box-shadow: none;
  border: 1px solid #999999;
  border-radius: 1px;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: clamp(13px, 1.3vw, 14px);
  line-height: 1.6;
  width: 100%;
  height: 14.9rem;
  padding: 1rem 1.6rem;
  outline: none;
  transition: all 0.6s ease 0s;
}
.contact-form__input textarea::-moz-placeholder {
  color: #999;
}
.contact-form__input textarea::placeholder {
  color: #999;
}
.contact-form__input textarea:focus, .contact-form__input textarea:hover {
  border-color: #D076CC;
}

.contact-form__input-label {
  font-size: clamp(13px, 1.3vw, 14px);
}

/*----------------- ラジオボタン -------------------*/
.contact-form__radio {
  position: relative;
}
.contact-form__radio label {
  margin-top: 1.2rem;
  display: block;
}
.contact-form__radio label:not(:first-child) {
  margin-top: 1.2rem;
}
.contact-form__radio [type=radio] {
  position: absolute;
  left: 1px;
  opacity: 0;
  transition: all 0.6s ease 0s;
}
.contact-form__radio .wpcf7-list-item-label {
  display: inline-block;
  font-size: 14px;
  padding-left: clamp(32px, 3.5vw, 38px);
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px) {
  .contact-form__radio .wpcf7-list-item-label {
    margin-top: 2px;
    margin-right: 32px;
  }
}
.contact-form__radio .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(18px, 3vw, 20px);
  height: clamp(18px, 3vw, 20px);
  border: 1px solid #999999;
  background: #fff;
  border-radius: 50%;
  transition: all 0.6s ease 0s;
}
@media (max-width: 767px) {
  .contact-form__radio .wpcf7-list-item-label::before {
    width: 20px;
    height: 20px;
  }
}
.contact-form__radio .wpcf7-list-item-label:hover::before {
  content: "";
  border: 1px solid #D076CC;
}
.contact-form__radio .wpcf7-list-item-label:active::before {
  content: "";
  background: #D076CC;
}
.contact-form__radio .wpcf7-list-item-label::after {
  content: "";
  width: clamp(8px, 2vw, 10px);
  height: clamp(8px, 2vw, 10px);
  background: #D076CC;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  display: none;
}
@media (max-width: 767px) {
  .contact-form__radio .wpcf7-list-item-label::after {
    left: clamp(0.6rem, 1.1vw, 0.6rem);
    width: 1rem;
    height: 1rem;
  }
}
.contact-form__radio [type=radio]:checked + span::after {
  display: block;
}

.contact-form__text {
  margin-top: 7.2rem;
  font-size: clamp(13px, 1.3vw, 14px);
  line-height: 1.8;
  letter-spacing: 0.05rem;
  text-align: center;
}
@media (max-width: 767px) {
  .contact-form__text {
    margin-top: 5rem;
    font-size: clamp(13px, 3.2rem, 14px);
  }
}
.contact-form__text a {
  text-decoration: underline;
  transition: all 0.6s ease 0s;
}
.contact-form__text a:hover {
  opacity: 0.6;
}

/*----------------- ボタン -------------------*/
.contact__button-box {
  margin-top: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.2rem;
}
@media (max-width: 767px) {
  .contact__button-box {
    flex-direction: column;
    gap: 2.2rem;
  }
}

.contact__button {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.contact__btn {
  cursor: pointer;
  display: block;
  text-align: center;
  letter-spacing: 0.1rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  color: #fff;
  font-weight: 500;
  width: clamp(260px, 28vw, 400px);
  height: clamp(50px, 4vw, 60px);
  line-height: clamp(50px, 4vw, 60px);
  padding: 0;
  font-size: clamp(14px, 1.4vw, 18px);
  background: #D1637A;
  transition: all 0.6s ease 0s;
}
.contact__btn:after {
  display: none;
}
@media (max-width: 767px) {
  .contact__btn {
    width: 280px;
    height: clamp(54px, 8.4vw, 64px);
    line-height: clamp(54px, 8.4vw, 64px);
    font-size: clamp(14px, 2.4vw, 18px);
    max-width: 100%;
  }
}
.contact__btn:hover {
  opacity: 0.6;
}

/*-----------------------------------------
    thanks
-----------------------------------------*/
.thanks {
  padding-top: clamp(130px, 14vw, 200px);
  padding-bottom: clamp(60px, 7vw, 100px);
}
@media (max-width: 767px) {
  .thanks {
    padding-top: clamp(80px, 15vw, 110px);
  }
}
.thanks__lead {
  margin-top: 3.2rem;
  text-align: center;
  font-size: clamp(13px, 1.3vw, 14px);
  letter-spacing: 0.05rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .thanks__lead {
    font-size: clamp(13px, 2.3vw, 14px);
  }
}
.thanks__button {
  margin-top: 6.4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .thanks__button {
    margin-top: 4rem;
  }
}
.thanks__btn:after {
  display: none;
}

/*-----------------------------------------
contact-form7 調整
-----------------------------------------*/
.wpcf7-form-control-wrap {
  padding-left: 0;
}
.wpcf7-form-control-wrap:before {
  display: none;
}

.wpcf7-radio:before {
  display: none;
}

.wpcf7-radio .wpcf7-list-item {
  display: block;
  font-size: 14px;
  position: relative;
  cursor: pointer;
  margin-left: 0;
}
.wpcf7-radio .wpcf7-list-item:not(:first-child) {
  margin-top: 1.2rem;
}
.wpcf7-radio .wpcf7-list-item:before {
  display: none;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  font-size: clamp(14px, 1.3vw, 16px);
}

input:-internal-autofill-selected {
  background: #FCF3FC !important;
}

.to-top {
  position: fixed;
  right: 2rem;
  bottom: 3.8rem;
  z-index: 20;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .to-top {
    right: 1rem;
    bottom: 9.6rem;
  }
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top .to-top__icon img {
  width: clamp(60px, 4vw, 80px);
  height: clamp(60px, 4vw, 80px);
  transition: all 0.3s ease 0s;
  transform: rotate(270deg);
}
.to-top .to-top__icon img:hover {
  opacity: 0.7;
}

.footer {
  padding-top: clamp(40px, 4vw, 60px);
  padding-bottom: clamp(40px, 4vw, 60px);
  background: #EECEEF;
}
.footer__inner {
  width: 1080px;
  max-width: 85%;
}
.footer__content .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__content .flex {
    align-items: start;
    flex-direction: column;
    gap: 6rem;
  }
}
.footer__content .flex .left .copy {
  margin-top: 7rem;
}
.footer__content .flex .left .copy p {
  font-size: 10px;
  letter-spacing: 0.1rem;
}
.footer__logo-area {
  width: clamp(130px, 14vw, 190px);
}
.footer__button {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .footer__button {
    margin-top: 20px;
  }
}
.footer__btn {
  font-size: clamp(14px, 1.5vw, 20px);
  padding: 2.2rem 0;
  width: clamp(220px, 23vw, 320px);
}
@media (max-width: 767px) {
  .footer__btn {
    height: clamp(45px, 10vw, 70px);
    line-height: clamp(45px, 10vw, 70px);
    width: clamp(200px, 43vw, 330px);
    font-size: clamp(14px, 2.6vw, 18px);
    padding: 0;
  }
}
.footer__btn:after {
  right: -3vw;
  width: 5.6vw;
  height: 5.6vw;
  background: url(../img/btn-arrow_p.svg) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .footer__btn:after {
    right: -25px;
    width: 50px;
    height: 50px;
  }
}
.footer__btn:hover:after {
  right: -4vw;
}
@media (max-width: 767px) {
  .footer__btn:hover:after {
    right: -25px;
  }
}
.footer__nav {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 11rem;
}
@media (max-width: 767px) {
  .footer__nav {
    flex-direction: column;
    gap: 6rem;
  }
}
.footer__nav .footer-nav li:not(:first-child) {
  margin-top: 10px;
}
.footer__nav .footer-nav a {
  font-size: clamp(13px, 1.3vw, 15px);
  letter-spacing: 0.05rem;
  padding: 5px 0;
  transition: all 0.6s ease 0s;
}
.footer__nav .footer-nav a:hover {
  color: #D076CC;
}

/*----------------- topページ -------------------*/
.mv {
  margin-top: 100px;
  padding-right: 40px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 89rem;
  height: 84rem;
  background: url(../img/mv-bgdeco.webp) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .mv::before {
    width: 94vw;
    height: 62vw;
    background-position: top left;
  }
}
@media (max-width: 767px) {
  .mv {
    margin-top: 60px;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.mv__content {
  position: relative;
  z-index: 2;
  width: 1220px;
  max-width: 95%;
  margin-left: auto;
}
@media (max-width: 767px) {
  .mv__content {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.mv__content .flex {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 4.3vw;
}
@media (max-width: 767px) {
  .mv__content .flex {
    flex-direction: column-reverse;
    align-items: start;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .mv__content .left {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .mv__content .left__text {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column-reverse;
    gap: clamp(30px, 8vw, 60px);
    margin-top: -17vw;
    z-index: 3;
    position: relative;
  }
}
.mv__content .left__text .mv-lead {
  font-size: clamp(16px, 1.7vw, 24px);
  letter-spacing: 0.5rem;
}
@media (max-width: 767px) {
  .mv__content .left__text .mv-lead {
    text-align: center;
    width: 100%;
    font-size: clamp(16px, 3.7vw, 24px);
    letter-spacing: 0.05rem;
  }
}
.mv__content .left__text .mv-lead span {
  font-weight: 600;
  color: #D076CC;
}
.mv__content .left__text .mv-text {
  margin-top: 40px;
  width: clamp(260px, 28vw, 400px);
}
@media (max-width: 767px) {
  .mv__content .left__text .mv-text {
    margin-top: 0px;
    width: clamp(170px, 49vw, 375px);
  }
}
.mv__content .left__button {
  margin-top: 8.5rem;
}
@media (max-width: 767px) {
  .mv__content .left__button {
    text-align: center;
    margin-top: 4.5rem;
  }
}
.mv__content .left__btn {
  height: clamp(60px, 5vw, 70px);
  line-height: clamp(60px, 5vw, 70px);
  width: clamp(280px, 25vw, 360px);
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0.08rem;
  position: relative;
  padding: 0;
}
@media (max-width: 767px) {
  .mv__content .left__btn {
    height: clamp(60px, 9vw, 70px);
    line-height: clamp(60px, 9vw, 70px);
    width: clamp(280px, 43vw, 330px);
    font-size: clamp(18px, 3.6vw, 22px);
  }
}
.mv__content .left__btn:after {
  right: -3vw;
  width: 5.5vw;
  height: 5.5vw;
}
@media (max-width: 767px) {
  .mv__content .left__btn:after {
    right: -25px;
    width: 50px;
    height: 50px;
  }
}
.mv__content .left__btn:hover:after {
  right: -4vw;
}
@media (max-width: 767px) {
  .mv__content .left__btn:hover:after {
    right: -25px;
  }
}
.mv__content .left__btn .fukidasi {
  position: absolute;
  top: -30%;
  left: 10px;
  color: #D076CC;
  background: #fff;
  border-radius: 30px;
  text-align: center;
  line-height: 1.6;
  padding: 6px 20px;
  border: 1px solid #D076CC;
  letter-spacing: 0.1rem;
  font-size: clamp(10px, 0.9vw, 12px);
}
@media (max-width: 767px) {
  .mv__content .left__btn .fukidasi {
    font-size: clamp(10px, 1.9vw, 12px);
  }
}
.mv__content .left__btn .fukidasi::after {
  content: "";
  position: absolute;
  bottom: -10.95px;
  left: 30px;
  width: 10px;
  height: 11px;
  background: url(../img/fukidasi-arrow.svg) no-repeat center center/contain;
}
.mv__content .right {
  position: relative;
}
@media (max-width: 767px) {
  .mv__content .right {
    width: 100%;
  }
}
.mv__content .right .slider-img {
  width: clamp(395px, 51.3vw, 730px);
  position: relative;
}
@media (max-width: 767px) {
  .mv__content .right .slider-img {
    width: 100%;
  }
}
.mv__content .right .slider-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 100%;
  height: 100%;
  background: url(../img/mv-frame.webp) no-repeat center center/contain;
  z-index: 2;
}
@media (max-width: 767px) {
  .mv__content .right .slider-img::before {
    left: 0;
    background: url(../img/mv-frame_sp.webp) no-repeat left center/contain;
  }
}
.mv__content .right .slider-img .swiper01 {
  border-radius: 30px;
  overflow: hidden;
  height: clamp(255px, 33.8vw, 480px);
}
@media (max-width: 767px) {
  .mv__content .right .slider-img .swiper01 {
    border-radius: 6vw;
    height: clamp(344px, 101vw, 830px);
  }
}
/*-----------------------------------------
    1441px~
-----------------------------------------*/
@media screen and (min-width: 1441px) {
  .mv__content .left__text .mv-lead {
    letter-spacing: 0.3rem;
  }
}
/* スクロール */
.scroll {
  position: absolute;
  left: 10%;
  bottom: 15rem;
  writing-mode: vertical-rl;
}
@media (max-width: 767px) {
  .scroll {
    right: 2rem;
    bottom: 4rem;
    left: auto;
  }
}

.scroll::before {
  animation: scroll 2s infinite;
  background-color: #D076CC;
  bottom: -15rem;
  content: "";
  height: 15rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 3;
}
@media (max-width: 767px) {
  .scroll::before {
    bottom: -10rem;
    height: 10rem;
  }
}

.scroll::after {
  background-color: #D9D9D9;
  bottom: -15rem;
  content: "";
  height: 15rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 2;
}
@media (max-width: 767px) {
  .scroll::after {
    bottom: -10rem;
    height: 10rem;
  }
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/*-----------------------------------------
    feature
-----------------------------------------*/
.feature {
  padding-top: 110px;
  padding-bottom: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .feature {
    padding-top: clamp(60px, 11vw, 80px);
  }
}
.feature::before {
  content: "";
  position: absolute;
  top: -19vw;
  right: 0;
  width: 43rem;
  height: 83rem;
  background: url(../img/feature-bgdeco.webp) no-repeat center center/contain;
  z-index: -1;
}
.feature__inner {
  width: 1200px;
  max-width: 90%;
}
@media (max-width: 767px) {
  .feature__inner {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .feature__title {
    display: flex;
  }
}
.feature__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3.5vw;
}
@media (max-width: 767px) {
  .feature__content {
    flex-direction: column;
  }
}
.feature__content .left {
  width: 52%;
  max-width: 550px;
}
@media (max-width: 767px) {
  .feature__content .left {
    width: 80%;
  }
}
.feature__content .imgflex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.5vw;
}
.feature__content .imgflex__left .img01 {
  margin-left: -2vw;
  margin-right: 2vw;
}
.feature__content .imgflex__left .img02 {
  margin-top: clamp(100px, 14vw, 200px);
}
@media (max-width: 767px) {
  .feature__content .imgflex__left .img02 {
    margin-top: clamp(40px, 10vw, 80px);
  }
}
.feature__content .right {
  margin-top: 2.1vw;
  width: 48%;
  max-width: 480px;
}
@media (max-width: 767px) {
  .feature__content .right {
    width: 100%;
  }
}
.feature__content .right__content {
  margin-top: 2.1vw;
}
.feature__content .right__content p {
  line-height: 1.8;
  letter-spacing: 0.08rem;
  font-size: clamp(14px, 1.4vw, 18px);
}
.feature__content .right__content p span {
  font-weight: 500;
  color: #D076CC;
}

/*-----------------------------------------
    worries
-----------------------------------------*/
.worries {
  padding-top: clamp(90px, 9.5vw, 130px);
  padding-bottom: clamp(100px, 10vw, 140px);
  position: relative;
  background: url(../img/worries-bg.webp) no-repeat center top/cover;
}
@media (max-width: 767px) {
  .worries {
    padding-top: clamp(90px, 17.5vw, 130px);
    padding-bottom: clamp(100px, 19vw, 140px);
  }
}
.worries::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(157, 125, 155, 0.9);
}
.worries::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 5.5vw;
  background: url(../img/bg-deco.webp) no-repeat center bottom/cover;
  z-index: 1;
}
.worries__inner {
  position: relative;
  z-index: 1;
  width: 1080px;
  max-width: 90%;
}
@media (max-width: 767px) {
  .worries__inner {
    max-width: 100%;
  }
}
.worries .section__title {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .worries .section__title {
    display: block;
    line-height: 1.4;
    margin-top: 0;
  }
}
.worries__title {
  font-weight: 600;
  color: #fff;
}
.worries__title .big {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
}
.worries__title .dot {
  background-image: radial-gradient(circle at center, rgb(255, 255, 255) 15%, transparent 18%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: 0.4em;
  margin-top: -0.4em;
}
.worries__content {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .worries__content {
    margin-top: 30px;
  }
}
.worries__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 767px) {
  .worries__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 20px;
  }
}
.worries__item {
  border: 1px solid #fff;
  background: transparent;
  border-radius: 100%;
  width: clamp(170px, 19vw, 260px);
  height: clamp(170px, 19vw, 260px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 767px) {
  .worries__item {
    margin-left: auto;
    margin-right: auto;
    width: clamp(160px, 34vw, 260px);
    height: clamp(160px, 34vw, 260px);
  }
}
.worries__item .text {
  color: #fff;
}
.worries__item .text p {
  font-size: clamp(11px, 1.4vw, 17px);
  letter-spacing: 0.02rem;
}
@media (max-width: 767px) {
  .worries__item .text p {
    font-size: clamp(11px, 2.3vw, 17px);
  }
}
.worries__item .text h3 {
  margin-top: 2rem;
  font-size: clamp(15px, 1.7vw, 24px);
  font-weight: 700;
  letter-spacing: 0.02rem;
}
@media (max-width: 767px) {
  .worries__item .text h3 {
    margin-top: 0.5rem;
    font-size: clamp(13px, 3.2vw, 24px);
  }
}
.worries__item .text h3 span {
  display: block;
  font-size: clamp(13px, 1.4vw, 18px);
}
@media (max-width: 767px) {
  .worries__item .text h3 span {
    font-size: clamp(12px, 2.4vw, 18px);
  }
}
.worries__bottom {
  position: absolute;
  bottom: -67%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(500px, 49vw, 700px);
  padding: 3rem 2rem 4rem;
  -o-border-image: url(../img/fukidashi.webp) 100 fill/100px/0px round;
     border-image: url(../img/fukidashi.webp) 100 fill/100px/0px round;
}
@media (max-width: 767px) {
  .worries__bottom {
    bottom: -33%;
    max-width: 90%;
    padding: 1rem 1rem 2rem;
  }
}
.worries__bottom .text {
  text-align: center;
}
.worries__bottom .text p {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
  .worries__bottom .text p {
    font-size: clamp(13px, 2.4vw, 18px);
  }
}
.worries__bottom .text p span {
  color: #D076CC;
}
.worries__bottom .text strong {
  margin-top: 10px;
  display: block;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 700;
}
@media (max-width: 767px) {
  .worries__bottom .text strong {
    font-size: clamp(15px, 2.7vw, 20px);
  }
}
.worries__bottom .text strong span {
  color: #D076CC;
}

/*-----------------------------------------
    strengths
-----------------------------------------*/
.strengths {
  padding-top: clamp(110px, 14vw, 190px);
  padding-bottom: clamp(80px, 9vw, 120px);
  position: relative;
}
@media (max-width: 767px) {
  .strengths {
    padding-top: clamp(100px, 21vw, 160px);
  }
}
.strengths::after {
  content: "";
  position: absolute;
  bottom: -14%;
  right: 0;
  width: 71rem;
  height: 103rem;
  background: url(../img/strengths-bgdeco.webp) no-repeat center center/contain;
}
.strengths__inner {
  position: relative;
  z-index: 1;
}
.strengths__content {
  margin-top: 9rem;
}
@media (max-width: 767px) {
  .strengths__content {
    margin-top: 6rem;
  }
}
.strengths__item:last-child {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .strengths__item:last-child {
    margin-top: 50px;
  }
}
.strengths__item:last-child .flex {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .strengths__item:last-child .flex {
    align-items: start;
    flex-direction: column;
  }
}
.strengths__item:last-child .flex .left {
  margin-left: auto;
}
.strengths__item:last-child .flex .left .imgflex {
  flex-direction: row-reverse;
}
.strengths__item:last-child .flex .right {
  margin-left: auto;
}
.strengths__item:last-child .flex .right h3 {
  text-align: right;
}
.strengths__item:last-child .flex .right p {
  text-align: justify;
}
.strengths__item .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.1vw;
}
@media (max-width: 767px) {
  .strengths__item .flex {
    gap: 5.1vw;
    align-items: start;
    flex-direction: column;
  }
}
.strengths__item .flex .left {
  max-width: 480px;
  width: 54%;
}
@media (max-width: 767px) {
  .strengths__item .flex .left {
    width: 80%;
  }
}
.strengths__item .flex .left .imgflex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4vw;
}
.strengths__item .flex .left .imgflex__left .img {
  margin-top: 2.8vw;
}
@media (max-width: 767px) {
  .strengths__item .flex .left .imgflex__left .img {
    margin-top: 20px;
  }
}
.strengths__item .flex .left .imgflex__right .img02 {
  margin-top: 1.4vw;
}
.strengths__item .flex .right {
  max-width: 450px;
  width: 47%;
}
@media (max-width: 767px) {
  .strengths__item .flex .right {
    width: 100%;
  }
}
.strengths__item .flex .right h3 {
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: 0.08rem;
  color: #D076CC;
  font-weight: 600;
}
@media (max-width: 767px) {
  .strengths__item .flex .right h3 {
    font-size: clamp(20px, 4vw, 30px);
    line-height: 1.4;
  }
}
.strengths__item .flex .right p {
  margin-top: 30px;
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 0.08rem;
  text-align: justify;
}
@media (max-width: 767px) {
  .strengths__item .flex .right p {
    margin-top: 10px;
  }
}
.strengths__bottom {
  margin-top: 7rem;
}
.strengths__bottom--items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 80px);
}
@media (max-width: 767px) {
  .strengths__bottom--items {
    flex-direction: column;
  }
}
.strengths__bottom--item {
  max-width: 440px;
  width: 48%;
  padding: 2rem 2rem 3rem;
  border: 1px solid #D076CC;
  border-radius: 10px;
  background: #fff;
}
@media (max-width: 767px) {
  .strengths__bottom--item {
    width: 100%;
    padding: 1rem 1rem 2rem;
  }
}
.strengths__bottom--item .head {
  border-radius: 10px;
  padding: 2.5rem 2rem;
  background: linear-gradient(145deg, rgba(238, 206, 239, 0.3) 3%, rgba(221, 247, 255, 0.3) 100%);
}
@media (max-width: 767px) {
  .strengths__bottom--item .head {
    padding: 1.5rem 2rem;
  }
}
.strengths__bottom--item .head h3 {
  text-align: center;
  font-weight: 700;
  font-size: clamp(16px, 1.4vw, 20px);
  letter-spacing: 0.2rem;
}
@media (max-width: 767px) {
  .strengths__bottom--item .head h3 {
    font-size: clamp(14px, 2.4vw, 20px);
  }
}
.strengths__bottom--item .head h3 span {
  display: block;
  font-size: clamp(18px, 1.7vw, 24px);
}
@media (max-width: 767px) {
  .strengths__bottom--item .head h3 span {
    font-size: clamp(18px, 3.7vw, 24px);
  }
}
.strengths__bottom--item .head .img {
  margin-top: 4px;
  width: clamp(130px, 12vw, 167px);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .strengths__bottom--item .head .img {
    width: clamp(100px, 17vw, 130px);
  }
}
.strengths__bottom--item .body {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .strengths__bottom--item .body {
    margin-top: 15px;
  }
}
.strengths__bottom--item .body p {
  font-size: clamp(13px, 1.3vw, 18px);
  letter-spacing: 0.08rem;
}

/*-----------------------------------------
    member
-----------------------------------------*/
.member {
  padding-top: clamp(60px, 8vw, 100px);
}
.member__inner {
  width: 1080px;
  max-width: 85%;
}
@media (max-width: 767px) {
  .member__inner {
    max-width: 100%;
  }
}
.member__title {
  margin-left: -10px;
}
.member__content {
  margin-top: 6rem;
  padding-bottom: clamp(90px, 13vw, 180px);
}
@media (max-width: 767px) {
  .member__content {
    padding-bottom: clamp(60px, 13vw, 90px);
  }
}
.member__lead {
  font-size: clamp(14px, 1.3vw, 18px);
  letter-spacing: 0.05rem;
  font-weight: 500;
}
.member__lead span {
  font-family: "Fraunces", serif;
}
.member__items {
  margin-top: 14.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
  row-gap: 22.6rem;
}
@media (max-width: 767px) {
  .member__items {
    margin-top: clamp(70px, 11vw, 80px);
    grid-template-columns: 1fr;
    row-gap: clamp(56px, 17vw, 110px);
  }
}
.member__item {
  border-radius: 10px;
  border: 1px solid #D076CC;
  padding: 3rem 2rem;
}
@media (max-width: 767px) {
  .member__item {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
}
.member__item:nth-child(even) .flex .right {
  margin-top: -20%;
}
.member__item .head .flex {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.member__item .head .left h3 {
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 600;
}
.member__item .head .left p {
  margin-top: 20px;
  font-size: clamp(11px, 1.3vw, 16px);
  letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
  .member__item .head .left p {
    margin-top: 10px;
    font-size: clamp(11px, 1.6vw, 16px);
  }
}
.member__item .head .right {
  margin-top: -30%;
  margin-right: -8%;
}
.member__item .head .right .img {
  width: clamp(150px, 20vw, 280px);
}
@media (max-width: 767px) {
  .member__item .head .right .img {
    width: clamp(169px, 48vw, 255px);
  }
}
.member__item .body {
  margin-top: 20px;
}
.member__item .body .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.member__item .body .img01 {
  margin-top: 10px;
}

.slider {
  padding-bottom: clamp(80px, 9vw, 130px);
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: slide 30s linear infinite;
}

.slide {
  flex: 0 0 auto;
  width: 40rem;
  height: 30rem;
  margin-left: 5px;
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide:nth-child(even) {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .slide:nth-child(even) {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .slide {
    width: clamp(160px, 40vw, 300px);
    height: clamp(120px, 30vw, 225px);
  }
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/*-----------------------------------------
    service
-----------------------------------------*/
.service {
  padding-top: clamp(130px, 14vw, 200px);
  padding-bottom: clamp(60px, 7vw, 100px);
  background: #FCF3FC;
  position: relative;
}
@media (max-width: 767px) {
  .service {
    padding-top: clamp(80px, 15vw, 110px);
  }
}
.service::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.5vw;
  background: url(../img/bg-deco.webp) no-repeat center bottom/cover;
  z-index: 1;
}
.service__inner {
  position: relative;
  z-index: 1;
}
.service__title {
  color: #8B668A;
}
.service__title .img #logo {
  fill: #8B668A;
}
.service__lead {
  color: #8B668A;
}
.service__content {
  margin-top: 7rem;
}
@media (max-width: 767px) {
  .service__content {
    margin-top: 5rem;
  }
}
.service__items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7vw;
}
@media (max-width: 767px) {
  .service__items {
    gap: 14vw;
  }
}
.service__item {
  background: #fff;
  border-radius: 10px;
  padding: 3.5rem 2rem;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .service__item {
    max-width: 440px;
  }
}
.service__item:last-child .flex {
  flex-direction: row-reverse;
  align-items: start;
}
@media (max-width: 767px) {
  .service__item:last-child .flex {
    flex-direction: column;
  }
}
.service__item:last-child .flex .right .point {
  margin-top: 3rem;
}
.service__item:last-child::before {
  content: "";
  position: absolute;
  top: -8%;
  right: -8%;
  left: auto;
  width: clamp(190px, 34vw, 498px);
  height: clamp(80px, 10vw, 144px);
  background: url(../img/service-text02.webp) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .service__item:last-child::before {
    top: -2%;
    right: -3%;
  }
}
.service__item::before {
  content: "";
  position: absolute;
  top: -3%;
  left: -5%;
  width: clamp(190px, 25vw, 348px);
  height: clamp(80px, 10vw, 144px);
  background: url(../img/service-text01.webp) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .service__item::before {
    top: 2%;
    left: -3%;
  }
}
.service__item::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #8B668A;
}
.service__item .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.8vw;
}
@media (max-width: 767px) {
  .service__item .flex {
    flex-direction: column;
  }
}
.service__item .flex .left {
  max-width: 400px;
  width: 44%;
}
@media (max-width: 767px) {
  .service__item .flex .left {
    width: 100%;
  }
}
.service__item .flex .right {
  width: 80%;
  max-width: 480px;
}
@media (max-width: 767px) {
  .service__item .flex .right {
    width: 100%;
  }
}
.service__item .flex .right h3 {
  font-weight: 600;
  font-size: clamp(23px, 2.3vw, 32px);
  letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
  .service__item .flex .right h3 {
    font-size: clamp(18px, 3vw, 23px);
  }
}
.service__item .flex .right h3 span {
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: 0.02rem;
  line-height: 1.4;
  display: block;
  font-weight: 400;
}
.service__item .flex .right .point {
  margin-top: clamp(30px, 4vw, 50px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.service__item .flex .right .point ul {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: -25px;
}
@media (max-width: 767px) {
  .service__item .flex .right .point ul {
    margin-top: -15px;
  }
}
.service__item .flex .right .point ul li {
  color: #D076CC;
  font-size: clamp(10px, 1.2vw, 13px);
  line-height: 1;
  letter-spacing: 0.1rem;
  padding: 4px 8px;
  border: 1px solid #D076CC;
}
.service__item .flex .right .point p {
  font-size: clamp(12px, 1.2vw, 14px);
}
.service__item .flex .right .price {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 900;
  background: linear-gradient(90deg, rgb(208, 118, 204) 0%, rgb(106, 60, 171) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service__item .flex .right .price span {
  margin-right: 3px;
  display: inline-block;
  width: clamp(130px, 16vw, 193px);
  position: relative;
}
@media (max-width: 767px) {
  .service__item .flex .right .price span {
    width: clamp(120px, 21vw, 193px);
  }
}
.service__item .flex .right .price span::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -25%;
  width: clamp(100px, 9vw, 130px);
  height: clamp(20px, 3vw, 37px);
  background: url(../img/service-fukidashi.webp) no-repeat center center/contain;
}
.service__item .flex .right .price span.price-num {
  width: clamp(110px, 14.5vw, 160px);
}
.service__item .flex .right .price span.price-num:before {
  display: none;
}
.service__item .flex .right .body {
  border: 1px solid #D076CC;
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .service__item .flex .right .body {
    padding: 1rem 1rem;
  }
}
.service__item .flex .right .body .text {
  font-size: clamp(12px, 1.2vw, 14px);
  letter-spacing: 0.02rem;
}
.service__item--flow {
  margin-top: 20px;
  overflow: hidden;
}
.service__item--flowHead {
  border: 1px solid #D076CC;
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  text-align: center;
  cursor: pointer;
  transition: all 0.6s ease 0s;
}
@media (max-width: 767px) {
  .service__item--flowHead {
    padding: 1.5rem;
  }
}
.service__item--flowHead .text {
  font-weight: bold;
  font-size: clamp(13px, 1.3vw, 18px);
  letter-spacing: 0.05rem;
  font-weight: 400;
  color: #D076CC;
  transition: all 0.6s;
}
.service__item--flowHead .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
@media (max-width: 767px) {
  .service__item--flowHead .icon {
    right: 15px;
    width: 15px;
    height: 15px;
  }
}
.service__item--flowHead .icon span {
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: #D076CC;
  transition: all 0.6s;
}
.service__item--flowHead .icon span:first-child {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.service__item--flowHead .icon span:last-child {
  top: 46%;
  left: 53%;
  transform: translate(-50%, 50%) rotate(90deg);
}
.service__item--flowHead .icon.active span:last-child {
  transform: translateX(0%) rotate(0);
  left: 0;
}
.service__item--flowHead:hover {
  border-color: #8B668A;
}
.service__item--flowHead:hover .text {
  color: #8B668A;
}
.service__item--flowHead:hover .icon span {
  background: #8B668A;
}
.service__item--flowItems {
  display: none;
  padding: 2rem 0;
}
.service__item--flowItem {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  border-radius: 4px;
  background: linear-gradient(145deg, rgba(221, 247, 255, 0.2) 1%, rgba(238, 206, 239, 0.2) 50%);
  padding: 2rem 1.5rem;
}
@media (max-width: 767px) {
  .service__item--flowItem {
    flex-direction: column;
    align-items: start;
    gap: 0rem;
  }
}
.service__item--flowItem:not(:first-child) {
  margin-top: 20px;
}
.service__item--flowItem .head .num {
  width: clamp(30px, 3.2vw, 45px);
}
@media (max-width: 767px) {
  .service__item--flowItem .head .num {
    width: clamp(35px, 6vw, 45px);
  }
}
.service__item--flowItem .body {
  border: none !important;
  width: 100%;
  padding: 0 !important;
  position: relative;
  padding-left: 2rem !important;
}
@media (max-width: 767px) {
  .service__item--flowItem .body {
    padding-left: 0 !important;
  }
}
.service__item--flowItem .body::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 8rem;
  background: #D076CC;
}
@media (max-width: 767px) {
  .service__item--flowItem .body::after {
    display: none;
  }
}
.service__item--flowItem .body h3 {
  font-size: clamp(14px, 1.4vw, 18px) !important;
  font-weight: 500 !important;
  letter-spacing: 0.05rem !important;
}
@media (max-width: 767px) {
  .service__item--flowItem .body h3 {
    font-size: clamp(14px, 2.4vw, 18px) !important;
  }
}
.service__item--flowItem .body p {
  margin-top: 10px !important;
  font-size: clamp(12px, 1.2vw, 14px) !important;
  letter-spacing: 0.05rem !important;
}
.service__item--flowItembutton {
  margin-top: 2rem;
}
.service__item--flowItembtn {
  font-size: clamp(12px, 1.3vw, 14px);
  padding: 10px 0;
  width: clamp(160px, 14vw, 200px);
}
@media (max-width: 767px) {
  .service__item--flowItembtn {
    height: clamp(45px, 10vw, 70px);
    line-height: clamp(45px, 10vw, 70px);
    width: clamp(200px, 43vw, 330px);
    font-size: clamp(14px, 2.6vw, 18px);
    padding: 0;
  }
}
@media (max-width: 767px) {
  .service__item--flowItembtn:after {
    right: -25px;
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .service__item--flowItembtn:hover:after {
    right: -25px;
  }
}
.service__bottom {
  margin-top: clamp(80px, 8vw, 105px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 3rem 2rem 4rem;
  background: #fff;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .service__bottom {
    padding: 2rem 0 3rem;
  }
}
.service__bottom h3 {
  font-size: clamp(20px, 2.3vw, 30px);
  letter-spacing: 0.05rem;
  text-align: center;
}
@media (max-width: 767px) {
  .service__bottom h3 {
    line-height: 1.4;
    font-size: clamp(17px, 3vw, 23px);
  }
}
.service__bottom ul {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .service__bottom ul {
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 2rem;
  }
}
.service__bottom ul li {
  width: clamp(100px, 9vw, 130px);
  height: clamp(100px, 9vw, 130px);
  border-radius: 100%;
  border: 1px solid #D076CC;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 767px) {
  .service__bottom ul li {
    width: clamp(90px, 20vw, 110px);
    height: clamp(90px, 20vw, 110px);
  }
}
.service__bottom ul li img {
  width: 36px;
}
.service__bottom ul li p {
  margin-top: 5px;
  text-align: center;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 600;
  color: #D076CC;
}
@media (max-width: 767px) {
  .service__bottom ul li p {
    font-size: clamp(9px, 2vw, 12px);
  }
}
.service__bottom .text {
  margin-top: 2rem;
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 0.05rem;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 499px) {
  .service__item:last-child .flex .right .point {
    gap: 15px;
  }
  .service__item .flex .right .point {
    gap: 30px;
    flex-direction: column;
    align-items: start;
  }
  .service__item .flex .right .price span:before {
    left: -13%;
  }
}
/*-----------------------------------------
    flow
-----------------------------------------*/
.flow {
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
}
.flow__title {
  line-height: 1.4;
}
.flow__content {
  margin-top: 9rem;
}
.flow__item {
  position: relative;
}
.flow__item:not(:first-child) {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .flow__item:not(:first-child) {
    margin-top: 80px;
  }
}
.flow__item .flex {
  display: flex;
}
@media (max-width: 767px) {
  .flow__item .flex {
    flex-direction: column;
  }
}
.flow__item .flex .left {
  width: clamp(480px, 48vw, 680px);
  min-height: 25rem;
  background: linear-gradient(145deg, rgba(221, 247, 255, 0.2) 1%, rgba(238, 206, 239, 0.2) 50%);
  display: flex;
  align-items: center;
  justify-content: start;
  border-radius: 10px;
  padding: 3rem;
  gap: 2rem;
}
@media (max-width: 767px) {
  .flow__item .flex .left {
    width: 100%;
    flex-direction: column;
    align-items: start;
    padding: 3rem 2rem;
  }
}
.flow__item .flex .left .head .num {
  width: clamp(36px, 4vw, 46px);
}
@media (max-width: 767px) {
  .flow__item .flex .left .head .num {
    width: clamp(40px, 6vw, 46px);
  }
}
.flow__item .flex .left .body {
  padding-left: clamp(15px, 2vw, 30px);
  position: relative;
  width: clamp(310px, 31vw, 450px);
}
@media (max-width: 767px) {
  .flow__item .flex .left .body {
    width: 100%;
    padding-left: 0;
  }
}
.flow__item .flex .left .body::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: clamp(80px, 7vw, 100px);
  background: #D076CC;
}
@media (max-width: 767px) {
  .flow__item .flex .left .body::after {
    display: none;
  }
}
.flow__item .flex .left .body h3 {
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: 0.05rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .flow__item .flex .left .body h3 {
    font-size: clamp(15px, 2.7vw, 20px);
  }
}
.flow__item .flex .left .body p {
  margin-top: 15px;
  font-size: clamp(12px, 1.3vw, 16px);
  letter-spacing: 0.05rem;
}
.flow__item .flex .right {
  position: absolute;
  bottom: 10%;
  right: 0;
  width: clamp(200px, 25vw, 360px);
}
@media (max-width: 767px) {
  .flow__item .flex .right {
    bottom: auto;
    top: -20%;
    right: -5%;
    width: clamp(200px, 39vw, 280px);
  }
}
.flow__button {
  margin-top: 20px;
}
.flow__btn {
  font-size: clamp(12px, 1.3vw, 14px);
  padding: 10px 0;
  width: clamp(160px, 14vw, 200px);
}
@media (max-width: 767px) {
  .flow__btn {
    height: clamp(45px, 10vw, 70px);
    line-height: clamp(45px, 10vw, 70px);
    width: clamp(200px, 43vw, 330px);
    font-size: clamp(14px, 2.6vw, 18px);
    padding: 0;
  }
}
@media (max-width: 767px) {
  .flow__btn:after {
    right: -25px;
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .flow__btn:hover:after {
    right: -25px;
  }
}

/*-----------------------------------------
    voice
-----------------------------------------*/
.voice {
  margin-top: -19rem;
  width: 1300px;
  max-width: 90%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  padding-top: clamp(60px, 6vw, 80px);
  padding-bottom: clamp(60px, 6vw, 80px);
}
.voice__inner {
  width: 860px;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .voice__inner {
    max-width: 100%;
  }
}
.voice__content {
  margin-top: 70px;
}
.voice__item:not(:first-child) {
  margin-top: 90px;
}
.voice__item:not(:first-child) .flex {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .voice__item:not(:first-child) .flex {
    flex-direction: column;
  }
}
.voice__item .flex {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 5rem;
}
@media (max-width: 767px) {
  .voice__item .flex {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
}
.voice__item .flex .left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
  .voice__item .flex .left {
    flex-direction: unset;
  }
}
.voice__item .flex .left .img {
  width: clamp(130px, 14vw, 190px);
}
.voice__item .flex .left p {
  font-size: clamp(13px, 1.4vw, 18px);
  letter-spacing: 0.05rem;
  text-align: center;
}
.voice__item .flex .right {
  width: clamp(520px, 44vw, 620px);
  border-radius: 20px;
  padding: 6rem 4rem 4rem;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  background: linear-gradient(145deg, rgba(221, 247, 255, 0.15) 1%, rgba(238, 206, 239, 0.15) 50%);
  position: relative;
}
@media (max-width: 767px) {
  .voice__item .flex .right {
    max-width: 100%;
    padding: 4rem 2rem 3rem;
    border-radius: 10px;
  }
}
.voice__item .flex .right::after {
  content: "";
  position: absolute;
  top: -8%;
  left: 2%;
  width: clamp(150px, 15vw, 215px);
  height: clamp(55px, 6.2vw, 80px);
  background: url(../img/voice-text.webp) no-repeat center center/contain;
  height: clamp(55px, 11.2vw, 82px);
}
@media (max-width: 767px) {
  .voice__item .flex .right::after {
    top: -6vw;
    left: 2%;
    width: clamp(120px, 21vw, 160px);
  }
}
.voice__item .flex .right h3 {
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 600;
  letter-spacing: 0.05rem;
}
.voice__item .flex .right h3 span {
  color: #D076CC;
}
.voice__item .flex .right p {
  margin-top: 6rem;
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
  .voice__item .flex .right p {
    margin-top: 4rem;
  }
}
.voice__item .flex .right p span {
  font-size: clamp(13px, 1.4vw, 18px);
  color: #D076CC;
  font-weight: 600;
}

/*-----------------------------------------
    faq
-----------------------------------------*/
.faq {
  margin-top: clamp(60px, 7vw, 100px);
  background: #FCF3FC;
  padding-top: clamp(60px, 7vw, 100px);
  padding-bottom: clamp(30px, 4vw, 50px);
}
@media (max-width: 767px) {
  .faq__inner {
    max-width: 100%;
  }
}
.faq__content {
  margin-top: 50px;
}
.faq__lead {
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 0.05rem;
  text-align: center;
}
.faq__items {
  margin-top: clamp(40px, 5vw, 60px);
}
.faq__items .faq-item:not(:first-child) {
  margin-top: 30px;
}
.faq__items .faq-item.open .faq-item__icon img {
  transform: rotate(180deg);
}
.faq__items .faq-item.open .faq-item__answer {
  margin-top: 20px;
  max-height: 200px;
}
@media (max-width: 767px) {
  .faq__items .faq-item.open .faq-item__answer {
    margin-top: 10px;
  }
}
.faq__items .faq-item__head {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  gap: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .faq__items .faq-item__head {
    gap: 10px;
  }
}
.faq__items .faq-item__head--q {
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 700;
  font-family: "futura-pt", sans-serif;
  color: #D076CC;
}
.faq__items .faq-item__head--text {
  flex: 1;
  letter-spacing: 0.1rem;
  font-size: clamp(13px, 1.3vw, 16px);
}
.faq__items .faq-item__icon {
  width: 20px;
  height: 20px;
  position: relative;
}
.faq__items .faq-item__icon img {
  height: 100%;
  transition: all 0.6s ease 0s;
}
@media (max-width: 767px) {
  .faq__items .faq-item__icon {
    width: 15px;
    height: 15px;
  }
}
.faq__items .faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, padding-top 0.4s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 4px;
}
.faq__items .faq-item__answer--a {
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 700;
  font-family: "futura-pt", sans-serif;
  color: #D1637A;
}
.faq__items .faq-item__answer--inner {
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.faq__items .faq-item__answer--text {
  flex: 1;
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 0.1rem;
}
.faq__items .faq-item__answer--link {
  margin-top: 10px;
}
.faq__items .faq-item__answer--link a {
  color: #D1637A;
  text-decoration: underline;
}

/*-----------------------------------------
    company
-----------------------------------------*/
.company {
  padding-top: clamp(60px, 6vw, 80px);
  padding-bottom: clamp(60px, 6vw, 80px);
  position: relative;
}
.company::after {
  content: "";
  position: absolute;
  top: -130%;
  right: 0;
  width: 59.4rem;
  height: 93.2rem;
  background: url(../img/company-bgdeco.webp) no-repeat center center/contain;
  z-index: -1;
}
.company__content {
  margin-top: clamp(40px, 5vw, 60px);
}
.company__dl .row {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #999999;
}
@media (max-width: 767px) {
  .company__dl .row {
    padding-bottom: 5px;
    flex-direction: column;
  }
}
.company__dl .row:not(:first-child) {
  margin-top: 20px;
}
.company__dl .row dt {
  width: 220px;
  font-size: 16px;
  letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
  .company__dl .row dt {
    width: 100%;
    letter-spacing: 0.02rem;
  }
}
.company__dl .row dd {
  font-size: clamp(13px, 1.3vw, 16px);
  width: calc(100% - 220px);
  letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
  .company__dl .row dd {
    margin-top: 5px;
    width: 100%;
    letter-spacing: 0.02rem;
  }
}

/*-----------------------------------------
    cta
-----------------------------------------*/
.cta {
  background: #EECEEF;
  position: relative;
  z-index: 1;
  padding: 20px;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: url(../img/cta-bgdeco.webp) no-repeat top right/cover;
}
@media (max-width: 767px) {
  .cta::before {
    width: 100%;
  }
}
.cta__inner {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .cta__inner {
    max-width: 100%;
    padding: 0;
  }
}
.cta__content {
  background: #fff;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 2px;
}
@media (max-width: 767px) {
  .cta__content {
    padding: 2rem 1rem;
  }
}
.cta__content .text p {
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  font-size: clamp(14px, 1.3vw, 16px);
}
.cta__content .text strong {
  display: flex;
  align-items: center;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.1rem;
  color: #D076CC;
}
@media (max-width: 767px) {
  .cta__content .text strong {
    display: block;
    text-align: center;
    line-height: 0.7;
  }
}
.cta__content .text strong .img {
  display: inline-block;
  width: 23.3rem;
  max-width: 210px;
  margin-right: 2px;
}
.cta__content .text strong .img #logo {
  fill: #D076CC;
}
.cta__button {
  margin-top: 40px;
}
.cta__btn {
  height: clamp(60px, 5vw, 70px);
  line-height: clamp(60px, 5vw, 70px);
  width: clamp(280px, 25vw, 360px);
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0.08rem;
  position: relative;
  padding: 0;
}
@media (max-width: 767px) {
  .cta__btn {
    width: clamp(260px, 43vw, 330px);
  }
}
.cta__btn:after {
  right: -3vw;
  width: 5.5vw;
  height: 5.5vw;
}
@media (max-width: 767px) {
  .cta__btn:after {
    right: -25px;
    width: 50px;
    height: 50px;
  }
}
.cta__btn:hover:after {
  right: -4vw;
}
@media (max-width: 767px) {
  .cta__btn:hover:after {
    right: -25px;
  }
}
.cta__btn .fukidasi {
  position: absolute;
  top: -30%;
  left: 10px;
  color: #D076CC;
  background: #fff;
  border-radius: 30px;
  text-align: center;
  line-height: 1.6;
  padding: 6px 20px;
  border: 1px solid #D076CC;
  letter-spacing: 0.1rem;
  font-size: clamp(10px, 0.9vw, 12px);
}
@media (max-width: 767px) {
  .cta__btn .fukidasi {
    padding: 4px 20px;
    font-size: clamp(9px, 0.9vw, 12px);
  }
}
.cta__btn .fukidasi::after {
  content: "";
  position: absolute;
  bottom: -10.95px;
  left: 30px;
  width: 10px;
  height: 11px;
  background: url(../img/fukidasi-arrow.svg) no-repeat center center/contain;
}

.cta2 {
  padding-bottom: 23rem;
}
.cta2::before {
  width: 100%;
}/*# sourceMappingURL=style.css.map */