.error{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-left: 20px;
    padding-right: 20px
}
.error h2{
    font-size: 3rem;
    font-family: "Noto sans JP", sans-serif;
    font-weight: 700;
    color: #000;
    text-align: center;
}

.error p{
    font-size: 1.6rem;
    text-align: center;
    line-height: 2.7rem;
}

@media screen and (max-width: 767px) {
    .error h2{
        font-size: 2rem;
        font-family: "Noto sans JP", sans-serif;
        font-weight: 700;
        color: #000;
        text-align: center;
    }
    
    .error p{
        font-size: 1.2rem;
        text-align: center;
        line-height: 2.7rem;
    }
}