.mobile{
    display: none !important;
}
body{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text{
    font-size: 1.7rem;
    font-weight: 700;
    color: #6d6d71;
    margin: 3.125rem 0;
    display: inline-block;
}
.Shortcut_wrap>img{
    width: 300px;
}
.shortcut{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: #12323d;
    position: relative;
    margin-right: 50px;
}
.shortcut img{
    width: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16%;
    transition: 0.2s;
}
.shortcut:hover.shortcut img{
    right: 11%;
}
@media screen and (max-width:860px) {
    .pc{
        display: none;
    }
    .mobile{
        display: block !important;
        line-height: 2rem;
    }
    .Shortcut_wrap>img{
        width: 300px;
    }
    .shortcut{
        justify-content: flex-start;
        margin: 0;
    }
    .shortcut img{
        right: 45%;
    }
    .shortcut:hover.shortcut img{
        right: 40%;
    }
}
@media screen and (max-width:550px) {
    .Shortcut_wrap>img{
        width: 200px;
    }
    .shortcut img{
        width: 20px;
        right: 60%;
    }
    .shortcut:hover.shortcut img{
        right: 55%;
    }
    .shortcut{
        margin-right: 0px;
    }
}
@media screen and (max-width:350px) {
    .Shortcut_wrap>img{
        width: 150px;
    }
    .shortcut img{
        width: 20px;
        right: 50%;
    }
    .shortcut:hover.shortcut img{
        right: 45%;
    }
    .text{
        font-size: 20px;
    }
    .Shortcut_wrap{
        padding: 0 10px;
        box-sizing: border-box;
    }
}