.site-footer {
  background-color: #fff;
  text-align: center;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}

.site-footer__logo {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}

.site-footer__logo img {
  height: 30px;
  text-align: center;
}

.site-footer__menu-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  font-weight: 700;
}

.site-footer__sns {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-footer__sns a {
  display: inline-block;
  margin: 0 10px;
}

.site-footer__sns img {
  height: 24px;
  transition: opacity 0.3s;
}

.site-footer__sns img:hover {
  opacity: 0.7;
}

.site-footer__info {
  margin-top: 24px;
  font-weight: 500;
}

.site-footer__copy {
  background-color: #f22f27;
  color: #fff;
  padding: 12px 16px;
}

.site-footer__copy a {
  margin-left: 8px;
}

.site-footer__sns .site-footer__facebook {
  height: 30px;
}

@media (max-width: 768px) {
  .site-footer__menu-list {
    flex-direction: column;
    gap: 12px;
  }
  .site-footer__logo img {
    height: 32px;
  }
  .site-footer__sns img {
    height: 20px;
  }
}

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