@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;400;700&display=swap");
nav {
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 3%;
  letter-spacing: 0;
  transition: background 0.5s, box-shadow 0.5s;
}
nav.bg {
  background: #efefef;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
}
nav .logo {
  display: block;
  width: 7rem;
}
nav .menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}
nav .menu a {
  transition: color 0.5s;
}
nav .menu .icon-fb {
  display: block;
  width: 2rem;
}

@media only screen and (min-width: 1025px) {
  nav .menu a:hover {
    color: #649b1c;
  }
}
@media only screen and (max-width: 1024px) {
  nav {
    padding: 1rem 3%;
  }
  nav .logo {
    width: 5rem;
  }
  nav .menu {
    gap: 1rem;
  }
}
footer {
  width: 100%;
  color: #649b1c;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
footer .footer-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10%;
  gap: 3rem;
  margin-bottom: 1rem;
}
footer .footer-flex img {
  display: block;
  width: 7rem;
}
footer .footer-flex span {
  font-size: 1.1rem;
  margin-right: 1rem;
}
footer .copyright {
  text-align: center;
  color: #FFF;
  background: #649b1c;
  padding: 0.5rem 0;
}

@media only screen and (max-width: 1024px) {
  footer {
    letter-spacing: 0;
    font-size: 1.75vw;
  }
  footer .footer-flex {
    gap: 1.5rem;
    padding: 0 8%;
  }
  footer .footer-flex img {
    width: 5rem;
  }
  footer .footer-flex span {
    display: block;
    font-size: 1.1rem;
    margin-right: 0;
  }
}
.lightbox-work {
  display: none;
  z-index: 9;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
}
.lightbox-work .lightbox-work-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
}
.lightbox-work .lightbox-work-wrap .lightbox-close {
  position: absolute;
  top: -55px;
  right: 0;
  width: 50px;
}
.lightbox-work .lightbox-work-wrap article {
  padding: 35px;
  margin-top: 25px;
  background: #a6a6a6;
  text-align: justify;
}
.lightbox-work .lightbox-work-wrap article h4 {
  font-size: 1.25rem;
}
.lightbox-work .lightbox-work-swiper {
  background: #000;
}
.lightbox-work .lightbox-work-swiper .media-block {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  overflow: hidden;
}
.lightbox-work .lightbox-work-swiper .media-block .ytVideo,
.lightbox-work .lightbox-work-swiper .media-block .media-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.lightbox-work .lightbox-work-swiper .media-block .media-img {
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: contain !important;
}
.lightbox-work .lightbox-work-swiper .media-block .icon-zoomin {
  display: block;
  position: absolute;
  width: 50px;
  bottom: 25px;
  right: 25px;
}
.lightbox-work .swiper-button-prev,
.lightbox-work .swiper-button-next {
  top: 250px;
}
.lightbox-work .swiper-button-prev::after,
.lightbox-work .swiper-button-next::after {
  display: none;
}
.lightbox-work .swiper-button-prev,
.lightbox-work .swiper-button-next {
  width: 25px;
}
.lightbox-work .swiper-button-prev {
  left: -45px;
}
.lightbox-work .swiper-button-next {
  right: -45px;
}

.lightbox-zoom {
  display: none;
  z-index: 9;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
}
.lightbox-zoom .img-scroll {
  position: relative;
  overflow: auto;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}
.lightbox-zoom .img-scroll img {
  display: block;
  width: 80%;
  margin: auto;
}
.lightbox-zoom .img-scroll img.landscape {
  width: auto;
  height: 60%;
}
.lightbox-zoom .icon-zoomout {
  display: block;
  position: absolute;
  width: 5rem;
  top: 3rem;
  right: 3rem;
}

.buffering {
  display: none;
  z-index: 9;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.buffering p {
  position: absolute;
  width: 5rem;
  height: 5rem;
  top: calc(50% - 2.5rem);
  left: calc(50% - 2.5rem);
  border: 0.5rem solid #a6a6a6;
  border-right-color: transparent;
  animation: spin 1s linear infinite;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}
@keyframes spin {
  to {
    transform: rotate(359deg);
  }
}

@media only screen and (max-width: 1024px) {
  .lightbox-work .lightbox-work-wrap {
    width: 85%;
  }
  .lightbox-work .lightbox-work-wrap .lightbox-close {
    top: -3.5rem;
    width: 3rem;
  }
  .lightbox-work .lightbox-work-wrap article {
    padding: 1rem 1.5rem;
    margin-top: 1rem;
  }
  .lightbox-work .lightbox-work-wrap article h4 {
    margin-bottom: 0.5rem;
  }
  .lightbox-work .lightbox-work-swiper .media-block .icon-zoomin {
    width: 3rem;
    bottom: 1rem;
    right: 1rem;
  }
  .lightbox-work .swiper-button-prev,
  .lightbox-work .swiper-button-next {
    top: 9rem;
    width: 1.25rem;
  }
  .lightbox-work .swiper-button-prev {
    left: -2rem;
  }
  .lightbox-work .swiper-button-next {
    right: -2rem;
  }
  .lightbox-zoom .img-scroll img {
    width: 100%;
  }
  .lightbox-zoom .img-scroll img.landscape {
    height: 60%;
  }
  .lightbox-zoom .icon-zoomout {
    top: 1rem;
    right: 1rem;
  }
}
html {
  font-size: 1.1vw;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body {
  position: relative;
  width: 100%;
  margin: auto;
  background: #efefef;
  color: #231f20;
  font-family: "Noto Sans TC";
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
}
body.fix {
  overflow: hidden;
}
body main {
  flex: 1 0 0;
}

* {
  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,
textarea {
  background: none;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Noto Sans TC";
  letter-spacing: inherit;
  padding: 0.25rem 0;
  border-bottom: 1px solid #58595b;
  border-radius: 0;
  -webkit-border-radius: 0;
  font-size: 1.25rem;
  width: 100%;
}
input:focus,
textarea:focus {
  outline: none;
}

textarea {
  border: 0;
  resize: none;
}
textarea::-webkit-scrollbar-track {
  background: none;
}
textarea::-webkit-scrollbar-thumb {
  width: 5px;
  background: #efefef;
  border-radius: 3px;
  -webkit-border-radius: 3px;
}

@media only screen and (min-width: 1025px) {
  .for-m {
    display: none !important;
  }
}
@media only screen and (max-width: 1024px) {
  .for-pc {
    display: none !important;
  }
  html {
    font-size: 2.75vw;
  }
  body {
    letter-spacing: 0.05em;
  }
}/*# sourceMappingURL=style.css.map */