@charset "UTF-8";
.contact .c-sub-mv {
  background-image: url(../img/contact/mv.jpg);
}

.contact-form {
  padding: 20px 0 120px;
}
.contact-form__desc {
  line-height: 2.25;
  margin-top: 38px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .contact-form {
    padding: 20px 0 55px;
  }
  .contact-form__desc {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.06em;
    margin-top: 25px;
    text-align: left;
  }
}

.contact-form-notes {
  position: relative;
  border-top: solid 1px #ebebeb;
  border-bottom: solid 1px #ebebeb;
  margin-top: 44px;
  padding: 32px 27px;
}
.contact-form-notes__ttl {
  position: absolute;
  top: -17px;
  left: 50%;
  background: #fff;
  margin: auto;
  padding: 0 15px;
  transform: translateX(-50%);
}
.contact-form-notes > ul {
  padding-left: 1em;
}
.contact-form-notes > ul > li {
  font-size: 14px;
  letter-spacing: 0.08em;
}
.contact-form-notes > ul > li:before {
  content: "※";
  display: inline-block;
  margin-left: -1em;
}
.contact-form-notes > ul > li + li {
  margin-top: 5px;
}
@media screen and (max-width: 750px) {
  .contact-form-notes {
    padding: 26px 0px 21px;
  }
  .contact-form-notes > ul {
    padding-left: 0.7em;
  }
  .contact-form-notes > ul > li {
    font-size: 12px;
    letter-spacing: 0.07em;
    line-height: 1.6666666667;
  }
  .contact-form-notes > ul > li + li {
    margin-top: 7px;
  }
}

.efo-form input[type=text],
.efo-form input[type=tel],
.efo-form input[type=email],
.efo-form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 15px;
  letter-spacing: 0.08em;
  width: 100%;
  border: solid 1px #e5e5e5;
  border-radius: 10px;
  padding: 15px 14px;
}
.efo-form input[type=text]::-moz-placeholder, .efo-form input[type=tel]::-moz-placeholder, .efo-form input[type=email]::-moz-placeholder, .efo-form textarea::-moz-placeholder {
  color: #999;
  font: 400 15px "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
}
.efo-form input[type=text]::placeholder,
.efo-form input[type=tel]::placeholder,
.efo-form input[type=email]::placeholder,
.efo-form textarea::placeholder {
  color: #999;
  font: 400 15px "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
}

.efo-form textarea {
  line-height: 1.8;
  width: 100% !important;
  height: 150px !important;
  padding: 10px 14px;
  margin: 0;
}

.efo-form input[type=submit],
.efo-form button[type=submit],
button#mfp_button_send {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 56px;
  max-width: 100%;
  background: #5aad31;
  border: none;
  border-radius: 30px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 25px auto 0;
  text-shadow: none;
  transition: all 0.2s;
}
.efo-form input[type=submit]::after,
.efo-form button[type=submit]::after,
button#mfp_button_send::after {
  content: "";
  position: absolute;
  right: 19px;
  top: 0;
  bottom: 0;
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/common/btn-arrow_w.svg) center/contain no-repeat;
  margin: auto;
  transition: 0.2s;
}
.efo-form input[type=submit]:hover::after,
.efo-form button[type=submit]:hover::after,
button#mfp_button_send:hover::after {
  right: 14px;
}

input[type=submit].disabled,
button[type=submit].disabled {
  color: #fff !important;
  background: #ccc !important;
  border: solid 2px #ccc !important;
}
input[type=submit].disabled::after,
button[type=submit].disabled::after {
  content: none;
}

.efo-form input[type=reset],
.efo-form button[type=reset],
button#mfp_button_cancel, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  min-width: 90px;
  font-size: 1.8rem;
  text-align: center;
  text-shadow: none !important;
  white-space: nowrap;
  color: #333;
  background: transparent;
  padding: 10px;
  border: none;
  border-bottom: solid 2px #333;
  border-radius: 0;
  box-shadow: none !important;
  transition: all 0.2s;
  margin-top: 30px;
}

/*
----------------------------------------
efo-form
----------------------------------------
*/
.form-wrap {
  width: calc(100% - 40px);
  max-width: 1200px;
  background: #fbf9f6;
  border-radius: 20px;
  margin: 50px auto 0;
  padding: 40px;
}

