/* ================================================================
   404 Not Found ページ
================================================================ */

.cr-notfound-page {
    padding-bottom: 160px;
}

.cr-notfound-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 80px;
}

.cr-notfound-heading {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 2.56px;
    line-height: 1.5;
    color: var(--black-100, #191919);
}

.cr-notfound-text {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 1.5;
    color: var(--black-100, #191919);
}

.cr-notfound-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 64px;
    background: #f4f4f4;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2.16px;
    color: var(--black-100, #191919);
    text-decoration: none;
    transition: opacity 0.2s;
}

.cr-notfound-btn:hover {
    opacity: 0.7;
}

/* ---- レスポンシブ ---- */

@media screen and (max-width: 768px) {
    .cr-notfound-page {
        padding-bottom: 80px;
    }

    .cr-notfound-body {
        padding: 0;
        gap: 32px;
    }

    .cr-notfound-heading {
        font-size: 22px;
        letter-spacing: 1.76px;
    }

    .cr-notfound-text {
        font-size: 14px;
    }

    .cr-notfound-btn {
        width: 100%;
        max-width: 260px;
        height: 56px;
        font-size: 16px;
    }
}
