.site-footer {
  width: 100%;
  margin-top: 48px;
  padding: 24px 20px 32px;
  background: #000000;
  border-top: 1px solid #a07231;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__inner {
  width: min(100%, 960px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.site-footer__nav {
  width: 100%;
}

.site-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__nav-list li {
  display: inline-flex;
  align-items: center;
}

.site-footer__nav-list li:not(:last-child)::after {
  content: "｜";
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-maruko);
  font-size: 14px;
  line-height: 1;
  pointer-events: none;
}

.site-footer__nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-maruko);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__nav-link:hover {
  color: #ffffff;
}

.site-footer__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__item {
  display: inline-flex;
  align-items: center;
}

.site-footer__item:not(:last-child)::after {
  content: "｜";
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-maruko);
  font-size: 14px;
  line-height: 1;
  pointer-events: none;
}

.site-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-maruko);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.15s ease, filter 0.15s ease;
}

.site-footer__link:hover {
  color: #ffffff;
  filter: brightness(1.08);
}

.site-footer__link--disabled {
  color: rgba(255, 255, 255, 0.42);
  cursor: default;
  pointer-events: none;
}

.site-footer__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.site-footer__label {
  white-space: nowrap;
}

.site-footer__contact-wrap {
  margin: 0;
}

.site-footer__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-maruko);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease, border-color 0.15s ease;
}

.site-footer__contact:hover {
  border-color: rgba(255, 255, 255, 0.65);
  filter: brightness(1.06);
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .site-footer {
    margin-top: 40px;
    padding: 24px 24px 80px;
  }

  .site-footer__list {
    gap: 8px 0;
  }
}

@media (max-width: 599px) {
  .site-footer {
    margin-top: 36px;
    padding: 20px 16px 88px;
  }

  .site-footer__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 0;
  }

  .site-footer__item:not(:last-child)::after {
    content: "｜";
    margin: 0 8px;
  }

  .site-footer__link {
    font-size: 13px;
  }

  .site-footer__icon {
    width: 14px;
    height: 14px;
  }

  .site-footer__contact {
    font-size: 14px;
  }
}
