.max-w-content {
    max-width: 695px;
    width: 100%;
}

.content--center {
    display: flex;
    justify-content: center;
}

.header {
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(160, 171, 207, 0.20);
    position: relative;
    padding: 22px 16px;

}

.header__content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__logo {
}

.header__slogan {

}

.error-page {
    background: var(--back, #F7F8FA);
    padding: 48px 20px 125px 20px;
}

.error-page__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.error-page__code {
    color: var(--p-lv-1, #4E5981);
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 80px;
    font-style: normal;
    font-weight: 500;
    line-height: 80px;
}

.error-page__message {
    color: var(--p-lv-1, #4E5981);
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: 0.4px;
}

.error-page__button {
    border-radius: 8px;
    width: 100%;
    padding: 14px 0 16px 0;
    border: 1px solid #E9EDFB;
    background: var(--p-lv-1, #4E5981);
    box-shadow: 0 2px 8px 0 rgba(91, 107, 194, 0.55);
    color: #FFF;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.48px;
    text-align: center;
    text-decoration: none;
}

.links {
    background: var(--p-lv-1, #4E5981);
    padding: 40px 20px;
}

.links__list--sp {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links__list__hr {
    height: 0.8px;
    background: #FFF;
    width: 100%;
}

.links__list__item {
    color: white;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 23px;
    letter-spacing: 0.45px;
}

.links__logo {
    margin-bottom: 24px;
}

.company {
    color: var(--p-lv-1, #4E5981);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.36px;
    padding: 20px;
}

.company p:nth-child(1) {
    margin-bottom: 12px;
}

.company__url {
    text-align: center;
}

.company__url a {
    text-decoration: none;
    color: var(--p-lv-1, #4E5981);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.36px;
}

.links__list--pc {
    display: none;
}

@media screen and (min-width: 615px) {
    .links__list--pc {
        display: inherit;
    }

    .links__list--sp {
        display: none;
    }

    .links__list__hr {
        margin-bottom: 24px;
    }

    .links__list--lower {
        display: flex;
        align-items: center;
        gap: 24px;
    }

    .company {
        text-align: center;
    }

    .company p:nth-child(1) {
        margin-bottom: 4px;
    }

    .links__list--lower__breaker {
        height: 16px;
        width: 2px;
        background: #FFF;
        opacity: 0.5;
    }
}