@charset "utf-8";

.footer {
    position: relative;
    z-index: 5;
}

.footer .pagetop {
    cursor: pointer;
    position: absolute;
    top: 9%;
    right: 7%;
    background: url(/system_panel/uploads/images/20260522124937805937.svg) no-repeat center/contain;
    width: clamp(3.438rem, 2.731rem + 1.47vw, 4.5rem);
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer::before {
    content: "";
    background: url(/system_panel/uploads/images/20260523010458135081.svg) no-repeat center/cover;
    width: 100%;
    height: clamp(0.625rem, -0.082rem + 1.47vw, 1.688rem);
    position: absolute;
    left: 0;
    top: 0;
}

.footer .inner {
    width: 90%;
    padding: 67px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer .f-logo {
    max-width: 152px;
    width: 100%;
    margin-bottom: 40px;
}

.footer .info {
    margin-bottom: 32px;
}

.footer .snslist {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 70px;
}

.footer .f-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5%;
    width: 100%;
    margin-bottom: 64px;
}

.footer .f-menu a {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
}

.footer .f-menu a .icon {
    width: 13px;
    height: auto;
}

.footer .copy {
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    color: #fff;
}

@media (max-width: 1200px) {}

@media (max-width: 1023px) {


    .footer .inner {
        padding: 74px 0 12px;
        width: 64%;
    }

    .footer .f-menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 100px;
        gap: 34px 0;
    }



    .footer .copy {
        grid-column: 1/2;
    }
}

@media (max-width: 767px) {
    .footer .f-logo {
        max-width: 90%;
    }

    .footer .inner {
        width: 75%;
    }

    .footer .pagetop {
        top: 3%;
        right: 4%;
    }
}