@charset "utf-8";

label,input,textarea,select,button{
  cursor: pointer;
}

/* 
.select, .input, .radio, .textarea
*/

.select{
  border-radius: 5px;
  padding: 10px;
  border: 1px solid #ccc;
  min-width: 500px;
}
.input input{
  border-radius: 5px;
  padding: 10px;
  border: 1px solid #ccc;
  min-width: 500px;
}
.radio{
  margin: 0 10px;
  text-align: justify;
  text-justify: inter-ideograph;
}

.textarea textarea{
  border-radius: 5px;
  padding: 10px;
  border: 1px solid #ccc;
  min-width: 500px;
  min-height: 100px;
}

@media screen and (max-width: 768px) {
  .select,
  .input input,
  .textarea textarea{
    min-width: auto;
    width: 100%;
  }
}

/* 
form 
*/

.p-form{
  text-align: center;
}

.p-form__table{
  margin: 0 auto;
}
/* form-table tr{} */
.p-form__table th{
  padding: 10px;
  text-align: left;
}
.p-form__table td{
  padding: 10px;
}

.p-form__button{
  text-align: center;
}

.p-form__button{
  text-align: center;
}

.p-form__button input{
  margin-top: 20px;

  color: #EEEEEE;
  font-weight: bold;
  background-color: #979797;
  padding: 15px 60px;
  text-decoration: none;
  border-radius: 100vh;
  border-width: 0;
  box-shadow: 5px 5px 5px #ddd;
  transition: box-shadow .3s;
  transition: background-color .3s;
}

.p-form__button span{
display: none;
}

.p-form__button:hover input{
  background-color: #fc8fa8;
  box-shadow: 0 0 0 #ddd;
}

.p-form__button:hover input{
  background-color: #fc8fa8;
  box-shadow: 0 0 0 #ddd;
}




@media screen and (max-width: 768px) {
  .p-form__table,
  .p-form__table tbody,
  .p-form__table tr,
  .p-form__table th,
  .p-form__table td{
    display: block;
  }

}