@charset "UTF-8";
/*お問い合わせ*/
.contact h4 {
  text-align: center;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 4px;
  color: #c19797;
}
.contact p {
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
}
.contact .caption {
  font-size: 13px;
}
.contact table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.contact table th {
  width: 35%;
  padding: 30px 2%;
  font-weight: normal;
  font-size: 16px;
  text-align: left;
  border-top: solid 1px #c19797;
}
.contact table td {
  padding: 30px 2%;
  border-top: solid 1px #c19797;
}
.contact table tr:last-child th, .contact table tr:last-child td {
  border-bottom: solid 1px #c19797;
}
.contact .input {
  width: 94%;
  font-size: 16px;
  padding: 15px 2%;
  border: none;
  outline: none;
  background-color: #f8f6f4;
  border-radius: 0;
}
.contact textarea {
  width: 94%;
  font-size: 16px;
  padding: 15px 3%;
  border: none;
  outline: none;
  background-color: #f8f6f4;
  border-radius: 0;
}
.contact .required {
  font-size: 12px;
  color: #c1272d;
  margin-left: 5px;
}
input[type=checkbox] {
  display: none;
}
.checkbox {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
}
.checkbox::before {
  background: #fff;
  border: 1px solid #c19797;
  content: '';
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}
.checkbox::after {
  border-right: 3px solid #c19797;
  border-bottom: 3px solid #c19797;
  content: '';
  display: block;
  height: 9px;
  left: 10px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}
input[type=checkbox]:checked + .checkbox::after {
  opacity: 1;
}
.contact .check {
  font-size: 14px;
}
.contact .check a {
  color: #c19797;
}
.contact .btn_box {
  text-align: center;
}
.contact .submit {
  width: 40%;
  color: #000;
  background-color: #f4d4d0;
  border: none;
  padding: 20px 0;
  text-align: center;
  margin: 0 2%;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  display: inline;
  border-radius: 50px;
}
.contact .submit:hover {
  opacity: 1;
  color: #fff;
  background-color: #c19797;
}
.contact .submit.clear {
  background-color: #ccc;
}
.contact .submit.clear:hover {
  opacity: 1;
  color: #fff;
  background-color: #999;
}
.contact .btn a {
  width: 40%;
  font-size: 16px;
  padding: 20px 0;
  color: #000;
  background-color: #f4d4d0;
  border-radius: 50px;
  text-align: center;
  margin: 0 auto;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  display: block;
}
.contact .btn a:hover {
  opacity: 1;
  color: #fff;
  background-color: #c19797;
}
@media screen and (max-width:1050px) {
  /*お問い合わせ*/
  .contact h4 {
    text-align: center;
    font-weight: normal;
    font-size: 18px;
    letter-spacing: 4px;
    color: #c19797;
  }
  .contact p {
    font-size: 15px;
    text-align: center;
    margin-bottom: 20px;
  }
  .contact .caption {
    font-size: 12px;
  }
  .contact table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
  }
  .contact table th {
    width: 94%;
    display: block;
    padding: 20px 3% 0;
    border-top: solid 1px #c19797;
    text-align: left;
  }
  .contact table td {
    width: 94%;
    display: block;
    padding: 0 3% 20px;
    border-top: none;
  }
  .contact table tr:last-child th {
    border-bottom: none;
  }
  .contact table tr:last-child td {
    border-bottom: solid 1px #c19797;
  }
  .contact .input {
    width: 94%;
    font-size: 16px;
    padding: 15px 3%;
    border: none;
    outline: none;
    background-color: #f8f6f4;
    border-radius: 0;
  }
  .contact textarea {
    width: 94%;
    font-size: 16px;
    padding: 15px 3%;
    border: none;
    outline: none;
    background-color: #f8f6f4;
    border-radius: 0;
  }
  .contact label {
    margin-right: 0;
    display: block;
  }
  .contact .submit {
    width: 45%;
    color: #000;
    background-color: #f4d4d0;
    border: none;
    padding: 20px 0;
    text-align: center;
    margin: 0 2%;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    display: inline;
    border-radius: 50px;
  }
  input[type="reset"] {
    -webkit-appearance: none;
  }
  input[type="submit"] {
    -webkit-appearance: none;
  }
  input[type="button"] {
    -webkit-appearance: none;
  }
}