* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-white: #ffffff;
  --color-text: #585858;
  --color-lightblue: #52a0cd;
  --color-purple: #c57ddc;
}

@font-face {
  font-family: "icon";
  src: url("../font/icon.woff?v2") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

:where(html) {
  font-size: 16px;
  font-feature-settings: "palt";
  min-width: 320px;
  background: #000;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
  overscroll-behavior: none;
  scroll-padding-top: 60px;
}

:where(html)[lang=ja] {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

:where(html)[lang=zh-cmn-Hans] {
  font-family: "Noto Sans SC", sans-serif;
}

:where(html)[lang=zh-cmn-Hant] {
  font-family: "Noto Sans TC", sans-serif;
}

:where(body) {
  overflow-x: clip;
}

:where(button) {
  all: unset;
  appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

:where(button):focus-visible {
  outline: auto;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(a) {
  color: inherit;
  text-decoration: none;
}

:where(svg, video, canvas, iframe) {
  display: block;
}

:where(img) {
  vertical-align: top;
  width: 100%;
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

@media screen and (min-width: 1024px) {
  :where(html) {
    scroll-padding-top: 105px;
  }
}