/* =========================
404
========================= */

.error404-page {
    padding: 80px 20px;
}

.error404 {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.error404__inner {
    padding: 60px 30px;
    border: 1px solid #eee;
    border-radius: 16px;
    background: #fff;
}

.error404__code {
    font-size: 100px;
    font-weight: 700;
    line-height: 1;
    color: #ff7a00;
    margin-bottom: 24px;
}

.error404__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.error404__text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.error404__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.error404__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 220px;
    height: 52px;

    padding: 0 20px;

    border-radius: 8px;

    background: #f3f3f3;
    color: #333;

    text-decoration: none;
    font-weight: 700;

    transition: 0.3s;
}

.error404__btn:hover {
    opacity: 0.8;
}

.error404__btn--primary {
    background: #ff7a00;
    color: #fff;
}

/* SP */
@media screen and (max-width: 750px) {

    .error404-page {
        padding: 60px 16px;
    }

    .error404__inner {
        padding: 40px 20px;
    }

    .error404__code {
        font-size: 72px;
    }

    .error404__title {
        font-size: 24px;
    }

    .error404__buttons {
        flex-direction: column;
    }

    .error404__btn {
        width: 100%;
    }

}