@charset "UTF-8";
.inputFrame{
  width: 300px;
  padding-left: 1rem;
  line-height: 2.4;
  border: solid 1px #333;
}
.formItem{
  display: flex;
}
.formItem.-name .formLabel{
  width: 50px;
  padding-right: 0.5rem;
  text-align: right;
}
.formItem.-name .inputFrame{
  width: 200px;
}
.formLabel{
  flex-shrink: 0;
  width: 135px;
  line-height: 2.4;
}
.formInput{
  margin: 0 0 1.5rem 1.5rem;
}
.formInput.isError .inputFrame {
  border-color: #c00;
  background-color: #fff4f2;
}
.dateInputSelect {
  position: relative;

}
.dateInputSelect::before {
  position: absolute;
  right: 1px;
  top: 0;
  bottom: 0;
  content: "";
  display: inline-block;
  width: 30px;
  height: 36px;
  margin: auto;
  background-color: #fff;

  pointer-events: none;
}
.formInput.isError .dateInputSelect::before {
  background-color: #fff4f2;
}
.dateInputSelect::after {
  position: absolute;
  right: 12px;
  top: 8px;
  bottom: 0;
  content: "";
  display: inline-block;
  margin: auto;
  border-top: 8px solid #94c509;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;

  pointer-events: none;
}
.inputSelect {
  width: 450px;
  padding-left: 1rem;
  line-height: 2.4;
  border: solid 1px #333;
  color: #333;
  cursor: pointer;
}
.formInput.isError .inputSelect {
  border-color: #c00;
  background-color: #fff4f2;
}
.formSubmitwrap{
  display: block;
  margin: auto;
}
.formSubmit{
  display: block;
  padding: 15px 30px 14px 10px;
  color: #333;
}
.formSubmit:hover{
  cursor: pointer;
  background: #f2ffce;
  transition: background 0.3s ease;
}
@media screen and (max-width: 768px){
  .inputFrame{
    display: block;
    width: 240px;
  }
  .formItem{
    display: block;
    margin: 0.5rem 0 1.5rem 0;
  }
  .formItem.-name .inputFrame{
  max-width: 200px;
  width: 100%;
}
  .formInput{
    padding-left: 0;
    margin: 0;
  }
  .formItem.-name .formInput{
    width: 35%;
  }
  .formItem.-name{
    display: flex;
  }
  .inputSelect {
    width: 100%;
  }
}