.top-slide-inner {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -moz-transition: -moz-transform 6s 2s;
  -o-transition: -o-transform 6s 2s;
  -webkit-transition: -webkit-transform 6s;
  -webkit-transition-delay: 2s;
  transition: transform 6s 2s;
}
.swiper-slide-active .top-slide-inner {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.top-slogan li {
  position: absolute;
  bottom: 45%;
  left: 6vw;
  color: #FFF;
  text-shadow: 0px 0px 5px #666;
  width: calc(100% - 6vw * 2);
  max-width: 360px;
  z-index: 2;
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.top-slogan li.show-text {
  opacity: 1;
}
.top-slogan-header {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
}
.top-slogan-header span {
  opacity: 0;
  display: block;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  -moz-transition: clip-path 2s, opacity 2s;
  -o-transition: clip-path 2s, opacity 2s;
  -webkit-transition: clip-path 2s, opacity 2s;
  transition: clip-path 2s, opacity 2s;
}
.show-text .top-slogan-header span {
  opacity: 1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.show-text .top-slogan-header span:nth-child(2) {
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.top-slogan-text {
  margin-top: 20px;
  font-size: 0.75rem;
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.show-text .top-slogan-text {
  opacity: 0.7;
  -moz-transition-delay: 1s;
  -o-transition-delay: 1s;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.top-control {
  position: absolute;
  z-index: 2;
}
.top-control.swiper-pagination-bullets {
  bottom: 40px;
  left: 6vw;
  height: 24px;
}
.top-control .swiper-pagination-bullet {
  position: relative;
  display: inline-block;
  padding: 9px;
  cursor: pointer;
  width: 6px;
  height: 6px;
  background: transparent;
  opacity: 1;
}
.top-control .swiper-pagination-bullet:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: block;
  background: #FFF;
  -moz-transition: background 0.6s;
  -o-transition: background 0.6s;
  -webkit-transition: background 0.6s;
  transition: background 0.6s;
}
.top-control .swiper-pagination-bullet:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 12px;
  height: 12px;
  border: #FFF solid 1px;
  border-radius: 50%;
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
  -moz-transition: -moz-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
}
.top-control .swiper-pagination-bullet:hover:after {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.top-control .swiper-pagination-bullet:hover:before {
  background: rgba(255, 255, 255, 0);
}
.top-control .swiper-pagination-bullet-active:after {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.top-control .swiper-pagination-bullet-active:before {
  background: rgba(255, 255, 255, 0);
}
.top-control.swiper-pagination-horizontal .swiper-pagination-bullet {
  margin: 0;
}

.profile-wrap {
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.profile-content {
  width: 50%;
}
.profile-inner {
  max-width: 360px;
  padding: 0 6vw;
  margin: auto;
}
.profile-img {
  position: relative;
  width: 50%;
  padding-bottom: 3%;
}
.profile-img img {
  position: relative;
  width: 100%;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  -moz-transition: clip-path 1s;
  -o-transition: clip-path 1s;
  -webkit-transition: clip-path 1s;
  transition: clip-path 1s;
}
.profile-img.show img {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.profile-text {
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.show .profile-text {
  opacity: 1;
  -moz-transition-delay: 1s;
  -o-transition-delay: 1s;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.profile-btn {
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.show .profile-btn {
  opacity: 1;
  -moz-transition-delay: 1s;
  -o-transition-delay: 1s;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.concept-wrap {
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.concept-content {
  width: 60%;
}
.concept-inner {
  max-width: 360px;
  padding: 0 6vw;
  margin: auto;
}
.concept-img {
  position: relative;
  width: 40%;
  padding-bottom: 3%;
}
.concept-img img {
  position: relative;
  width: 100%;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  -moz-transition: clip-path 1s;
  -o-transition: clip-path 1s;
  -webkit-transition: clip-path 1s;
  transition: clip-path 1s;
}
.concept-img.show img {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.concept-text {
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.show .concept-text {
  opacity: 1;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.concept-btn {
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.show .concept-btn {
  opacity: 1;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.slogan {
  padding-bottom: 0;
}
.slogan-inner {
  position: relative;
  text-align: center;
  padding: 12vw 6vw;
}
.slogan-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #f9f8f5;
  -moz-transition: height 0.6s;
  -o-transition: height 0.6s;
  -webkit-transition: height 0.6s;
  transition: height 0.6s;
}
.show .slogan-inner:before {
  height: 100%;
}
.slogan-text {
  position: relative;
  margin: auto;
  max-width: 700px;
  color: #999;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.show .slogan-text {
  opacity: 1;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.project {
  padding-top: 0;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.project-content {
  position: relative;
  width: 50%;
  display: -ms-flexbox;
  display: flex;
}
.project-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  -moz-transition: width 1s;
  -o-transition: width 1s;
  -webkit-transition: width 1s;
  transition: width 1s;
  background: #f3f1eb;
}
.show .project-content:before {
  width: 100%;
}
.project-inner {
  position: relative;
  max-width: 360px;
  margin: auto;
  padding: 6vw;
  text-align: center;
}
.project-title .en div {
  margin: auto;
}
.project-img {
  position: relative;
  width: 50%;
  min-height: 33vw;
}
.project-img:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  -moz-transition: height 1s;
  -o-transition: height 1s;
  -webkit-transition: height 1s;
  transition: height 1s;
  z-index: 2;
}
.show .project-img:after {
  height: 0;
}
.project-slide {
  background-size: cover;
  background-position: center;
}
.project-text {
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.show .project-text {
  opacity: 1;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.project-btn {
  margin: 40px auto 0;
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.show .project-btn {
  opacity: 1;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.award-wrap {
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.award-content {
  width: 60%;
}
.award-inner {
  max-width: 360px;
  padding: 0 6vw;
  margin: auto;
}
.award-logo {
  margin: 20px 0;
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.show .award-logo {
  opacity: 1;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.award-logo img {
  display: inline-block;
  width: 30px;
  margin: 0 2px 0px 0;
  border: #ddd solid 1px;
}
.award-img {
  position: relative;
  width: 40%;
  padding-bottom: 3%;
}
.award-img img {
  position: relative;
  width: 100%;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  -moz-transition: clip-path 1s;
  -o-transition: clip-path 1s;
  -webkit-transition: clip-path 1s;
  transition: clip-path 1s;
}
.award-img.show img {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.award-text {
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.show .award-text {
  opacity: 1;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.award-btn {
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.show .award-btn {
  opacity: 1;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.contact {
  padding-bottom: 0;
}
.contact-wrap {
  position: relative;
}
.contact-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 6vw;
}
.contact-bg {
  background: #f9f8f5;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  top: 35%;
  z-index: -1;
  -moz-transition: width 1s;
  -o-transition: width 1s;
  -webkit-transition: width 1s;
  transition: width 1s;
}
.contact-bg.show {
  width: 100%;
}
.contact-img {
  position: relative;
  background-image: url(../images/index/contact-img.jpg);
  background-position: 50% 80%;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 35vw;
}
.contact-img img {
  width: 100%;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  -moz-transition: clip-path 1s;
  -o-transition: clip-path 1s;
  -webkit-transition: clip-path 1s;
  transition: clip-path 1s;
}
.contact-img.show img {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.contact-content {
  position: relative;
  padding: 6vw 0;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.contact-title {
  width: 200px;
  margin-bottom: 0;
}
.contact-text {
  width: calc( 100% - 200px );
  font-size: 0.875rem;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.contact-text li {
  padding-left: 20px;
  border-left: #ccc solid 1px;
  margin-left: 10%;
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  width: 40%;
  box-sizing: border-box;
}
.show .contact-text li {
  opacity: 1;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.contact-text li a, .contact-text li div {
  display: block;
  margin-bottom: 10px;
}
.contact-text .tt {
  display: block;
  color: #999;
  font-size: 0.75rem;
  margin-bottom: 5px;
}
.contact-text .en {
  font-size: 0.75rem;
}
.contact-touch {
  max-width: 1200px;
  margin: auto;
  padding: 0 6vw;
  background-color: #fff;
  padding-bottom: 0;
}
.contact-touch div {
  padding-bottom: 0;
}
.contact-info {
  width: 100%;
  padding-left: 20px;
  border-left: #ccc solid 1px;
  margin-left: 10%;
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.show .contact-info {
  opacity: 1;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.contact-info a {
  display: block;
}
.contact-info i {
  width: 17px;
  text-align: center;
  color: #ccc;
  margin-right: 5px;
  font-size: 1rem;
  vertical-align: middle;
  padding-bottom: 2px;
}
.contact-social {
  width: 100%;
  padding-left: 23px;
  border-left: #ccc solid 1px;
  margin-left: 10%;
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.show .contact-social {
  opacity: 1;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.contact-social.show {
  opacity: 1;
}
.contact-social i {
  width: 17px;
  text-align: center;
  color: #ccc;
  margin-right: 5px;
  font-size: 1rem;
  vertical-align: middle;
  padding-bottom: 2px;
}
.contact-social a {
  display: inline-block;
  width: 100%;
}
.contact-social a:last-child {
  position: relative;
  padding-left: 25px;
}
.contact-social div {
  width: 100%;
}
.contact-social img {
  width: 15px;
  color: #ccc;
  margin-right: 5px;
  display: inline-block;
  -webkit-filter: brightness(2);
  filter: brightness(2);
  padding-top: 2px;
  position: absolute;
  left: 0;
}
.contact-social span {
  display: inline-block;
  padding-left: 1px;
}

@media screen and (max-width: 1300px) {
  .contact-social {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .contact-social a {
    text-align: left;
    margin-bottom: 20px;
  }
  .contact-social a:last-child {
    margin-bottom: 0;
  }
  .contact-social div {
    text-align: left;
    margin-bottom: 20px;
  }
  .contact-social i {
    width: 20px;
    text-align: center;
  }
  .contact-social img {
    padding-left: 3px;
  }
  .contact-social span {
    padding-left: 5px;
  }
}
@media screen and (max-width: 1100px) {
  .contact-content {
    display: block;
  }
  .contact-img {
    height: 45vw;
    background-attachment: scroll;
  }
  .contact-bg {
    top: 25%;
  }
  .contact-title {
    margin-bottom: 40px;
  }
  .contact-text {
    width: 100%;
  }
  .contact-text li {
    margin: 0 10% 0 0;
  }
  .contact-text li:nth-child(2) {
    margin-right: 0;
  }
}
@media screen and (max-width: 900px) {
  .profile-wrap {
    display: block;
  }
  .profile-content {
    width: auto;
  }
  .profile-img {
    display: none;
  }

  .concept-wrap {
    display: block;
  }
  .concept-content {
    width: auto;
  }
  .concept-img {
    width: auto;
    margin: 0 6vw 12vw;
  }

  .slogan-text {
    font-size: 1.125rem;
  }

  .project {
    display: block;
  }
  .project-img {
    width: auto;
    height: 60vw;
  }
  .project-content {
    width: auto;
  }
  .project-inner {
    padding: 12vw 6vw;
    text-align: left;
  }
  .project-btn {
    margin: 40px 0 0;
  }

  .award-wrap {
    display: block;
  }
  .award-content {
    width: auto;
  }
  .award-img {
    display: none;
  }

  .contact-bg {
    top: 25vw;
  }
  .contact-img {
    height: 420px;
    background-position: 40% 100%;
  }
  .contact-text {
    display: block;
  }
  .contact-text li {
    margin: 40px 0 0;
    width: 100%;
  }
  .contact-info {
    width: 100%;
  }
  .contact-social {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .top-slogan li {
    bottom: 150px;
  }

  .slogan-text {
    font-size: 1rem;
  }

  .contact-touch {
    padding-right: 0;
  }
  .contact-content {
    padding: 6vw 0;
  }
  .contact-social {
    padding: 0;
  }
  .contact-social i, .contact-social img {
    margin-right: 2px;
  }
  .contact-social span {
    padding-left: 0;
  }
  .contact-text li {
    width: 100%;
  }
  .contact-info i {
    margin-right: 2px;
  }
  .contact-info span {
    display: inline-block;
    width: 128px;
  }
}
