.header .navbar .vertical-logo {
  padding-left: 0px;
  width: 180px;
  margin: 20px auto;
}

.tel-form {
  margin-top: 0;
}

.form-wrap label {
  padding-left: 30px;
  display: block;
  font-size: 16px;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 768px) {
  .form-wrap label {
    font-size: 12px;
  }
}

.form-wrap input.checkbox,
.form-wrap input.radio {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.form-wrap .indicator {
  width: 20px;
  height: 20px;
  background: #efefef;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
}

.form-wrap .radioBg {
  width: 20px;
  height: 20px;
  background: #efefef;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.form-wrap label:hover input.checkbox ~ .indicator,
.form-wrap label input.checkbox:focus ~ .indicator,
.form-wrap label:hover input.radio ~ .radioBg,
.form-wrap label input.radio:focus ~ .radioBg {
  background: #efefef;
}

.form-wrap label input.checkbox:checked ~ .indicator,
.form-wrap label input.radio:checked ~ .radioBg {
  background: #7ab929;
}

.form-wrap label input.checkbox:checked ~ .indicator.blue,
.form-wrap label input.radio:checked ~ .radioBg.blue {
  background: #57bbe5;
}

.form-wrap label:hover input.checkbox:not([disabled]):checked ~ .indicator,
.form-wrap label:hover input.radio:not([disabled]):checked ~ .radioBg {
  background: rgba(123, 185, 41, 0.7);
}

.form-wrap label:hover input.checkbox:not([disabled]):checked ~ .indicator.blue,
.form-wrap label:hover input.radio:not([disabled]):checked ~ .radioBg.blue {
  background: #57bbe5;
}

.form-wrap label input.checkbox:disabled ~ .indicator,
.form-wrap label input.radio:disabled ~ .radioBg {
  background: #efefef;
  opacity: 0.6;
  pointer-events: none;
}

.form-wrap .indicator::after,
.form-wrap .radioBg::after {
  content: "";
  display: none;
  position: absolute;
}

.form-wrap label input.checkbox:checked ~ .indicator::after,
.form-wrap label input.radio:checked ~ .radioBg::after {
  display: block;
}

.form-wrap .check .indicator::after {
  width: 5px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  left: 8px;
  top: 4px;
  transform: rotate(45deg);
}

.form-wrap .radio .radioBg::after {
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  left: 6px;
  top: 6px;
}

.form-wrap .check input.checkbox:disabled ~ .indicator::after,
.form-wrap .radio input.checkbox:disabled ~ .radioBg::after {
  border-color: #7b7b7b;
}

.selectWrapAll {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .selectWrapAll {
    gap: 3px;
  }
}

.selectwrap {
  position: relative;
  width: 283px;
}

.selectwrap.small {
  width: 94px;
}
@media screen and (max-width: 768px) {
  .selectwrap.small {
    width: 53px;
  }
}

.selectwrap.mid {
  width: 139px;
}
@media screen and (max-width: 768px) {
  .selectwrap.mid {
    width: 105px;
  }
}

.selectwrap::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #58504a;
  border-right: 2px solid #58504a;
  transform: translateY(-50%) rotate(135deg);
  pointer-events: none;
  content: "";
}

.select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  box-sizing: border-box;
  height: 35px;
  background-color: #efefef;
  border: none;
  border-radius: 2px;
  padding: 10px;
  cursor: pointer;
}

select:focus {
  outline: none;
}

::-ms-expand {
  display: none;
}

input[type=text],
input[type=email],
textarea {
  padding: 8px 5px;
  background: #efefef;
  width: 100%;
  box-sizing: border-box;
  font-size: 1.4rem;
}

textarea {
  min-height: 150px;
  width: 100%;
  box-sizing: border-box;
}

.s-block,
.m-block {
  display: flex;
  align-items: center;
  gap: 6px;
}

.s-block input {
  width: 40px;
  height: 26px;
  padding: 5px;
  font-size: 1.3rem;
}

.m-block input {
  width: 90px;
  height: 26px;
  padding: 5px;
  font-size: 1.3rem;
}

