@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap");
:root {
  --quick: "Quicksand", sans-serif;
  --ibm: "IBM Plex Sans JP", sans-serif;
  --dela: "Dela Gothic One", serif;
  --green: #00523f;
  font-size: 10px;
  color: var(--green);
  line-height: 1.8;
  font-family: var(--ibm);
}

/* ====================================================
CONTACT FORM
==================================================== */
.contact__ttl {
  width: 100%;
  max-width: 600px;
  margin: auto;
  text-align: center;
}
.contact__ttl-heading {
  font-size: clamp(1.8rem, 1vw + 1rem, 2.4rem);
  margin: 8rem 0 4rem;
  font-weight: bold;
}
@media screen and (max-width: 834px) {
  .contact__ttl-heading {
    margin: 4rem 0 2rem;
  }
}
@media screen and (max-width: 639px) {
  .contact__ttl-heading {
    margin: 2rem 0 2rem;
  }
}
.contact__ttl-img {
  width: 315px;
  height: auto;
}
@media screen and (max-width: 834px) {
  .contact__ttl-img {
    width: 250px;
  }
}
.contact__ttl-txt {
  font-size: clamp(1.3rem, 1vw + 0.25rem, 1.6rem);
  font-weight: 500;
}
.contact__ttl-txt .link {
  text-decoration: underline;
  color: #578763;
}
.contact__ttl-txt.bold {
  font-weight: bold;
  margin-top: 3rem;
}
@media screen and (max-width: 834px) {
  .contact__ttl-txt.bold {
    margin-top: 2rem;
  }
}
.contact__step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
}
@media screen and (max-width: 834px) {
  .contact__step {
    gap: 6rem;
  }
}
@media screen and (max-width: 639px) {
  .contact__step {
    gap: 4rem;
  }
}
.contact__step-item .num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.6rem, 1vw + 0.75rem, 2rem);
  font-family: var(--dela);
  background-color: #e6e3c9;
  color: #bbb;
}
@media screen and (max-width: 834px) {
  .contact__step-item .num {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 639px) {
  .contact__step-item .num {
    width: 50px;
    height: 50px;
  }
}
.contact__step-item .txt {
  font-size: clamp(1.4rem, 1vw + 0.5rem, 1.8rem);
  font-weight: bold;
  color: #bbb;
  display: inline-block;
  margin-top: 2rem;
}
.contact__step-item.active .num {
  background-color: var(--green);
  color: #fff;
}
.contact__step-item.active .txt {
  color: var(--green);
}
.contact__step-item.--first {
  position: relative;
}
.contact__step-item.--first .num::after {
  content: "";
  width: 8rem;
  height: 1px;
  border-bottom: 3px dotted #e0ddc0;
  position: absolute;
  top: 25%;
  left: 100%;
}
@media screen and (max-width: 834px) {
  .contact__step-item.--first .num::after {
    width: 6rem;
  }
}
@media screen and (max-width: 639px) {
  .contact__step-item.--first .num::after {
    width: 4rem;
  }
}
.contact__table {
  font-size: clamp(1.3rem, 1vw + 0.25rem, 1.6rem);
  font-weight: bold;
}
.contact__table-label {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
}
@media screen and (max-width: 639px) {
  .contact__table-label {
    margin: 1rem 0;
  }
}
.contact__table-item {
  margin-bottom: 5rem;
}
@media screen and (max-width: 639px) {
  .contact__table-item {
    margin-bottom: 3rem;
  }
}
.contact__table .require-txt {
  border-radius: 16px;
  background-color: #ffe33f;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  padding: 2px 15px 0px;
}
.contact__table .option-txt {
  border-radius: 16px;
  background-color: #f3f3f3;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  padding: 2px 15px 0px;
}
.contact__table .error {
  color: #af583e;
  display: inline-block;
  margin-top: 5px;
  margin-right: 1rem;
  white-space: nowrap;
}
.contact__table .error-bg {
  background-color: #ffe2e7 !important;
}
.contact__table input:not([type=submit]):not([type=radio]):not([type=checkbox]) {
  background-color: #ffffff;
  border: 1px solid var(--green);
  border-radius: 5px;
  height: 50px;
  width: 100%;
  padding: 15px;
  margin-top: 1rem;
}
@media screen and (max-width: 639px) {
  .contact__table input:not([type=submit]):not([type=radio]):not([type=checkbox]) {
    height: 55px;
  }
}
.contact__table input:not([type=submit]):not([type=radio]):not([type=checkbox]).p-postal-code {
  max-width: 240px;
  margin-bottom: 1rem;
  margin-left: 1rem;
}
.contact__table textarea {
  background-color: #ffffff;
  border: 1px solid var(--green);
  border-radius: 5px;
  width: 100%;
  height: 300px;
  resize: vertical;
  padding: 15px;
}
@media screen and (max-width: 639px) {
  .contact__table textarea {
    height: 150px;
  }
}
.contact__table [type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid var(--green);
  border-radius: 9999px;
  cursor: pointer;
}
.contact__table [type=radio]:checked {
  border: none;
  background-color: var(--green);
}
.contact__table [type=radio]:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-radius: 9999px;
  background-color: #ffffff;
}
.contact__table .item-label {
  display: flex;
  align-items: center;
  -moz-column-gap: 13px;
       column-gap: 13px;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
}
.contact__form {
  background-color: #fff;
  border-radius: 20px;
  padding: 0 8rem 6rem;
  margin: 8rem 0;
  /*** Privacy POLICY ***/
}
@media screen and (max-width: 1024px) {
  .contact__form {
    padding: 0 4rem 3rem;
    margin: 4rem 0;
  }
}
@media screen and (max-width: 834px) {
  .contact__form {
    padding: 0 3rem 2rem;
  }
}
.contact__form-caution {
  border-bottom: 3px dotted #e0ddc0;
  font-weight: bold;
  font-size: clamp(1.3rem, 1vw + 0.25rem, 1.6rem);
  padding-bottom: 1rem;
  margin-bottom: 5rem;
}
.contact__form-privacy {
  font-weight: 500;
  max-width: 800px;
  max-height: 270px;
  overflow-y: scroll;
  margin: 8rem auto 3rem;
  padding: 3rem;
  border: 1px solid #e0ddc0;
}
@media screen and (max-width: 1024px) {
  .contact__form-privacy {
    margin: 4rem auto 2rem;
  }
}
@media screen and (max-width: 834px) {
  .contact__form-privacy {
    margin: 2rem 0 1.5rem;
    padding: 2rem;
  }
}
.contact__form-privacy p,
.contact__form-privacy ol {
  font-size: clamp(1.3rem, 1vw + 0.25rem, 1.6rem);
  margin: 2rem 0;
}
.contact__form-privacy ol {
  padding-left: 3rem;
  list-style-type: decimal;
}
.contact__form-privacy-ttl {
  font-size: clamp(1.8rem, 1vw + 1rem, 2.4rem);
  font-family: var(--dela);
  text-align: center;
}
.contact__form-privacy .privacy-item {
  font-size: clamp(1.6rem, 1vw + 0.75rem, 2rem);
  border-left: 4px solid #62c0b4;
  padding-left: 2rem;
  line-height: 1;
}
.contact__form-controller {
  font-size: clamp(1.3rem, 1vw + 0.25rem, 1.6rem);
  font-weight: bold;
  text-align: center;
}
.contact__form-controller .agree-check {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 2px;
  background-color: #f2f1e7;
  cursor: pointer;
}
@media screen and (max-width: 639px) {
  .contact__form-controller .agree-check {
    width: 18px;
    height: 18px;
  }
}
.contact__form-controller .agree-check:checked::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 4px;
  width: 20px;
  height: 10px;
  border-bottom: 3px solid #00523f;
  border-left: 3px solid #00523f;
  transform: rotate(-45deg);
}
.contact__form-controller-checkbox label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.contact__form-controller-submit a {
  text-decoration: none;
}
.contact__form-controller-submit .contact-form-submit-btn {
  background-color: var(--green);
  border: none;
  color: #fff;
  font-size: clamp(1.4rem, 1vw + 0.5rem, 1.8rem);
  width: 240px;
  height: 70px;
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem auto;
  cursor: pointer;
}
@media screen and (max-width: 639px) {
  .contact__form-controller-submit .contact-form-submit-btn {
    width: 200px;
    height: 55px;
  }
}
.contact__form-controller-submit .contact-form-submit-btn:disabled {
  background-color: #bbb;
}
.contact__form-controller-submit .contact-form-submit-btn.--back {
  background-color: #ffe33f;
  color: var(--green);
}
.contact .under499 {
  display: none;
}
@media screen and (max-width: 499px) {
  .contact .under499 {
    display: block;
  }
}

/* ====================================================
THANKS
==================================================== */
.contact.thanks .contact__form-controller-submit {
  margin: 12rem 0;
}
@media screen and (max-width: 1024px) {
  .contact.thanks .contact__form-controller-submit {
    margin: 8rem 0;
  }
}

/* ====================================================
CONFIRM
==================================================== */
.confirm__content {
  text-align: left;
  font-size: clamp(1.3rem, 1vw + 0.25rem, 1.6rem);
  font-weight: 500;
}
.confirm__content-group {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px dotted var(--green);
  padding: 2rem 0;
}
.confirm__content-head {
  width: 100%;
  max-width: 270px;
}
.confirm__content-txt {
  width: 100%;
}/*# sourceMappingURL=contact.css.map */