footer {
  width: 100%;
  background-color: var(--main);
  padding: 28px 70px;
  box-sizing: border-box;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  width: 170px;
  display: block;
}

.footer-right {
  text-align: right;
}

.footer-menu {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 14px;
}

.footer-menu a {
  color: #fff;
  font-size: 12px;
}

.footer-right span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.footer-info p {
  margin: 7px 0;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
}

.footer-copyright {
  color: #fff;
  font-size: 12px;
}

.sns {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

.sns a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}

.sns a:hover {
  transform: translateY(-2px);
}

.sns img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

@media (max-width: 800px) {
  footer {
    padding: 40px 20px;
  }
  .footer-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
  }
  .footer-logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .footer-logo img {
    margin: 0 auto;
  }
  .footer-right {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-menu {
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
  }
  .footer-info p {
    justify-content: center;
    gap: 8px;
    font-size: 11px;
  }
  .footer-copyright {
    order: -1;
    margin-bottom: 15px;
    font-size: 12px;
  }
  .sns {
    justify-content: center;
    margin-top: 25px;
    width: 100%;
  }
}

@media (max-width: 470px) {
  footer {
    padding: 30px 10px;
  }

  .footer-menu {
    gap: 2.5vw;
  }

  .footer-menu a {
    font-size: 2.6vw;
    white-space: nowrap;
  }

  .footer-info p {
    gap: 1.5vw;
    font-size: 2.1vw;
    white-space: nowrap;
  }

  .footer-copyright {
    font-size: 2.8vw;
  }
}
