/* A is the existing design. B and C only override the font tokens. */
html[data-design="a"] {
  --ff-sans: YakuHanJP, "Noto Sans JP", sans-serif;
  --ff-roboto: "Roboto Condensed", "Noto Sans JP", sans-serif;
}

html[data-design="b"] {
  --ff-sans: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  --ff-roboto: "Roboto Condensed", "Zen Kaku Gothic New", sans-serif;
  --ls: 0.01em;
}

html[data-design="c"] {
  --ff-sans: "IBM Plex Sans JP", "Noto Sans JP", sans-serif;
  --ff-roboto: "Roboto Condensed", "IBM Plex Sans JP", "Noto Sans JP", sans-serif;
  --ls: 0.01em;
}

.clh-design-switcher {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px;
  border: 1px solid rgba(33, 23, 19, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 5px 20px rgba(33, 23, 19, 0.18);
  font-family: system-ui, sans-serif;
}

.clh-design-switcher__label {
  margin: 0 5px 0 8px;
  color: #625d5a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.clh-design-switcher__button {
  min-width: 37px;
  min-height: 32px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #211713;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
}

.clh-design-switcher__button:hover,
.clh-design-switcher__button:focus-visible {
  background: #edede9;
  outline: none;
}

.clh-design-switcher__button[aria-pressed="true"] {
  background: #211713;
  color: #fff;
}

@media print {
  .clh-design-switcher {
    display: none;
  }
}
