@charset "utf-8";

/*
  File Name   : contact
  Description : コンテンツエリア関係 他
*/

/* contact-btn-base
============================================================ */
.contact-btn-base {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  width: 300px;
  margin: 0 auto;
  padding: 27px 10px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 5px;
  background-color: #4797a3;
  color: #fff !important;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.contact-btn-base.disabled {
  background-color: #898989;
  cursor: default;
}
.contact-btn-base:hover {
  opacity: 0.7;
  text-decoration: none;
}
.contact-btn-base.disabled:hover {
  opacity: 1;
}
.contact-btn-base span {
  position: relative;
  padding-right: 20px;
  letter-spacing: 1px;
}
.contact-btn-base span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .contact-btn-base {
    width: 100%;
    padding: 27px 10px;
    -webkit-transition: none;
    transition: none;
  }
  .contact-btn-base:hover {
    opacity: 1;
  }
}

/* icon-xxxxx
============================================================ */
.icon-required {
  display: inline-block;
  box-sizing: border-box;
  padding: 5px 10px 5px;
  border-radius: 3px;
  background-color: #d91a48;
  /* letter-spacing: 1px; */
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.icon-any {
  display: inline-block;
  box-sizing: border-box;
  padding: 4px 10px 6px;
  border-radius: 50px;
  background-color: #dedede;
  /* letter-spacing: 1px; */
  color: #000;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
p .icon-required {
  margin-right: 10px;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .icon-required,
  .icon-any {
    padding: 4px 6px;
    font-size: 11px;
  }
  p .icon-required {
    margin-right: 5px;
  }
}

/* contact-table
============================================================ */
.contact-table {
  margin: 70px 0 0;
}
.contact-table th,
.contact-table td {
  padding: 20px 0 26px;
  font-size: 14px;
  font-weight: normal;
}
.contact-table th {
  width: 220px;
  padding-top: 28px;
  font-weight: bold;
  vertical-align: top;
}
.contact-table th .th-head .icon-required,
.contact-table th .th-head .icon-any {
  position: relative;
  top: 5px;
  float: right;
}
.mw_wp_form_confirm .contact-table th .th-head .icon-required,
.mw_wp_form_confirm .contact-table th .th-head .icon-any {
  display: none;
}
.contact-table th .th-wrap {
}
.contact-table td {
  padding-right: 40px;
  padding-left: 40px;
}

/* -confirm */
.-confirm .contact-table th {
  padding-top: 18px;
  vertical-align: middle;
}

/* completion */
.-completion .img {
  max-width: 300px;
  margin: 0 auto 60px;
}
.-completion .com-lead-text-wrap {
  padding: 0 0;
}

/* input */
.contact-input-wrap input[type="text"] {
  width: 100%;
  height: 40px;
  padding: 10px 20px;
  outline: none;
  -webkit-appearance: none;
}
.contact-input-wrap.-tel input[type="text"] {
  max-width: 200px;
}

/* textarea */
.contact-input-wrap textarea {
  width: 100%;
  min-height: 200px;
  padding: 20px 20px;
  outline: none;
  -webkit-appearance: none;
}

/* selectbox */
.mod-selectbox-orig select {
  width: 200px;
  height: 40px;
  padding: 4px 20px 6px;
  border-radius: 0;
  border-color: #ccc;
  outline: none;
  background-color: #fff;
  -webkit-appearance: none;
}
.mw_wp_form_confirm .mod-selectbox-orig::after {
  content: none;
}

/* error */
.error-text,
.mw_wp_form .error {
  display: block;
  margin-top: 10px;
  color: #de2222 !important;
  font-size: 100% !important;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .contact-table {
    margin: 40px 0 0;
  }
  .contact-table th,
  .contact-table td {
    display: block;
    padding: 8px 0 18px;
    font-size: 14px;
  }
  .contact-table th {
    width: 100%;
    padding-top: 16px;
    padding-bottom: 0;
    border-bottom: none;
  }
  .contact-table th .th-head .icon-required {
    position: relative;
    top: 2px;
  }
  .contact-table td {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  /* -confirm */
  .-confirm .contact-table th {
    padding-top: 18px;
  }

  /* input */
  .contact-input-wrap input[type="text"] {
    height: 40px;
    padding: 10px 10px;
  }
  .contact-input-wrap.-tel input[type="text"] {
    max-width: 100%;
  }

  /* textarea */
  .contact-input-wrap textarea {
    width: 100%;
    min-height: 170px;
    padding: 10px 10px;
  }
  .mod-selectbox-orig select {
    width: 100% !important;
  }
  .mod-selectbox-orig {
    min-width: 100%;
  }

  /* error */
  .error-text,
  .mw_wp_form .error {
    margin-top: 5px;
  }
}

/* checkbox and radio-wrap
============================================================ */
.checkbox-wrap,
.radio-wrap {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  margin: 0 0 0;
  padding: 0 0;
  border: none;
  border-radius: 0;
}
.checkbox-wrap.single,
.radio-wrap.single {
  width: 100%;
  margin: 15px 0;
}
.radio-wrap {
  padding: 0 0 0 0;
}
.checkbox-wrap,
.radio-wrap {
  min-width: 50%;
}
.radio-list.mod-panel-layout {
  width: auto;
}
.mwform-radio-field {
  display: inline-block;
}
.checkbox-wrap .mwform-checkbox-field span a,
.checkbox-wrap ul li span a,
.radio-wrap .mwform-radio-field span a,
.radio-wrap ul li span a {
  text-decoration: underline;
}
.checkbox-wrap .mwform-checkbox-field span a:hover,
.checkbox-wrap ul li span a:hover,
.radio-wrap .mwform-radio-field span a:hover,
.radio-wrap ul li span a:hover {
  text-decoration: none;
}
.checkbox-wrap input[type="checkbox"],
.radio-wrap input[type="radio"] {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.checkbox-wrap ul::after,
.radio-wrap ul::after {
  content: "";
  display: block;
  clear: both;
}
.checkbox-wrap .mwform-checkbox-field label,
.checkbox-wrap ul li label,
.radio-wrap .mwform-radio-field label,
.radio-wrap ul li label {
  display: inline-block;
  position: relative;
  width: 100%;
  word-break: break-all;
  cursor: pointer;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span,
.checkbox-wrap ul li label input[type="checkbox"] + span {
  position: relative;
  padding: 0 20px 0 40px;
}

/* CHECKBOX */
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span::before,
.checkbox-wrap ul:nth-of-type(1) label input[type="checkbox"] + span::before {
  border-color: #707070 !important;
  background-color: #fff !important;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"]:checked + span::before,
.checkbox-wrap ul:nth-of-type(1) label input[type="checkbox"]:checked + span::before {
  border-color: #ff416e !important;
  background-color: #ff416e !important;
}
.checkbox-wrap .mwform-checkbox-field label span,
.checkbox-wrap ul li label span,
.mw_wp_form_confirm .checkbox-wrap ul li {
  display: inline-block;
  font-size: 13px;
  line-height: 2;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"],
.checkbox-wrap ul li label input[type="checkbox"] {
  position: absolute;
  top: 3px;
  left: 0;
  opacity: 0;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span::before,
.checkbox-wrap ul li label input[type="checkbox"] + span::before,
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span::after,
.checkbox-wrap ul li label input[type="checkbox"] + span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 0;
  box-sizing: border-box;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span::before,
.checkbox-wrap ul li label input[type="checkbox"] + span::before {
  z-index: 0;
  width: 26px;
  height: 26px;
  border: 1px #616161 solid;
  border-radius: 3px;
  background-color: transparent;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span::after,
.checkbox-wrap ul li label input[type="checkbox"] + span::after {
  z-index: 1;
  width: 8px;
  height: 12px;
  margin: 6px 9px;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"]:checked + span::before,
.checkbox-wrap ul li label input[type="checkbox"]:checked + span::before {
  background-color: #616161;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"]:checked + span::after,
.checkbox-wrap ul li label input[type="checkbox"]:checked + span::after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border: 1px solid #fff;
  border-width: 0 2px 2px 0;
}

/* RADIO */
.radio-wrap .mwform-radio-field label input[type="radio"] + span,
.radio-wrap ul li label input[type="radio"] + span {
  position: relative;
  padding: 0 40px 0 28px;
}
.radio-wrap .mwform-radio-field label input[type="radio"] + span::before,
.radio-wrap ul:nth-of-type(1) label input[type="radio"] + span::before {
  border-color: #2c3e9c !important;
}
.radio-wrap .mwform-radio-field label span,
.radio-wrap ul li label span {
  display: inline-block;
  font-size: 14px;
  line-height: 1.1;
}
.radio-wrap .mwform-radio-field label input[type="radio"],
.radio-wrap ul li label input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.radio-wrap .mwform-radio-field label input[type="radio"] + span::before,
.radio-wrap ul li label input[type="radio"] + span::before {
  content: "";
  display: inline-block;
  position: absolute;
  box-sizing: border-box;
  border-radius: 18px;
}
.radio-wrap .mwform-radio-field label input[type="radio"] + span::before,
.radio-wrap ul li label input[type="radio"] + span::before {
  z-index: 0;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px #000 solid;
  background-color: transparent;
}
.radio-wrap .mwform-radio-field label input[type="radio"]:checked + span::before,
.radio-wrap ul li label input[type="radio"]:checked + span::before {
  border-width: 6px;
}
.radio-wrap .body-block {
  display: inline;
}
.radio-wrap .body-block select {
  width: auto;
}
select .platform-only {
  display: none;
}
html[data-platform="iOS"] select .platform-only,
html[data-platform="Android"] select .platform-only {
  display: block;
}
.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .checkbox-wrap .mwform-checkbox-field,
  .checkbox-wrap ul li,
  .radio-wrap .mwform-radio-field,
  .radio-wrap ul li {
    margin-bottom: 10px;
  }
  .checkbox-wrap .mwform-checkbox-field:last-of-type,
  .checkbox-wrap ul li:last-child,
  .radio-wrap .mwform-radio-field:last-of-type,
  .radio-wrap ul li:last-child {
    margin-bottom: 0 !important;
  }
  .checkbox-wrap,
  .radio-wrap {
    padding: 0 0 0 0;
  }
  .checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span::before,
  .checkbox-wrap ul li label input[type="checkbox"] + span::before {
    width: 20px;
    height: 20px;
  }
  .checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span::after,
  .checkbox-wrap ul li label input[type="checkbox"] + span::after {
    width: 6px;
    height: 8px;
    margin: 5px 7px;
  }
  .mod-selectbox-orig select {
    height: 40px;
    padding: 5px 30px 5px 10px;
  }
}

/* checkbox and radio-wrap
============================================================ */
.checkbox-wrap {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  margin: 0 0 5px;
  padding: 0 0 0 0;
  border: none;
  border-radius: 8px;
  background-color: #fff;
}
.checkbox-wrap.single,
.radio-wrap.single {
  width: 100%;
  margin: 15px 0;
}
.checkbox-wrap,
.radio-wrap {
  min-width: 50%;
}
.radio-list.mod-panel-layout {
  width: auto;
}
.mwform-radio-field {
  display: block;
  margin-bottom: 10px;
}
.checkbox-wrap .mwform-checkbox-field span a,
.checkbox-wrap ul li span a,
.radio-wrap .mwform-radio-field span a,
.radio-wrap ul li span a {
  text-decoration: underline;
}
.checkbox-wrap .mwform-checkbox-field span a:hover,
.checkbox-wrap ul li span a:hover,
.radio-wrap .mwform-radio-field span a:hover,
.radio-wrap ul li span a:hover {
  text-decoration: none;
}
.checkbox-wrap input[type="checkbox"],
.radio-wrap input[type="radio"] {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.checkbox-wrap ul::after,
.radio-wrap ul::after {
  content: "";
  display: block;
  clear: both;
}
.checkbox-wrap .mwform-checkbox-field label,
.checkbox-wrap ul li label,
.radio-wrap .mwform-radio-field label,
.radio-wrap ul li label {
  display: inline-block;
  position: relative;
  width: 100%;
  word-break: break-all;
  cursor: pointer;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span,
.checkbox-wrap ul li label input[type="checkbox"] + span {
  position: relative;
  padding: 0 20px 2px 40px;
}

/* CHECKBOX */
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span::before,
.checkbox-wrap ul:nth-of-type(1) label input[type="checkbox"] + span::before {
  border-color: #4797a3 !important;
  background-color: #fff !important;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"]:checked + span::before,
.checkbox-wrap ul:nth-of-type(1) label input[type="checkbox"]:checked + span::before {
  border-color: #4797a3 !important;
  background-color: #fff !important;
}
.checkbox-wrap .mwform-checkbox-field label span,
.checkbox-wrap ul li label span,
.mw_wp_form_confirm .checkbox-wrap ul li {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
}
.checkbox-wrap .mwform-checkbox-field label span.icon-required,
.checkbox-wrap ul li label span.icon-required {
  font-size: 10px;
  line-height: 1 !important;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"],
.checkbox-wrap ul li label input[type="checkbox"] {
  position: absolute;
  top: 3px;
  left: 0;
  opacity: 0;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span::before,
.checkbox-wrap ul li label input[type="checkbox"] + span::before,
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span::after,
.checkbox-wrap ul li label input[type="checkbox"] + span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 0;
  box-sizing: border-box;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span::before,
.checkbox-wrap ul li label input[type="checkbox"] + span::before {
  z-index: 0;
  width: 26px;
  height: 26px;
  border: 1px #616161 solid;
  border-radius: 3px;
  background-color: transparent;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span::after,
.checkbox-wrap ul li label input[type="checkbox"] + span::after {
  z-index: 1;
  width: 8px;
  height: 12px;
  margin: 7px 7px;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"]:checked + span::before,
.checkbox-wrap ul li label input[type="checkbox"]:checked + span::before {
  background-color: #616161;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"]:not(:checked).has-error + span::before,
.checkbox-wrap ul li label input[type="checkbox"]:not(:checked).has-error + span::before {
  border-color: #fa7878 !important;
  background-color: #ffdbdb !important;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"]:checked + span::after,
.checkbox-wrap ul li label input[type="checkbox"]:checked + span::after {
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  border: none;
  border-width: 0 0 0 0;
  background: #4797a3;
}

/* RADIO */
.radio-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
}
.radio-wrap .horizontal-item {
  width: auto;
}
.radio-wrap .mwform-radio-field label input[type="radio"] + span,
.radio-wrap ul li label input[type="radio"] + span {
  position: relative;
  padding: 0 20px 0 28px;
}
.radio-wrap .mwform-radio-field label input[type="radio"] + span::before,
.radio-wrap ul:nth-of-type(1) label input[type="radio"] + span::before {
  border-color: #006b9f !important;
}
.radio-wrap .mwform-radio-field label span,
.radio-wrap ul li label span {
  display: inline-block;
  font-size: 14px;
  line-height: 1.4;
}
.radio-wrap .mwform-radio-field label input[type="radio"],
.radio-wrap ul li label input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.radio-wrap .mwform-radio-field label input[type="radio"] + span::after,
.radio-wrap ul li label input[type="radio"] + span::after,
.radio-wrap .mwform-radio-field label input[type="radio"] + span::before,
.radio-wrap ul li label input[type="radio"] + span::before {
  content: "";
  display: inline-block;
  position: absolute;
  box-sizing: border-box;
  border-radius: 18px;
}
.radio-wrap .mwform-radio-field label input[type="radio"] + span::before,
.radio-wrap ul li label input[type="radio"] + span::before {
  z-index: 0;
  top: -2px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px #006b9f solid;
  background-color: transparent;
}
.radio-wrap .mwform-radio-field label input[type="radio"]:checked + span::before,
.radio-wrap ul li label input[type="radio"]:checked + span::before {
  border-width: 2px;
  background-color: #fff;
}
.radio-wrap .mwform-radio-field label input[type="radio"]:not(:checked).has-error + span::before,
.radio-wrap ul li label input[type="radio"]:not(:checked).has-error + span::before {
  border-color: #fa7878 !important;
  background-color: #ffdbdb !important;
}
.radio-wrap .mwform-radio-field label input[type="radio"]:checked + span::after,
.radio-wrap ul li label input[type="radio"]:checked + span::after {
  z-index: 0;
  top: -1px;
  left: 1px;
  width: 18px;
  height: 18px;
  border: 5px #006b9f solid;
  background-color: transparent;
}
.radio-wrap .body-block {
  display: inline;
}
.radio-wrap .body-block select {
  width: auto;
}
select .platform-only {
  display: none;
}
html[data-platform="iOS"] select .platform-only,
html[data-platform="Android"] select .platform-only {
  display: block;
}
.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .checkbox-wrap .mwform-checkbox-field,
  .checkbox-wrap ul li,
  .radio-wrap .mwform-radio-field,
  .radio-wrap ul li {
    margin-bottom: 10px;
  }
  .checkbox-wrap .mwform-checkbox-field:last-of-type,
  .checkbox-wrap ul li:last-child,
  .radio-wrap .mwform-radio-field:last-of-type,
  .radio-wrap ul li:last-child {
    margin-bottom: 0 !important;
  }
  .checkbox-wrap {
    padding: 0 0 0 0;
  }
  .checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span::before,
  .checkbox-wrap ul li label input[type="checkbox"] + span::before {
    width: 20px;
    height: 20px;
  }
  .checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span::after,
  .checkbox-wrap ul li label input[type="checkbox"] + span::after {
    width: 6px;
    height: 8px;
    margin: 4px 4px;
  }
  .mod-selectbox-orig select {
    height: 40px;
    padding: 5px 30px 5px 10px;
  }
  .checkbox-wrap .mwform-checkbox-field label span,
  .checkbox-wrap ul li label span,
  .mw_wp_form_confirm .checkbox-wrap ul li {
    font-size: 14px;
  }
  .checkbox-wrap .mwform-checkbox-field label span.icon-required,
  .checkbox-wrap ul li label span.icon-required {
    font-size: 11px;
  }
  .checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span,
  .checkbox-wrap ul li label input[type="checkbox"] + span {
    padding: 0 20px 2px 30px;
  }
}

/* privacy-checkbox
============================================================ */
.privacy-checkbox {
  box-sizing: border-box;
  margin-top: 40px;
  padding-top: 35px;
  border-top: solid 1px #dfebf2;
}
.privacy-checkbox .checkbox-wrap {
  margin-top: 20px;
}
.com-btn-wrap {
  margin-top: 80px;
}
.com-btn-wrap .com-btn-base {
  margin: 0 auto;
}
.mw_wp_form_confirm .privacy-checkbox .bottom-lead-text {
  display: none;
}
.privacy-checkbox .bottom-lead-text a {
  color: #4797a3;
  text-decoration: underline;
}
.privacy-checkbox .bottom-lead-text a:hover {
  text-decoration: none;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .com-btn-wrap {
    margin-top: 40px;
  }
}

/* contact-form-back-btn
============================================================ */
.com-btn-wrap {
  position: relative;
}
.contact-form-back-btn {
  position: absolute;
  top: 25px;
  left: 0;
  box-sizing: border-box;
  color: #4797a3;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  text-decoration: underline;
}
.contact-form-back-btn span {
  position: relative;
  padding-left: 30px;
}
.contact-form-back-btn span::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 12px;
  height: 5px;
  background: url(../img/contact/icon-arrow-bl-left.png) 0 0 no-repeat;
  background-size: 12px auto;
}
.contact-form-back-btn:hover {
  text-decoration: none;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .contact-form-back-btn {
    position: static;
    margin-top: 20px;
  }
  .contact-form-back-btn:hover {
    text-decoration: underline;
  }
}

/* contact-recaptche
============================================================ */
.contact-recaptche {
  margin-top: 80px;
  font-size: 14px;
  text-align: center;
}
.contact-recaptche a {
  color: #4797a3;
  text-decoration: underline;
}
.contact-recaptche a:hover {
  text-decoration: none;
}
.grecaptcha-badge {
  visibility: hidden;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .contact-recaptche {
    margin-top: 40px;
    font-size: 12px;
  }
}

/* com-btn-base
============================================================ */
.section-contact .com-btn-base {
  width: 280px;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .section-contact .com-btn-base {
    width: 100%;
  }
}
.checkbox-wrap .mwform-checkbox-field label {
  width: auto;
}
.lead-text span {
  color: #f44830;
  font-weight: bold;
}

@media screen and (max-width: 811px) {
  .sp-pdg-0 {
    padding: 0 0 0;
  }
  .sp-pdg-0 table th,
  .sp-pdg-0 table td {
    padding-right: 20px;
    padding-left: 20px;
  }
}
