/* -------------------------------
 * 
 * KyusyuStage
 * 2021.08.18
 * 
-------------------------------  */

input,textarea{
  padding: 0.8em;
  border-radius: 5px;
  border: solid 1px #eee;
}

input.input-l{
  width: 100%;
}

input.input-s{
  width: 24%;
}

textarea{
  width: 100%;
}

.form-block dl{
  border-bottom: solid 1px #eee;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
}

.form-block dl:first-child{
  border-top: solid 1px #eee;
}

.form-block dt{
  width: 170px;
}

.form-block dd{
  flex: 1;
}

.inq{
  background-color: #f00;
  display: inline-block;
  color: #fff;
  font-size: 11px;
  padding: 0.2em 0.4em;
  margin-left: 1em;
}

.btn-submit{
  min-width: 280px;
  text-align: center;
  background-color: #0081cc;
  color: #fff;
}

.error_messe{
  margin-top: 20px;
  color: #f00;
}


@media screen and (max-width:500px) {

  .form-block dl{
    flex-direction: column;
  }

  .form-block dt{
    width: 100%;
    text-align: left;
  }

  .form-block dd{
    width: 100%;
    text-align: left;
  }

  .btn-submit{
    margin-top: 20px;
  }

  input.input-s{
    width: 28%;
  }

}