@charset "UTF-8";
.contact .inner {
  padding-top: 2rem;
  padding-bottom: 10rem;
}
.contact .contact_step {
  display: flex;
  justify-content: center;
  gap: 6rem;
  margin-bottom: 4rem;
}
.contact .contact_note {
  margin-bottom: 7rem;
  padding: 3.6rem;
  background: #f0f3f6;
  border-radius: 2rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  color: #1f1f1f;
  text-align: center;
}
.contact .thanks_note {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
  max-width: 90rem;
  margin: 0 auto;
  padding: 7rem 8.5rem;
  background: #f0f3f6;
  border-radius: 2rem;
}
.contact .thanks_ttl {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  color: #16c47f;
}
.contact .thanks_txt {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: left;
}
.contact .thanks_txt p {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.5;
  color: #1f1f1f;
}
.contact .thanks_txt p:not(:last-child) {
  margin-bottom: 2.55rem;
}
.contact .step_item {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.contact .step_item .step_num {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  background: #e6e6e6;
  border-radius: 50%;
  font-family: "Inter", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #4f4f4f;
  line-height: 1;
}
.contact .step_item:not(:first-child) .step_num::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 100%;
  width: 7rem;
  height: 2px;
  background: #dddddd;
}
.contact .step_item .step_txt {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  color: #bdbdbd;
}
.contact .step_item.current .step_num {
  background: #16c47f;
  color: #ffffff;
}
.contact .step_item.current .step_txt {
  font-weight: 700;
  color: #16c47f;
}
.contact .contact_form {
  max-width: 90rem;
  margin: 0 auto;
}
.contact .contact_form .entry_form {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.contact .contact_form .entry_form th {
  width: 25.3rem;
  padding-bottom: 2.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: #909090;
  text-align: left;
  vertical-align: top;
}
.contact .contact_form .entry_form td {
  padding-bottom: 2.8rem;
  vertical-align: top;
}
.contact .contact_form .entry_form tr:last-child th,
.contact .contact_form .entry_form tr:last-child td {
  padding-bottom: 0;
}
.contact .contact_form .entry_form tr:last-child th p,
.contact .contact_form .entry_form tr:last-child td p {
  padding-top: 0.2rem;
}
.contact .contact_form .entry_form tr:last-child th .confirm_txt,
.contact .contact_form .entry_form tr:last-child td .confirm_txt {
  font-size: 1.7rem;
}
.contact .contact_form .entry_form.-confirm th,
.contact .contact_form .entry_form.-confirm td {
  vertical-align: middle;
}
.contact .contact_form .entry_form.-confirm .th_inner {
  padding-top: 0;
}
.contact .contact_form .entry_form.-confirm tr:last-child p {
  padding-top: 0;
}
.contact .contact_form .confirm_txt {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #4f4f4f;
}
.contact .contact_form .error_txt {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #16c47f;
}
.contact .contact_form .error_txt:empty {
  display: none;
}
.contact .contact_form .th_inner {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 0.9rem;
}
.contact .contact_form .th_inner.required::after {
  content: "必須";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.8rem 0.6rem;
  background: #16c47f;
  border-radius: 0.3rem;
  font-size: 1.2rem;
  color: #ffffff;
}
.contact .contact_form .th_inner label {
  cursor: pointer;
}
.contact .contact_form .input,
.contact .contact_form .textarea {
  width: 44.4rem;
  padding: 0.9rem 1.5rem 1.1rem;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
  font-size: 1.7rem;
  font-weight: 500;
  color: #4f4f4f;
}
.contact .contact_form .input::-moz-placeholder, .contact .contact_form .textarea::-moz-placeholder {
  font-size: 1.7rem;
  font-weight: 500;
  color: #909090;
  opacity: 0.6;
}
.contact .contact_form .input::placeholder,
.contact .contact_form .textarea::placeholder {
  font-size: 1.7rem;
  font-weight: 500;
  color: #909090;
  opacity: 0.6;
}
.contact .contact_form .input:focus-visible,
.contact .contact_form .textarea:focus-visible {
  outline: none;
  border-color: #16c47f;
  box-shadow: 0 0 0 3px rgba(22, 196, 127, 0.2);
}
.contact .contact_form .input.-wide,
.contact .contact_form .textarea.-wide {
  width: 64.7rem;
}
.contact .contact_form .textarea {
  height: 20rem;
  padding-top: 1rem;
  resize: vertical;
}
.contact .contact_form .radio-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-right: 2.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #4f4f4f;
  line-height: 1;
  padding-top: 0.9rem;
  cursor: pointer;
}
.contact .contact_form .radio-label:last-child {
  margin-right: 0;
}
.contact .contact_form .radio-label input[type=radio] {
  position: relative;
  width: 2.1rem;
  height: 2.1rem;
  background: #ffffff;
  border: 1px solid #c3c3c3;
  border-radius: 50%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact .contact_form .radio-label input[type=radio]:checked {
  border-color: #16c47f;
}
.contact .contact_form .radio-label input[type=radio]:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1.1rem;
  height: 1.1rem;
  background: #16c47f;
  border-radius: 50%;
}
.contact .contact_form .checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1f1f1f;
  cursor: pointer;
}
.contact .contact_form .checkbox-label input[type=checkbox] {
  position: relative;
  width: 2.1rem;
  height: 2.1rem;
  background: #ffffff;
  border: 1px solid #c3c3c3;
  border-radius: 0.3rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact .contact_form .checkbox-label input[type=checkbox]:checked {
  background: #16c47f;
  border-color: #16c47f;
}
.contact .contact_form .checkbox-label input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/images/common/icon-check.svg") no-repeat center/contain;
}
.contact .contact_form .checkbox-label .agree_txt {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}
.contact .contact_form .checkbox-label .agree_link {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  color: #16c47f;
  text-decoration: underline;
}
.contact .contact_form .checkbox-label .agree_link img {
  width: 1.6rem;
  height: 1.6rem;
}
.contact .contact_btns {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  max-width: 90rem;
  margin: 6rem auto 0;
}
.contact .contact_clear,
.contact .contact_submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21.1rem;
  padding-top: 2.2rem;
  padding-bottom: 2.3rem;
  border-radius: 100vmax;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.contact .contact_clear:hover,
