/* CSS Document */
/*-----PC-----*/
@media screen and (min-width: 961px) {
  #reserve {
    margin: 20px 0;
    padding: 30px 10px;
  }
  .reserve_list {
    display: flex;
    flex-flow: row wrap;
    width: 700px;
    margin: 0 auto;
  }
  .reserve_list dt {
    flex-basis: 30%;
    padding: 20px;
    color: #fff;
    border-bottom: 1px solid #ccc;
  }
  .reserve_list dd {
    flex-basis: 70%;
    padding: 20px;
    color: #fff;
    border-bottom: 1px solid #ccc;
  }
  input[type="text"], input[type="email"], textarea {
    width: 100%;
    color: #fff;
  }
  select {
    background-color: #000;
  }
  .submit_btn {
    margin: 20px auto;
    text-align: center;
    display: block;
    color: #fff;
  }
  .reserve_text {
    margin: 20px auto;
    text-align: center;
    color: #fff;
  }
}
/*-----Tablet-----*/
@media screen and (min-width: 521px) and (max-width: 960px) {
  #reserve {
    margin: 20px 0;
    padding: 30px 10px;
  }
  .reserve_list {
    display: flex;
    flex-flow: row wrap;
    width: 700px;
    margin: 0 auto;
  }
  .reserve_list dt {
    flex-basis: 30%;
    padding: 20px;
    color: #fff;
    border-bottom: 1px solid #ccc;
  }
  .reserve_list dd {
    flex-basis: 70%;
    padding: 20px;
    color: #fff;
    border-bottom: 1px solid #ccc;
  }
  input[type="text"], input[type="email"], textarea {
    width: 100%;
  }
  select {
    background-color: #000;
  }
  .submit_btn {
    margin: 20px auto;
    text-align: center;
    display: block;
    color: #fff;
  }
  .reserve_text {
    margin: 20px auto;
    text-align: center;
    color: #fff;
  }
}
/*-----SP-----*/
@media screen and (max-width: 520px) {
  #reserve {
    margin: 10px 0;
    padding: 10px 5px 80px 5px;
  }
  .reserve_list {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    margin: 0 auto;
  }
  .reserve_list dt {
    flex-basis: 40%;
    padding: 20px;
    color: #fff;
    border-bottom: 1px solid #ccc;
  }
  .reserve_list dd {
    flex-basis: 60%;
    padding: 20px;
    color: #fff;
    border-bottom: 1px solid #ccc;
  }
  input[type="text"], input[type="email"], textarea {
    width: 100%;
  }
  select {
    background-color: #000;
  }
  .submit_btn {
    margin: 20px auto;
    text-align: center;
    display: block;
    color: #fff;
  }
  .reserve_text {
    margin: 20px auto;
    text-align: center;
    color: #fff;
  }
}