.intro {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: #efefef;
  z-index: 50;
}
.intro-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 65px;
  margin: -35px 0 0 -75px;
}
.intro-img1 {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  opacity: 0;
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.show-intro .intro-img1 {
  opacity: 1;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.intro-img2 {
  position: absolute;
  top: 14px;
  left: 0;
  width: 100%;
  opacity: 0;
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -moz-transition: all 0.6s ease-in-out 0.3s;
  -o-transition: all 0.6s ease-in-out 0.3s;
  -webkit-transition: all 0.6s ease-in-out;
  -webkit-transition-delay: 0.3s;
  transition: all 0.6s ease-in-out 0.3s;
}
.show-intro .intro-img2 {
  opacity: 1;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.intro-img3 {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  opacity: 0;
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -moz-transition: all 0.6s ease-in-out 0.6s;
  -o-transition: all 0.6s ease-in-out 0.6s;
  -webkit-transition: all 0.6s ease-in-out;
  -webkit-transition-delay: 0.6s;
  transition: all 0.6s ease-in-out 0.6s;
}
.show-intro .intro-img3 {
  opacity: 1;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.top-images li {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.top-images li:nth-child(1) {
  background-position: 50% 65%;
}
.top-images li:nth-child(2) {
  background-position: 50% 75%;
}
.top-images li:nth-child(3) {
  background-position: 50% 50%;
}
.top-slogan {
  position: absolute;
  left: 5%;
  bottom: 50%;
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  z-index: 3;
}
.top-slogan-in {
  position: absolute;
  bottom: 30%;
  left: 20%;
  white-space: nowrap;
  color: #eee;
}
.top-slogan-in:after {
  content: "";
  display: block;
  width: 0px;
  height: 2px;
  margin-top: 10px;
  background: #da5b62;
  -moz-transition: width 0.6s;
  -o-transition: width 0.6s;
  -webkit-transition: width 0.6s;
  transition: width 0.6s;
}
.top-slogan-in.show-text:after {
  width: 15px;
  -moz-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.top-slogan-top {
  display: inline-block;
  font-size: 1em;
  opacity: 0;
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -moz-transition: -moz-transform 0.6s, opacity 0.6s;
  -o-transition: -o-transform 0.6s, opacity 0.6s;
  -webkit-transition: -webkit-transform 0.6s, opacity 0.6s;
  transition: transform 0.6s, opacity 0.6s;
}
.show-text .top-slogan-top {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.top-slogan-bottom {
  display: inline-block;
  font-size: 1.75em;
  opacity: 0;
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -moz-transition: -moz-transform 0.6s, opacity 0.6s;
  -o-transition: -o-transform 0.6s, opacity 0.6s;
  -webkit-transition: -webkit-transform 0.6s, opacity 0.6s;
  transition: transform 0.6s, opacity 0.6s;
}
.show-text .top-slogan-bottom {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.about-slogan {
  max-width: 600px;
  margin: auto;
  font-size: 1.5em;
  color: #000;
  text-align: center;
  opacity: 0;
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.about-slogan.show {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.about-slogan span {
  display: block;
}
.about-line {
  margin: 80px auto;
  width: 1px;
  height: 100px;
  background: #ccc;
  position: relative;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.about-line:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1;
  bottom: 0;
  left: 0;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.about-line.show:after {
  height: 0;
}
.about-wrap {
  position: relative;
}
.about-wrap .inner {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.about-bg {
  position: absolute;
  top: 100px;
  bottom: 0;
  width: 0%;
  background: #efefef;
  opacity: 0;
  -moz-transition: all 0.6s 0.1s;
  -o-transition: all 0.6s 0.1s;
  -webkit-transition: all 0.6s;
  -webkit-transition-delay: 0.1s;
  transition: all 0.6s 0.1s;
}
.about-bg.show {
  width: 95%;
  opacity: 1;
}
.about-img {
  width: 45%;
  margin-bottom: 100px;
  overflow: hidden;
  border-radius: 120px 0 120px 0;
  position: relative;
  -moz-transition: all 0.6s 0.1s;
  -o-transition: all 0.6s 0.1s;
  -webkit-transition: all 0.6s;
  -webkit-transition-delay: 0.1s;
  transition: all 0.6s 0.1s;
}
.about-img:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1;
  top: 0;
  left: 0;
  -moz-transition: all 0.6s 0.1s;
  -o-transition: all 0.6s 0.1s;
  -webkit-transition: all 0.6s;
  -webkit-transition-delay: 0.1s;
  transition: all 0.6s 0.1s;
}
.about-img.show:after {
  height: 0;
}
.about-img img {
  width: 100%;
}
.about-content {
  margin-top: 100px;
  width: 50%;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.about-inner {
  width: 400px;
  margin: auto;
}
.about-title {
  margin-bottom: 60px;
  opacity: 0;
  -moz-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  -moz-transition: all 0.6s 0.1s;
  -o-transition: all 0.6s 0.1s;
  -webkit-transition: all 0.6s;
  -webkit-transition-delay: 0.1s;
  transition: all 0.6s 0.1s;
}
.about-title:after {
  content: "";
  height: 1px;
  width: 0px;
  display: block;
  margin-top: 40px;
  margin-left: -20px;
  background: #da5b62;
  -moz-transition: all 0.6s 0.3s;
  -o-transition: all 0.6s 0.3s;
  -webkit-transition: all 0.6s;
  -webkit-transition-delay: 0.3s;
  transition: all 0.6s 0.3s;
}
.about-title.show {
  opacity: 1;
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.about-title.show:after {
  width: 50px;
}
.about-text {
  opacity: 0;
  -moz-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  -moz-transition: all 0.6s 0.1s;
  -o-transition: all 0.6s 0.1s;
  -webkit-transition: all 0.6s;
  -webkit-transition-delay: 0.1s;
  transition: all 0.6s 0.1s;
}
.about-text.show {
  opacity: 1;
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.service {
  overflow: hidden;
}
.service-title {
  text-align: center;
  opacity: 0;
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.service-title.show {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.service-title-header {
  font-size: 1rem;
}
.service-title-header .en {
  font-size: 1.5rem;
  display: block;
}
.service-title-header .en:after {
  content: "";
  height: 1px;
  width: 50px;
  display: block;
  margin: 20px auto 60px;
  background: #da5b62;
}
.service-list {
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
}
.service-item {
  position: relative;
  text-align: center;
  width: 30%;
  max-width: 360px;
  margin-top: 100px;
  opacity: 0;
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.service-item.show {
  opacity: 1;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.service-img {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  -moz-transform: rotate(-15deg);
  -ms-transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.service-img.show {
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.service-img img {
  width: 100%;
}
.service-line {
  position: absolute;
  left: 5%;
  top: 0;
  width: 100%;
  padding-bottom: 100%;
  border: #746a6a solid 1px;
  border-radius: 50%;
  opacity: 0.3;
}
.service-subtitle {
  margin: 40px 0 5px;
  color: #000;
}
.service-subtitle-en {
  font-size: 0.875em;
  color: #746a6a;
}

.gallery-title {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.gallery-title.show {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.gallery-title:after {
  content: "";
  height: 1px;
  width: 50px;
  display: block;
  margin: 20px auto;
  background: #da5b62;
}
.gallery-slogan {
  margin-bottom: 100px;
  text-align: center;
  opacity: 0;
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.gallery-slogan.show {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.gallery-list {
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -1%;
}
.gallery-item {
  position: relative;
  width: 48%;
  margin: 1%;
  overflow: hidden;
  border-radius: 0 0 20px 0;
}
.gallery-img {
  position: relative;
  -moz-transition: all 0.6s 0.1s;
  -o-transition: all 0.6s 0.1s;
  -webkit-transition: all 0.6s;
  -webkit-transition-delay: 0.1s;
  transition: all 0.6s 0.1s;
}
.gallery-img:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #efefef;
  z-index: 1;
  top: 0;
  right: 0;
  -moz-transition: all 0.6s 0.4s;
  -o-transition: all 0.6s 0.4s;
  -webkit-transition: all 0.6s;
  -webkit-transition-delay: 0.4s;
  transition: all 0.6s 0.4s;
}
.gallery-img:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #FFF;
  z-index: 1;
  top: 0;
  right: 0;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gallery-img.show:before {
  width: 0;
}
.gallery-img.show:after {
  width: 0;
}
.gallery-img img {
  width: 100%;
}
.gallery-text {
  position: absolute;
  bottom: 0;
  right: 50px;
  line-height: 50px;
  background: #FFF;
  font-size: 0.875em;
  padding: 0 40px;
  overflow: hidden;
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -moz-transition: -moz-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  border-radius: 20px 0 0 0;
}
.gallery-item:hover .gallery-text {
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.gallery-view {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #efefef;
  font-size: 0.75em;
  border-radius: 20px 0 0 0;
  -moz-transition: border-radius 0.6s;
  -o-transition: border-radius 0.6s;
  -webkit-transition: border-radius 0.6s;
  transition: border-radius 0.6s;
}
.gallery-item:hover .gallery-view {
  border-radius: 0;
}

.contact-wrap {
  position: relative;
}
.contact-map {
  position: relative;
  padding-bottom: 600px;
  background: #f2f2f2;
  position: relative;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.contact-map:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1;
  top: 0;
  left: 0;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.contact-map.show:after {
  width: 0;
}
.contact-map iframe {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.contact-content {
  position: absolute;
  top: 15%;
  bottom: 15%;
  width: 300px;
  padding: 50px;
  background: #746a6a;
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 120px 0 120px 0;
  opacity: 0;
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -moz-transition: all 0.6s 0.1s;
  -o-transition: all 0.6s 0.1s;
  -webkit-transition: all 0.6s;
  -webkit-transition-delay: 0.1s;
  transition: all 0.6s 0.1s;
}
.contact-content.show {
  opacity: 1;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.contact-inner {
  margin: auto;
}
.contact-title {
  margin-bottom: 40px;
  color: #efefef;
  opacity: 0;
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  -moz-transition: all 0.6s 0.3s;
  -o-transition: all 0.6s 0.3s;
  -webkit-transition: all 0.6s;
  -webkit-transition-delay: 0.3s;
  transition: all 0.6s 0.3s;
}
.contact-title.show {
  opacity: 1;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.contact-title:after {
  content: "";
  height: 2px;
  width: 15px;
  display: block;
  margin: 10px auto;
  background: #da5b62;
}
.contact-text {
  color: #efefef;
  opacity: 0;
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -moz-transition: all 0.6s 0.3s;
  -o-transition: all 0.6s 0.3s;
  -webkit-transition: all 0.6s;
  -webkit-transition-delay: 0.3s;
  transition: all 0.6s 0.3s;
}
.contact-text.show {
  opacity: 1;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.contact-text i {
  margin-right: 10px;
}
.contact-text a {
  color: #efefef;
}
.contact-text a:hover {
  color: #bfb8b8;
}
.contact .add {
  margin-top: 20px;
}
.contact .en {
  font-size: 0.75em;
  margin-top: 5px;
  display: inline-block;
}

@media screen and (max-width: 1100px) {
  .top-images li:nth-child(1) {
    background-position: 80% 65%;
  }
  .top-images li:nth-child(2) {
    background-position: 0% 75%;
  }
  .top-images li:nth-child(3) {
    background-position: 60% 60%;
  }
  .top-slogan {
    bottom: 45%;
  }

  .about-text {
    margin-right: 20px;
  }
}
@media screen and (max-width: 900px) {
  .about {
    padding-bottom: 160px;
  }
  .about-wrap .inner {
    display: block;
  }
  .about-bg {
    width: 90%;
    left: 5%;
    top: -50px;
    bottom: -50px;
    border-radius: 80px 0 80px 0;
  }
  .about-bg.show {
    width: 90%;
  }
  .about-content {
    width: 100%;
    text-align: center;
  }
  .about-inner {
    width: 550px;
  }
  .about-title {
    margin: 0 30px 30px;
  }
  .about-title:after {
    margin-top: 20px;
    margin-left: 45%;
  }
  .about-text {
    margin: 0 30px;
  }
  .about-img {
    margin: 50px auto 0 auto;
    width: 55%;
    border-radius: 80px 0 80px 0;
    opacity: 0;
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  .about-img:after {
    display: none;
  }
  .about-img.show {
    opacity: 1;
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .service-list {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .service-item {
    width: 40%;
    margin-top: 60px;
  }
  .service-item:nth-child(1) {
    margin-top: 50px;
  }
  .service-item:nth-child(2) {
    margin-top: 50px;
  }
  .service-subtitle {
    margin: 20px 0 5px;
  }

  .gallery-list {
    display: block;
    margin: unset;
  }
  .gallery-item {
    width: 80%;
    margin: 50px auto 0 auto;
  }

  .contact-content {
    position: relative;
    max-width: 500px;
    width: unset;
    height: 300px;
    margin: 50px auto 0;
    border-radius: 80px 0 80px 0;
    background: #efefef;
  }
  .contact-title {
    color: #746a6a;
  }
  .contact-text {
    color: #666;
  }
  .contact-text a {
    color: #666;
  }
}
@media screen and (max-width: 640px) {
  .top {
    width: 100%;
  }
  .top-slogan {
    width: 100%;
  }
  .top-slogan-in {
    white-space: unset;
    width: 90%;
    left: unset;
  }

  .about {
    padding-bottom: 120px;
  }
  .about-slogan {
    padding: 0 5%;
  }
  .about-line {
    margin: 40px auto;
    height: 80px;
  }
  .about-img {
    width: 85%;
  }

  .gallery-title {
    margin-bottom: 50px;
  }
  .gallery-slogan {
    margin-bottom: 0;
  }
  .gallery-item {
    width: 100%;
  }
}
@media screen and (max-width: 460px) {
  .service-item {
    width: 80%;
    margin-top: 50px;
  }
  .service-item:nth-child(1) {
    margin-top: 0;
  }
  .service-item:nth-child(even) .service-line {
    left: unset;
    right: 5%;
  }

  .contact-map {
    padding-bottom: 500px;
  }
  .contact-content {
    padding: 30px;
  }
}
