@charset "UTF-8";
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/*********************************************************************
  フォントサイズ
    $font-size: フォントサイズ(必須)
    $line-height: ラインハイト or 空
    $letter-spacing: レタースペーシング or 空
**********************************************************************/
/* ************************************************
 *	お問い合わせフォーム
 * ************************************************ */
.contact_header {
  position: relative;
}

.page_ttl {
  text-align: center;
  padding: 1em 0 3em;
  position: absolute;
  background-color: #fff !important;
  border-radius: 10px;
  padding: 10px 50px;
  display: inline-block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 245px;
}
@media screen and (min-width: 600px) {
  .page_ttl {
    max-width: 325px;
  }
}
.page_ttl::after {
  display: none;
}
.page_ttl .ja_ttl {
  color: #4c3f3a !important;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (min-width: 600px) {
  .page_ttl .ja_ttl {
    font-size: 32px;
  }
}
.page_ttl .ja_ttl .sub {
  font-size: 16px;
  margin-left: 0;
  font-weight: bold;
  display: block;
}
@media screen and (min-width: 600px) {
  .page_ttl .ja_ttl .sub {
    font-size: 18px;
    display: inline;
    margin-left: 15px;
  }
}

.page_contactform {
  width: 100%;
  padding: 0 20px;
  max-width: 1000px;
  margin: 40px auto 0;
}
.page_contactform dl {
  padding: 20px 0;
  border-bottom: 2px dashed #beb9b7;
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 960px) {
  .page_contactform dl {
    flex-direction: row;
  }
}
.page_contactform dt.contact_block_left {
  font-weight: 700;
  line-height: 1;
  width: 100%;
  padding: 8px 0;
}
@media print, screen and (min-width: 960px) {
  .page_contactform dt.contact_block_left {
    justify-content: space-between;
    width: 300px;
    margin-bottom: 0;
  }
}
.page_contactform dd.contact_block_right {
  padding: 8px 0;
}
@media print, screen and (min-width: 960px) {
  .page_contactform dd.contact_block_right {
    width: calc(100% - 300px);
  }
}
.page_contactform dd.contact_block_right.postal_code input {
  width: 80px;
}
.page_contactform input[type=date] {
  box-sizing: border-box;
  width: 100% !important;
  max-width: 100%;
  -webkit-appearance: none;
  height: 42px;
  padding: 8px 10px;
  background-color: #fff;
}
.page_contactform input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #4c3f3a;
  border-radius: 50%;
  background: #fff;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}
.page_contactform input[type=radio]:checked::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #f8b62d;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page_contactform input:not([type=radio]),
.page_contactform textarea {
  width: 100%;
  color: inherit;
  border: 1px solid #beb9b7;
  border-radius: 5px;
  padding: 8px 10px;
}
.page_contactform select {
  background-color: #fff;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  border: 1px solid #ccc;
  padding: 5px 8px;
}
.page_contactform .square {
  color: #040f50;
}

.submit_block {
  margin-top: 25px;
}
.submit_block .policy_check {
  background: #f9f1d5;
  text-align: center;
  padding: 30px;
  margin-bottom: 50px;
}
.submit_block .policy_check a {
  display: inline-block;
  color: #603813;
  font-weight: 700;
  text-decoration: underline;
  margin-bottom: 1em;
}
.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 #999;
  background: rgba(0, 0, 0, 0);
  background: #fff;
}
.submit_block .policy_check input[type=checkbox]:checked::before {
  content: "";
  width: 10px;
  height: 4px;
  display: block;
  position: absolute;
  top: 15px;
  left: 0;
  background: #f8b62d;
  transform: rotate(45deg);
  transform-origin: right center;
}
.submit_block .policy_check input[type=checkbox]:checked::after {
  content: "";
  width: 16px;
  height: 4px;
  display: block;
  position: absolute;
  top: 15px;
  left: 8px;
  background: #f8b62d;
  transform: rotate(-53deg);
  transform-origin: left center;
}
.submit_block .reCAPTCHA_txt {
  font-size: 13px;
  text-align: center;
  margin-bottom: 40px;
}
.submit_block .reCAPTCHA_txt a {
  color: #f8b62d;
}
.submit_block input[type=submit] {
  display: block;
  width: 260px;
  color: #4c3f3a;
  background-color: transparent;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  text-indent: 1em;
  text-align: center;
  border: 2px dashed #beb9b7;
  border-radius: 10px;
  padding: 20px 0;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.6s;
  margin-top: 30px;
}
@media print, screen and (min-width: 768px) {
  .submit_block input[type=submit] {
    width: 300px;
    font-size: 22px;
    margin-top: 70px;
  }
}
.submit_block input[type=submit]:disabled {
  opacity: 0.5;
}

.img_center {
  margin-top: 15px;
  text-align: center;
}
.img_center .wpcf7-form-control-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.img_center .policy_text {
  margin-top: 30px;
  margin-bottom: 30px;
}
.img_center .policy_text a {
  color: #f8b62d;
  transition: all ease 0.3s;
  font-weight: bold;
}
.img_center input[type=checkbox] {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 10px;
  border-radius: 3px;
  box-sizing: border-box;
  border: 1px solid #4c3f3a;
  background: #fff;
}
.img_center input[type=checkbox]:checked::before {
  content: "";
  width: 10px;
  height: 4px;
  display: block;
  position: absolute;
  top: 15px;
  left: 0;
  background: #f8b62d;
  transform: rotate(45deg);
  transform-origin: right center;
}
.img_center input[type=checkbox]:checked::after {
  content: "";
  width: 16px;
  height: 4px;
  display: block;
  position: absolute;
  top: 15px;
  left: 8px;
  background: #f8b62d;
  transform: rotate(-53deg);
  transform-origin: left center;
}
.img_center a {
  transition: all ease 0.3s;
}
.img_center a:hover {
  opacity: 0.7;
}

.required {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 10px;
  background-color: #f8b62d;
  margin-left: 20px;
  border-radius: 3px;
}

.wpcf7 form .wpcf7-response-output {
  max-width: 1000px;
  margin: 30px auto 0 !important;
}

.contact_fire {
  display: flex;
  justify-content: center;
}/*# sourceMappingURL=form.css.map */