* {
  box-sizing: border-box;
}

:root {
  --header-height: 60px;
  --wpadminbar-height: 32px;
}
@media screen and (max-width: 782px) {
  :root {
    --wpadminbar-height: 46px;
  }
}
@media (min-width: 768px) {
  :root {
    --header-height: 76px;
  }
}

html #wpadminbar {
  position: fixed;
  top: 0;
}

body {
  margin: 0;
  font-family: "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 2em;
  padding-top: var(--header-height);
}
@media (min-width: 768px) {
  body {
    font-size: 18px;
  }
}
body.admin-bar {
  padding-top: var(--header-height);
}

main a {
  word-break: break-all;
}
main h1, main h2, main h3, main h4, main h5, main h6, main p, main .wp-block-image {
  margin: 0 0 1em 0;
}
main h1 {
  color: #e5004d;
}
main p:last-child {
  margin-bottom: 0;
}
main .wp-block-image figcaption {
  text-align: center;
}
main .sec-title {
  text-align: center;
  font-size: 24px;
}
@media (min-width: 768px) {
  main .sec-title {
    font-size: 30px;
  }
}
main .sec-title span {
  display: block;
  font-weight: 400;
  color: gray;
  font-size: 18px;
  margin-top: 10px;
}
main section {
  padding: 40px 0;
}
@media (min-width: 768px) {
  main section {
    padding: 50px 0;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.home .container {
  max-width: 1280px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #dfdfdf;
  padding: 10px;
  box-shadow: 0 5px 10px -6px rgba(0, 0, 0, 0.15);
  z-index: 999;
}
@media (min-width: 992px) {
  header {
    padding: 14px 20px;
  }
}
header > .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1280px;
}
header .brand-logo img {
  display: block;
  height: 40px;
}
@media (min-width: 992px) {
  header .brand-logo img {
    height: 46px;
  }
}
header .acts {
  display: none;
}
@media (min-width: 992px) {
  header .acts {
    display: block;
    flex: 1;
    padding-left: 30px;
  }
}
header .acts #main-menu {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
header .acts #main-menu a {
  color: inherit;
  text-decoration: none;
}
header .acts #main-menu li {
  list-style: none;
}
header .acts #main-menu > li {
  margin-left: 35px;
}
header .acts #main-menu .menu-item-has-children .sub-menu {
  display: none;
}
header .ham {
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
}
@media (min-width: 992px) {
  header .ham {
    display: none;
  }
}
header .ham div {
  width: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-bottom: 1px solid #000;
  transition: all 0.3s;
  transform-origin: center center;
}
header .ham div:first-child {
  top: calc(50% - 10px);
}
header .ham div:last-child {
  top: calc(50% + 10px);
}
header .ham.opened div:first-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
header .ham.opened div:last-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
header .ham.opened div:nth-child(2) {
  opacity: 0;
}

.admin-bar header {
  top: var(--wpadminbar-height);
}

#nav-mob {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100% - var(--header-height));
  background: #fff;
  padding: 30px 20px;
  z-index: 999;
}
@media (min-width: 992px) {
  #nav-mob {
    display: none !important;
  }
}
#nav-mob #main-menu-mob {
  margin: 0;
  padding: 0;
  text-align: center;
}
#nav-mob #main-menu-mob li {
  list-style: none;
}
#nav-mob #main-menu-mob li a {
  display: block;
  padding: 10px 0;
  font-size: 20px;
  color: #000;
  text-decoration: none;
}

.admin-bar #nav-mob {
  top: calc(var(--wpadminbar-height) + var(--header-height));
  height: calc(100% - var(--wpadminbar-height) - var(--header-height));
}

@keyframes coming-soon {
  to {
    color: #8c8c8c;
  }
}
.coming-soon {
  font-size: 38px;
  font-weight: 700;
  color: #c8c8c8;
  line-height: 1.2;
  animation: coming-soon 2s linear infinite alternate;
  font-family: "IBM Plex Sans", sans-serif;
  letter-spacing: -1px;
  margin-bottom: 20px;
  margin: 100px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .coming-soon {
    font-size: 90px;
  }
}

footer {
  background: #f8f8f8;
  padding: 40px 0;
  margin-top: 50px;
}
@media (min-width: 800px) {
  footer .info {
    display: flex;
    justify-content: space-between;
  }
}
footer .logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: 20px;
  margin-bottom: 15px;
}
@media (min-width: 425px) {
  footer .logo {
    justify-content: flex-start;
  }
}
@media (min-width: 800px) {
  footer .logo {
    margin-right: 50px;
  }
}
@media (min-width: 992px) {
  footer .logo {
    margin-right: 100px;
    align-items: center;
  }
}
footer .logo img {
  display: block;
  width: auto;
  height: 60px;
}
@media (min-width: 992px) {
  footer .logo img {
    height: 100px;
  }
}
footer .logo img:first-child {
  height: 50px;
}
@media (min-width: 992px) {
  footer .logo img:first-child {
    height: 80px;
  }
}
@media (min-width: 800px) {
  footer .content {
    flex: 1;
  }
}
footer a {
  color: #e5004d;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

#fixed-links {
  position: fixed;
  right: 10px;
  bottom: 50px;
  width: 42px;
}
@media (min-width: 992px) {
  #fixed-links {
    right: 30px;
    bottom: 50%;
    transform: translateY(50%);
  }
}
@media (min-width: 992px) {
  #fixed-links .line {
    border-left: 1px solid #bcbcbc;
    width: 1px;
    height: 150px;
    margin: 0 auto 10px auto;
  }
}
#fixed-links a {
  display: block;
  width: 42px;
  height: 42px;
  background-size: 26px auto;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid gray;
  border-radius: 50%;
}
@media (min-width: 992px) {
  #fixed-links a {
    border: none;
    background-size: 36px auto;
  }
}/*# sourceMappingURL=default.css.map */