@charset "UTF-8";
/* CSS Document */
@import url("reset.css");
html {
  font-size: 16px;
}

html, body {
  margin: 0;
  padding: 0;
}

body, ul, li {
  margin: 0px;
  padding: 0px;
  font-family: "Noto Sans TC", "微軟正黑體", "新細明體", "細明體", Arial, "Arial Black";
  font-size: 16px;
  line-height: 25px;
  color: #000;
  letter-spacing: 1px;
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
  left: 0;
}

button {
  display: none;
}

*:focus {
  outline: none;
} /*解決滾動到區塊時出現框線問題*/
p {
  font-size: 1.05vw;
  font-weight: 400;
  color: #000;
}
@media (max-width: 992px) {
  p {
    font-size: 1.5vw;
    line-height: 1.5;
  }
}
@media (max-width: 768px) {
  p {
    font-size: 3.5vw;
    line-height: 1.5;
  }
}

.pc {
  display: block;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.mob {
  display: none;
}
@media (max-width: 768px) {
  .mob {
    display: block;
  }
}

.btn_style {
  transform-origin: center;
  transform: scale(1);
  transition: all 0.15s ease-in-out;
}
.btn_style:hover {
  cursor: pointer;
  transform: scale(0.9);
}

main {
  margin-top: -0.4%;
}

main, section {
  position: relative;
  line-height: 0;
}

/*-------------------------------------------------------------*/
.overlay {
  width: 20%;
  background: rgba(2, 61, 155, 0.9);
}
@media (max-width: 992px) {
  .overlay {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .overlay {
    width: 100%;
    height: 100%;
  }
}

.overlay nav {
  top: 0vh;
  height: 95vh;
}
.overlay nav ul {
  display: block;
  width: 90%;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  padding: 10%;
}
.overlay nav ul li {
  display: flex;
  width: 100%;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2;
  justify-content: center;
  align-items: center;
  margin: 10px;
  color: #ef1647;
  background-color: #FFF;
  border: solid 2px #ef1647;
  text-align: center;
}
.overlay nav ul li a {
  color: #ef1647;
}
.overlay nav ul li a:hover {
  color: #FFF;
  background-color: #ef1647;
}

.overlay .overlay-close {
  top: 0;
}

.overlay .overlay-close {
  max-width: 58px;
  max-height: 58px;
}

button.menu_m {
  display: none;
  position: relative;
  width: 4.6%;
  border: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
  z-index: 990;
  outline: 0;
  order: 3;
}
@media (max-width: 768px) {
  button.menu_m {
    display: block;
    width: 45px;
    height: auto;
  }
}/*# sourceMappingURL=style.css.map */