.stage {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.stage .layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slogan {
  position: absolute;
  opacity: 0;
}

img {
  display: block;
  margin: 0 auto;
}

.bannerArea {
  overflow: hidden;
}
.bannerArea .bannerBox {
  color: #fff;
  text-align: center;
  min-height: 100vh;
  align-items: center;
  padding-bottom: 5%;
}
@media (max-width: 991px) {
  .bannerArea .bannerBox {
    min-height: 80vh;
  }
}
@media (max-width: 767px) {
  .bannerArea .bannerBox {
    min-height: 0;
    padding: 61% 0 69% 0;
  }
}
.bannerArea .bannerBox h2 {
  font-family: "Noto Serif TC", serif;
  font-weight: 600;
  font-size: 4rem;
  letter-spacing: 1px;
  margin: 1.5rem 0;
}
@media (max-width: 1600px) {
  .bannerArea .bannerBox h2 {
    font-size: 3.5rem;
    margin: 1rem 0;
  }
}
@media (max-width: 767px) {
  .bannerArea .bannerBox h2 {
    font-size: 2.2rem;
    margin: 0.7rem 0;
  }
}
.bannerArea .bannerBox h3 {
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 2rem;
}
@media (max-width: 1600px) {
  .bannerArea .bannerBox h3 {
    font-size: 1.75rem;
  }
}
@media (max-width: 767px) {
  .bannerArea .bannerBox h3 {
    font-size: 1rem;
  }
}
.bannerArea .bannerBox .icon {
  width: 50px;
}
@media (max-width: 1600px) {
  .bannerArea .bannerBox .icon {
    width: 40px;
  }
}
@media (max-width: 767px) {
  .bannerArea .bannerBox .icon {
    width: 25px;
  }
}
.bannerArea .bannerBox .logo {
  width: 220px;
  margin-top: 4%;
}
@media (max-width: 1600px) {
  .bannerArea .bannerBox .logo {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .bannerArea .bannerBox .logo {
    width: 110px;
    margin-top: 1.5rem;
  }
}
.bannerArea .mediaLogo {
  width: 60px;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}
@media (max-width: 991px) {
  .bannerArea .mediaLogo {
    width: 50px;
  }
}

.page {
  overflow: hidden;
}
.page .mediaLogo {
  width: 130px;
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 2;
}
@media (max-width: 991px) {
  .page .mediaLogo {
    width: 80px;
    top: 1rem;
    right: 1rem;
  }
}
.page .title {
  position: absolute;
  width: 100%;
  top: 11%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .page .title {
    top: 10%;
  }
}
.page .title h2 {
  font-family: "Noto Serif TC", serif;
  font-weight: 600;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
}
@media (max-width: 991px) {
  .page .title h2 {
    font-size: 1.4rem;
  }
}
.page .TxtBox {
  background-image: url(../images/img/deco-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 1.2rem 0;
}
@media (max-width: 991px) {
  .page .TxtBox {
    background-image: url(../images/img/deco-bg-m.jpg);
    padding: 1.5rem 0;
  }
}
.page .TxtBox p {
  text-align: center;
  margin-bottom: 0;
  line-height: 1.7;
}
.page .Img .innerImg {
  padding-top: 49%;
}
@media (max-width: 991px) {
  .page .Img .innerImg {
    padding-top: 60%;
  }
}
@media (max-width: 767px) {
  .page .Img .innerImg {
    padding-top: 149%;
  }
}

.page02 .title {
  position: absolute;
  width: 100%;
  top: 12%;
  left: 65%;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .page02 .title {
    left: 70%;
  }
}
@media (max-width: 767px) {
  .page02 .title {
    top: 10%;
    left: 50%;
  }
}

.shine {
  animation-name: shine-animate;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

@keyframes shine-animate {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.dark {
  animation: bgDark 4s ease-in-out infinite;
}

@keyframes bgDark {
  0% {
    filter: brightness(75%);
  }
  50% {
    filter: brightness(100%);
  }
  100% {
    filter: brightness(75%);
  }
}
.light {
  mask-repeat: no-repeat;
  mask-size: 100% auto;
  mask-position: center 0%;
  -webkit-mask-image: url(../images/img/mark-light.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% auto;
  -webkit-mask-position: center 0%;
  animation-name: light-animate;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-fill-mode: both;
}
@media (max-width: 767px) {
  .light {
    animation-name: light-animate-m;
  }
}

@keyframes light-animate {
  0% {
    mask-position: 0 0%;
    -webkit-mask-position: 0 -200%;
  }
  100% {
    mask-position: 0 100%;
    -webkit-mask-position: 0 200%;
  }
}
@keyframes light-animate-m {
  0% {
    mask-position: 0 0%;
    -webkit-mask-position: 0 100%;
  }
  100% {
    mask-position: 0 100%;
    -webkit-mask-position: 0 -100%;
  }
}/*# sourceMappingURL=style.css.map */