@charset "utf-8";
/* ----------------------------------------
form
------------------------------------------- */
.form{
border: 1px solid #ccc;
padding: 60px;
}
.form .txt01{
text-align: center;
margin-bottom: 50px;
}
.form table {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 50px;
}
.form table th {
  width: 26%;
  position: relative;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
  font-weight: normal;
  box-sizing: border-box;
  border-bottom: 1px solid #ccc;
  padding: 20px 10px;
}
.need {
  position: relative;
  color: #c70024;
  font-size: 1.2rem;
  font-weight: 700;
  top: -3px;
}
.form table td {
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  padding: 20px 10px;
}
.form table tr:last-child th, .form table tr:last-child td {
  border-bottom: none;
}
.form table td p {
  padding: 15px 0 0 0;
}
.input01 {
  width: 100%;
  box-sizing: border-box;
  color: #000;
  font-size: 1.6rem;
  background-color: #fff;
  border: 1px solid #d0d0d0;
  padding: 20px;
}
.input01::placeholder {
  color: #b5b5b5;
}
.input02 {
  width: 80%;
  box-sizing: border-box;
  color: #000;
  font-size: 1.6rem;
  background-color: #fff;
  border: 1px solid #d0d0d0;
  padding: 20px;
}
.input03 {
  box-sizing: border-box;
  color: #000;
  font-size: 1.6rem;
  background-color: #fff;
  border: 1px solid #d0d0d0;
  padding: 20px;
}
.select01 {
  padding: 10px 15px;
}
.submit input {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 1.6rem;
  width: 100%;
  box-sizing: border-box;
  max-width: 300px;
  background-color: #ef7802;
  border: solid 1px #ef7802;
  border-radius: 40px;
  cursor: pointer;
  padding: 20px 30px;
  margin-bottom: 15px;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.submit input:hover {
  color: #fff;
  background-color: #ef7802;
  border: solid 1px #ef7802;
  cursor: pointer;
}
.cmn-submit {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 1.6rem;
  width: 100%;
  box-sizing: border-box;
  max-width: 200px;
  background-color: #ef7802;
  border: solid 1px #ef7802;
  border-radius: 40px;
  cursor: pointer;
  padding: 20px 30px;
  margin-bottom: 15px;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.cmn-submit:hover {
  color: #fff;
  background-color: #ef7802;
  cursor: pointer;
}
.form input[type="date"]{
padding: 10px 15px;
}
.form select {
  padding: 10px 15px;
}

/* =======================
  PC
======================== */
@media screen and (min-width: 1400px) {
}
/* =======================
  TABLET
======================== */
@media screen and (max-width:1399px) {
}
/* =======================
  SP
======================== */
@media screen and (max-width: 799px) {
/* ----------------------------------------
form
------------------------------------------- */
  .form {
    padding: 5%;
  }
  .form table {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 30px;
  }
  .form table th {
    display: block;
    width: 100%;
    border-bottom: none;
    padding: 15px 10px 10px 10px;
  }
  .form table td {
    display: block;
    width: 100%;
    padding: 0 10px 15px 10px;
  }
  .input01 {
    width: 100%;
  }
  .input02 {
    width: 100%;
  }
  .input03 {
    width: 100%;
  }
  .select01 {
    width: 100%;
    box-sizing: border-box;
  }
  .need {
    font-size: 1.1rem;
    left: auto;
    margin-left: 10px;
  }
}