.site-footer {
    padding: 26px 0 0px;
    background: #0f2740;
    color: #dbe4f5;
    font-size: 12px;
}

.footer-inner {
    text-align: center;
}

.footer-note {
    margin-top: 6px;
    color: #9fb0d0;
}

.footer-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 16px;
}

.footer-flex a,
.footer-flex p {
    font-size: 16px;
    font-weight: bold;
}

.footer-flex .footer-item {
    width: 30%;
}

.footer-flex .footer-item.left {
    text-align: left;
}

.footer-flex .footer-item.sns {
    display: flex;
    justify-content: end;
    gap: 16px;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .footer-flex .footer-item.left {
        text-align: center;
    }

    .footer-flex {
        display: block;
    }

    .footer-flex .footer-item {
        width: 100%;
    }

    .footer-flex .footer-item.sns {
        justify-content: center;
    }
}