/* フォーム用 */
.mb20 {
  margin-bottom:20px;
}
.ml-form {
  margin:0 auto;
}
.ml-form input,
.ml-form select,
.ml-form textarea {
  padding: 5px;
  border: 1px solid #dfdfdf;
  background-color: #FFF;
}
.ml-form .width100 {
  width: 100%;
}
@media only screen and (max-width:768px) {
  .ml-form .center_contents {
    margin-left:10px;
    margin-right:10px;
  }
}
/* フォーム用～共通情報～ */
.mlfm-baseinfo {
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
}
.mlfm-baseinfo dt {
  width: 30%;
  margin-bottom: 20px;
}
.mlfm-baseinfo dd {
  width: 70%;
  margin-bottom: 20px;
}
.mlfm-baseinfo #calendar {
  font-size: 16px;
}
/* フォーム用～切り替えラジオボタン～ */
.ml-form .mlfm-check_wrap {
  display: flex;
  flex-wrap:wrap;
  width: 60%;
  margin: 30px auto 50px;
}
@media only screen and (max-width:399px) {
  .ml-form .mlfm-check_wrap {
    width: 100%;
  }
}
.ml-form .mlfm-check_wrap .mlfm-check {
  text-align: center;
  margin: 0 auto;
}
/*　フォーム用～フォームの流れ～　*/
.mlfm-flow {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
@media only screen and (min-width:769px) {
  .mlfm-flow {
    width: 80%;
  }
}
.mlfm-flow li {
  position: relative;
  display: inline-block;
  width: 30%;
  margin-right: 5%;
  padding: 10px 0px;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
}
.mlfm-flow li.mlfm_active {
    background-color: #4D5AAF;
}
.mlfm-flow li.mlfm_next {
  background-color: #BAC0E5;
}
.mlfm-flow li:last-child {
  margin-right: 0;
}
.mlfm-flow li:after {
    content: '';
    width: 10px;
    height: 10px;
    border: 0px;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 5px);
    right: -25px;
    border-color: #4D5AAF;
    border-width: 2px 2px 0 0;
    border-style: solid;
}
.mlfm-flow li:last-child:after {
  display: none;
}

@media only screen and (max-width:768px) {
  .ml-form .width100 {
    margin-top: 5px;
  }
  .mlfm-baseinfo dt {
    width: 100%;
    float: none;
    padding: 0 0 0 8px;
    border-left: 7px #4D5AAF solid;
    line-height: 1;
    margin-bottom: 5px;
    margin-top: 10px;
    font-size: 16px;
  }
  .mlfm-baseinfo dd {
    width: 100%;
    float: none;
  }
  .mlfm-flow li {
    font-size: 14px;
  }
  .mlfm-flow li:after{
      right: -3vw;
      top: calc(50% - 5px);
      width: 10px;
      height: 10px;
  }
}
@media only screen and (max-width:399px) {
    .mlfm-flow li{font-size: 11px;}
}
/* フォーム用～キャンセル対象者入力欄～ */
.ml-form_wrap {
  background-color: #F2F5FF;
  padding-top: 80px;
  padding-bottom: 110px;
}
#ml-form_change h3 {
  float: left;
  width: 30%;
  font-weight: bold;
}
@media only screen and (min-width:769px) {
  .mlfm-change_flex {
    display: flex;
    width: 70%;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .mlfm-change_box {
    display: flex;
    width: calc(50% - 20px);
    margin-bottom: 30px;
  }
  .mlfm-change_box .number {
    width: 15%;
  }
  .mlfm-change_box .number span {
    display: inline-block;
    padding: 3px 10px;
    background-color: #4D5AAF;
    color: #FFF;
  }
  .mlfm-change_box dl {
    width: 85%;
    font-size: 16px;
  }
  .mlfm-change_box dt {
    float: left;
    width: 20%;
    margin-bottom: 20px;
  }
  .mlfm-change_box dd {
    float: left;
    width: 80%;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width:768px) {
  #ml-form_change h3 {
    float: none;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 0 0 0 8px;
    border-left: 7px #4D5AAF solid;
    line-height: 1;
    font-size: 16px;
  }
  .mlfm-cancelinfo {
    margin-bottom: 50px;
  }
  .mlfm-change_flex {
    width: 100%;
  }
  .mlfm-change_box {
    clear: both;
  }
  .mlfm-change_box .number {
    text-align: center;
    background-color: #4D5AAF;
    color: #FFF;
  }
  .mlfm-change_box dl {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0 20px;
  }
  .mlfm-change_box dt {
    width: 20%;
    margin-top: 5px;
  }
  .mlfm-change_box dd {
    width: 80%;
  }
}
@media only screen and (max-width:399px) {
  .mlfm-change_box {
    width: 100%;
  }
}

/* フォーム用～変更後部屋タイプ入力欄～ */
.mlfm-roomtype_box {
  display: flex;
  margin-bottom: 10px;
}
.mlfm-roomtype_box .roomtype {
  width: 45%;
}
.mlfm-roomtype_box .room {
  width: 45%;
}
.mlfm-roomtype_box span {
  width: 10%;
  text-align: center;
  padding: 10px 0;
  font-size:2em;
}
@media only screen and (min-width:769px) {
  .mlfm-roomtype_flex {
    display: flex;
    width: 70%;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .mlfm-roomtype_box {
    width: calc(50% - 20px);
    margin-bottom: 20px;
  }
}
.ml-form_button {
 text-align: center;
 margin-top: 50px;
 margin-bottom: 110px;
}
.ml-form_button input[type=reset],
.ml-form_button input[type=button],
.ml-form_button input[type=submit] {
  border-radius: 5px;
  padding: 10px 10%;
  font-size: 20px;
  background-color: #a7a7a7;
}
.ml-form_button input[type=submit] {
  color: #FFF;
  background-color: #4d5aaf;
}
.ml-form_button input:hover {
  background-color:#fff;
  border:1px solid #4d5aaf;
  color:#4d5aaf;
}
.ml-form_notes {
  margin: 60px 0 100px;
}
.ml-form_notes li {
  margin-bottom: 20px;
}
@media only screen and (max-width:399px) {
  .ml-form_button input[type=reset],
  .ml-form_button input[type=button],
  .ml-form_button input[type=submit] {
    font-size: 16px;
  }
}
/* フォーム用～入力内容の確認画面～ */
table.formTable {
    width: 70%;
    margin: 30px auto;
    border-collapse: collapse;
}
table.formTable td, table.formTable th {
    border: 1px solid #ccc;
    padding: 10px;
}
table.formTable th {
    margin-top: 5px;
    border-bottom: 0;
    font-weight: normal;
    background: #efefef;
}
@media only screen and (max-width:768px) {
  table.formTable {
      width: 100%;
  }
  table.formTable td, table.formTable th {
      width: auto;
      display: block;
  }
}
