/*------------------------------------モーダル-左リザルト用-------------------------*/
/*リザルトメッセージ*/
.result-info-live{
    background-color:#87ceeb;/*var(--starColorGreen)*/
    margin: 7px;
    padding: 3px;
    border-radius: 5px;
    font-size: 0.7rem;
    line-height: 1.2rem;
    animation: result-info-live 1s 1;
 }
 @keyframes result-info-live {
     0% {
       opacity: 0;
       height:0px;
       background-color:#FFF;
    }
    50% {
       opacity: 0.5;
       height:70px;
    }
     100% {
       opacity: 1;
       height:auto;
       background-color:#87ceeb;/*var(--starColorGreen)*/
    }
 }
 .result-info{
    background-color:#c6e1ec;/*var(--starColorGreen)*/
    margin: 7px;
    padding: 3px;
    border-radius: 5px;
    font-size: 0.7rem;
    line-height: 1.2rem;
 }
  .result-info-denger-live{
    background-color:#df2049;/*var(--starColorRed);*/
    margin: 7px;
    padding: 3px;
    border-radius: 5px;
    border:#000;
    font-size: 0.7rem;
    line-height: 1.2rem;
    animation: result-info-denger-live 1s 1;
    color:#ffffffcd;
 }
 @keyframes result-info-denger-live {
     0% {
       opacity: 0;
       height:0px;
       background-color:#FFF;
    }
    50% {
       opacity: 0.7;
       height:90px;
    }
     100% {
       opacity: 1;
       height:auto;
       background-color:#df2049;/*var(--starColorRed);*/
    }
 }
 .result-info-denger{
    background-color:#ecc6ce;/*var(--starColorRed);*/
    margin: 7px;
    padding: 3px;
    border-radius: 5px;
    border:#000;
    font-size: 0.7rem;
    line-height: 1.2rem;
    color:#000;
 }
 /*リザルトメッセージのモーダル*/
 .modal-result-background{
    display: block;
    position:fixed;
    top:55px;
    left:0px;
    width: 0px;
    height:100%;
    z-index:500;
    opacity: 0;
    background-color: #000;
    animation: modal_result_background_hidden 0.5s 1 ;
 }
 @keyframes modal_result_background_visit {
     0% {
       width: 0;
       opacity: 0;
    }
     100% {
       width: 315px;
       opacity: 0.5;
    }
 }
 .modal-result-background-add{
    width: 315px;
    opacity: 0.5;
    animation: modal_result_background_visit 0.5s 1 ;
 }
 @keyframes modal_result_background_hidden {
     0% {
       width: 315px;
       opacity: 0.5;
    }
     100% {
       width: 0px;
       opacity: 0;
    }
 }
 .modal-result-window{
    display: block;
    position:fixed;
    top:75px;
    left:10px;
    width: 0px;
    height:0px;
    border-radius: 5px;
    z-index:510;
    opacity: 0;
    background-color: #FFF;
    overflow-y: scroll;
    animation: modal_result_window_hidden 0.5s 1 ;
 }
 @keyframes modal_result_window_visit {
     0% {
       width: 0;
       height:0px;
       opacity: 0;
    }
     100% {
       width: 285px;
       height:800px;
       opacity: 1;
    }
 }
 .modal-result-window-add{
    width: 285px;
    height:700px;
    opacity: 1;
    animation: modal_result_window_visit 0.5s 1 ;
 }
 @keyframes modal_result_window_hidden {
     0% {
       width: 285px;
       height:800px;
       opacity: 1;
    }
     100% {
       width: 0px;
       height:0px;
       opacity: 0;
    }
 }
 /*モーダルリザルトのスクロール表示*/
 .modal-result-window::-webkit-scrollbar{
    background-color: #fff;
    width:10px;
 }
 .modal-result-window::-webkit-scrollbar-track{
    background-color: #fff;
    border-radius: 5px;
 }
 .modal-result-window::-webkit-scrollbar-thumb{
    background-color: #c0c0c0;
    border-radius: 5px;
 }
 .modal-result-window::-webkit-scrollbar-thumb:hover{
    background-color: #a0a0a0;
 }

