.chara2{
  width: 1.5em;
  font-size: 20px;
  font-weight: bold;
}
.chara4{
  width: 2.5em;
  font-size: 20px;
}
.color1{
  color: #00bbf3;
  font-weight: bold;

}
/* -- ローディング中 -- */
#loading {
  display: table;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0.8;
}
 
#loading .loadingMsg {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding-top: 140px;
  background: url("../image/loading.gif") center center no-repeat;
}

.popupBase{
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
}
.popup {
  display: block;
  vertical-align: middle;
  padding-top: 140px;
  background-color: #fff;
  margin: auto auto;
}
div#entry{
  width: 350px;
  border: 2px solid;
  border-color: #2aad9a;
  background: #defff6;
}


/* */ 
.headerMsg{
  font-size: 20px;
  line-height: 1.5em;
  border-bottom: dotted 4px #ff6e83;
}
div#StopReserve span{
  display: block;
  font-size: 18px;
  line-height: 1.5em;
}
div#Attention ul li{
  line-height: 1.5em;
  padding: 5px 0;
}
@media screen and (max-width: 500px){
  .br-sp {display: none; }
  div#Attention ul li{
    padding: 10px 0;
  }
}
div#SelectMaid span, div#SelectMaidAll span{
  display: block;
  color: #f22c9c;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
}
span{
}
div#SelectCalendar svg{
  display: block;
}
div#SelectCalendar span, div#SelectNumber span{
  display: block;
  color: #f22c9c;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
}
div#SelectMaid, div#SelectMaidAll {
  margin-top: 20px;
}
div#SelectBooking{
  margin-top: 20px;
}
div#SelectBooking span{
  display: block;
  color: #f22c9c;
  font-weight: bold;
  font-size: 20px;
  margin: 20px 0;
  line-height: 30px;
}



div{
  display: block;
}
/* -- 入力フォーム -- */
div#input{
  display: none;
  width: 350px;
  margin-top: 20px;
}
div#div_Title{
  background: #2aad9a;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  height: 30px;
  line-height: 30px;
}
div#div_Comment{
  width: 100%;;
  color: #f22c9c;
  font-weight: bold;
  padding: 20px 0;
}
div#div_Comment span{
  padding: 10px;
  white-space: pre-line;
}
div#div_Content{
  margin: 10px;
}
div#div_Content span{
  color: "#81b8a8";
  line-height: 30px;
}

/* -- 合計金額 -- */
div#sum{
  padding: 20px 0;
}
span#sum{
  display: block;
  text-align: right;
  padding-right: 10px;
}

/* -- コンボボックス --*/
div#cbo, div#cboNum{
  position: relative;
  border: 1px solid #bbbbbb;
  border-radius: 2px;
  background: #ffffff;
  
  overflow: hidden;
  width: 90%;
  margin: 2em auto;
  text-align: center;
}
div#cbo::before, div#cboNum::before{
  position: absolute;
  top: 0.8em;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
}
div#cbo select, div#cboNum select {
  padding: 8px 38px 8px 8px;
  color: #666666;
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
div#cbo select::-ms-expand, div#cboNum select::-ms-expand{
  display: none;
}
/* -- テキストボックス --*/
.txt {
  font: 15px/24px sans-serif;
  box-sizing: border-box;
  width: calc(100% - 8px);
  padding: 0.3em;
  transition: 0.3s;
  letter-spacing: 1px;
  color: #aaaaaa;
  border: 1px solid #1b2538;
  border-radius: 4px;
  margin: 4px;
}
.ef input[type='text']:focus {
  border: 1px solid #00bbf3;
  outline: none;
  box-shadow: 0 0 5px 1px rgba(218,60,65, .5);
}
/* -- ボタン --*/
.btn{
  display: block;
  width: 200px;
  text-align: center;
  margin: 10px auto;
  padding: 7px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: #FFF;
  background-image: linear-gradient(45deg, #73f8ae 0%, #24a56f 100%);
  transition: .4s;
}
.btn:hover{
  background-image: linear-gradient(45deg, #4bb87b 0%, #104d33 100%);
}
.half{
  width: 100px;
  display: inline-block;
}
.btnFm{
  display: inline-block;
  width: 150px;
  text-align: center;
  margin: 10px auto;
  padding: 7px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: #FFF;
  background-image: linear-gradient(45deg, #73f8ae 0%, #24a56f 100%);
  transition: .4s;
}