@charset "utf-8";

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

table {
  border-collapse: separate;
}
.reserve .wpcf7-form-control-wrap.kind,
.reserve .wpcf7-form-control-wrap.simultaneous,
.reserve .wpcf7-form-control-wrap.plan,
.reserve .wpcf7-form-control-wrap.date,
.reserve .wpcf7-form-control-wrap.having {
  /*display: none;*/
}

.reserve .step{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-weight: bold;
  margin: 0 auto 30px;
}
.reserve .step li{
  width: 15%;
  position: relative;
}
.reserve .step li:after{
  content: '';
  background: url(../img/reserve/step-arrow.png) center top / 30px 11px;
  width: 30px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: -36%;
}
.reserve .step li:last-child:after{
  display: none;
}
@media only screen and (max-width: 768px) {
.reserve .step{
  justify-content: flex-start;
  font-weight: bold;
  width: 70%;
  margin: 0 auto;
}
.reserve .step li{
  width: 29%;
  margin:0 6% 5% 0;
  position: relative;
}
.reserve .step li:nth-child(3){
  margin-right: 0;
}
.reserve .step li:after{
  content: '';
  background: url(../img/reserve/step-arrow.png) center top / 30px 11px;
  width: 10px;
  height: 11px;
  position: absolute;
  top: 46%;
  right: -16%;
}
.reserve .step li:nth-child(3):after,.reserve .step li:last-child:after{
  display: none;
}
}

