
/* Language selector used on the public website */
.static-lang-switcher{
  display:flex;
  align-items:center;
  gap:4px;
  padding:4px;
  border-radius:999px;
  background:rgba(15,22,31,.94);
  border:1px solid rgba(255,255,255,.14);
  margin-left:8px;
  z-index:20
}
.static-lang-switcher a{
  color:#aeb9c4;
  text-decoration:none;
  height:30px;
  min-width:36px;
  padding:6px 9px;
  border-radius:999px;
  font-size:.72rem;
  font-weight:900;
  text-align:center;
  white-space:nowrap
}
.static-lang-switcher a.active,
.static-lang-switcher a:hover{
  background:#d7193f;
  color:#fff
}
html[lang="ja"] body{
  font-family:"Yu Gothic","Hiragino Kaku Gothic ProN","Noto Sans JP",Segoe UI,Arial,sans-serif
}
html[lang="ja"] h1,
html[lang="ja"] h2{
  line-height:1.2;
  letter-spacing:-.02em
}
@media(max-width:900px){
  .static-lang-switcher{
    position:fixed;
    left:50%;
    bottom:14px;
    transform:translateX(-50%);
    margin:0;
    box-shadow:0 12px 28px rgba(0,0,0,.32)
  }
}
