@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@400;700&display=swap");
:root {
  --height: 2vh;
}

html {
  font-size: var(--height);
}

body {
  position: relative;
  width: auto;
  margin: auto;
  background: #FFF;
  color: #9fa0a0;
  font-family: "Noto Sans TC";
  overflow-y: hidden;
}
body.fix {
  overflow: hidden;
}

.serif {
  font-family: "Noto Serif TC";
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.fullimg {
  display: block;
  width: 100%;
}

.fullimgHeight {
  display: block;
  height: 100%;
  margin: auto;
}

@media only screen and (min-width: 1025px) {
  .for-m {
    display: none !important;
  }
}
@media only screen and (max-width: 1024px) {
  .for-pc {
    display: none !important;
  }
  :root {
    --height: 1.6vh;
  }
  body {
    overflow: hidden !important;
  }
}/*# sourceMappingURL=style.css.map */