.form-wrap {
  padding: 5vw 0;
  display: flex;
  justify-content: space-between;
}
.form-wrap .l-col {
  width: 400px;
  margin: 0 auto;
}
.form-wrap .l-col h2 {
  text-align: center;
  color: #eb5505;
  font-size: clamp(20px, 3vw, 30px);
  margin-bottom: 30px;
}
.form-wrap .l-col h2.txt-green {
  color: #7ab929;
}
.form-wrap .l-col h2.txt-blue {
  color: #57bbe5;
}
.form-wrap .l-col h2 > span {
  display: block;
  margin-top: 10px;
}
.form-wrap .l-col .read {
  padding: 16px;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  line-height: 1.6;
}
.form-wrap .l-col .read h4 {
  color: #eb5505;
  font-size: clamp(14px, 2vw, 16px);
}
.form-wrap .r-col {
  width: calc(100% - 500px);
}
.form-wrap .r-col h2 {
  margin-bottom: 2em;
  font-size: clamp(20px, 3vw, 28px);
}
.form-wrap .r-col p.read {
  margin-bottom: 40px;
}
.form-wrap .r-col p.read a {
  color: #eb5505;
  text-decoration: underline;
}
.form-wrap .form-block {
  margin-bottom: 40px;
}
.form-wrap .form-block h3.block-title {
  text-align: center;
  background-color: #7ab929;
  color: #fff;
  padding: 10px;
  font-size: clamp(20px, 2vw, 24px);
  margin-bottom: 20px;
}
.form-wrap .form-block h3.block-title.blue {
  background-color: #57bbe5;
}
.form-wrap .form-block dl {
  display: flex;
  flex-wrap: wrap;
}
.form-wrap .form-block dl dt {
  width: 200px;
  font-weight: normal;
  position: relative;
  padding: 20px 0 16px;
}
.form-wrap .form-block dl dt .require {
  position: absolute;
  right: 0;
  top: 24px;
  padding: 5px 10px;
  background: #eb5505;
  color: #fff;
  font-size: 10px;
}
.form-wrap .form-block dl dd {
  width: calc(100% - 200px);
  padding: 20px 0 0 10px;
}
.form-wrap .form-block dl dd p {
  font-size: 12px;
  line-height: 2;
}
.form-wrap .form-block dl dd small {
  font-size: 1.3rem;
}
.form-wrap .form-block dl dd a {
  color: #eb5505;
  text-decoration: underline;
}
.form-wrap .form-block dl dd ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  margin-top: 4px;
}
.form-wrap .form-block dl dd ul li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.form-wrap .form-block dl dd ul li.w50 {
  width: 47%;
}
@media screen and (max-width: 768px) {
  .form-wrap {
    flex-direction: column;
  }
  .form-wrap .l-col {
    width: 100%;
    margin: 0 auto;
  }
  .form-wrap .l-col h2 {
    text-align: center;
    color: #eb5505;
    font-size: clamp(20px, 3vw, 30px);
    margin-bottom: 30px;
  }
  .form-wrap .r-col {
    width: 100%;
    padding: 1em;
  }
  .form-wrap .r-col .read {
    font-size: 14px;
  }
  .form-wrap .form-block {
    margin-bottom: 30px;
  }
  .form-wrap .form-block h3.block-title {
    font-size: 18px;
  }
  .form-wrap .form-block dl {
    flex-direction: column;
  }
  .form-wrap .form-block dl dt {
    width: 100%;
    font-weight: normal;
    position: relative;
    padding: 20px 0 16px;
  }
  .form-wrap .form-block dl dt .require {
    position: relative;
    display: inline-block;
    right: inherit;
    top: 0;
    margin-left: 10px;
  }
  .form-wrap .form-block dl dd {
    width: 100%;
    padding: 12px 0 0 10px;
  }
  .form-wrap .form-block dl dd p {
    font-size: 12px;
    line-height: 2;
  }
  .form-wrap .form-block dl dd small {
    font-size: 1.2rem;
  }
  .form-wrap .form-block dl dd ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
    margin-top: 4px;
  }
  .form-wrap .form-block dl dd ul li {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .form-wrap .form-block dl dd ul li.w50 {
    width: 40%;
  }
}

.formBtn {
  text-align: center;
  margin: 2em auto;
}
.formBtn input.submit {
  background-color: #fff;
  border-radius: 100vmax;
  width: 260px;
  border: 1px solid #7ab929;
  padding: 10px;
  color: #7ab929;
  cursor: pointer;
  font-size: 1.8rem;
}
.formBtn input.backBtn {
  display: inline-block;
  background-color: #fff;
  border-radius: 100vmax;
  width: 260px;
  border: 1px solid #878787;
  background-color: #878787;
  padding: 10px;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.8rem;
  margin-right: 1em;
}
@media screen and (max-width: 768px) {
  .formBtn .formBtn {
    text-align: center;
    margin: 2em auto;
  }
  .formBtn .formBtn input.submit {
    background-color: #fff;
    border-radius: 100vmax;
    width: 260px;
    border: 1px solid #7ab929;
    padding: 10px;
    color: #7ab929;
    cursor: pointer;
    font-size: 1.8rem;
  }
  .formBtn .formBtn input.backBtn {
    display: inline-block;
    background-color: #fff;
    border-radius: 100vmax;
    width: 260px;
    border: 1px solid #878787;
    background-color: #878787;
    padding: 10px;
    color: #ffffff;
    cursor: pointer;
    font-size: 1.8rem;
    margin-right: 1em;
  }
}

div.mfp_buttons {
  margin-top: 1.3em;
}

div.mfp_buttons button#mfp_button_send {
  display: inline-block;
  background-color: #fff;
  border-radius: 100vmax;
  width: 260px;
  border: 1px solid #7ab929;
  padding: 10px;
  color: #7ab929;
  cursor: pointer;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  div.mfp_buttons button#mfp_button_send {
    width: 150px;
    font-size: 1.6rem;
  }
}

div.mfp_buttons button#mfp_button_cancel {
  display: inline-block;
  background-color: #fff;
  border-radius: 100vmax;
  width: 260px;
  border: 1px solid #878787;
  background-color: #878787;
  padding: 10px;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.8rem;
  margin-right: 1em;
}
@media screen and (max-width: 768px) {
  div.mfp_buttons button#mfp_button_cancel {
    width: 150px;
    font-size: 1.6rem;
  }
}

#form {
  width: 100%;
  border: 1px solid #ccc;
  border-collapse: collapse;
}
#form th {
  width: 200px;
  font-weight: normal;
  position: relative;
  padding: 20px 10px 16px;
  border: 1px solid #ccc;
}
#form td {
  width: calc(100% - 200px);
  padding: 20px 0 0 10px;
  border: 1px solid #ccc;
}
#form td .msg {
  color: red;
}

div#mfp_loading_screen {
  display: none;
}

.flexbox {
  display: flex;
  gap: 15px;
}

#mfp_phase_confirm_inner h4 {
  margin-bottom: 1.4em;
}

table#mfp_confirm_table tr th,
table#mfp_confirm_table tr td {
  font-size: 14px;
}

.mfp_element_submit:hover,
.mfp_element_reset:hover,
.mfp_element_button:hover,
button.mfp_next:hover,
button.mfp_prev:hover {
  background: none;
  box-shadow: 0px 2px 15px #ccc;
}/*# sourceMappingURL=contact.css.map */