/* バッタ市場 共通フッター */
.batta-common-footer {
  box-sizing: border-box;
  width: 100%;
  margin-top: 48px;
  padding: 24px 16px;
  border-top: 1px solid var(--border-2, var(--border, #e0e0e0));
  background: var(--surface, transparent);
  color: var(--muted, #6b6258);
  text-align: center;
  font-size: var(--text-xs, 13px);
  line-height: 1.7;
}

.batta-common-footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.batta-common-footer-links a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.batta-common-footer-links a:hover,
.batta-common-footer-links a:focus-visible {
  color: var(--text, #222);
  text-decoration: underline;
}

.batta-common-footer .ad-caution {
  max-width: 900px;
  margin: 0 auto 16px;
  padding: 12px 16px;
  border: 1px solid var(--border, #d8d8d8);
  border-radius: 8px;
  line-height: 1.8;
}

@media (max-width: 600px) {
  .batta-common-footer {
    margin-top: 36px;
    padding: 20px 12px;
  }

  .batta-common-footer-links {
    gap: 8px 14px;
  }
}

body.has-bottom-nav .batta-common-footer {
  padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 721px) {
  body.has-bottom-nav .batta-common-footer {
    padding-bottom: 24px;
  }
}
