@charset "UTF-8";
/* --------------------------------------------------
	section size
-------------------------------------------------- */
@keyframes reflect {
  0%, 75% {
    transform: rotate(45deg) scale(0);
    opacity: 1;
  }
  100% {
    transform: rotate(45deg) scale(100);
    opacity: 0;
  }
}
.float_bnr {
  z-index: 10;
  width: 300px;
  position: fixed;
  bottom: 125px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.float_bnr.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.float_bnr_img a {
  display: block;
  overflow: hidden;
  position: relative;
  transition: opacity 0.3s;
}
.float_bnr_img a:after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 10%;
  height: 150%;
  background: #fff;
  transform: rotate(45deg);
  animation: reflect 5s ease-in-out infinite;
}
.float_bnr_img a:hover {
  opacity: 0.7;
}
.float_bnr_close {
  cursor: pointer;
  width: 30px;
  height: 30px;
  border: 2px solid #fff;
  border-radius: 99px;
  position: absolute;
  top: -18px;
  right: -17px;
  transition: opacity 0.3s;
  background-color: #217e90;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.7);
}
.float_bnr_close:before, .float_bnr_close:after {
  content: "";
  width: 60%;
  height: 2.5px;
  border-radius: 9px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: #fff;
}
.float_bnr_close:before {
  rotate: 45deg;
}
.float_bnr_close:after {
  rotate: -45deg;
}
.float_bnr_close:hover {
  opacity: 0.7;
}

.form-common {
  margin: 0 0 60px;
  /* フォームの電話・メール切り替え用class */
  /* cf7のラジオボタレイアウト */
  /* 必須エラーメッセージ */
}
@media screen and (max-width: 767px) {
  .form-common {
    margin: 0 -2rem 60px;
  }
}
.form-common .form-style.sec {
  margin-top: 80px;
}
.form-common .form-style .form__headline {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  background: #f38c1f;
}
@media screen and (max-width: 767px) {
  .form-common .form-style .form__headline {
    font-size: 24px;
  }
}
.form-common .form-style .white-box {
  width: 100%;
  margin: 0 auto;
  padding: 4.8rem 8rem;
  border-radius: 0.8rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .form-common .form-style .white-box {
    max-width: inherit;
    padding: 4.8rem 2rem;
    border-radius: 0;
  }
}
.form-common .form-style .white-box .input-box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #C4C4C4;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .form-common .form-style .white-box .input-box {
    flex-direction: column;
    gap: 1.2rem 0;
  }
}
.form-common .form-style .white-box .input-box:nth-last-of-type(2) {
  border-bottom: none;
}
.form-common .form-style .white-box .input-box .ttl {
  width: calc(100% - 58rem);
  padding-right: 5.6rem;
}
@media screen and (max-width: 767px) {
  .form-common .form-style .white-box .input-box .ttl {
    width: 100%;
    padding-right: 0;
    font-weight: 500;
  }
}
.form-common .form-style .white-box .input-box .input_wrap {
  width: 58rem;
}
@media screen and (max-width: 767px) {
  .form-common .form-style .white-box .input-box .input_wrap {
    width: 100%;
    padding-right: 0;
  }
}
.form-common .form-style .white-box .input-box .input_wrap .inputs_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .form-common .form-style .white-box .input-box .input_wrap .inputs_wrap {
    gap: 16px;
  }
}
.form-common .form-style .white-box .input-box .input_wrap .inputs_wrap > * {
  flex: 1 1 auto;
  width: 100%;
}
.form-common .form-style .white-box .input-box .input_wrap .input--files {
  font-size: 14px;
  border: 1px dashed #ccc;
  border-radius: 8px;
  padding: 4px;
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .form-common .form-style .white-box .input-box .input_wrap .input--files {
    font-size: 12px;
    padding: 7px 4px;
  }
}
.form-common .form-style .white-box .input-box .input_wrap .input__note {
  font-size: 14px;
}
.form-common .form-style .white-box .input-box + .input-box {
  margin-top: 1.6rem;
}
.form-common .form-style .form-txt {
  padding-left: 22rem;
  font-size: 1.3rem;
  line-height: 1.7692307692;
  font-weight: 500;
  letter-spacing: 0;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .form-common .form-style .form-txt {
    padding-left: 0;
    font-size: 1.2rem;
    line-height: 1.8333333333;
    font-weight: 500;
  }
}
.form-common .form-style .form-txt a {
  text-decoration: underline;
}
@media (min-width: 768px) and (hover: hover) {
  .form-common .form-style .form-txt a:hover {
    text-decoration: none;
  }
}
.form-common .form-style .btn_wrap {
  margin-top: 2.4rem;
}
.form-common #telBox,
.form-common #mailBox {
  display: none;
}
.form-common #telBox.contact-display,
.form-common #mailBox.contact-display {
  display: block !important;
}
.form-common .input-box .select-box .select-ttl {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
}
.form-common .input-error {
  margin-top: 0.4rem;
  display: block;
  color: #ce2d32;
  font-size: 1.5rem;
  font-weight: 500;
}
.form-common .wpcf7-form-control-wrap[data-name=radio-tel-mail] {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #C4C4C4;
  font-weight: 500;
}
.form-common .wpcf7-form-control-wrap[data-name=radio-tel-mail] .wpcf7-form-control.wpcf7-radio {
  display: flex;
  gap: 1rem;
}
.form-common .wpcf7-form-control-wrap[data-name=radio-tel-mail] .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  display: block;
}
@media screen and (max-width: 767px) {
  .form-common .wpcf7-form-control-wrap[data-name=radio-tel-mail] .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
    width: 26%;
  }
}
.form-common .wpcf7-form-control-wrap[data-name=radio-tel-mail] .wpcf7-form-control.wpcf7-radio .wpcf7-list-item label {
  display: flex;
  gap: 0.4rem;
  font-size: 1.6rem;
}
.form-common .wpcf7-form-control-wrap[data-name=radio-tel-mail] .wpcf7-form-control.wpcf7-radio .wpcf7-list-item label input {
  width: 1.6rem;
}
@media screen and (max-width: 767px) {
  .form-common .wpcf7-form-control-wrap[data-name=radio-tel-mail] {
    gap: 0 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  .float_bnr {
    width: 94%;
    bottom: 80px;
    right: 3%;
  }
  .float_bnr_close {
    top: -21px;
    right: -2%;
  }
}

/*# sourceMappingURL=common-ext.css.map */