/* remaining */
.remaining {
  position: fixed;
  right: 20px;
  bottom: 40px;
  display: inline-block;
  background: #fff;
  border: solid 1px #5aad31;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all 0.2s;
}

.remaining.active {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}

.remaining .read {
  padding: 15px 20px;
  line-height: 1.8;
}

.remaining .num {
  background: #5aad31;
  color: #fff;
  padding: 5px 20px;
}

/* form-step */
.form-step {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 2rem;
  padding: 0 24px;
}
.form-step::before, .form-step::after {
  content: "";
  position: absolute;
  top: 10px;
  display: block;
  width: calc(50% - 40px);
  height: 4px;
  background: #dbdbdb;
  z-index: 0;
}
.form-step::before {
  right: 50%;
}
.form-step::after {
  left: 50%;
}
.form-step .step {
  position: relative;
  font-family: "Alata", "Noto Sans JP", sans-serif;
  padding-top: 36px;
  text-align: center;
  z-index: 1;
}
.form-step .step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  width: 14px;
  height: 14px;
  background: #fff;
  border: solid 5px #ccc;
  border-radius: 50%;
  margin: auto;
}
.form-step .step .en {
  display: block;
  color: #999;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1;
}
.form-step .step .jp {
  display: block;
  font-weight: 700;
}

.form-step .step-01::before,
#mfp_phase_confirm .form-step .step-02::before {
  border-color: #5aad31;
}
.form-step .step-01 .en,
#mfp_phase_confirm .form-step .step-02 .en {
  color: #5aad31;
}

#mfp_phase_confirm .form-step::before {
  background-color: #5aad31;
}

/* form body */
.efo-form .form-inner {
  background: #fff;
  border-radius: 20px;
  padding: 30px 40px 50px;
}

.efo-form .form-items {
  display: flex;
  flex-wrap: wrap;
}

.efo-form .form-wrap .input-name {
  position: relative;
  width: 237px;
  border: none;
  font-size: 17px;
  font-weight: 700;
  padding: 20px 80px 20px 0;
  text-align: left;
}

.req-label {
  position: absolute;
  top: 22px;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff8800;
  color: #fff;
  font-size: 15px;
  width: 50px;
  height: 30px;
  border-radius: 5px;
}

.efo-form .form-wrap .input-cont {
  width: calc(100% - 237px);
  padding: 13px 40px 13px 13px;
  border: none;
  line-height: 1;
  position: relative;
}

.efo-form .form-wrap .input-cont::after {
  content: "";
  position: absolute;
  top: 25px;
  right: 7px;
  display: block;
  width: 20px;
  height: 8px;
  border-bottom: solid 4px #5aad31;
  border-left: solid 4px #5aad31;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  transform: rotate(-45deg);
}

.efo-form .form-wrap .input-cont.ok::after {
  opacity: 1;
  visibility: visible;
}

.efo-form .form-wrap .input-cont .note {
  font-size: 14px;
  margin-top: 5px;
  line-height: 1.5;
}

.pp-box {
  max-height: 180px;
  background: #fafafa;
  border-radius: 10px;
  overflow: auto;
  padding: 27px 33px;
  margin-top: 12px;
  -webkit-overflow-scrolling: touch;
}

.pp-box h2 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.pp-box h3 {
  color: #666;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.8;
  margin: 3.2rem 0 1.6rem;
  padding-bottom: 0.8rem;
  border-bottom: solid 1px #ddd;
}

.pp-box p {
  color: #666;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.pp-box .address-box p {
  margin-top: 3rem;
  padding-left: 2rem;
  border-left: solid 5px #ccc;
}

.submit-box {
  margin-top: 30px;
  text-align: center;
}

.submit-box .agree .req-label {
  position: static;
  margin-right: 9px;
  margin-left: -60px;
}

.submit-box .agree div.mfp_err {
  text-align: center;
}

.agree input[type=checkbox] {
  display: inline-block;
  width: 1px;
  height: 1px;
  opacity: 0;
  margin: 0 -1px 0 0;
  padding: 0;
}

