@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap");
:root {
  --text-color: #191919;
  --wh: #fff;
  --bk: #191919;
  --gray: #8A8B88;
  --green: #6AC643;
  --yellow: #FFD700;
  --footer-bg: #111827;
}

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

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

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

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

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

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

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

@media screen and (min-width:500px) {
  .sp-xsl {
    display: none !important;
  }
}

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

@media screen and (min-width: 377px) {
  .sp-xs {
    display: none !important;
  }
}

:root {
  --wh: #fff;
  --bk: #191919;
  --gray: #8A8B88;
  --green: #6AC643;
  --yellow: #FFD700;
  --footer-bg: #111827;
}

body {
  padding-top: clamp(5rem, 7vw, 10rem);
  color: #fff;
  line-height: 1.8;
}

/* ====================================================
CONTACT FORM
==================================================== */
.contact {
  color: var(--bk);
}
.contact__ttl {
  width: 100%;
  max-width: 600px;
  margin: auto;
  text-align: center;
}
.contact__ttl-heading {
  font-size: clamp(1.125rem, 1vw + 1rem, 1.5625rem);
  margin: clamp(1.25rem, 1vw + 1rem, 2.5rem) 0 2.5rem;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 834px) {
  .contact__ttl-heading {
    margin: 2.5rem 0 1.25rem;
  }
}
@media screen and (max-width: 639px) {
  .contact__ttl-heading {
    margin: 1.25rem 0 1.25rem;
  }
}
.contact__ttl-img {
  width: 19.6875rem;
  height: auto;
}
@media screen and (max-width: 834px) {
  .contact__ttl-img {
    width: 15.625rem;
  }
}
.contact__ttl-txt {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1.125rem);
  font-weight: 500;
}
.contact__ttl-txt .link {
  text-decoration: underline;
  color: #578763;
}
.contact__ttl-txt.bold {
  font-weight: bold;
  margin-top: 1.875rem;
}
@media screen and (max-width: 834px) {
  .contact__ttl-txt.bold {
    margin-top: 1.25rem;
  }
}
.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(1rem, 1vw + 0.75rem, 1.25rem);
  font-family: var(--dela);
  background-color: #e6e3c9;
  color: #bbb;
}
@media screen and (max-width: 834px) {
  .contact__step-item .num {
    width: 3.75rem;
    height: 3.75rem;
  }
}
@media screen and (max-width: 639px) {
  .contact__step-item .num {
    width: 3.125rem;
    height: 3.125rem;
  }
}
.contact__step-item .txt {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-weight: bold;
  color: #bbb;
  display: inline-block;
  margin-top: 1.25rem;
}
.contact__step-item.active .num {
  background-color: var(--yellow);
  color: #fff;
}
.contact__step-item.active .txt {
  color: var(--yellow);
}
.contact__step-item.--first {
  position: relative;
}
.contact__step-item.--first .num::after {
  content: "";
  width: 5rem;
  height: 0.0625rem;
  border-bottom: 3px dotted #e0ddc0;
  position: absolute;
  top: 25%;
  left: 100%;
}
@media screen and (max-width: 834px) {
  .contact__step-item.--first .num::after {
    width: 3.75rem;
  }
}
@media screen and (max-width: 639px) {
  .contact__step-item.--first .num::after {
    width: 2.5rem;
  }
}
.contact__table {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  font-weight: bold;
}
.contact__table-label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0.625rem 0;
  color: #fff;
}
@media screen and (max-width: 639px) {
  .contact__table-label {
    margin: 0.625rem 0;
  }
}
.contact__table-item {
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 639px) {
  .contact__table-item {
    margin-bottom: 1.25rem;
  }
}
.contact__table .require-txt {
  border-radius: 1rem;
  background-color: var(--yellow);
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  padding: 0.125rem 0.9375rem 0;
  font-size: 0.8125rem;
  color: #181D39;
}
.contact__table .option-txt {
  border-radius: 1rem;
  background-color: #f3f3f3;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  padding: 0.125rem 0.9375rem 0;
  font-size: 0.8125rem;
  color: #181D39;
}
.contact__table .error {
  color: #af583e;
  display: inline-block;
  margin-top: 0.3125rem;
  margin-right: 0.625rem;
  white-space: nowrap;
}
.contact__table .error-bg {
  background-color: #fffbe4 !important;
}
.contact__table input:not([type=submit]):not([type=radio]):not([type=checkbox]) {
  background-color: #ffffff;
  border: 3px solid var(--yellow);
  border-radius: 0.3125rem;
  height: 3.125rem;
  width: 100%;
  padding: 0.9375rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 639px) {
  .contact__table input:not([type=submit]):not([type=radio]):not([type=checkbox]) {
    height: 2.8125rem;
    margin-top: 0;
  }
}
.contact__table input:not([type=submit]):not([type=radio]):not([type=checkbox]):active {
  border: 3px solid var(--yellow);
}
.contact__table input:not([type=submit]):not([type=radio]):not([type=checkbox]).p-postal-code {
  max-width: 15rem;
  margin-bottom: 0.625rem;
  margin-left: 0.625rem;
}
.contact__table textarea {
  background-color: #ffffff;
  border: 3px solid var(--yellow);
  border-radius: 0.3125rem;
  width: 100%;
  height: 18.75rem;
  resize: vertical;
  padding: 0.9375rem;
}
@media screen and (max-width: 639px) {
  .contact__table textarea {
    height: 9.375rem;
  }
}
.contact__table textarea:active {
  border: 3px solid var(--yellow);
}
.contact__table [type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid var(--yellow);
  border-radius: 9999px;
  cursor: pointer;
}
.contact__table [type=radio]:checked {
  border: none;
  background-color: var(--yellow);
}
.contact__table [type=radio]:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin: auto;
  border-radius: 9999px;
  background-color: #ffffff;
}
.contact__table .item-label {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.8125rem;
       column-gap: 0.8125rem;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
}
.contact__form {
  background-color: transparent;
  border-radius: 1.25rem;
  padding: 0 5rem 3.75rem;
  margin: 5rem 0;
}
@media screen and (max-width: 1024px) {
  .contact__form {
    padding: 0 2.5rem 1.875rem;
    margin: 2.5rem 0;
  }
}
@media screen and (max-width: 834px) {
  .contact__form {
    padding: 0 0 1.25rem;
  }
}
.contact__form-caution {
  border-bottom: 3px dotted #e0ddc0;
  font-weight: bold;
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1.125rem);
  padding-bottom: 1rem;
  margin-bottom: 5rem;
}
.contact__form {
  /*** Privacy POLICY ***/
}
.contact__form-privacy {
  font-weight: 500;
  max-width: 800px;
  max-height: 270px;
  overflow-y: scroll;
  margin: 5rem auto 1.875rem;
  padding-top: 1.875rem;
  border: 1px solid #e0ddc0;
  color: var(--wh);
}
@media screen and (max-width: 1024px) {
  .contact__form-privacy {
    margin: 2.5rem auto 1.25rem;
  }
}
@media screen and (max-width: 834px) {
  .contact__form-privacy {
    margin: 1.25rem 0 0.9375rem;
    padding: 1.25rem 0.625rem;
  }
}
.contact__form-privacy p,
.contact__form-privacy ol {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1.125rem);
  margin: 2rem 0;
}
@media screen and (max-width: 834px) {
  .contact__form-privacy p,
  .contact__form-privacy ol {
    font-size: 0.9375rem;
    margin: 0.625rem 0;
  }
}
.contact__form-privacy ol {
  padding-left: 1.875rem;
  list-style-type: decimal;
}
.contact__form-privacy-ttl {
  font-size: clamp(1rem, 1vw + 0.625rem, 1.5rem);
  text-align: center;
}
.contact__form-privacy .privacy-item {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
  border-left: 4px solid #62c0b4;
  padding-left: 1.25rem;
  line-height: 1;
}
.contact__form-controller {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1.125rem);
  font-weight: bold;
  text-align: center;
}
.contact__form-controller .agree-check {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.125rem;
  background-color: #f2f1e7;
  cursor: pointer;
}
@media screen and (max-width: 639px) {
  .contact__form-controller .agree-check {
    width: 1.125rem;
    height: 1.125rem;
  }
}
.contact__form-controller .agree-check:checked::after {
  content: "";
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 1.25rem;
  height: 0.625rem;
  border-bottom: 0.1875rem solid #181D39;
  border-left: 0.1875rem solid #181D39;
  transform: rotate(-45deg);
}
.contact__form-controller-checkbox label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  color: var(--wh);
}
.contact__form-controller-submit a {
  text-decoration: none;
}
.contact__form-controller-submit .contact-form-submit-btn {
  background-color: var(--yellow);
  border: none;
  color: #181D39;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  width: 15rem;
  height: 4.375rem;
  border-radius: 2.1875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.875rem auto;
  cursor: pointer;
}
@media screen and (max-width: 639px) {
  .contact__form-controller-submit .contact-form-submit-btn {
    width: 12.5rem;
    height: 3.4375rem;
  }
}
.contact__form-controller-submit .contact-form-submit-btn:disabled {
  background-color: #bbb;
}
.contact__form-controller-submit .contact-form-submit-btn.--back {
  background-color: var(--yellow);
  color: var(--yellow);
}
.contact .under499 {
  display: none;
}
@media screen and (max-width: 499px) {
  .contact .under499 {
    display: block;
  }
}

section.privacy-policy-content {
  padding: clamp(3.125rem, 4vw, 5rem) 0 clamp(0rem, 5vw, 6.25rem);
}

/* ====================================================
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(0.875rem, 1vw + 0.25rem, 1.125rem);
  font-weight: 500;
}
.confirm__content-group {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px dotted var(--yellow);
  padding: 1.25rem 0;
}
.confirm__content-head {
  width: 100%;
  max-width: 16.875rem;
}
.confirm__content-txt {
  width: 100%;
}/*# sourceMappingURL=contact.css.map */