@charset "UTF-8";
/* 入力部品 ------------------ */
form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
}
form input:focus::-moz-placeholder,
form textarea:focus::-moz-placeholder {
  color: transparent;
}
form input:focus::-moz-placeholder, form textarea:focus::-moz-placeholder {
  color: transparent;
}
form input:focus::placeholder,
form textarea:focus::placeholder {
  color: transparent;
}
form input[type=text], form input[type=tel], form input[type=email] {
  width: 100%;
  padding: 1em;
  font-size: 1rem;
  background: #F4F4F4;
  border: none;
  border-radius: 0px;
}
@media screen and (max-width: 767px) {
  form input[type=text], form input[type=tel], form input[type=email] {
    width: 100%;
  }
}
form textarea {
  width: 100%;
  height: 15em;
  padding: 1em;
  font-size: 1rem;
  background: #F4F4F4;
  border: none;
  border-radius: 0px;
}

/* select */
.select-box {
  position: relative;
  display: inline-block;
}

.select-box::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  right: 1em;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 1px solid #ADADAD;
  border-right: 1px solid #ADADAD;
  z-index: 1;
}

.select-box select {
  padding: 1em;
  padding-right: 2.5em;
  font-size: 1rem;
  background: #F4F4F4;
  border: 1px solid #ADADAD;
  border-radius: 0px;
}

/* checkbox */
.checkbox {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}

.checkbox input[type=checkbox] {
  outline: none;
}

.checkbox label {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}

.checkbox label::before,
.checkbox label::after {
  content: "";
  display: inline-block;
}

.checkbox label::before {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5em;
  border: 1px solid #ADADAD;
}

.checkbox label::after {
  position: absolute;
  top: 50%;
  left: 0.25em;
  width: 1em;
  height: 1em;
  background-color: #C7615F;
  transform: translateY(-50%);
  opacity: 0;
}

.checkbox input:checked + label::after {
  opacity: 1;
}

/* 個別設定 */
form .post input {
  width: 12%;
}
@media screen and (max-width: 767px) {
  form .post input {
    width: 25%;
  }
}
form .tel input {
  width: 12%;
}
@media screen and (max-width: 767px) {
  form .tel input {
    width: 25%;
  }
}
form .hyphen {
  display: inline-block;
  padding: 0 0.2em;
}

/* ステップバー ----------------------------*/
.step {
  display: flex;
  align-items: center;
  justify-content: center;
  counter-reset: number 0;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .step {
    margin-bottom: 30px;
  }
}
.step-item {
  display: flex;
  align-items: center;
  justify-content: center;
  counter-increment: number 1;
}
.step-item.is-complete {
  color: #C7615F;
}
.step-item.is-complete::before {
  background: #C7615F !important;
}
.step-item span {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2em;
}
.step-item span::before {
  display: inline-block;
  content: counter(number, decimal-leading-zero);
  margin-right: 0.2em;
}
@media screen and (max-width: 767px) {
  .step-item span::before {
    display: block;
    text-align: center;
  }
}
.step-item:not(:first-child)::before {
  content: "";
  display: inline-block;
  width: 90px;
  height: 1px;
  margin: 1em;
  background: #ADADAD;
}
@media screen and (max-width: 767px) {
  .step-item:not(:first-child)::before {
    width: 40px;
  }
}

