/* pm-analytics.css — アクセス解析の同意バナー。
   生成元: promari-portal scripts/analytics/tracker.css（直接編集しない）。 */
.pma-consent {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 2147483000;
  padding: 16px;
  background: rgba(17, 24, 39, 0.96);
  color: #f9fafb;
  font-size: 14px;
  line-height: 1.7;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
}
.pma-consent__body {
  max-width: 760px;
  margin: 0 auto;
}
.pma-consent__title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
}
.pma-consent__message {
  margin: 0 0 12px;
}
.pma-consent__message a {
  color: #a5d8ff;
  text-decoration: underline;
}
.pma-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pma-consent__accept,
.pma-consent__reject {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.pma-consent__accept {
  background: #c3f53c;
  color: #111827;
}
.pma-consent__reject {
  background: transparent;
  color: #f9fafb;
  border: 1px solid rgba(249, 250, 251, 0.5);
}
.pma-consent__accept:focus-visible,
.pma-consent__reject:focus-visible,
.pma-settings:focus-visible {
  outline: 2px solid #a5d8ff;
  outline-offset: 2px;
}
.pma-settings {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  opacity: 0.7;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
  padding: 8px;
}
@media (max-width: 480px) {
  .pma-consent {
    padding: 12px;
    font-size: 13px;
  }
  .pma-consent__accept,
  .pma-consent__reject {
    flex: 1 1 auto;
    text-align: center;
  }
}
