footer {
    display: flex;
    width: 100%;
    padding: 40px 190px;
    flex-direction: row;
    align-items: flex-start;
    background: var(--color-gray70, #2B2B2B);
    gap: 80px;
    box-sizing: border-box;
    position: relative;
}
.footer_right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.footer_right > img {
    width: 286.999px;
    height: 38px;
    flex-shrink: 0;
}
.ft_three {
    width: 70%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.ft_three > a {
    color: var(--color-gray0, #FFF);
    font-size: var(--fontSize-16, 16px);
    font-weight: 500;
}
.ft_three > a:last-child {
    color: var(--color-main20, #AADCF4);
}
.footer_left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.footer_left > div {
    color: var(--color-gray0, #FFF);
    font-size: var(--fontSize-16, 16px);
    font-weight: 400;
}
.footer_left > div:last-child {
    color: var(--color-gray30, #B3B3B3);
    font-size: var(--fontSize-16, 16px);
    font-weight: 400;
}
.up > svg {
    width: 20px;
    height: 10px;
    flex-shrink: 0;
    aspect-ratio: 2 / 1;
    stroke-width: 3px;
    stroke: var(--color-gray50, #777);
    padding: 20px 15px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 600px;
    background: var(--color-gray0, #FFF);
    box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.25);
    position: absolute;
    top: -90px;
    right: 98px;
}

.up:hover svg path {
    stroke: #fff;
    transition: 0.2s;
}
.up:hover svg {
    transition: 0.3s;
    background-color: #008CCF;
    stroke: #fff;
}
