/* Base styles for prototype components (standalone-friendly) */

:root {
  /* Fixed size is applied only in PC popup via prototype_header.css */
  --sn-catbtn-h: 45px;
  --sn-catbtn-w: 152px;
}

a, p, div, span, button, input, select, textarea, h1, h2, h3, h4, h5, h6 {
  font-family: fot-tsukuaoldmin-pr6n, serif !important;

}

.sn-catbtn {
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  border: 1px solid #666464;
  background: #666464;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  white-space: nowrap;
  letter-spacing: 0.2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  user-select: none;
  text-decoration: none; /* for <a> */
}

.sn-catbtn:hover {
  filter: brightness(1.05);
}

.sn-catbtn:focus-visible {
  outline: 2px solid #666464;
  outline-offset: 2px;
}

/* Outline button (reusable) */
.sn-btn-outline {
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  border: 1px solid #666464;
  background: #fff;
  color: #666464;
  padding: 0 14px;
  border-radius: 0;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  user-select: none;
  text-decoration: none; /* for <a> */
}

.sn-btn-outline:hover {
  background: rgba(102, 101, 101, 0.06);
}

.sn-btn-outline:focus-visible {
  outline: 2px solid #666464;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .sn-catbtn {
    transition: none !important;
  }
}

