@charset "UTF-8";
.formModal {
    display: none;
    overflow-y: scroll;
}
.formModal > ul {
    list-style: none;
}
.formModal > ul > li span.col1 {
    float: left;
}
.MyTable div.row{
    display:table-row;
}
.MyTable div.cell{
    display:table-cell;
    vertical-align: middle;
    padding-right: 2em;
}

#btnBox {
    /*padding: 2em 20%;*/
    margin-top: 1em;
    float: right;
}
.modalBtnBox {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: bottom !important;
  padding-right: 5px !important;
}

#modal_close,
#modal_submit {
    width: 140px;
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #000;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
}
#modal_close {
    height: 30px;
}
#modal_submit {
    height: 45px;
}

#modal_close {
    border-color: #accdff;
}
#modal_submit {
    background: #d6f5ec;
    border-color: #2EE59D;
}
#modal_close:hover {
    background-color: #accdff;
    box-shadow: 0px 15px 20px rgba(28, 109, 209, 0.4);
    color: #fff;
    transform: translateY(-1px);
}

#modal_submit:hover {
    background-color: #2EE59D;
    box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
    color: #fff;
    transform: translateY(-1px);
}

.formModal {
    display: none;
    height: 100vh;
    width: 100vw;
    /*background: black;*/
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
}
.modal-overlay{
    opacity: 0.7;
    height: 100vh;
    width: 100%;
    background: black;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 997;
}
.modalContent {
    background: #fff;
    padding: 30px;
    overflow-y:scroll;
    z-index: 999;
}
.show {
    /*margin: 40px 0;*/
    display: flex;
    justify-content: center;
    /*align-items: center;*/
}

.modal-open {
  height: 100vh;
  overflow-y: hidden;
}
.w100pr {
    width: 100%;
}
.confirmDiv > * {
    outline: none;
    border: none;
    resize: none;
}
.confirmDiv{
    font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,Osaka,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
    font-weight: bold;
    padding: 5px;
    border: 0.5px solid #cac6c6;
    /*border: solid 1px gray;*/
}
.confirmTitle {
    color: #5c5959;
    font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,Osaka,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
    padding: 5px;
    background: #d8d5d5;
    border: 0.5px solid #cac6c6;
    /*border: solid 1px gray;*/
}
.confirmTitle:nth-child(n+2) {
    border-top: none;
    background: blue;
}
#confirmBox  .row:nth-child(n+2)  .confirmDiv, 
#confirmBox  .row:nth-child(n+2)  .confirmTitle{
    border-top: none;
}
.modalHr,
#modalTitle {
  position: relative;
  border-bottom: solid 3px #eee;
  margin-bottom: 3px;
}
.modalHr::after,
#modalTitle::after {
  content: " ";
  width: 20%;
  position: absolute;
  bottom: -3px;
  display: block;
  border-bottom: solid 3px #ccc;
}
.modalFooter {
    margin-top: 1em;
}