@charset "UTF-8";
:root {
  --noto: "Noto Serif JP", serif;
  --noto-sans: "Noto Sans JP", sans-serif;
  --yugo: "游ゴシック体", yugothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
}

.img-wrap {
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
}
.img-wrap img {
  width: 100%;
}

.pc-b {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .pc-b {
    display: none !important;
  }
}

.sp-b {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-b {
    display: block !important;
  }
}

.pc-ib {
  display: inline-block !important;
}
@media screen and (max-width: 767px) {
  .pc-ib {
    display: none !important;
  }
}

.sp-ib {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-ib {
    display: inline-block !important;
  }
}

.pc-f {
  display: flex !important;
}
@media screen and (max-width: 767px) {
  .pc-f {
    display: none !important;
  }
}

.sp-f {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-f {
    display: flex !important;
  }
}

.contact-break {
  display: block !important;
}
@media screen and (max-width: 850px) {
  .contact-break {
    display: none !important;
  }
}

.top-area {
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 850px) {
  .top-area {
    margin-bottom: 30px;
  }
}
.top-area--mb-0 {
  margin-bottom: 0;
}
.top-area__title {
  font-weight: 600;
  font-size: 25px;
  line-height: 1.4;
  letter-spacing: 0.025em;
  margin-bottom: 30px;
}
@media screen and (max-width: 850px) {
  .top-area__title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.top-area__text {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 850px) {
  .top-area__text {
    font-size: 14px;
    text-align: left;
  }
}
.top-area__text--thanks {
  text-align: left;
  max-width: 660px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 850px) {
  .top-area__text--thanks {
    max-width: 100%;
  }
}

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

.contact-form {
  width: 100%;
  margin: 0 auto;
  max-width: 900px;
  padding: 60px;
  border-radius: 8px;
  background: #fff;
}
@media screen and (max-width: 850px) {
  .contact-form {
    max-width: 100%;
    padding: 30px 15px;
  }
}
.contact-form__first {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 850px) {
  .contact-form__first {
    font-size: 14px;
  }
}
.contact-form__list {
  display: flex;
  flex-direction: column;
}
.contact-form__sends {
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media screen and (max-width: 850px) {
  .contact-form__sends {
    margin-top: 30px;
  }
}
.contact-form__send-wrap {
  position: relative;
  border: solid 1px #2768d4;
  border-radius: 9999px;
  overflow: hidden;
}
.contact-form__send-wrap::after {
  position: absolute;
  content: "";
  top: 50%;
  width: 10px;
  height: auto;
  aspect-ratio: 1;
  right: 20px;
  translate: 0 -50%;
  background: #2768d4;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  transition: background 0.3s;
}
@media screen and (max-width: 850px) {
  .contact-form__send-wrap::after {
    right: 10px;
  }
}
.contact-form__send-wrap.back {
  border: #c5c5c5 solid 1px;
}
.contact-form__send-wrap.back::after {
  display: none;
  right: auto;
  left: 20px;
  -webkit-clip-path: polygon(0 50%, 100% 0%, 100% 100%);
          clip-path: polygon(0 50%, 100% 0%, 100% 100%);
}
@media screen and (max-width: 850px) {
  .contact-form__send-wrap.back::after {
    left: 10px;
  }
}
.contact-form__send-wrap.back .contact-form__send {
  color: #585858;
  background: #c5c5c5;
}
@media (hover) {
  .contact-form__send-wrap:hover::after {
    background: #fff;
  }
  .contact-form__send-wrap:hover .contact-form__send {
    background: #2768d4;
    color: #fff;
  }
  .contact-form__send-wrap:hover.back .contact-form__send {
    background: #fff;
    color: #585858;
  }
}
.contact-form__send {
  height: 70px;
  width: 310px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #2768d4;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: background 0.3s, color 0.3s;
}
@media screen and (max-width: 850px) {
  .contact-form__send {
    height: 52px;
    width: 220px;
    font-size: 14px;
  }
}

.require-el {
  color: #fff;
  background: #d94a58;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.025em;
  margin-left: 5px;
  padding: 2px 4px;
  border-radius: 5px;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  border: solid 1px #d4d4d4;
  padding: 5px 10px;
}

.contact-item {
  display: flex;
  padding: 25px 10px 25px 30px;
  border-bottom: solid 1px #d8d8d8;
}
@media screen and (max-width: 850px) {
  .contact-item {
    flex-direction: column;
    padding: 25px 0;
    gap: 10px;
  }
}
.contact-item__left {
  min-width: 210px;
}
@media screen and (max-width: 850px) {
  .contact-item__left {
    min-width: 0;
    width: 100%;
  }
}
.contact-item__result {
  background: #ebebeb;
  margin-right: 10px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.03em;
  font-weight: 500;
  padding: 2px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-item__annotation {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 850px) {
  .contact-item__annotation {
    font-size: 12px;
  }
}
.contact-item__addresses {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 850px) {
  .contact-item__addresses {
    gap: 20px;
  }
}
.contact-item__address {
  display: flex;
  align-items: center;
}
.contact-item__address-title {
  min-width: 105px;
}
@media screen and (max-width: 850px) {
  .contact-item__address-title {
    min-width: 90px;
    font-size: 14px;
  }
}
.contact-item__address-title--result {
  min-width: 0;
}
.contact-item__address-input {
  display: block;
  height: 40px;
  width: 244px;
}
@media screen and (max-width: 850px) {
  .contact-item__address-input {
    width: 100%;
  }
}
.contact-item__address-input--banchi {
  width: 100%;
}
.contact-item__address-input-wrap {
  width: calc(100% - 105px);
}
@media screen and (max-width: 850px) {
  .contact-item__address-input-wrap {
    width: calc(100% - 90px);
  }
}
.contact-item__address-input-wrap--result {
  width: auto;
}
.contact-item__textarea {
  max-width: 100%;
  min-width: 100%;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.contact-item__textarea.result {
  font-size: 14px;
}
.contact-item__radios {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-item__input {
  display: block;
  height: 40px;
  width: 100%;
  max-width: 420px;
}
@media screen and (max-width: 850px) {
  .contact-item__input {
    max-width: 100%;
  }
}
.contact-item__radio {
  display: flex;
}
.contact-item__radio-input {
  margin-right: 10px;
}
.contact-item__radio-label {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 850px) {
  .contact-item__radio-label {
    font-size: 14px;
  }
}
.contact-item__label {
  color: #2768d4;
  font-size: 18px;
  line-height: 1.3333333333;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 850px) {
  .contact-item__label {
    font-size: 16px;
  }
}
.contact-item__names {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 850px) {
  .contact-item__names {
    gap: 15px;
  }
}
.contact-item__names.result {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 850px) {
  .contact-item__names.result {
    gap: 30px;
  }
}
.contact-item__name {
  display: flex;
  gap: 8px;
}
.contact-item__name-text {
  margin-top: 10px;
}
@media screen and (max-width: 850px) {
  .contact-item__name {
    gap: 6px;
  }
}
.contact-item__name-input {
  display: block;
  height: 40px;
  width: 100%;
}
.contact-item__right {
  width: calc(100% - 210px);
}
@media screen and (max-width: 850px) {
  .contact-item__right {
    width: 100%;
    font-size: 14px;
  }
}
.contact-item .wpcf7-list-item {
  margin-left: 0;
}
.contact-item .wpcf7-list-item > label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-item .wpcf7-not-valid-tip {
  font-size: 14px;
  margin-top: 5px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border: none !important;
  color: #d94a58;
  text-align: center;
}

.agree {
  margin-top: 60px;
}
@media screen and (max-width: 850px) {
  .agree {
    margin-top: 30px;
  }
}
.agree__text {
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-bottom: 35px;
}
@media screen and (max-width: 850px) {
  .agree__text {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.agree__box {
  overflow-y: auto;
  scrollbar-color: #2768d4 #fff;
  height: 200px;
  width: 100%;
  border: solid 1px #d4d4d4;
  padding: 30px 40px;
  margin-bottom: 35px;
}
@media screen and (max-width: 850px) {
  .agree__box {
    padding: 20px 5px 20px 15px;
    margin-bottom: 30px;
  }
}
.agree__box-text {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 850px) {
  .agree__box-text {
    font-size: 14px;
  }
}
.agree__label {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 850px) {
  .agree__label {
    font-size: 14px;
  }
}
.agree__btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}/*# sourceMappingURL=style.css.map */