@charset "UTF-8";
/* ------------------------------
	レスポンシブ
------------------------------ */
/* ------------------------------
	フォント
------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPMincho:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
/* ------------------------------
	カラー
------------------------------ */
/* ------------------------------
	.contact
------------------------------ */
.contact {
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact {
    margin-top: 0;
    padding: 0;
  }
}
.contact .lead_box {
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .contact .lead_box {
    margin-bottom: 40px;
  }
}
.contact .lead_box .ttl_box {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .contact .lead_box .ttl_box {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contact .lead_box .ttl_box .str_ttl {
    font-size: 2.2rem;
    line-height: 1.5;
  }
}

/* ------------------------------
	.form_wrap
------------------------------ */
.form_wrap .form_box {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .form_wrap .form_box {
    display: block;
  }
}
.form_wrap .form_box + .form_box {
  margin-top: 32px;
}
.form_wrap .form_ttl {
  position: relative;
  flex-shrink: 0;
  width: 230px;
  padding-top: 16px;
  padding-left: 22px;
  line-height: 1.5;
  font-size: 1.9rem;
}
@media screen and (max-width: 768px) {
  .form_wrap .form_ttl {
    width: 100%;
    padding: 0;
    margin-bottom: 16px;
    font-size: 1.6rem;
  }
}
.form_wrap .form_ttl .req {
  position: absolute;
  top: 18px;
  left: 0;
  color: #00A514;
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  .form_wrap .form_ttl .req {
    position: relative;
    top: 0;
    margin-right: 8px;
    font-size: 1.4rem;
  }
}
.form_wrap .form_txt {
  position: relative;
  width: 100%;
  line-height: 1.6;
}
.form_wrap .form_txt * {
  line-height: 1.6;
}
.form_wrap .form_txt .txt {
  padding: 6px 0;
  line-height: 1.8;
}
.form_wrap .form_input,
.form_wrap .form_select,
.form_wrap .form_textarea {
  width: 100%;
  height: 56px;
  padding: 0 15px;
  background: #F5F5F5;
  border: 1px solid #99D7A0;
  border-radius: 8px;
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  .form_wrap .form_input,
  .form_wrap .form_select,
  .form_wrap .form_textarea {
    font-size: 1.4rem;
  }
}
.form_wrap .form_input::placeholder,
.form_wrap .form_select::placeholder,
.form_wrap .form_textarea::placeholder {
  color: #ccc;
}
.form_wrap .form_select {
  width: 280px;
  padding-right: 40px;
  background: #F5F5F5 url(../img/contact/ico_select.svg) no-repeat;
  background-position: calc(100% - 16px) center;
}
.form_wrap .form_textarea {
  width: 100%;
  height: 240px;
  padding: 15px 15px;
  line-height: 1.8;
}
.form_wrap .checkbox label {
  position: relative;
  display: flex;
  line-height: 1.5;
  cursor: pointer;
}
.form_wrap .checkbox label span {
  display: flex;
}
.form_wrap .checkbox label span::before {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  margin-right: 15px;
  border: 1px solid #00A514;
}
.form_wrap .checkbox label span::after {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 7px;
  margin: auto;
  content: "";
  display: none;
  width: 12px;
  height: 7px;
  transform: rotate(-45deg);
  border-left: 2px solid #00A514;
  border-bottom: 2px solid #00A514;
}
.form_wrap .radio label {
  display: flex;
  font-size: 1.9rem;
}
@media screen and (max-width: 768px) {
  .form_wrap .radio label {
    font-size: 1.6rem;
  }
}
.form_wrap .radio label span {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 2.2rem;
  line-height: 1.3;
  cursor: pointer;
}
.form_wrap .radio label span::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background: #fff;
  border: 0.2rem solid #00A514;
  border-radius: 50%;
}
.form_wrap .radio label span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.4rem;
  margin: auto;
  content: "";
  display: none;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #00A514;
}
.form_wrap input[type=checkbox],
.form_wrap input[type=radio] {
  width: 1px;
  margin: 0;
  visibility: hidden;
}
.form_wrap input[type=checkbox]:checked,
.form_wrap input[type=radio]:checked {
  appearance: none;
}
.form_wrap .radio input[type=radio]:checked + span::after,
.form_wrap .checkbox input[type=checkbox]:checked + span::after {
  display: block;
}
.form_wrap .radio_wrap,
.form_wrap .checkbox_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 3rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .form_wrap .radio_wrap,
  .form_wrap .checkbox_wrap {
    flex-direction: column;
    gap: 1rem;
  }
}
.form_wrap .btm_check {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .form_wrap .btm_check {
    margin-top: 32px;
  }
}
.form_wrap .btm_check .ico {
  margin: 0 0 0 2.4rem;
}
.form_wrap .btm_check .checkbox {
  font-size: 1.9rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .form_wrap .btm_check .checkbox {
    font-size: 1.6rem;
  }
}
.form_wrap .btm_check .checkbox .link {
  text-decoration: underline;
  color: #00A514;
}
@media screen and (min-width: 769px) {
  .form_wrap .btm_check .checkbox .link:hover {
    text-decoration: none;
  }
}
.form_wrap .btm_check .wpcf7-list-item {
  margin: 0;
}
.form_wrap .btm_check .wpcf7-list-item-label {
  font-size: 1.9rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .form_wrap .btm_check .wpcf7-list-item-label {
    font-size: 1.6rem;
  }
}
.form_wrap .btm_check .wpcf7-list-item-label .link {
  text-decoration: underline;
  color: #00A514;
}
@media screen and (min-width: 769px) {
  .form_wrap .btm_check .wpcf7-list-item-label .link:hover {
    text-decoration: none;
  }
}
.form_wrap .btn_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 38px;
}
@media screen and (max-width: 768px) {
  .form_wrap .btn_box {
    margin-top: 32px;
  }
}
.form_wrap .form_btn {
  position: relative;
  display: block;
  padding: 17px 72px 17px 24px;
  border: 1px solid #00A514;
  border-radius: 50px;
  background: #FAFAFA;
  color: #00A514;
  font-size: 2.3rem;
  line-height: 1.5;
  -webkit-transition: border 0.4s ease;
  transition: border 0.4s ease;
}
@media screen and (max-width: 768px) {
  .form_wrap .form_btn {
    padding: 17px 68px 17px 20px;
    font-size: 1.4rem;
  }
}
.form_wrap .form_btn .arw {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  margin: auto;
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #DCF0E2 url(../img/common/ico_arw01.svg) no-repeat center center;
  background-size: 11px;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
@media screen and (max-width: 768px) {
  .form_wrap .form_btn .arw {
    right: 20px;
  }
}
@media screen and (min-width: 769px) {
  .form_wrap .form_btn:hover {
    opacity: 1;
    border-color: #fff;
  }
  .form_wrap .form_btn:hover .arw {
    background: #00A514 url(../img/common/ico_arw05.svg) no-repeat center center;
    background-size: 11px;
  }
}

/* ------------------------------
	.thanks
------------------------------ */
.contact.thanks .round_btn {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .contact.thanks .round_btn {
    margin-top: 32px;
  }
}