.footer {
    background: #fff;
    padding: 60px;
    display: flex;
    justify-content: center;
    font-family: "Poppins", sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 600px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-image {
    width: 42px;
    height: 46px;
    object-fit: cover;
}

.logo-text {
    height: 20px;
}

.company-info {
    display: flex;
    gap: 20px;
    font-size: 14px;
    line-height: 28px;
}

.info-labels {
    font-weight: 700;
    color: #191919;
    min-width: 100px;

}

.info-values {
    font-weight: 400;
    color: #191919;
    width: 500px;
}

.copyright {
    font-size: 12px;
    color: #b5b5b5;
    line-height: 26px;
}

.footer-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    min-width: 200px;
}

.footer-link span {
    color: #767676;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.05em;
    cursor: pointer;
}

.pc_none {
    display: none !important;
}

@media only screen and (max-width: 860px) {
.pc_none {
    display: block !important;
}

.m_none {
    display: none !important;
}
}