/* 出勤、退勤等のポップアップメッセージ */
.mess-view-layer{
    display: none;
    position: fixed;
    top: 0;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    width: 100%;
    z-index: 100000;
}

.mess-view-layer .mess-view{
    max-width: 500px;
    width: 95%;
    margin: 0 auto;
    background-color: rgb(255, 255, 255);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    padding: 2%;
    border-radius: 10px;
    text-align: center;
    font-size: 20px;
}

.mess-view-layer .mess-view .popup-btn{
    padding:0;
    margin:0;
    margin-top: 3%;
    text-decoration: none;
    list-style: none;
    display: flex;
    justify-content: space-around;
}

.mess-view-layer .mess-view .popup-btn li{
    width: 130px;
    text-align: center;
    /* width: 100px; */
    /* margin: 3% auto 0; */
    padding: 2% 0;
    text-align: center;
    border-radius: 5px;
    font-size: 1.5rem;
}

.mess-view-layer .mess-view .popup-btn li:hover{
    cursor: pointer;
    opacity: 0.7;
}

/* 申告内容のタイトル */
.mess-view-layer .mess-view .popup-app-title{
    text-align:left;
    font-weight: bold;
}

/* 申告内容 */
.mess-view-layer .mess-view .popup-app-contents{
    text-align:left;
    font-size: 26px;
}

/* 閉じるボタン */
.mess-view-layer .mess-view .close-btn-layer{
    text-align: right;
}

.mess-view-layer .mess-view .close-btn{
    font-size: 4rem;
    padding: 0;
    /* font-weight: bold; */
    color: rgb(90,90,90);
    border: none;
    background-color: rgb(255,255,255);
}

/* OKボタン */
.mess-view-layer .mess-view button{
    display: inline-block;
    width: 130px;
    height: 60px;
    padding: 5% 0;
    text-align: center;
    border-radius: 5px;
    font-size: 1.5rem;
    border: 2px solid rgb(255, 120, 120);
    color: rgb(255, 120, 120);
    background-color: rgb(255,255,255);
}


/* NGボタン */
.mess-view-layer .mess-view .ng-btn{
    border: 2px solid rgb(98, 152, 240);
    color: rgb(98, 152, 240);
}

/* キャンセルボタン */
.mess-view-layer .mess-view .cancel-btn{
    /* border: 2px solid rgb(180, 180, 180);
    color: rgb(180, 180, 180); */
    border: 2px solid rgb(98, 152, 240);
    color: rgb(98, 152, 240);
}

/* 削除ボタン */
.mess-view-layer .mess-view .delete-btn{
    border: 2px solid rgb(237, 43, 43);
    color: rgb(255,255,255);
    background-color: rgb(237, 43, 43);
}


@media screen and (max-width: 1024px){
    /* 申告内容 */
    .mess-view-layer .mess-view .popup-app-contents{
        font-size: 2.45vw;
    }
}

@media screen and (max-width: 896px){
    /* 申告内容 */
    .mess-view-layer .mess-view .popup-app-contents{
        font-size: 20px;
    }
}

@media screen and (max-width: 480px){
    /* 申告内容 */
    .mess-view-layer .mess-view .popup-app-contents{
        font-size: 4.5vw;
    }   
}

@media screen and (max-width: 360px){
    .mess-view-layer .mess-view button{
        width: 32vw;
        height: 13vw;
        font-size: 5vw;
    }
}