.contact_lead {
  line-height: 200%;
}
.contact_content {
  margin-top: 40px;
}
.contact_content input[type="text"].has-value,
.contact_content textarea.has-value {
  outline: 1px solid #1B1B1B;
}
.contact_content dl:not(:last-child) {
  margin-bottom: 40px;
}
.contact_content dt {
  font-weight: 500;
  display: flex;
  align-items: center;
}
.contact_content .required dt::after {
  content: "必須";
  font-size: 12px;
  color: #BB1224;
  background-color: #fff;
  display: block;
  padding: 4px 8px;
  margin-left: 8px;
  border: 1px solid #BB1224;
  border-radius: 2px;
}
.contact_content dd {
  margin-top: 20px;
}
.contact_content.confirmation dd {
  background-color: #E7E7E7;
  padding: 32px 40px;
  border-radius: 5px;
}
.contact_content dd ul {
  display: flex;
  column-gap: 80px;
  width: 100%;
  background-color: #E7E7E7;
  padding: 32px 40px;
  border-radius: 5px;
  font-weight: 500;
}
.contact_content dd .error {
  color: #BB1224;
  margin-top: 16px;
}
.contact_content .input_radio {
  display: none;
}
.contact_content .input_radio + label {
  position: relative;
  padding-left: 35px;
}
.contact_content .input_radio + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #848484;
}
.contact_content .input_radio:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #842630;
}
.contact_content .input_radio + label[for] {
    cursor: pointer;
}
.contact_content .input_singleline,
.contact_content textarea {
  width: 100%;
  background-color: #E7E7E7;
  padding: 32px 40px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
}
.contact_content .input_singleline.input_error,
.contact_content textarea.input_error {
  background-color: #F0E2E4;
  outline: 1px solid #BB1224;
}
.contact_content textarea {
  resize: none;
  height: 192px;
}
.contact_btn {
  margin-top: 80px;
  text-align: center;
}
.contact_btn.contact_flex {
  display: flex;
  justify-content: center;
  column-gap: 20px
}
.contact_btn .btn_consent {
  margin-top: 24px;
}
.contact_checkbox {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 15px;
}
.checkbox-icon {
  width: 20px;
  height: 20px;
  background-image: url(../../images/contact_checkbox_off.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.checked .checkbox-icon {
  background-image: url(../../images/contact_checkbox_on.svg);
}
.btn_consent .checkbox-icon + label {
  position: relative;
  cursor: pointer;
}
.contact_btn a {
  color: #000;
  border-bottom: 1px solid #000;
}
.contact_btn label {
  font-weight: 500;
}
.contact_btn .btn_next,
.contact_btn .btn_back {
  margin: 40px auto 0;
  position: relative;
  height: 56px;
}
.contact_btn .btn_next {
  width: 240px;
}
.contact_btn .btn_back {
  width: 80px;
}
.contact_btn.contact_flex .btn_next,
.contact_btn.contact_flex .btn_back {
  margin: 0 auto;
}
.contact_btn .btn_next input,
.contact_btn .btn_back input {
  border-radius: 5px;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
  font-size: 16px;
}
.contact_btn .btn_next input {
  width: 100%;
  height: 100%;
  padding-left: 24px;
  background-color: #ccc;
  border: 1px solid #ccc;
  color: #fff;
  pointer-events: none;
}
.contact_btn .btn_back input {
  width: 100%;
  height: 100%;
  background-color: #848484;
  border: 1px solid #848484;
  color: #fff;
  padding: 0 24px;
  transition: all 0.3s ease-out;
}
.contact_btn .btn_next span::after {
  content: "";
  position: absolute;
  top: calc(50% - 7px);
  right: 32px;
  background-image: url(../../images/contact_arrow_off.svg);
  width: 16px;
  height: 13px;
  transition: all 0.3s ease-out;
}
.contact_btn .btn_next.check_on input {
  background-color: #fff;
  border: 1px solid #842630;
  color: #842630;
  pointer-events: all;
  transition: all 0.3s ease-out;
}
.contact_btn .btn_next.check_on span::after {
  content: "";
  background-image: url(../../images/contact_arrow_on.svg);
}
.contact_btn .btn_next.check_on input:hover {
  background-color: #842630;
  color: #fff;
}
.contact_btn .btn_next.check_on input:hover + span::after {
  right: 24px;
  background-image: url(../../images/contact_arrow_off.svg) !important;
}
.contact_btn .btn_back input:hover {
  background-color: #616161;
}
.contact_btn .btn_form {
  position: relative;
  width: 320px;
  height: 56px;
}
.contact_btn .btn_form a {
  border-radius: 5px;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 18px 0 0 24px;
  background-color: #fff;
  border: 1px solid #842630;
  color: #842630;
  text-decoration: none;
  height: 100%;
}
.contact_btn .btn_form span::after {
  content: "";
  position: absolute;
  top: calc(50% - 7px);
  right: 32px;
  background-image: url(../../images/contact_arrow_off.svg);
  width: 16px;
  height: 13px;
  transition: all 0.3s ease-out;
}
.contact_btn .btn_form span::after {
  content: "";
  background-image: url(../../images/contact_arrow_on.svg);
}
.contact_btn .btn_form a:hover {
  background-color: #842630;
  color: #fff;
}
.contact_btn .btn_form a:hover + span::after {
  right: 24px;
  background-image: url(../../images/contact_arrow_off.svg) !important;
}
.center_lead{
  text-align: center;
  line-height: 200%;
}
.center_lead p + p {
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .contact_content.confirmation dd {
    padding: 24px;
  }
  .contact_content dd ul {
    flex-flow: column;
    row-gap: 20px;
    padding: 24px;
  }
  .contact_content .input_singleline,
  .contact_content textarea {
    padding: 24px;
  }
  .contact_btn {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .contact_btn.contact_flex.contact_sp_only {
    flex-flow: column;
    row-gap: 20px;
    align-items: center;
  }
}