
.window-default{
    position: absolute;
    background-color: #FFF;
    border: 1px solid rgba(0,0,0,.5);
    border-radius: 0.25rem;
    box-shadow: -2px -1px 5px -3px #777777;
    animation: window-default 0.1s 1;
}
@keyframes window-default {
   0% {
        opacity: 0;
        box-shadow: -40px -20px 40px -24px #777777;
    }
   100% {
        opacity: 1;
        box-shadow: -2px -1px 5px -3px #777777;
    }
}

.window-default-head{
    position: absolute;
    top:0px;
    left:0px;
    width: 100%;
    height: 30px;
    /*background-color: #f8f8ff;*/
    /*background-color: #212529;*/
    background: #bbbbbb;
    z-index: 10;
    cursor: grab;/*grabbing;*/
    font-size: small;
    padding-left:5px;
    display: flex;
    align-items: center;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.window-default-head-close{
    position: absolute;
    top:0px;
    right:0px;
    width: 30px;
    height: 30px;
    /*background-color: #f8f8ff;*/
    z-index: 11;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-right-radius: 0.25rem;
}
.window-default-head-close:hover{
    background-color: #f1f8f9;
    cursor:pointer;
}

.window-default-inner{
    position: absolute;
    top:0px;
    left:0px;
    width: 100%;
    height: 100%;
    padding-top: 30px;
    z-index: 5;
    background-color: #fff;
    overflow: auto;
    border-radius: 0.25rem;
}

.window-default-border{
    position: absolute;
    z-index: 13;
    border-radius: 5px;
    background: rgba(0,0,0,0);
    transition: all 0.2s;
}
.window-default-border:hover{
    background: rgba(0,0,0,0.5);
    transition: all 0.2s;
}
/*左*/
.window-border-left{
    width:5px;
    top:10px;
    left:-5px;
    cursor:ew-resize;
}
/*右*/
.window-border-right{
    width:5px;
    top:10px;
    right:-5px;
    cursor:ew-resize;
}
/*上*/
.window-border-top{
    height:5px;
    top:-5px;
    left:5px;
    cursor:ns-resize;
}
/*下*/
.window-border-bottom{
    height:5px;
    bottom:-5px;
    left:5px;
    cursor:ns-resize;
}
/*角基本*/
.window-default-corner{
    position: absolute;
    z-index: 13;
}
/*左上*/
.window-corner-left_top{
    top:-5px;
    left:-5px;
    width:20px;
    height:20px;
    cursor:nwse-resize;
}
.window-corner-left_top:hover{
    border-radius: 5px;
    border-top: 5px solid rgba(0,0,0,0.5);
    border-left: 5px solid rgba(0,0,0,0.5);
}
/*左下*/
.window-corner-left_bottom{
    bottom:-5px;
    left:-5px;
    width:20px;
    height:20px;
    cursor:nesw-resize;
}
.window-corner-left_bottom:hover{
    border-radius: 5px;
    border-bottom: 5px solid rgba(0,0,0,0.5);
    border-left: 5px solid rgba(0,0,0,0.5);
}
/*右上*/
.window-corner-right_top{
    top:-5px;
    right:-5px;
    width:20px;
    height:20px;
    cursor:nesw-resize;
}
.window-corner-right_top:hover{
    border-radius: 5px;
    border-top: 5px solid rgba(0,0,0,0.5);
    border-right: 5px solid rgba(0,0,0,0.5);
}
/*右下*/
.window-corner-right_bottom{
    bottom:-5px;
    right:-5px;
    width:20px;
    height:20px;
    cursor:nwse-resize;
}
.window-corner-right_bottom:hover{
    border-radius: 5px;
    border-bottom: 5px solid rgba(0,0,0,0.5);
    border-right: 5px solid rgba(0,0,0,0.5);
}

/*windowリスト*/
.window-list-display-management-base{
    position: absolute;
    bottom:4px;
    right:10px;
    width: 180px;
    height:28px;
    background: rgba(255,255,255,.5);
    border: 1px solid rgba(100,100,100,.5);
    border-radius: 5px;
    z-index:11000;
    text-align: center;
    padding-top: 3px;
}
.window-list-display-management-base:hover{
    cursor: pointer;
    background: rgba(255,255,255,1);
}
.window-list-display-management-hidden{
    opacity: 0;
}
.window-list-base{
    position: absolute;
    height: 100%;
    top:0px;
    right:0px;
    padding-top: 56px;
    padding-bottom: 56px;
    width: 200px;
    background: rgba(0,0,0,0.2);
    z-index:10000;
    animation: window-list-base 0.3s 1;
    overflow-y: auto;
    overflow-X: hidden;
}
@keyframes window-list-base {
   0% {
    width: 0px;
    }
   100% {
    width: 200px;
    }
}
.window-list-base::-webkit-scrollbar{
    background-color:#FFF;
	border-radius:100px;
    width:5px;
}
.window-list-base::-webkit-scrollbar-thumb{
	background-color:rgba(0,0,0,0.5);
	border-radius:100px;
}
.window-list-base::-webkit-scrollbar-thumb:hover{
	background-color:rgba(0,0,0,0.7);
}
.window-list-hidden{
    width: 0px;
    opacity: 0;
    animation: window-list-hidden 0.3s 1;
}
@keyframes window-list-hidden {
   0% {
    width: 200px;
    opacity: 1;
    }
   100% {
    width: 0px;
    opacity: 0;
    }
}
.window-list-item-base{
    position: relative;
    border-radius: 5px;
    height:auto;
    width: 96%;
    margin: 5px 2%;
    padding-top: 0px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 16px;
    font-size: 0.7em;
    animation: window-list-item-base 0.3s 1;
    z-index: 10;
    background: #fff7eb;
    border: solid 2px white;
}
@keyframes window-list-item-base {
    0% {
        height:0px;
        opacity: 0;
     }
    100% {
        height:auto;
        opacity: 1;
     }
 }
 .window-list-item-base:hover{
    cursor:pointer;
    box-shadow: 7px 8px 14px -4px #030303;
    margin-left:1px;
}
.window-list-item-close{
    position: relative;
    top: 3px;
    left: 162px;
    width: 20px;
    height:20px;
    padding-top: 2px;
    z-index: 11;
    text-align: center;
}
.window-list-item-close:hover{
    background: #008080;
    border-radius: 10px;
}