.agree label {
  position: relative;
  margin: 0 !important;
  font-size: 17px;
  letter-spacing: 0.08em;
  padding: 0 0 0 36px;
  cursor: pointer;
}
.agree label::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  background: #fff;
  border: solid 2px #dbdbdb;
  border-radius: 5px;
}
.agree label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  display: block;
  width: 20px;
  height: 8px;
  border-bottom: solid 4px #5aad31;
  border-left: solid 4px #5aad31;
  opacity: 0;
  transition: 0.2s;
  transform: rotate(-45deg);
}

.agree input[type=checkbox]:checked ~ label::after {
  opacity: 1;
}

form#mailformpro {
  padding: 0;
}

.mfp_element_all {
  max-width: 100%;
}

.mfp_element_text,
.mfp_element_number,
.mfp_element_select-one,
.mfp_element_email,
.mfp_element_tel,
.mfp_element_textarea,
.mfp_element_date,
.mfp_element_password {
  box-shadow: none;
  border: solid 1px #ddd;
  border-radius: 0;
  background: transparent;
  margin: 0;
}

.efo-form label.mfp_not_checked,
.efo-form label.mfp_checked {
  background: transparent;
  display: inline-block;
  text-align: center;
  margin: 0 10px 0 0;
  padding: 0;
  box-shadow: none;
  border: none;
  border-radius: 0;
  transition: all 0.2s;
}

.efo-form label.mfp_not_checked .mfp_err,
.efo-form label.mfp_checked .mfp_err {
  text-align: center;
}

.name.flex > span {
  padding: 0;
  margin-right: 15px;
}

.problem {
  border: solid 1px #a00 !important;
}

div.mfp_err {
  background: transparent;
  padding: 0;
  margin: 1rem 0 0;
  font-size: 1.4rem;
}

div#mfp_phase_confirm h4 {
  font-size: 2.4rem;
  font-weight: normal;
  padding: 0;
  margin: 3rem 0;
}

table#mfp_confirm_table {
  border-top: dotted 1px #999;
  margin: 30px 0 45px;
}

table#mfp_confirm_table tr th,
table#mfp_confirm_table tr td {
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: normal;
  padding: 28px 20px;
  border: none;
  border-bottom: dotted 1px #999;
}

table#mfp_confirm_table tr th {
  font-weight: 700;
  width: 277px;
}

table#mfp_confirm_table tr.mfp_colored {
  background: transparent;
}

div.mfp_buttons {
  padding: 0;
}

/* thanks-page */
.contact-thanks {
  padding: 40px 0 60px;
}
.contact-thanks__txt {
  margin: 40px 0 40px;
  text-align: center;
}
.contact-thanks .c-tel__num {
  font-size: 40px;
  letter-spacing: 0.02em;
}
.contact-thanks .c-tel__note {
  font-size: 14px;
  letter-spacing: 0.08em;
}
.contact-thanks .c-button {
  margin: 60px auto 0;
}

/*
----------------------------------------
1000
----------------------------------------
*/
@media screen and (max-width: 1000px) {
  div#mfp_phase_confirm h4 {
    font-size: 2.2rem;
  }
  table#mfp_confirm_table {
    margin: 30px 0 40px;
  }
  table#mfp_confirm_table tr th,
