/**!
 *  2021/04/06 created by tomiyama
 **/
 @charset "UTF-8";

.no-disp { display: none; }

.mt-10 { margin-top: 10px; }
.mr-10 { margin-right: 10px; }
.mb-10 { margin-bottom: 10px; }
.ml-10 { margin-left: 10px; }

.mt-15 { margin-top: 15px; }
.mr-15 { margin-right: 15px; }
.mb-15 { margin-bottom: 15px; }
.ml-15 { margin-left: 15px; }

.pt-10 { padding-top: 10px; }
.pr-10 { padding-right: 10px; }
.pb-10 { padding-bottom: 10px; }
.pl-10 { padding-left: 10px; }

.pt-15 { padding-top: 15px; }
.pr-15 { padding-right: 15px; }
.pb-15 { padding-bottom: 15px; }
.pl-15 { padding-left: 15px; }

.information { color: #3490dc; }
.attention { color: #e3342f; }
.information2 { color: #6cb2eb; }

#spinner_layer {
    width  : 100%;
    height : 100%;
    position : absolute;
    opacity: 0.5;
    z-index:999999;
    background-color:gray;
}

/*無効化*/
.item_disabled{
    height: 0;
    overflow:hidden;
    padding:0 !important;
    margin:0 !important;
}

/*無効化領域*/
.area_disabled{
    position: relative;
}
.area_disabled:after{
    content: "";
    position: absolute;
    top:0;
    left: 0;
    bottom: 0;
    right: 0;
    cursor: not-allowed;
    background: rgba(255,255,255,.5);
}
.area_disabled::before{
    position: absolute;
    top:40%;
    left: 40%;
    color:red;
    z-index: 10;
    cursor: not-allowed;
}

/*待ち用インジケータオーバーレイ*/
.bg_load_overlay {
    background: rgba(255, 255, 255, 0.4);
    box-sizing: border-box;
    position: fixed;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-around;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2147483647;
    opacity: 1;
}

