@charset "UTF-8";
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/*********************************************************************
  フォントサイズ
    $font-size: フォントサイズ(必須)
    $line-height: ラインハイト or 空
    $letter-spacing: レタースペーシング or 空
**********************************************************************/
/* ************************************************
 *	お問い合わせフォーム
 * ************************************************ */
.form_block {
  display: flex;
  flex-direction: column;
  gap: 32px 0;
}
@media print, screen and (min-width: 600px) {
  .form_block {
    gap: 48px 0;
  }
}
.form_block .col2-block {
  gap: 0 16px;
}
@media print, screen and (min-width: 600px) {
  .form_block .col2-block {
    gap: 0 24px;
  }
}
.form_block .col2-block div {
  width: calc(50% - 8px);
}
@media print, screen and (min-width: 600px) {
  .form_block .col2-block div {
    width: calc(50% - 12px);
  }
}
.form_block dt {
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 8px;
}
.form_block dt p {
  display: flex;
  align-items: center;
  gap: 0 8px;
}
.form_block input:not([type=radio]):not([type=checkbox]), .form_block textarea {
  width: 100%;
  color: #70543A;
  border: 1px solid rgba(112, 84, 58, 0.5);
  padding: 8px 10px;
}
.form_block input[type=checkbox], .form_block input[type=radio] {
  position: relative;
  width: 22px;
  height: 22px;
  vertical-align: -6px;
  border: 1px solid rgba(50, 50, 50, 0.3);
  border-radius: 3px;
  margin-right: 3px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form_block input[type=checkbox]:checked::before, .form_block input[type=radio]:checked::before {
  content: "";
  width: 9px;
  height: 3px;
  display: block;
  position: absolute;
  top: 14px;
  left: 0;
  background: #70543A;
  transform: rotate(45deg);
  transform-origin: right center;
}
.form_block input[type=checkbox]:checked::after, .form_block input[type=radio]:checked::after {
  content: "";
  width: 15px;
  height: 3px;
  display: block;
  position: absolute;
  top: 14px;
  left: 8px;
  background: #70543A;
  transform: rotate(-53deg);
  transform-origin: left center;
}
.form_block .checkbox-block .wpcf7-form-control {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}
.form_block .checkbox-block .wpcf7-list-item {
  margin-left: 0;
}
.form_block select {
  background-color: #fff;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  padding: 5px 8px;
}
.form_block .required {
  display: inline-block;
  color: #C30606;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  border: 1px solid #C30606;
  padding: 4px 5px;
}
.form_block .note {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 8px;
}
@media print, screen and (min-width: 600px) {
  .form_block .note {
    font-size: 1.3rem;
  }
}
.form_block .wpcf7-not-valid-tip {
  color: #C30606;
}

.submit_block {
  margin-top: 40px;
}
@media print, screen and (min-width: 600px) {
  .submit_block {
    margin-top: 56px;
  }
}
.submit_block .policy_check {
  background-color: rgba(227, 222, 218, 0.4);
  text-align: center;
  padding: 24px;
  margin-bottom: 32px;
}
@media print, screen and (min-width: 600px) {
  .submit_block .policy_check {
    padding: 32px;
    margin-bottom: 48px;
  }
}
.submit_block .policy_check a {
  display: inline-block;
  font-weight: 600;
  text-decoration: underline;
  margin-bottom: 1em;
}
.submit_block .policy_check p.policy_check_txt {
  text-align: left;
}
@media print, screen and (min-width: 600px) {
  .submit_block .policy_check p.policy_check_txt {
    text-align: center;
  }
}
.submit_block .policy_check p.policy_check_txt br {
  display: none;
}
@media print, screen and (min-width: 600px) {
  .submit_block .policy_check p.policy_check_txt br {
    display: block;
  }
}
.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;
  border: 1px solid #70543A;
  margin-right: 10px;
  box-sizing: border-box;
  background: #fff;
}
.submit_block .policy_check input[type=checkbox]:checked::before {
  content: "";
  width: 9px;
  height: 3px;
  display: block;
  position: absolute;
  top: 15px;
  left: 1px;
  background: #70543A;
  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: 9px;
  background: #70543A;
  transform: rotate(-53deg);
  transform-origin: left center;
}
.submit_block .reCAPTCHA_txt {
  color: #999;
  font-size: 13px;
  text-align: center;
  margin-bottom: 32px;
}
@media print, screen and (min-width: 600px) {
  .submit_block .reCAPTCHA_txt {
    margin-bottom: 48px;
  }
}
.submit_block .reCAPTCHA_txt a {
  color: #999;
  text-decoration: underline;
}
.submit_block input[type=submit] {
  display: block;
  width: 260px;
  background-color: #3F2B2B;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1em;
  text-indent: 1em;
  text-align: center;
  border: none;
  padding: 20px 0;
  margin: 0 auto;
  cursor: pointer;
  transition: opacity 0.6s;
}
@media print, screen and (min-width: 600px) {
  .submit_block input[type=submit] {
    width: 300px;
    font-size: 22px;
  }
}
.submit_block input[type=submit]:disabled {
  opacity: 0.5;
}

::-webkit-input-placeholder {
  color: rgba(28, 28, 28, 0.3);
}

::-moz-placeholder {
  color: rgba(28, 28, 28, 0.3);
}

:-ms-input-placeholder {
  color: rgba(28, 28, 28, 0.3);
}

::-ms-input-placeholder {
  color: rgba(28, 28, 28, 0.3);
}

::placeholder {
  color: rgba(28, 28, 28, 0.3);
}/*# sourceMappingURL=form.css.map */