.btnMenu {
    position: fixed;
    font-size: 1.3rem;
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    background-color: #D93D93;
    border-radius: 50%; 
    margin: 0 auto;
    text-align: center;
    right: 1rem;
    bottom: 1rem;
    border: none;
    color: #ffffff;
    transition: 1s;
    will-change: transform;
    z-index: 99;
}

.btnMenuOpen{

}

.btnMenuClose{
}

.btnMenuOpen.isAnimated {
    transform: scale(100);
    background-color: rgba(217, 61, 147, 0.9);
}

.menuBody{
    position: fixed;
    z-index: 100;   
    width: 100vw;
    height: 100vh;
}

.menuGroup{
    height: 100%;
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
}

.menuItem{
    text-decoration: none;
    font-size: 1.2rem;
    margin-top: 4vh;
    margin-bottom: 4vh;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.menuItemIcon{
    width: 40%;
    text-align: right;
    padding-right: 1vw;
}

.menuItemText{
    width: 60%;
}

/* ============================================================

    SP対応

============================================================ */
@media screen and (max-width: 1279px){
/* @media screen and (max-width: 768px){ */
    .menuItem{
        margin-top: 2vh;
        margin-bottom: 2vh;
    }

    .menuItemIcon{
        width: 30%;
    }
    
    .menuItemText{
        width: 70%;
    }
}