@charset "UTF-8";
.page-contact .page-mv {
  background: url("../img/contact/mv-contact.webp") no-repeat center center/cover;
}
@media screen and (max-width: 960px) {
  .page-contact .page-mv {
    background: url("../img/contact/mv-contact-sp.webp") no-repeat center center/cover;
  }
}
.page-contact .page-mv .page-mv__content {
  max-width: 657px;
}

.page-contact .footer__cta {
  margin-top: 40px;
}

.contact {
  padding-top: 40px;
}
@media screen and (max-width: 960px) {
  .contact {
    padding-top: 20px;
  }
}
.contact .inner {
  padding-bottom: 0;
}

.contact__area {
  max-width: 700px;
  margin: 40px auto 0;
}

.contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .contact__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact__item + .contact__item {
  margin-top: 56px;
}

.contact__label {
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}
.contact__label--required::after {
  content: "※";
  color: #EA0000;
  font-size: 12px;
  margin-left: 4px;
  position: absolute;
  top: 0;
}

.contact__input {
  width: 100%;
  max-width: 512px;
}
@media screen and (max-width: 960px) {
  .contact__input {
    margin-top: 8px;
  }
}
.contact__input input[type=text],
.contact__input input[type=email],
.contact__input input[type=tel],
.contact__input textarea {
  width: 100%;
  padding: 11px 14px;
  line-height: 1.5;
  color: #212121;
  border-radius: 5px;
  background: #F6F6F6;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: inherit;
  border: none;
}
.contact__input input[type=text]::-webkit-input-placeholder, .contact__input input[type=email]::-webkit-input-placeholder, .contact__input input[type=tel]::-webkit-input-placeholder, .contact__input textarea::-webkit-input-placeholder {
  color: #BABABA;
}
.contact__input input[type=text]::-moz-placeholder, .contact__input input[type=email]::-moz-placeholder, .contact__input input[type=tel]::-moz-placeholder, .contact__input textarea::-moz-placeholder {
  color: #BABABA;
}
.contact__input input[type=text]:-ms-input-placeholder, .contact__input input[type=email]:-ms-input-placeholder, .contact__input input[type=tel]:-ms-input-placeholder, .contact__input textarea:-ms-input-placeholder {
  color: #BABABA;
}
.contact__input input[type=text]::-ms-input-placeholder, .contact__input input[type=email]::-ms-input-placeholder, .contact__input input[type=tel]::-ms-input-placeholder, .contact__input textarea::-ms-input-placeholder {
  color: #BABABA;
}
.contact__input input[type=text]::placeholder,
.contact__input input[type=email]::placeholder,
.contact__input input[type=tel]::placeholder,
.contact__input textarea::placeholder {
  color: #BABABA;
}
.contact__input input[type=text]:focus,
.contact__input input[type=email]:focus,
.contact__input input[type=tel]:focus,
.contact__input textarea:focus {
  outline: none;
  background-color: #fff;
  border-color: #E4027F;
  -webkit-box-shadow: 0 0 0 3px rgba(228, 2, 127, 0.1);
          box-shadow: 0 0 0 3px rgba(228, 2, 127, 0.1);
}
.contact__input textarea {
  min-height: 260px;
  resize: vertical;
}

.contact__privacy-check {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .contact__privacy-check {
    margin-top: 40px;
  }
}
.contact__privacy-check .wpcf7-list-item {
  margin: 0;
}
.contact__privacy-check label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
}
.contact__privacy-check input[type=checkbox] {
  border-radius: 6px;
  border: 1px solid #CACACA;
  background: #FFF;
  width: 25px;
  height: 25px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
  accent-color: #E4027F;
}
.contact__privacy-check a {
  color: #00AEFF;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-decoration: underline;
}
@media (hover: hover) {
  .contact__privacy-check a:hover {
    text-decoration: none;
  }
}

.contact__btn {
  margin: 24px auto 0;
  max-width: 280px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.contact__btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  right: 13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='12' fill='white'/%3E%3Cpath d='M15 12.5L10.5 17.2631L10.5 7.73686L15 12.5Z' fill='%23E4027F'/%3E%3C/svg%3E") no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.contact__btn .btn {
  padding: 10px 48px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #E4027F;
  border: 2px solid #E4027F;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  min-width: 280px;
  max-height: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .contact__btn:hover .btn {
    background: #fff;
    color: #E4027F;
  }
  .contact__btn:hover::after {
    -webkit-transform: translateX(4px) translateY(-50%);
            transform: translateX(4px) translateY(-50%);
  }
}

.wpcf7-not-valid-tip {
  font-size: 14px;
  color: #E4027F;
  margin-top: 8px;
  display: block;
}

.wpcf7-response-output {
  margin: 24px 0 0;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}
.wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #e8f5e9;
  border: 1px solid #4caf50;
  color: #2e7d32;
}
.wpcf7-response-output.wpcf7-validation-errors, .wpcf7-response-output.wpcf7-mail-sent-ng {
  background-color: #ffebee;
  border: 1px solid #f44336;
  color: #c62828;
}

.wpcf7-spinner {
  margin-left: 12px;
  position: absolute;
}

.footer__cta-contact-body {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__cta-contact-body::before {
  content: none;
}

.footer__cta-contact-item:nth-child(2) {
  display: none;
}