#pseudoWindowMask{
    background: rgba(0, 0, 0, 0.555) !important;
    position: fixed !important;
    top: 0px !important;
    right: 0px !important;
    left: 0px !important;
    bottom: 0px !important;
    z-index:1000;
}

#pseudoWindow {
    position: relative;
    border: 2px solid rgb(29, 34, 26);
    width: 320px;
    margin: auto;
    top: calc(-125px + 50vh);
    background: rgb(90, 102, 84) !important;
    box-shadow: 0px 0px 20px 5px #000;
    border-radius: 10px;
    overflow: hidden;
    color: rgba(31, 35, 71, 1);
}

.pseudoTitleBlock {
    width: calc(-20px + 100%);
    height: 30px;
    background-color: rgb(29, 34, 26);
    float: left;
    font-family: meiryo;
    font-size: 12px;
    text-shadow: 1px 1px 3px #666;
    position: relative;
    padding: 0px 5px 0px 20px;
    color: #fff;
    font-size: 20px;
    line-height: 20px;
}

#pseudoTitleText {
    margin: 5px;
    position: relative;
    width: calc(-40px + 100%);
    overflow: hidden;
    float: left;
    color: rgb(177, 177, 196);
}

.pseudoClose {
    width: 20px;
    height: 20px;
    background-color: #999;
    float: right;
    text-align: center;
    font-family: OCRB;
    font-size: 18px;
    padding: 5px;
    line-height: 18px;
}
.pseudoClose:hover{
    background-color: #A00;
    color:#FFF;
}

#pseudoMsg {
    color: rgb(177, 177, 196);
    font-family: meiryo;
    padding: 5px;
    font-size: 16px;
    clear: both;
    padding:10px 20px 20px 20px;
}


.pseudoButtonBlock{
    bottom: 5px;
    text-align: center;
    width: 100%;
}


#pseudoWindowMask button{
    border:solid 1px #999;
    border-radius: 50px;
    margin:5px;
    font-size:20px;
}

div#pseudoWindMsg {
    text-align: center;
    position: fixed;
    width: 100%;
    top: 45vh;
    text-shadow: -1px -1px 1px rgb(255, 183, 183);
    font-size: 25px;
    color:#f00;
}


span#pseudowguruguru {
    width: 14px;
    height: 14px;
    border: solid 2px #f00;
    display: inline-block;
    border-radius: 20px;
    margin-right: 10px;
    position: relative;
    animation: 0.5s linear infinite rotation1;
}

@keyframes rotation1{
    0%{ transform:rotate(0);}
    100%{ transform:rotate(360deg); }
}


span#pseudowguruguru:after {
    content: "";
    position: absolute;
    border: solid 1px #fff;
    width: 3px;
    border-radius: 5px;
    height: 3px;
    top: -3px;
    left: 50%;
    background-color: #a01800;
}


