@charset "UTF-8";

/* formリセット */
::placeholder {
  color: #ccc;
}
input[type="text"],
input[type="tel"],
input[type="email"] {
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 1rem;
  height: 45px;
  width: 100%;
}
input[name="mail"] {
  margin-bottom: 1rem;
}
input[name="zip"] {
  margin-bottom: 1rem;
  width: 100px;
}
textarea {
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 1rem;
  vertical-align: bottom;
  width: 100%;
}
.contact-form-eles {
  max-width: 800px;
  margin: 0 auto;
}
.contact-submit-wrap {
  text-align: center;
}
.dl-contact-wrap {
  border: 1px solid #181818;
  padding: 1rem;
}
.dl-contact {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.dl-contact dt,
.dl-contact dd {
  padding: 1rem;
}
.dl-contact dt:not(:last-of-type),
.dl-contact dd:not(:last-of-type) {
  border-bottom: 1px solid #181818;
}
.dl-contact dt {
  background: #f5f5f5;
  text-align: left;
  width: 25%;
}
.dl-contact dd {
  width: 75%;
}
.hissu {
  color: #FF0000;
}
.contactbtn {
  background: #001624;
  border: none;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  padding: 1.5rem 6rem;
  transition: .7s;
}
.contactbtn:disabled {
  background-color: #999;
}
.wpcf7-spinner {
  display: none;
}
form.sent .formblock,
form .sent-after,
form.sent .contact-form-eles {
  display: none;
}
.wpcf7 form .wpcf7-response-output {
  width: 80%;
}
@media screen and (max-width: 767px) {
  input[type="text"],
  input[type="tel"],
  input[type="email"] {
    height: 40px;
  }
  textarea {
    height: 150px;
  }
  .dl-contact {
    border-bottom: 0;
    margin-bottom: 1rem;
  }
  .dl-contact dt:not(:last-of-type),
  .dl-contact dd:not(:last-of-type) {
    border-bottom: 0;
  }
  .dl-contact dt {
    margin-bottom: .5rem;
    padding: 1rem .5rem;
    width: 100%;
  }
  .dl-contact dd {
    margin-bottom: 1rem;
    padding: 0;
    width: 100%;
  }
  .wpcf7 form .wpcf7-response-output {
    width: 90%;
  }
}