@charset "UTF-8";
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/* ************************************************
 *	お問い合わせフォーム
 * ************************************************ */
.contact_block_ttl {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  border-bottom: 1px solid #DDD8BF;
  padding-bottom: 10px;
  margin-bottom: 25px;
}
@media print, screen and (min-width: 768px) {
  .contact_block_ttl {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 960px) {
  .contact_block_ttl {
    font-size: 28px;
    padding-bottom: 15px;
    margin-bottom: 40px;
  }
}

.contact_tel {
  display: inline-block;
  background-color: #F1F0EB;
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  border-radius: 8px;
  padding: 20px 30px;
}
@media print, screen and (min-width: 768px) {
  .contact_tel {
    font-size: 32px;
    padding: 25px 50px;
  }
}
@media print, screen and (min-width: 960px) {
  .contact_tel {
    font-size: 38px;
    padding: 30px 60px;
  }
}

.form_lead {
  text-align: center;
  margin-bottom: 40px;
}

.form_block {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
@media print, screen and (min-width: 960px) {
  .form_block {
    gap: 40px 0;
  }
}
@media print, screen and (min-width: 768px) {
  .form_block dl {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.form_block dt {
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) {
  .form_block dt {
    width: 150px;
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 960px) {
  .form_block dt {
    width: 180px;
    font-size: 18px;
  }
}
@media print, screen and (min-width: 960px) {
  .form_block dt p {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media print, screen and (min-width: 768px) {
  .form_block dd {
    width: calc(100% - 180px);
  }
}
@media print, screen and (min-width: 960px) {
  .form_block dd {
    width: calc(100% - 250px);
  }
}
.form_block input:not([type=radio]), .form_block textarea {
  width: 100%;
  color: inherit;
  border: 1px solid #D7D7D7;
  border-radius: 5px;
  padding: 10px;
}
@media print, screen and (min-width: 960px) {
  .form_block input:not([type=radio]), .form_block textarea {
    padding: 10px 15px;
  }
}
.form_block select {
  background-color: #fff;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  border: 1px solid #ccc;
  padding: 5px 8px;
}
.form_block .required {
  display: inline-block;
  background-color: #C33E3E;
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  border-radius: 5px;
  padding: 3px 5px;
  margin-left: 1em;
}
@media print, screen and (min-width: 960px) {
  .form_block .required {
    font-size: 12px;
    padding: 5px;
    margin-left: 0;
  }
}

.submit_block {
  margin-top: 25px;
}
@media print, screen and (min-width: 960px) {
  .submit_block {
    margin-top: 50px;
  }
}
.submit_block .policy_check {
  background: #F1F0EB;
  text-align: center;
  padding: 30px;
  margin-bottom: 50px;
}
.submit_block .policy_check a {
  display: inline-block;
  font-weight: 500;
  text-decoration: underline;
  margin-bottom: 1em;
}
@media print, screen and (min-width: 960px) {
  .submit_block .policy_check a {
    transition: opacity 0.3s;
  }
  .submit_block .policy_check a:hover {
    opacity: 0.6;
  }
}
.submit_block .policy_check p.policy_check_txt {
  text-align: left;
}
@media print, screen and (min-width: 768px) {
  .submit_block .policy_check p.policy_check_txt {
    text-align: center;
  }
}
.submit_block .policy_check .wpcf7-list-item {
  margin-left: 0;
}
.submit_block .policy_check input[type=checkbox] {
  width: 22px;
  height: 22px;
  position: relative;
  top: 3px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 10px;
  border-radius: 3px;
  box-sizing: border-box;
  border: 1px solid #DDD8BF;
  background: #fff;
}
.submit_block .policy_check input[type=checkbox]:checked::before {
  content: "";
  width: 9px;
  height: 3px;
  display: block;
  position: absolute;
  top: 15px;
  left: 0;
  background: #2D2E2D;
  transform: rotate(45deg);
  transform-origin: right center;
}
.submit_block .policy_check input[type=checkbox]:checked::after {
  content: "";
  width: 15px;
  height: 3px;
  display: block;
  position: absolute;
  top: 15px;
  left: 8px;
  background: #2D2E2D;
  transform: rotate(-53deg);
  transform-origin: left center;
}
.submit_block .reCAPTCHA_txt {
  color: #999;
  font-size: 13px;
  text-align: center;
  margin-bottom: 40px;
}
.submit_block .reCAPTCHA_txt a {
  color: #999;
  text-decoration: underline;
}
@media print, screen and (min-width: 960px) {
  .submit_block .reCAPTCHA_txt a {
    transition: opacity 0.3s;
  }
  .submit_block .reCAPTCHA_txt a:hover {
    opacity: 0.6;
  }
}
.submit_block input[type=submit] {
  display: block;
  width: 260px;
  background-color: #DDD8BF;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1em;
  text-indent: 1em;
  text-align: center;
  border: none;
  border-radius: 5px;
  padding: 20px 0;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.6s;
}
@media print, screen and (min-width: 768px) {
  .submit_block input[type=submit] {
    width: 300px;
    font-size: 22px;
  }
}
@media print, screen and (min-width: 960px) {
  .submit_block input[type=submit] {
    transition: opacity 0.3s;
  }
  .submit_block input[type=submit]:hover {
    opacity: 0.6;
  }
}
.submit_block input[type=submit]:disabled {
  opacity: 0.3;
}

::-webkit-input-placeholder {
  color: #D7D7D7;
}

::-moz-placeholder {
  color: #D7D7D7;
}

:-ms-input-placeholder {
  color: #D7D7D7;
}

::-ms-input-placeholder {
  color: #D7D7D7;
}

::placeholder {
  color: #D7D7D7;
}/*# sourceMappingURL=form.css.map */