@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;500;700&display=swap");
html {
  font-size: 17px;
}

body {
  position: relative;
  width: 100%;
  margin: auto;
  background: #f2f3f4;
  letter-spacing: 0.05rem;
  font-family: "Noto Sans TC";
}
body.fix {
  overflow: hidden;
}

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

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

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

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

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

.clear {
  clear: both;
}

input {
  color: #000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Noto Sans TC";
  padding: 0.35rem 1rem;
  background: #FFF;
  border-radius: 0;
  -webkit-border-radius: 0;
  font-size: 0.9rem;
  border: 1px solid #FFF;
}
input:focus {
  outline: none;
}
input.alert {
  border: 1px solid #F00;
}

select {
  color: #000;
  font-family: "Noto Sans TC";
  padding: 0.35rem 2rem 0.35rem 1rem;
  background: url("../img/icon-select.svg") #FFF no-repeat center right 0.75rem;
  background-size: auto 25%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: inherit;
  font-size: 0.9rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  border: 1px solid #FFF;
}
select.alert {
  border: 1px solid #F00;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox] + label {
  display: block;
  margin-left: 1.5rem;
  cursor: pointer;
}
input[type=checkbox] + label p {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 0;
  width: 1rem;
  height: 1rem;
  margin: 0;
  background-color: #FFF;
  transform: translateY(-45%);
  border: 1px solid #FFF;
}
input[type=checkbox] + label span {
  display: inline-block;
}

input[type=checkbox] + label a {
  border-bottom: 1px solid #FFF;
}

input[type=checkbox] + label.alert p {
  border: 1px solid #F00;
}

input[type=checkbox]:checked + label p {
  background: url("../img/icon-check.svg") #FFF no-repeat center center;
  background-size: 90%;
}

input::-webkit-date-and-time-value {
  color: #000;
  text-align: left;
}

@media only screen and (min-width: 1025px) {
  .for-m {
    display: none !important;
  }
}
@media only screen and (max-width: 1440px) {
  html {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1024px) {
  .for-pc {
    display: none !important;
  }
  input[type=checkbox] + label {
    margin-left: 2rem;
  }
  input[type=checkbox] + label p {
    width: 1.25rem;
    height: 1.25rem;
  }
}
@media only screen and (max-width: 480px) {
  html {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */