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

html * {
  font-weight: 400;
}

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;
}

*:focus {
  outline: none;
} /*解決滾動到區塊時出現框線問題*/
p {
  font-size: 1.05vw;
  font-weight: 400;
  color: #575757;
}
@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);
}

.kv_box {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: -2;
}

video {
  width: 100%;
  height: auto;
}

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

main {
  overflow: hidden;
  margin-top: -1%;
}

/*--- 輪播 ---*/
.box_a {
  position: absolute;
  width: 100%;
  top: 27%;
}

.swiper_a, .swiper_b, .swiper_c {
  width: 71%;
  position: absolute;
  left: 14.5%;
  z-index: 2;
}

.box_b {
  position: absolute;
  width: 100%;
  top: 25%;
}

.box_c {
  position: absolute;
  width: 100%;
  top: 21%;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  opacity: 0.5;
  margin: 0 0.25vw;
}

.swiper-pagination-bullet-active {
  background: rgb(255, 255, 255);
  opacity: 1;
}

.swiper-pagination {
  position: relative;
  margin: 5% 0;
}

.swiper-pagination-bullet {
  width: 1vw;
  height: 1vw;
  background: none;
}
@media (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 3vw;
    height: 3vw;
  }
}

.swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-bullet {
  border: 1px solid #fff;
}

.swiper-pagination-bullet-active {
  background: rgb(255, 255, 255);
  opacity: 1;
}/*# sourceMappingURL=style.css.map */