.contact .contact_submit:hover {
  opacity: 0.7;
}
.contact .contact_clear {
  background: #ffffff;
  border: 1px solid #dddddd;
  color: #909090;
}
.contact .contact_clear.-dark {
  background: #1f1f1f;
  border-color: #1f1f1f;
  color: #ffffff;
}
.contact .contact_submit {
  gap: 1.9rem;
  padding-left: 5.4rem;
  padding-right: 3.2rem;
  background: #1f1f1f;
  color: #ffffff;
  border: none;
}
.contact .contact_submit::after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.8rem;
  background: url("/assets/images/common/icon-contact-right.svg") no-repeat center/contain;
}
.contact .contact_submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 767px){
  .contact .inner {
    padding-top: 1rem;
    padding-bottom: 6rem;
  }
  .contact .contact_step {
    gap: 3rem;
    margin-bottom: 2.4rem;
  }
  .contact .contact_note {
    margin-bottom: 2.8rem;
    padding: 2.4rem 3rem;
    font-size: 1.45rem;
    line-height: 1.55;
    text-align: left;
  }
  .contact .contact_note p:last-child {
    margin-top: 0.5rem;
  }
  .contact .thanks_note {
    gap: 3.6rem;
    padding: 4rem 3rem;
  }
  .contact .thanks_ttl {
    font-size: 2.4rem;
  }
  .contact .thanks_txt p {
    font-size: 1.5rem;
  }
  .contact .step_item .step_num {
    font-size: 2.4rem;
    width: 5rem;
    height: 5rem;
  }
  .contact .step_item:not(:first-child) .step_num::before {
    width: 5rem;
  }
  .contact .step_item .step_txt {
    font-size: 1.5rem;
  }
  .contact .contact_form {
    padding: 0 1rem;
  }
  .contact .contact_form .entry_form th {
    display: block;
    width: 100%;
    padding-bottom: 0.8rem;
  }
  .contact .contact_form .entry_form td {
    display: block;
    padding-bottom: 2rem;
  }
  .contact .contact_form .entry_form tr:last-child th {
    padding-bottom: 0.8rem;
  }
  .contact .contact_form .th_inner {
    padding-top: 0;
  }
  .contact .contact_form .input,
  .contact .contact_form .textarea {
    width: 100%;
  }
  .contact .contact_form .input.-wide,
  .contact .contact_form .textarea.-wide {
    width: 100%;
  }
  .contact .contact_form .radio-label {
    font-size: 1.7rem;
  }
  .contact .contact_btns {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 4rem;
  }
  .contact .contact_clear,
  .contact .contact_submit {
    width: 90%;
  }
}/*# sourceMappingURL=maps/contact.css.map */
