:lang(ja) body {
  font-family: "Segoe UI", "Yu Gothic UI", "Meiryo", Arial, sans-serif;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
  padding: 3px;
  border: 1px solid rgba(168, 184, 198, 0.35);
  border-radius: 5px;
}

.language-switcher button {
  min-width: 34px;
  min-height: 28px;
  border: 0;
  border-radius: 3px;
  padding: 3px 7px;
  background: transparent;
  color: #a8b8c6;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.language-switcher button:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.language-switcher button[aria-pressed="true"] {
  background: #00b6ae;
  color: #06212a;
}

.menu a:focus-visible,
.language-switcher button:focus-visible {
  outline: 2px solid #78eee7;
  outline-offset: 2px;
}

@media (min-width: 801px) and (max-width: 960px) {
  .brand small {
    display: none;
  }

  .menu {
    gap: 2px;
  }

  .menu > a {
    padding-right: 8px;
    padding-left: 8px;
  }

  .language-switcher,
  .menu .menu-cta {
    margin-left: 2px;
  }
}

@media (max-width: 800px) {
  .language-switcher {
    justify-content: stretch;
    margin: 4px 0;
  }

  .language-switcher button {
    flex: 1;
    min-height: 36px;
  }
}
