@charset "UTF-8";

html {
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴシック', 'Hiragino Sans', 'メイリオ', Meiryo, sans-serif;
  background-color: #DFCDCE;
}

a[href^="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article>*+* {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.wpcf7-spinner {
  display: none;
}

select,
.wpcf7-select {
  border: 1px solid #333;
  padding: 8px;
  background: #fff;
  border-radius: 4px;
  appearance: auto;
  -webkit-appearance: menulist;
}

.l-contents {
  max-width: 780px;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

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

.swiper-slide img {
  height: auto;
  width: 100%;
}

.swiper-button-next {
  border-top: 3px solid #B9507B;
  border-right: 3px solid #B9507B;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
}

.swiper-button-prev {
  border-top: 3px solid #B9507B;
  border-left: 3px solid #B9507B;
  width: 20px;
  height: 20px;
  transform: rotate(-45deg);
}

.link-btn {
  margin: 0 auto;
  padding: 80px 0;
  max-width: 80%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .link-btn {
    padding: 50px 0;
  }
}

.c-button {
  display: inline-block;
  -webkit-animation: pulseEffect 1.5s ease-in-out infinite;
  animation: pulseEffect 1.5s ease-in-out infinite;
}

@-webkit-keyframes pulseEffect {

  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@keyframes pulseEffect {

  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.l-cta {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 10px 0;
  z-index: 100;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.l-cta .l-cta__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 5px;
}

.l-cta .l-cta__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-cta .l-cta__list li {
  padding: 0 2px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.l-cta .l-cta__btn {
  display: block;
  padding: 10px 0px;
  color: #fff;
  border-radius: 50px;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .l-cta .l-cta__btn {
    font-size: 14px;
  }
}

.l-cta .l-cta__btn1 {
  background-image: linear-gradient(150deg, rgb(222, 179, 136) 35%, rgb(190, 80, 147) 68%);
}

.l-cta .l-cta__btn2 {
  background-color: #7f94f1;
}

.l-cta .l-cta__btn3 {
  background-color: #06C755;
}

.contact {
  background-color: #fff;
  padding: 40px 5%;
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 30px 5%;
  }
}

.contact_title {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #B8507A;
}

@media screen and (max-width: 768px) {
  .contact_title {
    font-size: 30px;
  }
}

.form__required {
  color: red;
  padding-left: 4px;
}

.form_field {
  padding-top: 24px;
}

.form_field .form_area {
  padding-top: 8px;
}

.form_input::-webkit-input-placeholder {
  color: #a9a9a9;
}

.form_input::-moz-placeholder {
  color: #a9a9a9;
}

.form_input:-ms-input-placeholder {
  color: #a9a9a9;
}

.form_input::-ms-input-placeholder {
  color: #a9a9a9;
}

.form_input::placeholder {
  color: #a9a9a9;
}

.form_input,
.form_textarea {
  font-size: 14px;
  width: 100%;
  padding: 12px;
  border: 1px solid #000;
  border-radius: 4px;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control-wrap[data-name=radio-category1] .wpcf7-list-item-label {
  position: relative;
  padding-left: 34px;
}

.wpcf7-form-control-wrap[data-name=radio-category1] .wpcf7-list-item-label::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  content: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #000;
  border-radius: 4px;
}

.wpcf7-form-control-wrap[data-name=radio-category1] .wpcf7-list-item-label::after {
  position: absolute;
  top: 50%;
  left: 6px;
  width: 8px;
  height: 8px;
  content: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  border-radius: 2px;
  background-color: #000;
}

.wpcf7-form-control-wrap[data-name=radio-category1] .wpcf7-list-item input:checked+.wpcf7-list-item-label::after {
  opacity: 1;
}

.wpcf7-form-control-wrap[data-name=radio-category2] .wpcf7-list-item-label {
  position: relative;
  padding-left: 34px;
}

.wpcf7-form-control-wrap[data-name=radio-category2] .wpcf7-list-item-label::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  content: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #000;
  border-radius: 4px;
}

.wpcf7-form-control-wrap[data-name=radio-category2] .wpcf7-list-item-label::after {
  position: absolute;
  top: 50%;
  left: 6px;
  width: 8px;
  height: 8px;
  content: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  border-radius: 2px;
  background-color: #000;
}

.wpcf7-form-control-wrap[data-name=radio-category2] .wpcf7-list-item input:checked+.wpcf7-list-item-label::after {
  opacity: 1;
}

.wpcf7-radio .wpcf7-list-item {
  margin-top: 10px;
  display: block;
}

.radio-plan span.wpcf7-list-item.first {
  display: none;
}

.form__checkbox:checked+.wpcf7-list-item-label::after {
  opacity: 1;
}

.name_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.name-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0 10px;
  max-width: 300px;
  width: calc(50% - 20px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.item-box:first-child {
  margin-left: 0;
}

.form__submit-button {
  margin-top: 40px;
  text-align: center;
}

.form__submit-input {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  padding: 16px 20px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  color: #fff;
  border-radius: 4px;
  background-color: #000;
}

.form__submit-input:hover {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0.7;
}

.form_area .name_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .form_area .name_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.form_textarea {
  height: 160px;
}

.form_submit-button {
  text-align: center;
  display: block;
  margin: 0 auto;
  padding: 10px 70px;
  background-color: #B8507A;
  max-width: 480px;
  width: 100%;
  margin-top: 40px;
  border-radius: 50px;
}

.form_submit-button:hover {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0.7;
}

.form_submit-button .form_submit-input {
  color: #fff;
  font-weight: 400;
  display: inline-block;
}

.form_confirm {
  max-width: 780px;
  padding: 40px 5%;
  background-color: #fff;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form_confirm .form_confirm_text {
  background-color: #D9D9D9;
  height: 40px;
  line-height: 40px;
  font-size: 24px;
  padding-left: 20px;
}

@media screen and (max-width: 768px) {
  .form_confirm .form_confirm_text {
    font-size: 18px;
    text-align: center;
  }
}

.form_confirm_list {
  padding-top: 40px;
}

.form_confirm_field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form_confirm_field dt {
  width: 30%;
  background-color: #f3f3f3;
  font-weight: bold;
}

.form_confirm_field dd {
  width: 70%;
}

.form_confirm_field dt,
.form_confirm_field dd {
  display: table-cell;
  border: 1px solid #ccc;
  padding: 10px 15px;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {

  .form_confirm_field dt,
  .form_confirm_field dd {
    font-size: 14px;
    padding: 10px 4px;
  }
}

.contact__buttons {
  padding-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 50px;
}

.contact_back-button {
  background-color: #ccc;
  padding: 5px 10px;
  color: #333;
  width: 40%;
}

.contact_submit-input {
  background-color: #B8507A;
  padding: 5px 10px;
  color: #fff;
  width: 40%;
}

.complete_title {
  color: #B8507A;
  padding-top: 40px;
  padding-bottom: 30px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .complete_title {
    font-size: 16px;
  }
}

.complete_thanks {
  text-align: center;
  line-height: 2em;
}

.complete_inner {
  padding-top: 40px;
}

.complete_inner .complete_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.complete_button {
  background-color: #B8507A;
  padding: 10px 10px;
  color: #fff;
  width: 60%;
  margin: 0 auto;
}

.footer {
  height: 80px;
  width: 100%;
  background-color: #D9D9D9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer_copy {
  font-size: 16px;
}

.complete-page {
  min-height: 100vh;
}