@charset "UTF-8";
/*お問い合わせ*/
.contact p {
  text-align: center;
  margin-bottom: 30px;
}
.contact h3 {
  font-size: 22.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 30px;
}
.contact table {
  width: 100%;
  border-collapse: collapse;
  border-top: solid 1px #564439;
  margin-bottom: 50px;
}
.contact table th {
  display: block;
  width: auto;
  padding: 20px 3% 10px;
  text-align: left;
}
.contact table td {
  display: block;
  width: auto;
  padding: 0 3% 25px;
  border-bottom: solid 1px #564439;
}
.contact .input {
  font-family: yu-mincho-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 94%;
  font-size: 16px;
  padding: 10px 3%;
  border: none;
  outline: none;
  background-color: #fff;
  border-radius: 5px;
}
.contact textarea {
  font-family: yu-mincho-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 94%;
  font-size: 16px;
  padding: 10px 3%;
  border: none;
  outline: none;
  background-color: #fff;
  border-radius: 5px;
  height: 200px;
}
.contact .required {
  font-size: 12px;
  display: inline-block;
  margin-left: 5px;
}
.contact .btn_box {
  text-align: center;
  margin-bottom: 20px;
}
.contact .submit {
  font-family: yu-mincho-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 40%;
  color: #fff;
  background-color: #564439;
  border-radius: 5px;
  border: none;
  padding: 15px 0;
  text-align: center;
  margin: 0 2%;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  display: inline-block;
  transition: all .3s;
}
.contact .submit:hover {
  background-color: #394F56;
  opacity: 1;
}
.contact .btn {
  margin-bottom: 20px;
}
.contact .btn a {
  font-family: yu-mincho-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 40%;
  font-size: 16px;
  padding: 15px 0;
  color: #fff;
  background-color: #564439;
  border-radius: 5px;
  text-align: center;
  margin: 0 auto;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  display: block;
}
.contact .btn a:hover {
  background-color: #394F56;
  opacity: 1;
}
@media screen and (max-width:1050px) {
  /*お問い合わせ*/
  .contact p {
    margin-bottom: 20px;
  }
  .contact h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .contact .submit {
    width: 45%;
  }
  .contact .btn a {
    width: 45%;
  }
  input[type="reset"] {
    -webkit-appearance: none;
  }
  input[type="submit"] {
    -webkit-appearance: none;
  }
  input[type="button"] {
    -webkit-appearance: none;
  }
}