table#mfp_confirm_table tr td {
    font-size: 1.5rem;
  }
  table#mfp_confirm_table tr th {
    width: 200px;
  }
}
/*
----------------------------------------
768
----------------------------------------
*/
@media screen and (max-width: 750px) {
  .form-wrap {
    width: 100%;
    border-radius: 0;
    margin-top: 30px;
    padding: 24px 20px 40px;
  }
  .form-step {
    margin-bottom: 18px;
    padding: 0 7.5px;
  }
  .form-step::before, .form-step::after {
    top: 9px;
    width: calc(50% - 30px);
    height: 3px;
  }
  .form-step .step {
    padding-top: 26px;
  }
  .form-step .step::before {
    width: 10px;
    height: 10px;
  }
  .form-step .step .en {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  .form-step .step .jp {
    font-size: 16px;
    line-height: 1.85;
  }
  .efo-form .form-inner {
    padding: 10px 20px 50px;
  }
  .efo-form .form-wrap .input-name {
    position: relative;
    width: 100%;
    padding: 15px 40px 10px 0;
  }
  .efo-form .form-wrap .input-name::after {
    content: "";
    position: absolute;
    top: 25px;
    right: 5px;
    display: block;
    width: 15px;
    height: 6px;
    border-bottom: solid 3px #5aad31;
    border-left: solid 3px #5aad31;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    transform: rotate(-45deg);
  }
  .efo-form .form-wrap .input-name.ok::after {
    opacity: 1;
    visibility: visible;
  }
  .req-label {
    position: static;
    width: 45px;
    height: 25px;
    margin-left: 3px;
    font-size: 14px;
  }
  .efo-form .form-wrap .input-cont {
    width: 100%;
    padding: 0 2.5px;
  }
  .efo-form .form-wrap .input-cont::after {
    display: none;
  }
  .efo-form .form-wrap .input-cont .note {
    font-size: 12px;
  }
  .pp-box {
    height: 145px;
    border-radius: 6px;
    margin-top: 30px;
    padding: 18px 27.5px 20px 17.5px;
  }
  .pp-box h2 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .pp-box h3 {
    font-size: 13px;
    margin: 2rem 0 0.8rem;
    padding-bottom: 0.4rem;
  }
  .pp-box p {
    font-size: 12px;
    letter-spacing: 0.08em;
  }
  .submit-box {
    margin-top: 20px;
  }
  #mfp_loading,
#mfp_loading_screen,
#div#mfp_overlay_background {
    display: none !important;
  }
  .submit-box .agree .req-label {
    display: flex;
    margin: 0 auto 6px;
  }
  .agree label {
    font-size: 14px;
    letter-spacing: 0.08em;
    padding-left: 28px;
  }
  .agree label::before {
    top: 6px;
    width: 18px;
    height: 18px;
    border-width: 1px;
  }
  .agree label::after {
    left: 4px;
    top: 7px;
    width: 15px;
    height: 6px;
    border-bottom: solid 3px #5aad31;
    border-left: solid 3px #5aad31;
  }
  .efo-form input[type=submit],
.efo-form button[type=submit],
button#mfp_button_send {
    width: 210px;
    height: 50px;
    font-size: 16px;
    letter-spacing: 0.08em;
    margin-top: 18px;
  }
  .efo-form input[type=submit]::after,
.efo-form button[type=submit]::after,
button#mfp_button_send::after {
    width: 15.5;
    height: 15.5;
  }
  .efo-form input[type=reset],
.efo-form button[type=reset],
button#mfp_button_cancel, button {
    font-size: 1.6rem;
    padding: 10px;
    margin-top: 20px;
  }
  div#mfp_phase_confirm h4 {
    font-size: 1.8rem;
    margin: 20px 0;
  }
  table#mfp_confirm_table {
    margin: 20px 0 3rem;
    border: none;
    border-top: dotted 1px #999;
  }
  table#mfp_confirm_table tr {
    -js-display: flex;
    display: -ms-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
  table#mfp_confirm_table tr th {
    width: 100%;
    padding: 11px 20px;
    border: none;
  }
  table#mfp_confirm_table tr td {
    width: 100%;
    padding: 16.5px 20px;
  }
  div.mfp_buttons {
    margin-bottom: 2.5rem;
  }
  .remaining {
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
  }
  .remaining .num {
    font-size: 1.8rem;
    line-height: 1.5;
    padding: 10px 20px 11.5px;
  }
  .remaining .read {
    display: none;
  }
  /* thanks-page */
  .contact-thanks {
    padding: 30px 0 10px;
  }
  .contact-thanks__txt {
    font-size: 14px;
    margin: 25px 0 25px;
    text-align: left;
  }
  .contact-thanks .c-tel__num {
    font-size: 32px;
    letter-spacing: 0.02em;
  }
  .contact-thanks .c-tel__num .icon {
    width: 23.5px;
    height: 23.5px;
  }
  .contact-thanks .c-tel__note {
    font-size: 12px;
    letter-spacing: 0.08em;
  }
  .contact-thanks .c-button {
    width: 280px;
    margin: 40px auto 0;
  }
}