/*-------------------------------モーダル-小編集用-------------------------------------------*/
.modal-edit-small-background{
    display: block;
    position:fixed;
    top:55px;
    left:0px;
    width: 100%;
    height:0%;
    z-index:600;
    opacity: 0;
    background-color: #000;
    animation: modal_edit_small_background_hidden 0.5s 1 ;
 }
 @keyframes modal_edit_small_background_hidden {
   0% {
      height: 100%;
     opacity: 0.3;
  }
   100% {
      height: 0%;
     opacity: 0;
  }
}
 .modal-edit-small-background-add{
    height: 100%;
    opacity: 0.3;
    animation: modal_edit_small_background_visit 0.5s 1 ;
 }
 @keyframes modal_edit_small_background_visit {
   0% {
      height: 0%;
     opacity: 0;
  }
   100% {
      height: 100%;
     opacity: 0.3;
  }
}

 .modal-edit-small-window{
    display: block;
    position:fixed;
    inset: 0;
    margin: auto;
    width: 450px;
    height:0px;
    z-index:610;
    opacity: 0;
    color: #fff;
    border: 3px double #b9b9b9;/*#464646*/
    background: #fff;
    border-radius: 5px;
    padding: 0.5em;
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
    animation: modal_edit_small_window_hidden 0.5s 1 ;
 }
 @keyframes modal_edit_small_window_hidden {
   0% {
     height:300px;
     opacity: 1;
  }
   100% {
     height:0px;
     opacity: 0;
  }
}
.modal-edit-small-window-add{
    width: 450px;
    height:300px;
    opacity: 1;
    animation: modal_edit_small_window_visit 0.5s 1 ;
}
@keyframes modal_edit_small_window_visit {
   0% {
     height:0px;
     opacity: 0;
  }
   100% {
     height:300px;
     opacity: 1;
  }
}


 /*-------------------------------モーダル-レフトサイドメニュー用（第一階層）-------------------------------------------*/
.modal-left-menu-01-background{
   display: block;
   position:fixed;
   top:55px;
   left:0px;
   width: 100%;
   height:0%;
   z-index:10000;
   opacity: 0;
   background-color: #FFF;
   animation: modal_left_menu_01_background_hidden 0.5s 1 ;
}
@keyframes modal_left_menu_01_background_hidden {
   0% {
     height: 100%;
     opacity: 0.5;
  }
   100% {
     height: 0%;
     opacity: 0;
  }
}
.modal-left-menu-01-background-add{
   height: 100%;
   opacity: 0.5;
   animation: modal_left_menu_01_background_visit 0.5s 1 ;
}
@keyframes modal_left_menu_01_background_visit {
   0% {
     height: 0%;
     opacity: 0;
  }
   100% {
     height: 100%;
     opacity: 0.5;
  }
}

.modal-left-menu-01-window{
   display: block;
   position:fixed;
   top:55px;
   width: 300px;
   height:0px;
   z-index:10010;
   color: #000;
   border-bottom: 0px solid #b9b9b9;
   background: rgba(0,0,0,0);
   animation: modal_left_menu_01_window_hidden 0.5s 1 ;
}
@keyframes modal_left_menu_01_window_hidden {
   0% {
      height:400px;
      background: rgba(0,0,0,0.2);
   }
   30% {
      height:400px;
   }
   60% {
      background: rgba(0,0,0,0.2);
   }
   100% {
      height:0px;
      background: rgba(0,0,0,0);
   }
}
.modal-left-menu-01-window-add{
   width: 300px;
   height:400px;
   background: rgba(0,0,0,0.2);
   border-bottom: 4px solid #b9b9b9;
   animation: modal_left_menu_01_window_visit 0.5s 1 ;
}
@keyframes modal_left_menu_01_window_visit {
   0% {
      height:0px;
      background: rgba(0,0,0,0);
   }
   100% {
      height:400px;
      background: rgba(0,0,0,0.2);
   }
}

 /*-------------------------------モーダル-レフトサイドメニュー用（第二階層）-------------------------------------------*/
.modal-left-menu-02-window{
   display: block;
   position:fixed;
   top:55px;
   left:300px;
   width: 0px;
   height:0px;
   z-index:10010;
   color: #000;
   background: rgba(0,0,0,0);
   animation: modal_left_menu_02_window_hidden 0.5s 1 ;
   border-bottom: 5px solid #b9b9b9;
}
@keyframes modal_left_menu_02_window_hidden {
   0% {
      height:400px;
      width:300px;
      background: rgba(0,0,0,0.2);
   }
   30% {
      height:400px;
      width:300px;
   }
   60% {
      background: rgba(0,0,0,0.2);
   }
   100% {
      width:0px;
      height:0px;
      background: rgba(0,0,0,0);
   }
}
.modal-left-menu-02-window-add{
   width: 300px;
   height:400px;
   background: rgba(0,0,0,0.2);
   animation: modal_left_menu_02_window_visit 0.5s 1 ;
}
@keyframes modal_left_menu_02_window_visit {
   0% {
      width:0px;
      height:0px;
      background: rgba(0,0,0,0);
   }
   100% {
      width:300px;
      height:400px;
      background: rgba(0,0,0,0.2);
   }
}


