@charset "UTF-8";
.intro {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}
.intro-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  z-index: 2;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-transition: opacity 0.8s 0.4s;
  -o-transition: opacity 0.8s 0.4s;
  -webkit-transition: opacity 0.8s;
  -webkit-transition-delay: 0.4s;
  transition: opacity 0.8s 0.4s;
}
.show-intro .intro-logo {
  opacity: 0;
}
.intro-logo img {
  width: 100%;
}
.intro-left {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.show-intro .intro-left:before {
  height: 0;
}
.show-intro .intro-left:after {
  height: 0;
}
.intro-left:before {
  content: "";
  width: 50%;
  height: 100%;
  background: #f2f2f2;
  position: absolute;
  top: 0;
  left: 0;
  -moz-transition: height 0.8s ease-in-out 0.8s;
  -o-transition: height 0.8s ease-in-out 0.8s;
  -webkit-transition: height 0.8s ease-in-out;
  -webkit-transition-delay: 0.8s;
  transition: height 0.8s ease-in-out 0.8s;
}
.intro-left:after {
  content: "";
  width: 50%;
  height: 100%;
  background: #f2f2f2;
  position: absolute;
  top: 0;
  right: 0;
  -moz-transition: height 0.8s ease-in-out 1s;
  -o-transition: height 0.8s ease-in-out 1s;
  -webkit-transition: height 0.8s ease-in-out;
  -webkit-transition-delay: 1s;
  transition: height 0.8s ease-in-out 1s;
}
.intro-right {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.show-intro .intro-right:before {
  height: 0;
}
.show-intro .intro-right:after {
  height: 0;
}
.intro-right:before {
  content: "";
  width: 50%;
  height: 100%;
  background: #f2f2f2;
  position: absolute;
  top: 0;
  left: 0;
  -moz-transition: height 0.8s ease-in-out 1.2s;
  -o-transition: height 0.8s ease-in-out 1.2s;
  -webkit-transition: height 0.8s ease-in-out;
  -webkit-transition-delay: 1.2s;
  transition: height 0.8s ease-in-out 1.2s;
}
.intro-right:after {
  content: "";
  width: 50%;
  height: 100%;
  background: #f2f2f2;
  position: absolute;
  top: 0;
  right: 0;
  -moz-transition: height 0.8s ease-in-out 1.4s;
  -o-transition: height 0.8s ease-in-out 1.4s;
  -webkit-transition: height 0.8s ease-in-out;
  -webkit-transition-delay: 1.4s;
  transition: height 0.8s ease-in-out 1.4s;
}

.header-btn {
  -moz-transition: opacity 1s, bottom 0.6s;
  -o-transition: opacity 1s, bottom 0.6s;
  -webkit-transition: opacity 1s, bottom 0.6s;
  transition: opacity 1s, bottom 0.6s;
}
.header-social {
  text-shadow: 1px 1px 2px #666;
}
.onscroll .header-social {
  text-shadow: none;
}
.onscroll .header-social i {
  color: #666;
}
.header-social i {
  color: #FFF;
  -moz-transition: color 0.6s;
  -o-transition: color 0.6s;
  -webkit-transition: color 0.6s;
  transition: color 0.6s;
}

.logo {
  -webkit-filter: brightness(20) drop-shadow(0 0 5px #666);
  filter: brightness(20) drop-shadow(0 0 5px #666);
  -moz-transition: filter 0.6s;
  -o-transition: filter 0.6s;
  -webkit-transition: filter 0.6s;
  transition: filter 0.6s;
}
.onscroll .logo {
  -webkit-filter: brightness(1) drop-shadow(0 0 0 transparent);
  filter: brightness(1) drop-shadow(0 0 0 transparent);
}

.top {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: unset;
}
.top-img {
  position: relative;
  height: 95%;
  overflow: hidden;
}
.top-img li {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  -moz-transition: -moz-transform 8s;
  -o-transition: -o-transform 8s;
  -webkit-transition: -webkit-transform 8s;
  transition: transform 8s;
}
.top-img li:nth-child(1) {
  background-position: 70% 75%;
  -moz-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}
.top-img li:nth-child(1).show-img {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.top-img li:nth-child(2) {
  background-position: 65% 65%;
  height: 108%;
  -moz-transform: translateY(-8%);
  -ms-transform: translateY(-8%);
  -webkit-transform: translateY(-8%);
  transform: translateY(-8%);
}
.top-img li:nth-child(2).show-img {
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.top-img li:last-child {
  background-position: 50% 75%;
  width: 105%;
  -moz-transform: translateX(-5%);
  -ms-transform: translateX(-5%);
  -webkit-transform: translateX(-5%);
  transform: translateX(-5%);
}
.top-img li:last-child.show-img {
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.top-slogan li {
  width: 400px;
  position: absolute;
  bottom: 25%;
  left: 12%;
  color: #FFF;
  z-index: 5;
}
.top-big {
  font-size: 1.5rem;
  font-family: "EB Garamond", Arial, Helvetica;
  letter-spacing: 0.15rem;
  text-shadow: 0px 0px 5px #666;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.top-t {
  margin-top: -30px;
  margin-right: -10px;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  -moz-transition: clip-path 0.8s;
  -o-transition: clip-path 0.8s;
  -webkit-transition: clip-path 0.8s;
  transition: clip-path 0.8s;
}
.show-text .top-t {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.top-b {
  margin-bottom: -30px;
  margin-left: -10px;
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  -moz-transition: clip-path 0.8s;
  -o-transition: clip-path 0.8s;
  -webkit-transition: clip-path 0.8s;
  transition: clip-path 0.8s;
}
.show-text .top-b {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.top-l {
  width: 60px;
  height: 1px;
  background: #FFF;
  box-shadow: 0 0 5px #666;
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -moz-transition: clip-path 0.8s;
  -o-transition: clip-path 0.8s;
  -webkit-transition: clip-path 0.8s;
  transition: clip-path 0.8s;
}
.show-text .top-l {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.top-text {
  padding-top: 60px;
  font-size: 0.75rem;
  letter-spacing: 0.2rem;
  text-shadow: 0px 0px 5px #333;
  color: #FFF;
  opacity: 0;
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -moz-transition: opacity 0.8s, -moz-transform 0.8s;
  -o-transition: opacity 0.8s, -o-transform 0.8s;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
}
.show-text .top-text {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.top-award {
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 15px;
  opacity: 0;
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -moz-transition: opacity 0.8s, -moz-transform 0.8s;
  -o-transition: opacity 0.8s, -o-transform 0.8s;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
}
.show-text .top-award {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -moz-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.top-award img {
  height: 30px;
  float: left;
  margin: 5px 2px;
}

.hamburger-bar {
  background: #FFF;
  box-shadow: 1px 1px 2px #666;
}
.onscroll .hamburger-bar {
  background: #000;
  box-shadow: none;
}

.scroll-down {
  bottom: -10px;
  left: 50%;
  right: unset;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.about-inner {
  padding: 0 70px;
  max-width: 1100px;
  margin: 0 auto;
}
.about-wrap {
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.about-text span {
  display: block;
}
.about-name {
  width: 80px;
}
.about-img {
  opacity: 0.5;
}
.about-img img {
  width: 100%;
}

.award-inner {
  padding: 0 70px;
  max-width: 1100px;
  margin: 0 auto;
}
.award-img {
  width: 60%;
  position: relative;
}
.award-img.show:before, .award-img.show:after {
  height: 0;
}
.award-img:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #dbdcdc;
  position: absolute;
  bottom: 0;
  left: 0;
  -moz-transition: height 0.8s 0.6s;
  -o-transition: height 0.8s 0.6s;
  -webkit-transition: height 0.8s;
  -webkit-transition-delay: 0.6s;
  transition: height 0.8s 0.6s;
}
.award-img:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #f9f9f9;
  position: absolute;
  bottom: 0;
  left: 0;
  -moz-transition: height 0.8s;
  -o-transition: height 0.8s;
  -webkit-transition: height 0.8s;
  transition: height 0.8s;
}
.award-img img {
  width: 100%;
}
.award-content {
  padding-top: 80px;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.award-list {
  width: calc(75% - 100px);
  margin-left: 10%;
}
.award-list li {
  position: relative;
  padding: 15px 60px 15px 0;
}
.award-list li:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #dbdcdc;
  position: absolute;
  bottom: 0;
  left: 0;
}
.award-list li:after {
  content: "";
  width: 30px;
  height: 2px;
  background: #999;
  position: absolute;
  right: 0;
  bottom: 0;
}
.award-logo {
  width: 30px;
  position: absolute;
  top: 20px;
  right: 0;
}
.award-logo img {
  width: 100%;
}
.award-name {
  font-size: 0.75rem;
  color: #999;
  padding-bottom: 3px;
}
.award-work {
  font-size: 0.875rem;
  font-family: "EB Garamond", Arial, Helvetica, "STHeiti Light", "Heiti TC", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  color: #000;
}
.award-work a {
  color: #000;
  -moz-transition: color 0.6s;
  -o-transition: color 0.6s;
  -webkit-transition: color 0.6s;
  transition: color 0.6s;
}
.award-work a:hover {
  color: #666;
}

.project {
  position: relative;
}
.project:after {
  content: "";
  width: 100%;
  height: 75%;
  background: #f9f9f9;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.project-inner {
  padding: 0 70px;
  max-width: 1200px;
  margin: 0 auto;
}
.project-img1 {
  width: 58%;
  margin-left: auto;
  margin-right: 4%;
  position: relative;
}
.project-img1.show:before {
  height: 0;
}
.project-img1:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #dbdcdc;
  position: absolute;
  bottom: 0;
  left: 0;
  -moz-transition: height 0.8s;
  -o-transition: height 0.8s;
  -webkit-transition: height 0.8s;
  transition: height 0.8s;
}
.project-img1:after {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #d9b766;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.project-img1 img {
  width: 100%;
}
.project-wrap {
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row-reverse;
  flex-flow: row-reverse;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-justify-content: center;
  justify-content: center;
}
.project-content {
  width: 37%;
  margin-left: 12%;
}
.project-img2 {
  width: 35%;
  margin-top: -7%;
  margin-bottom: 7%;
  position: relative;
}
.project-img2.show:before {
  width: 0;
}
.project-img2:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #dbdcdc;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  -moz-transition: width 0.8s;
  -o-transition: width 0.8s;
  -webkit-transition: width 0.8s;
  transition: width 0.8s;
}
.project-img2:after {
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px solid #d9b766;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.project-img2 img {
  width: 100%;
}

.contact {
  position: relative;
}
.contact:after {
  content: "";
  width: 100%;
  height: 40%;
  background: #f9f9f9;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.contact-inner {
  padding: 0 70px;
  max-width: 1500px;
  margin: 0 auto;
}
.contact-map {
  height: 45vw;
  max-height: 700px;
  background: #dbdcdc;
  position: relative;
}
.contact-map.show:before, .contact-map.show:after {
  width: 0;
}
.contact-map:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #dbdcdc;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  -moz-transition: width 0.8s 0.6s, height 0.8s 0.6s;
  -o-transition: width 0.8s 0.6s, height 0.8s 0.6s;
  -webkit-transition: width 0.8s, height 0.8s;
  -webkit-transition-delay: 0.6s, 0.6s;
  transition: width 0.8s 0.6s, height 0.8s 0.6s;
}
.contact-map:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #f9f9f9;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  -moz-transition: width 0.8s, height 0.8s;
  -o-transition: width 0.8s, height 0.8s;
  -webkit-transition: width 0.8s, height 0.8s;
  transition: width 0.8s, height 0.8s;
}
.contact-content {
  padding-top: 80px;
}
.contact-title {
  text-align: center;
  opacity: 0;
  -moz-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
  -moz-transition: opacity 0.8s, -moz-transform 0.8s;
  -o-transition: opacity 0.8s, -o-transform 0.8s;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
}
.contact-title.show {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.contact-list {
  display: -ms-flexbox;
  display: flex;
}
.contact-list li {
  width: 33.3333%;
  box-sizing: border-box;
  padding: 0 20px;
}
.contact-list li:nth-child(2) {
  border-left: 1px dashed #ccc;
  border-right: 1px dashed #ccc;
}
.contact-icon {
  width: 17px;
  padding: 8px;
  margin: 0 auto;
  background: #dbdcdc;
  border-radius: 50%;
}
.contact-icon img {
  width: 100%;
}
.contact-text {
  font-size: 0.875rem;
  text-align: center;
  margin-top: 15px;
}
.contact-text a {
  -moz-transition: color 0.4s;
  -o-transition: color 0.4s;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.contact-text a:hover {
  color: #000;
}

@media screen and (max-width: 1100px) {
  .intro-logo {
    width: 150px;
  }

  .about-inner {
    max-width: 800px;
    padding: 0 50px;
  }
  .about-name {
    width: 70px;
  }

  .award-inner {
    padding: 0 50px;
    max-width: 800px;
  }
  .award-img {
    width: 80%;
  }
  .award-content {
    display: block;
  }
  .award-list {
    width: auto;
    margin-left: unset;
    margin-top: -15px;
  }

  .project-inner {
    padding: 0 50px;
  }
  .project-img1 {
    width: 65%;
    margin-right: unset;
  }
  .project-content {
    width: 47%;
    margin-left: 8%;
  }
  .project-img2 {
    width: 45%;
    margin-top: -5%;
  }

  .contact-inner {
    padding: 0 50px;
  }
  .contact-map {
    height: 55vw;
  }
  .contact-content {
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .contact-title {
    text-align: left;
    -moz-transform: translate(30px, 0);
    -ms-transform: translate(30px, 0);
    -webkit-transform: translate(30px, 0);
    transform: translate(30px, 0);
  }
  .contact-title.show {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .contact-list {
    display: block;
    margin-left: 12%;
    width: 60%;
  }
  .contact-list li {
    width: auto;
    position: relative;
    padding: 20px 0 20px 50px;
  }
  .contact-list li:nth-child(2) {
    border-left: unset;
    border-right: unset;
    border-top: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
  }
  .contact-list li:last-child {
    padding-bottom: unset;
  }
  .contact-icon {
    position: absolute;
    width: 15px;
    top: 15px;
    left: 0;
  }
  .contact-text {
    text-align: left;
    margin-top: unset;
  }
}
@media screen and (max-width: 800px) {
  .top-slogan li {
    width: 350px;
  }

  .about-wrap {
    display: block;
  }
  .about-name {
    display: none;
  }

  .project:after {
    height: 85%;
  }
  .project-wrap {
    display: block;
  }
  .project-img1 {
    width: 80%;
  }
  .project-content {
    width: auto;
    margin-left: unset;
    padding: 80px 0;
  }
  .project-img2 {
    margin-top: unset;
    margin-bottom: unset;
    width: 70%;
  }

  .contact:after {
    height: 35%;
  }
  .contact-map.show:before, .contact-map.show:after {
    width: 100%;
    height: 0;
  }
}
@media screen and (max-width: 640px) {
  .intro-logo {
    width: 140px;
  }

  .top-slogan li {
    width: calc(100% - 60px);
    max-width: 400px;
    left: 30px;
    bottom: 17%;
  }
  .top-big {
    font-size: 1.25rem;
  }
  .top-l {
    width: 50px;
  }
  .top-text {
    padding-top: 50px;
  }

  .about-inner {
    padding: 0 30px;
  }

  .award-inner {
    padding: 0 30px;
  }
  .award-img {
    width: auto;
  }
  .award-content {
    padding-top: 50px;
  }

  .project-inner {
    padding: 0 30px;
  }
  .project-img1 {
    width: auto;
  }
  .project-content {
    padding: 50px 0;
  }
  .project-img2 {
    width: auto;
  }

  .contact-inner {
    padding: 0 30px;
  }
  .contact-map {
    height: 400px;
  }
  .contact-content {
    display: block;
    padding-top: 50px;
  }
  .contact-list {
    margin-left: unset;
    width: auto;
    margin-top: -15px;
  }
  .contact-list li {
    padding: 15px 0 15px 40px;
  }
  .contact-icon {
    padding: 6px;
    top: 12px;
  }
}
@media screen and (max-height: 500px) {
  .top-big {
    display: none;
  }
  .top-text {
    padding-top: unset;
  }
}