/* レイアウト ---------------------------- */
.formBox {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.formBox .btn {
  min-width: 170px;
  padding: 1em;
  background: #C7615F;
  border: 1px solid #C7615F;
}
@media screen and (max-width: 767px) {
  .formBox .btn {
    width: 80%;
  }
}
@media screen and (min-width: 769px) {
  .formBox .btn:hover {
    background: #fff;
  }
  .formBox .btn:hover .label {
    color: #000;
  }
  .formBox .btn:hover .icon-arrow::before {
    background: #C7615F;
  }
}
.formBox .btn .label {
  font-family: "Zen Old Mincho", "Noto Serif JP", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-size: 1rem;
  color: #fff;
}
.formBox .btn .icon-arrow {
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
}
.formBox .btn .icon-arrow::before {
  width: 1em;
  height: 1em;
  background: #fff;
}

.formBox:not(:last-child) {
  margin-bottom: 50px;
}

table.formTable {
  max-width: 770px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  table.formTable {
    display: block;
    width: 100%;
    margin-bottom: 40px;
  }
}
table.formTable th {
  width: 40%;
  padding: 40px 0;
  text-align: left;
  vertical-align: top;
  border: none;
  border-bottom: 1px solid #ADADAD;
}
@media screen and (max-width: 767px) {
  table.formTable th {
    padding: 30px 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}
table.formTable td {
  padding: 40px 0;
  text-align: left;
  border: none;
  border-bottom: 1px solid #ADADAD;
}
@media screen and (max-width: 767px) {
  table.formTable td {
    padding: 10px 0 30px;
  }
}
table.formTable tbody,
table.formTable tr,
table.formTable th,
table.formTable td {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  table.formTable tbody,
  table.formTable tr,
  table.formTable th,
  table.formTable td {
    display: block;
    width: 100%;
  }
}

/* 横並び */
.flex-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.flex-box .date-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.flex-box .date-box span {
  display: inline-block;
  margin: 0 0.5em;
}
.flex-box .tel-box,
.flex-box .zip-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.flex-box .tel-box input,
.flex-box .zip-box input {
  width: 6em !important;
}
.flex-box .tel-box span,
.flex-box .zip-box span {
  display: inline-block;
  margin: 0 0.5em;
}
.flex-box .postalcode-box {
  display: inline-block;
}

/* 必須項目表示 ---------------------------- */
.is-required {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}

.is-required:before {
  display: inline-block;
  content: "必須";
  margin-right: 0.5em;
  padding: 0.2em;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #C7615F;
  line-height: 1em;
  vertical-align: middle;
  background: rgba(199, 97, 95, 0.15);
  border-radius: 2px;
}

/* エラーメッセージ ---------------------------- */
.errorBox {
  display: none;
  margin-top: 0.5em;
  font-size: 0.8125rem;
  color: #c74e4e;
  vertical-align: middle;
}

.errorBox::before {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  margin-right: 0.5em;
  background: #c74e4e;
  border-radius: 100%;
  vertical-align: middle;
  animation: flash 1s linear infinite;
}

.errorBox + .errorBox {
  margin-top: 0;
}

@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.confirm-block {
  margin: 0 auto 40px;
  text-align: center;
}
.confirm-block .wpcf7-list-item {
  margin: 0 auto;
}
.confirm-block .wpcf7-acceptance {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}
.confirm-block .wpcf7-acceptance input[type=checkbox] {
  outline: none;
}
.confirm-block .wpcf7-acceptance label {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}
.confirm-block .wpcf7-acceptance label::before,
.confirm-block .wpcf7-acceptance label::after {
  content: "";
  display: inline-block;
}
.confirm-block .wpcf7-acceptance label::before {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5em;
  border: 1px solid #ADADAD;
}
.confirm-block .wpcf7-acceptance label::after {
  position: absolute;
  top: 50%;
  left: 0.25em;
  width: 1em;
  height: 1em;
  background-color: #C7615F;
  transform: translateY(-50%);
  opacity: 0;
}
.confirm-block .wpcf7-acceptance label:has(> input:checked)::after {
  opacity: 1;
}

.btn-wrap {
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .btn-wrap {
    flex-direction: column;
    gap: 0 !important;
  }
}
.btn-wrap .form-btn,
.btn-wrap .btn {
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn-wrap .form-btn,
  .btn-wrap .btn {
    width: 100% !important;
  }
}
.btn-wrap .wpcf7c-btn-confirm,
.btn-wrap .wpcf7-submit {
  color: #fff;
}
@media screen and (min-width: 769px) {
  .btn-wrap .wpcf7c-btn-confirm:hover,
  .btn-wrap .wpcf7-submit:hover {
    color: #C7615F;
  }
}
.btn-wrap .wpcf7c-btn-back {
  color: #C7615F;
  background: #fff;
}
@media screen and (min-width: 769px) {
  .btn-wrap .wpcf7c-btn-back:hover {
    color: #fff;
    background: #C7615F;
  }
}

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

.wpcf7c-conf {
  background: #F4F4F4 !important;
  border: none !important;
}/*# sourceMappingURL=form.css.map */