.page-title {
  margin-bottom: 30px;
}

span.wpcf7-list-item {
  margin: 0;
  display: block;
}

.intro {
  width: min(90%, 700px);
  margin: 0 auto 40px;
}
.intro__txt {
  margin-bottom: 20px;
  text-align: center;
}
.intro__tel {
  display: flex;
  padding: 10px 20px;
  border: 1px dotted #333;
}
.intro__tel dl {
  flex: 1;
  align-items: center;
  text-align: center;
}
.intro__tel dl dt {
  font-weight: bold;
  text-align: center;
}
.intro__tel dl dd {
  line-height: 1.5;
}
.intro__tel dl dd span {
  display: block;
}

.h1-conf p {
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
}

.step {
  margin-bottom: 40px;
}
.step ul {
  display: flex;
  justify-content: center;
  gap: 20px 40px;
}
.step ul li {
  position: relative;
  min-width: 160px;
  padding: 10px;
  border: 1px solid #707070;
  text-align: center;
}
.step ul li:not(:last-of-type):after {
  content: ">";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
}
.step ul li.current {
  background-color: #666666;
  color: #fff;
  font-weight: bold;
}
.step ul li.current:after {
  color: #333;
}

.ui-form input, .ui-form textarea, .ui-form select {
  box-sizing: border-box;
}
.ui-form__in {
  width: min(90%, 1000px);
  margin: 0 auto;
  padding: 40px 40px 50px;
  background-color: #fff;
}
.ui-form__lists {
  margin-bottom: 40px;
}
.ui-form__list {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #E6E6E6;
}
.ui-form__ttl {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.ui-form__ttl .ico {
  display: inline-block;
  padding: 0 8px;
  background-color: #333;
  color: #fff;
  font-size: 12.5px;
}
.ui-form__ttl .required {
  border: 1px solid #C62727;
  color: #C62727;
  background-color: #fff;
}
.ui-form__ttl .any {
  background-color: #2767BC;
}
.ui-form__right {
  flex: 3;
}
.ui-form__right input, .ui-form__right textarea, .ui-form__right select {
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 5px;
  font-size: 16px;
}
.ui-form__right textarea {
  width: min(100%, 600px);
  line-height: 1.5;
}
.ui-form__right input[type=text] {
  width: min(100%, 400px);
  font-size: 16px;
}
.ui-form__right .address-sub {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.ui-form__right .address-sub__top {
  flex: 1;
}
.ui-form__right .address-sub__top input[type=text] {
  width: min(80%, 130px);
}
.ui-form__right .address-sub__top p {
  display: flex;
  gap: 5px;
}
.ui-form__right .address-sub__bottom {
  flex: 4;
}
.ui-form__txt {
  margin-bottom: 20px;
  font-size: 15px;
  text-align: center;
}
.ui-form__txt a {
  text-decoration: underline;
}

.btn p {
  display: block;
  text-align: center;
}
.btn input[type=submit] {
  width: 250px;
  padding: 20px;
  background-color: #B71616;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
}
.btn input[type=submit]:hover {
  opacity: 0.8;
}
.btn__submit {
  position: relative;
  margin-bottom: 10px;
}
.btn__submit:before, .btn__submit:after {
  position: absolute;
  right: 10px;
  content: "";
  height: 1px;
  background-color: #fff;
  z-index: 10;
}
.btn__submit:before {
  bottom: 27px;
  width: 30px;
}
.btn__submit:after {
  width: 12px;
  bottom: 32px;
  transform: rotate(45deg);
}
.btn__submit .wpcf7-spinner {
  display: none;
}
.btn__back input[type=button] {
  min-width: 250px;
  padding: 10px 25px;
  background: #eee;
  border: none;
  font-size: 16px;
  color: #222;
  cursor: pointer;
}
.btn__back input[type=button]:hover {
  opacity: 0.8;
}

.wpcf7-response-output {
  width: min(90%, 800px);
  margin: -90px auto 140px !important;
  background: #ff0000;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border: none !important;
}

.contact__txt {
  width: min(90%, 800px);
  margin: 0 auto 40px;
  text-align: center;
}

.pageback {
  width: min(90%, 800px);
  margin: 0 auto 100px;
  text-align: center;
}
.pageback p a {
  text-decoration: underline;
}

#topcontrol {
  bottom: 90px !important;
}

.wpcf7-response-output {
  margin-top: -30px !important;
}

@media (max-width: 1000px) {
  .page-ttl {
    margin-bottom: 10px;
  }
  .h1-conf p {
    font-size: 18px;
  }
  .intro__tel {
    display: block;
    padding: 10px;
  }
  .intro__tel dl dd span {
    display: inline;
    margin-left: 1em;
    font-size: 15px;
  }
  .intro__txt {
    font-size: 14px;
  }
  .step {
    margin-bottom: 40px;
  }
  .step ul {
    gap: 20px;
  }
  .step ul li {
    min-width: inherit;
    padding: 10px;
    font-size: 13px;
  }
  .step ul li:not(:last-of-type):after {
    right: -16px;
    font-size: 13px;
  }
  .ui-form {
    padding: 0 0 80px;
  }
  .ui-form input[type=email] {
    width: 100%;
  }
  .ui-form__in {
    padding: 0 0 30px;
  }
  .ui-form__lists {
    margin-bottom: 20px;
  }
  .ui-form__list {
    display: block;
  }
  .ui-form__ttl {
    margin-bottom: 5px;
    font-weight: bold;
  }
  .ui-form__ttl .ico {
    padding: 0 5px;
    font-weight: normal;
    line-height: 1.5;
  }
  .ui-form__right input, .ui-form__right textarea, .ui-form__right select {
    font-size: 16px;
  }
  .ui-form__right .address-sub {
    display: block;
  }
  .ui-form__right .address-sub__top {
    display: flex;
    align-items: center;
    margin-right: 5px;
    margin-bottom: 5px;
  }
  .ui-form__right .address-sub__top input[type=text] {
    width: 130px;
  }
  .ui-form__txt {
    font-size: 14px;
  }
  .ui-form__txt a {
    text-decoration: underline;
  }
  .contact__txt {
    text-align: left;
  }
  .pageback {
    text-align: left;
  }
  .wpcf7-response-output {
    margin-top: -90px !important;
  }
}/*# sourceMappingURL=contact.css.map */