@charset "utf-8";
/*---------------------------------
フォームエリア
---------------------------------*/
.contact-form {
  width: 70%;
  margin: 0 auto;
}
/* table */
.formTable {
  width: 100%;
  font-size: 1.8rem;
  margin: 0 auto;
}
.formTable tr {
  width: 100%;
  display: block;
  margin-bottom: 40px;
  font-size: 1.8rem;
  text-align: left;
}
.formTable th,
.formTable td {
  display: block;
  width: 100%;
  padding-bottom: 10px;
  text-align: left;
}
.formTable th {
  font-size: 1.8rem;
  font-weight: bold;
}
.formTable td {
  font-size: 1.8rem;
}
.formTable td label {
  display: block;
  margin-bottom: 10px;
}
.formTable .required-item {
  background-color: #d9534f;
  color: #fff;
  padding: 0 5px;
  margin-right: 5px;
  font-size: 1.6rem;
  font-weight: normal;
}
.formTable .no-required-item {
  background-color: #337ab7;
  color: #fff;
  padding: 0 5px;
  margin-right: 5px;
  font-size: 1.6rem;
  font-weight: normal;
}
/* -- input, select, textarea ---- */
.formTable input {
  margin: 0 auto;
}
.formTable input[type="text"] {
  width: 100%;
  padding: 7px 2%;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: #fafafa;
  -webkit-appearance: none;
  font-size: 1.8rem;
  font-family: inherit;
  line-height: normal;
  text-align: left;
}
.formTable textarea {
  display: block;
  width: 100%;
  /* height: 100px; */
  padding: 7px 2%;
  resize: vertical;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: #fafafa;
  -webkit-appearance: none;
  font-size: 1.8rem;
  font-family: inherit;
  line-height: normal;
}
.formTable input:focus,
.formTable textarea:focus {
  box-shadow: 0px 0px 5px #55ccff;
  border: 1px solid #55ccff;
  background: #ffffff;
}
.formTable input[type="checkbox"] {
  margin: 0 5px 0 0;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  accent-color: #a11e19;
}

/* -- button -- */
.submit-btn-area {
  width: 100%;
  text-align: center;
}
.submit-btn {
  border: none;
  background: none;
  padding: 0;
}
.submit-btn img {
  width: 100%;
  height: auto;
  display: block;
  animation: anime2 0.8s ease 0s infinite alternate;
  transform-origin: center;
}
@keyframes anime2 {
  from {
    transform: scale(95%, 95%);
  }
  to {
    transform: scale(100%, 100%);
  }
}
.submit-btn:hover {
  cursor: pointer;
  opacity: 0.6;
  transition-duration: 0.3s;
}
.privacy-check {
  text-align: center;
  font-size: 1.6rem;
  padding: 40px 0 40px;
}
.img-tel {
  width: 40%;
  text-align: center;
  margin: 0 auto 40px;
}
.date-time-select select {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 7px 2%;
  font-size: 1.8rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fafafa;
  -webkit-appearance: none;
  appearance: auto;
}
.date-time-select select:last-child {
  margin-bottom: 0;
}
/* -- responsive -- */
@media screen and (max-width: 768px) {
  .contact-form {
    width: 90%;
  }
  /* table */
  .formTable {
    width: 100%;
    font-size: 1.8rem;
  }
  .formTable tr {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .formTable th,
  .formTable td {
    padding-bottom: 10px;
  }
  .formTable th {
    display: block;
    font-size: 1.8rem;
    width: 100%;
  }
  .formTable td {
    display: block;
    font-size: 1.8rem;
    width: 100%;
  }
  .formTable td label {
    margin-right: 15px;
  }
  .formTable .required-item {
    font-size: 1.4rem;
    padding: 3px 5px;
  }
  .formTable .no-required-item {
    font-size: 1.4rem;
    padding: 3px 5px;
  }
  .privacy-check {
    text-align: center;
    font-size: 1.6rem;
    padding: 10px 0 20px;
  }
  /* -- input design -- */
  .formTable input[type="text"] {
    line-height: 1;
  }
  /* -- button -- */
  .submit-btn-area {
    width: 100%;
    margin: 0 auto;
  }
  .form-btn-tel {
    width: 100%;
    margin: 10px auto 0;
  }
}