.reserve .notes{
  background-color: #ceeadc;
  border-radius: 10px;
  padding: 15px 25px;
  color: #444;
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.reserve .midashi {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.reserve .midashi02 {
  font-size: 1.5rem;
  font-weight: bold;
  background: url(../img/reserve/icon-check.png) no-repeat center left / 21px 17px;
  margin-bottom: 10px;
  padding-left: 30px;
}

.reserve .notes-lists {
  line-height: 30px;
}

.reserve .notes li{
  margin-left: 1rem;
  text-indent: -1rem;
}
.reserve .notes li strong{
  color: #f00;
}
.reserve .notes li:nth-child(5){
  color: #ff0000;
}
@media only screen and (max-width: 768px) {
  .reserve .notes{
    padding: 5%;
    margin-bottom: 8%;
  }
  .reserve .notes .midashi {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 3%;
  }
  .reserve .midashi02 {
    font-size: 1.4rem;
    font-weight: bold;
    background: url(../img/reserve/icon-check.png) no-repeat center left / 21px 17px;
    margin-bottom: 5%;
    padding-left: 26px;
  }
}

.reserve .tit{
  font-size: 1.8rem;
  font-weight: bold;
  color: #5db98b;
  position: relative;
  margin-bottom: 10px;
  display: flex; /* 230116追記 */
  align-items: flex-start; /* 230116追記 */
}
.reserve .tit span{
  position: relative;  /* 230116 absoluteから変更 */
  color: #444;
  font-size: 1.2rem;
  font-weight: normal;
  margin-left: 30px;
  width: 75%; /* 230116追記 */
}
@media only screen and (max-width: 768px) {
  .reserve .tit{
    font-size: 1.4rem;
    margin-bottom: 3%;
    display: block; /* 230116追記 */
  }
  .reserve .tit span{
    position: inherit;
    display: block;
    font-size: 1.1rem;
    margin: 5px 0 0;
    width: 100%; /* 230116追記 */
  }
}


.reserve .select .inbox{
  display: flex;
  /* justify-content: space-between; 同時教習を復活させる時にコメントアウトを解除する */
  justify-content: start; /* 同時教習を復活させる時にコメントアウトもしくは削除 */
  flex-wrap: wrap;
  border-top: solid 1px #5db98b;
  border-bottom: solid 1px #5db98b;
  padding: 10px;
}
.reserve .select .inbox dl{
  width: 30%;
}
.reserve .select .inbox dl:last-child{
  border-left: solid 1px #5db98b;
  padding-left: 5%;
}
.reserve .select .inbox dl dt{
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 10px;
}
.reserve .select .inbox dl dt:before{
  content: '\025b6';
  background-color: #5db98b;
  color: #fff;
  font-size: .5rem;
  padding: 3px;
  margin-right: 5px;
}
.reserve .select .inbox dl dd{
  font-size: 1.4rem;
}
.reserve .select .inbox dl dd a{
  text-decoration: underline;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .reserve .select .inbox{
    display: block;
    border-top: solid 1px #5db98b;
    border-bottom: solid 1px #5db98b;
    padding: 10px;
  }
  .reserve .select .inbox dl{
    width: 100%;
  }
  .reserve .select .inbox dl:last-child{
    border-left: none;
    padding-left: 0;
  }
  .reserve .select .inbox dl dt{
    font-size: 1.2rem;
    font-weight: bold;
    position: relative;
    margin-bottom: 2%;
  }
  .reserve .select .inbox dl dt:before{
    margin-right: 5px;
  }
  .reserve .select .inbox dl dd{
    font-size: 1.2rem;
    margin-bottom: 4%;
  }
}

.reserve .btn,.reserve .btn2{
  text-align: center;
  width: 45%;
  margin: 10px auto 60px;
}

/*
.reserve .btn a,.reserve .btn2 a {
  border: 2px solid #5db98b;
  border-radius: 5px;
  background-color: #5db98b;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  display: inline-block;
  margin: 10px auto 0;
  padding: 10px 20px;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  box-shadow:2px 2px 2px 0px #999;
}
.reserve .btn a:hover,.reserve .btn2 a:hover {
  background-color: inherit;
  color: #5db98b;
  border: 2px solid #5db98b;
}
*/
.reserve .arrow {
  text-align: center;
  margin: 10px auto 60px;
}
.reserve .arrow span {
  border: 2px solid #5db98b;
  border-radius: 5px;
  background-color: #5db98b;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  display: inline-block;
  margin: 10px auto 0;
  padding: 10px 20px;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  box-shadow: 2px 2px 2px 0px #999;
}
.reserve .btn a input {
  border: 2px solid #5db98b;
  border-radius: 5px;
  background-color: #5db98b;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  display: inline-block;
  margin: 10px 10px 0;
  padding: 10px 20px;
  width: 100%;
  white-space: normal;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  box-shadow: 2px 2px 2px 0px #999;
}
.reserve .btn a input:hover {
  background-color: #fff;
  color: #5db98b;
  border: 2px solid #5db98b;
}
.reserve .btn a input:disabled {
  background-color: #555;
  border: #555;
  color: #fff;
}
.reserve .btn a input:disabled:hover {
  background-color: #555;
  border: #555;
  color: #fff;
}
.reserve .wpcf7-response-output {
  color: #ff0000;
  font-size: 1.2em;
  margin-bottom: 2em;
}
.reserve ul.btn{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 80%;
  margin:10px auto;
}
.reserve ul.btn2{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 80%;
  margin:10px auto;
}
.reserve ul.btn2{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 70%;
  margin:10px auto;
}
.reserve ul.btn li:nth-child(1) a,.reserve ul.btn2 li a{
  padding: 10px 50px;
}
@media only screen and (max-width: 768px) {
  .reserve .btn,.reserve .btn2{
    text-align: center;
    margin: 3% auto 10%;
    flex-direction: column;
  }
  .reserve .btn a,.reserve .btn2 a {
    font-size: 1.6rem;
  }
  .reserve .btn a {
    width: 44%;
    margin: auto;
  }
  .reserve ul.btn,.reserve ul.btn2{
    display: block;
    width: 100%;
    margin:10px auto;
  }
  .reserve ul.btn li a,.reserve ul.btn2 li a{
    padding: 10px 0;
    width: 100%
  }
}

.reserve .price{
  border: solid 4px #5db98b;
  box-sizing: border-box;
  line-height: 1.2;
  width: 100%;
  margin-bottom: 30px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.reserve .price table,.reserve .price tbody{
  width: 100%;
  table-layout:fixed;
}
.reserve .price table tr td.date:hover,
.reserve .price table tr td.date.selected {
  background-color: #5db98b;
  cursor: pointer;
}
.reserve .price th{
  font-size: 1.4rem;
  background-color: #ceeadc;
  vertical-align: middle;
  text-align: center;
  border-bottom: solid 1px #bbb;
  border-right: solid 1px #bbb;
  padding: 10px 0;
  width: 96px;
  table-layout:fixed
}
.reserve .price th:nth-child(1),.price th:nth-child(3){
  width: 100px;
}
.reserve .price th:nth-child(2){
  width: 115px;
}
.reserve .price .tb2 tr:first-child th{
  width: 50%;
}
.reserve .price td{
  font-size: 1.2rem;
  text-align: center;
  padding: 10px 0;
  vertical-align: middle;
  border-bottom: solid 1px #bbb;
  border-right: solid 1px #bbb;
}
.reserve .price th:last-child,.price td:last-child{
  border-right: none;
}
.reserve .price td span{
  font-size: 1rem;
  /* color: #f00; */
  display: block;
}
.reserve .price .icon{
  display: block;
  width: 30px;
  margin: 0 auto 5px;
}
@media only screen and (max-width: 768px) {
  .reserve .price{
    border: solid 2px #5db98b;
    line-height: 1.2;
    width: 100%;
    margin-bottom: 30px;
  }
  .reserve .price th{
    font-size: 1.2rem;
    padding: 3% 0;
  }
}

.reserve .plan,.reserve .calendar{
  border-top: solid 1px #5db98b;
  padding: 20px 0 0;
}
.reserve .non-pln {
  font-size: 2.3em;
  color: #ff2222;
  margin: 2em 0;
}
.bath-attention {
  margin: 0 0 40px;
  font-weight: bold;
  font-size: 1.4rem;
}
/* .reserve .plan table tr:hover,
.reserve .plan table tr.selected {
  background-color: #5db98b;
  cursor: pointer;
} */
.reserve .calendar .month{
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 10px;
}
.reserve .calendar .month:before{
  content: '\025b6';
  background-color: #5db98b;
  color: #fff;
  font-size: .5rem;
  padding: 3px;
  margin-right: 5px;
}
.reserve .calendar .cale-pager {
  display: flex;
  justify-content: space-between;
}
.reserve .calendar .cale-pager li a{
  font-size: 2em;
}
.reserve .plan .table,.reserve .calendar .table,.reserve .confirmation .table{
  border: solid 4px #5db98b;
  box-sizing: border-box;
  line-height: 1.2;
  width: 100%;
  margin-bottom: 30px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.reserve .plan .table table,
.reserve .calendar .table table,
.reserve .calendar .table tbody,
.reserve .confirmation .table table {
  width: 100%;
  table-layout:fixed;
}
.reserve .calendar .non-calendar {
  font-size: 2.3em;
  margin-bottom: 1em;
  color: #ff2222;
}
/* .reserve .plan .table table tr:hover,
.reserve .plan .table table tr.selected {
  background-color: #5db98b;
  cursor: pointer;
} */
.reserve .plan .table table th {
  font-size: 1.3rem;
  background-color: #ceeadc;
  vertical-align: middle;
  border-bottom: solid 1px #5db98b;
  border-right: solid 1px #5db98b;
  padding: 10px 10px 10px 30px;
  width: 70px;
  text-align: left;
  position: relative;
}
.reserve .plan .table table th:before{
  content: '\025b6';
  background-color: #5db98b;
  color: #fff;
  font-size: .5rem;
  padding: 3px;
  margin-right: 5px;
  position: absolute;
  top: 30%;
  left: 0;
}
.reserve .plan .table table th:nth-child(4){
  width: 120px;
}
.reserve .plan .table table th:nth-child(5){
  width: 100px;
}
.reserve .calendar .table table th{
  font-size: 1.4rem;
  background-color: #ceeadc;
  vertical-align: middle;
  text-align: center;
  border-bottom: solid 1px #5db98b;
  border-right: solid 1px #5db98b;
  padding: 10px 0;
  width: 96px;
  table-layout:fixed;
}
.reserve .confirmation .table table th{
  font-size: 1.3rem;
  background-color: #ceeadc;
  vertical-align: middle;
  text-align: center;
  border-bottom: solid 1px #5db98b;
  border-right: solid 1px #5db98b;
  padding: 10px;
  width: 230px;
  text-align: left;
}
.reserve .confirmation .table table th input.wpcf7-back {
  float: inherit;
  width: auto;
  margin: 0;
  background: transparent;
  font-weight: normal;
  font-size: 1.2rem;
  text-decoration: underline;
}
.reserve .confirmation .table table th input.wpcf7-back:hover {
  color: #777;
  text-decoration: none;
}
.reserve .confirmation .table table th a{
  font-weight: normal;
  font-size: 1.2rem;
  text-decoration: underline;
}
.reserve .confirmation .table table th a:after{content:"."; display:block; clear:both; height:0; visibility:hidden;}
.reserve .plan .table table td{
  font-size: 1.4rem;
  text-align: center;
  padding: 10px 0;
  vertical-align: middle;
  border-bottom: solid 1px #5db98b;
  border-right: solid 1px #5db98b;
  font-weight: bold;
}
.reserve .plan .table table td:first-child{
  /* text-align: left; */
  /*text-indent: 10px;*/
}

/* IE11対応 */
@supports (-ms-ime-align: auto) {
  .reserve .plan .table .sticky1,
  .reserve .plan .table .sticky2,
  .reserve .plan .table .sticky3 {
    border-right: none;
    border-bottom: none;
    position: relative;
  }
  .reserve .plan .table .sticky1::after,
  .reserve .plan .table .sticky2::after,
  .reserve .plan .table .sticky3::after {
    content : "" ;
    position : absolute ;
    top : 0 ;
    left : 0 ;
    width : calc(100% - 1px);
    height : calc(100% - 1px);
    border-right: solid 1px #5db98b;
    border-bottom: solid 1px #5db98b;
  }
}
.reserve .plan .table table td strong{
  font-size: 1.8rem;
  color: #f00;
}
.reserve .plan .table table td span{
  color: #f00;
}
.reserve .plan .table table td span.bath{
  color: #000;
  font-size: 1.3rem;
}
.reserve .calendar .table table td {
  font-size: 1.6rem;
  text-align: center;
  padding: 10px 0;
  vertical-align: middle;
  border-bottom: solid 1px #5db98b;
  border-right: solid 1px #5db98b;
}
.reserve .calendar .table table td.selected {
  background-color: #5db98b;
  cursor: pointer;
}
.reserve .confirmation .table table td{
  font-size: 1.2rem;
  text-align: left;
  padding: 10px;
  vertical-align: middle;
  border-bottom: solid 1px #5db98b;
  border-right: solid 1px #5db98b;
}
.reserve .confirmation .table table td strong{
  margin-right: 10px;
}
.reserve .confirmation .table table td strong.red{
  margin-right: 0;
  font-weight: normal;
  color: #f00;
}
.reserve .confirmation .table table td span{
  font-size: 1rem;
}
.reserve .confirmation .table table td img.icon{
  width: 20px;
  display: inline-block;
  margin: -4px 3px 0 0;
  vertical-align: middle;
}
.reserve .confirmation .table table td p{
  margin-bottom: 20px;
}
.reserve .confirmation .table table td .table3{
  width: 100%;
}
.reserve .confirmation .table table td .table3 table{
  table-layout: inherit;
  border-left: solid 1px #5db98b;
  border-top: solid 1px #5db98b;
  margin-bottom: 10px;
}
.reserve .confirmation .table table td .table3 table th.midashi{
  width: 50%;
}
.reserve .confirmation .table table td .table3 table td:nth-child(2){
  width: 25%;
}
.reserve .calendar .table table th:last-child,.reserve .calendar .table table td:last-child{
  border-right: none;
}
.reserve .calendar .table table td a{
  text-decoration: none;
  color: #5db98b;
}
.reserve .calendar .table table td.selected a {
  color: #fff;
}
.reserve .form .table{
  border-top: solid 1px #5db98b;
  padding-top: 20px;
  margin-bottom: 20px;
}
.reserve .form .table table th{
  font-size: 1.2rem;
  position: relative;
  padding:8px 0;
  width: 144px;
  display: flex;
  align-items: center;
}
.reserve .form .table.type2 table th{
  width: 240px;
}
.reserve .form .table table th .hissu{
  display: inline-block;
  background-color: #f00;
  color: #fff;
  padding: 1px 5px;
  margin-left: 10px;
  font-weight: normal;
}
.reserve .form .table table th:before{
  content: '\025b6';
  background-color: #5db98b;
  color: #fff;
  font-size: .5rem;
  padding: 3px;
  margin-right: 5px;
}
.reserve .form .table .th{
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
}
.reserve .form .table .th:before{
  content: '\025b6';
  background-color: #5db98b;
  color: #fff;
  font-size: .5rem;
  padding: 3px;
  margin-right: 5px;
}
.reserve .form .table table td{
  padding: 8px 0 8px 20px;
  font-size: 1.2rem;
}
.reserve .form .table table td.birth p {
    display: flex;
}
.reserve .form .table table td.gyoseishobun {
  display: flex;
}
/*.reserve .form .table table td span{
  display: block;
}*/
.reserve span.wpcf7-list-item:first-child {
  display: inline-block;
  margin: 0;
}
.reserve .wpcf7-form-control-wrap {
  position: relative;
  /* display: block; */
}
.reserve .form .table .gyoseishobun .wpcf7-form-control-wrap {
    display: block;
}
.reserve .form ul.table{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.reserve .form ul.table li{
  width: 48%;
}
.reserve .form ul.table  table td input{
  width: 90%;
}
.reserve .form .table table td input.long{
  width: 260px;
}
.reserve .form .table .notes2{
  color: #f00;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 2em;;
}
.notes3 {
  color: #f00;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.2em;
}
.reserve .form .table .txt{
  font-size: 1.4rem;
}
.reserve .form .table .gyosei{
  float: left;
  padding-right:20px;
}
.reserve .form .table .td{
  width: 90%;
  margin: 10px auto 20px;
  font-size: 1.2rem;
}
.reserve .form .table .td textarea{
  width: 100%;
  height: 10em;
}
.reserve .form .table .td input.long{
  width: 260px;
}
.reserve .form .table .td table th{
  font-size: 1.2rem;
  position: relative;
  padding:8px 0;
  width: 100px;
}
.reserve .form .table .td table th:before{
  display: none;
}
.reserve .confirmation2 .table{
  border: solid 1px #000;
  border-bottom: none;
  margin-bottom: 30px;
}
.reserve .confirmation2 .table table{
  width: 100%;
}
.reserve .confirmation2 .table table th{
  border-right: solid 1px #000;
  border-bottom: solid 1px #000;
  padding: 2%;
  width: 40%;
  font-size: 1.2rem;
}
.reserve .confirmation2 .table table th input.wpcf7-back {
  float: inherit;
  width: auto;
  margin: 0;
  background: transparent;
  font-weight: normal;
  font-size: 1.2rem;
  text-decoration: underline;
}
.reserve .confirmation2 .table table th input.wpcf7-back:hover {
  color: #777;
  text-decoration: none;
}
.reserve .confirmation2 table tr td input {
  width: inherit;
  border: transparent;
}
.reserve .confirmation2 .table table td input[type="text"]:focus {
  outline: 0;
}
.reserve .confirmation2 .table table th a{
  font-weight: normal;
  text-decoration: underline;
  color: #5db98b;
}
.reserve .confirmation2 .table table th a:after{content:"."; display:block; clear:both; height:0; visibility:hidden;}
.reserve .confirmation2 .table table td{
  padding: 2%;
  font-size: 1.2rem;
  border-bottom: solid 1px #000;
  width: 57%;
}

@media only screen and (max-width: 768px) {
  .reserve .plan .table,.reserve .calendar .table,.reserve .confirmation .table{
    border: solid 2px #5db98b;
    margin-bottom: 5%;
  }
  .reserve .calendar .table table th{
    width: 65px;
  }
  .reserve .confirmation .table table th{
    width: 100px;
  }
  .reserve .confirmation .table table th a{
    display: block;
    float: none;
    margin-top: 5px;
  }
  .reserve .confirmation .table table td strong{
    margin-right: 0;
    display: block;
  }
  .reserve .confirmation .table table td img.icon{
    width: 20px;
    display: inline-block;
    margin: 0 10px 0 0;
    vertical-align: middle;
  }
  .reserve .plan .table table th{
    font-size: 1.2rem;
    background-color: #ceeadc;
    vertical-align: middle;
    border-bottom: solid 1px #5db98b;
    border-right: solid 1px #5db98b;
    padding: 10px 10px 10px 30px;
    width: 60px;
    text-align: left;
    position: relative;
  }
  .reserve .plan .table table th:before{
    content: '\025b6';
    background-color: #5db98b;
    color: #fff;
    font-size: .5rem;
    padding: 3px;
    margin-right: 5px;
    position: absolute;
    top: 30%;
    left: 0;
  }
  .reserve .plan .table table th:nth-child(4){
    width: 100px;
  }
  .reserve .plan .table table th:nth-child(5){
    width: 80px;
  }
  .reserve .plan .table table td{
    font-size: 1.2rem;
  }
  .reserve .plan .table table td strong{
    font-size: 1.4rem;
  }
  .reserve .confirmation2 .table table th{
    border-right: none;
    padding: 2%;
    width: 100%;
    box-sizing: border-box;
    display: block;
    font-size: 1.2rem;
  }
  .reserve .confirmation2 .table table th a{
    font-weight: normal;
    text-decoration: underline;
    color: #5db98b;
  }
  .reserve .confirmation2 .table table th a:after{content:"."; display:block; clear:both; height:0; visibility:hidden;}
  .reserve .confirmation2 .table table td{
    padding: 2%;
    font-size: 1.2rem;
    border-bottom: solid 1px #000;
    width: 100%;
    box-sizing: border-box;
    display: block;
  }
  .reserve .form .table table{
    width: 100%;
  }
  .reserve .form .table table th{
    position: relative;
    padding:8px 0;
    width: 100%;
    display: block;
  }
  .reserve .form .table.type2 table th{
    width: 100%;
  }
  .reserve .form .table table td{
    padding: 8px 0 8px;
    width: 100%;
    display: block;
  }
}

.reserve .pay{
  border-top: solid 1px #5db98b;
  padding-top: 20px;
}
.reserve .pay .txt{
  font-size: 1.4rem;
  font-weight: bold;
  color: #5db98b;
  margin-bottom: 15px;
}
.reserve .pay .txt span{
  display: inline-block;
  font-size: 1.2rem;
  font-weight: normal;
  color: #444;
  margin-left: 30px;
}
.reserve .pay ul:after,.reserve .consent ul:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
/*
.reserve .pay ul li,.reserve .consent ul li{
  float: left;
  margin-right: 20px;
  font-size: 1.4rem;
}
*/
.reserve .pay span,
.reserve .consent span {
  margin-right: 20px;
  font-size: 1.4rem;
}

.ppBox{
  font-size: 1.2rem;
  border: solid 1px #ccc;
  padding: 30px;
  height: 200px;
  overflow-y: auto;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
.ppBox{
  padding: 3%;
}
}
