@import url("//fonts.googleapis.com/earlyaccess/notosanstc.css");
html {
  font-family: 'Noto Sans TC', sans-serif;
  color: #462f29;
  overflow-x: hidden;
}
html * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  margin: 0;
  padding-top: 110px;
  -webkit-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  overflow-x: hidden;
}
@media screen and (max-width: 1024px) {
  body {
    padding-top: 50px;
  }
}
@media screen and (min-width: 1025px) {
  body.shrink {
    padding-top: 50px;
  }
  body.shrink header .left-flex a.logo-link {
    background-image: url("../img/logo-m.svg");
    height: 40px;
    width: 71.4px;
    margin-top: 5px;
  }
  body.shrink header .left-flex .links-flex .links-box a.page {
    line-height: 50px;
  }
  body.shrink header .left-flex .links-flex .links-box .links {
    top: 50px;
  }
  body.shrink header .right-flex .globe {
    margin-top: 15px;
  }
  body.shrink header .right-flex a {
    margin-top: 10px;
  }
}
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  padding: 0px 60px;
  -webkit-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  header {
    height: 50px;
    display: block;
  }
}
header .left-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  header .left-flex .logo-wrap {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    padding-left: 15px;
  }
}
header .left-flex .logo-wrap a.logo-link {
  background-image: url("../img/logo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  width: 141px;
  height: 79px;
  margin-top: 15px;
  margin-right: 30px;
  -webkit-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
}
@media screen and (max-width: 1024px) {
  header .left-flex .logo-wrap a.logo-link {
    display: inline-block;
    background-image: url("../img/logo-m.svg");
    width: 71.4px;
    height: 40px;
    margin-top: 5px;
    margin-right: 0px;
  }
}
header .left-flex .sandwich {
  display: none;
}
@media screen and (max-width: 1024px) {
  header .left-flex .sandwich {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50px;
    height: 50px;
    display: block;
    background-image: url("../img/open-m.svg");
    background-size: 30px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    -webkit-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
    -o-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
    transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  }
  header .left-flex .sandwich.close {
    background-image: url("../img/close-m.svg");
  }
}
header .left-flex .links-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  header .left-flex .links-flex {
    display: block;
    position: fixed;
    top: 50px;
    right: 0px;
    background-color: #462f29;
    min-width: 320px;
    height: calc(100% - 50px);
    padding: 30px 0px;
    -webkit-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
    -o-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
    transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
    -webkit-transform: translateX(320px);
    -ms-transform: translateX(320px);
    transform: translateX(320px);
    overflow: auto;
    width: 320px;
  }
  header .left-flex .links-flex.show {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
}
header .left-flex .links-flex .links-box {
  position: relative;
  -webkit-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
}
header .left-flex .links-flex .links-box:hover {
  background-color: #462f29;
}
header .left-flex .links-flex .links-box:hover a.page {
  color: #fff;
}
header .left-flex .links-flex .links-box:hover a.page .fa {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  color: #fff;
}
header .left-flex .links-flex .links-box:hover .links {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
}
header .left-flex .links-flex .links-box a.page {
  display: block;
  line-height: 110px;
  padding: 0px 30px;
  text-decoration: none;
  color: #462f29;
  font-size: 18px;
  -webkit-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
}
header .left-flex .links-flex .links-box a.page.active {
  color: #c9a063;
}
@media screen and (max-width: 1024px) {
  header .left-flex .links-flex .links-box a.page {
    line-height: 30px;
    margin-top: 15px;
    color: #fff;
    padding: 0px 45px;
  }
}
header .left-flex .links-flex .links-box a.page span {
  margin-right: 5px;
}
header .left-flex .links-flex .links-box a.page .fa {
  -webkit-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
}
@media screen and (max-width: 1024px) {
  header .left-flex .links-flex .links-box a.page .fa {
    display: none;
  }
}
header .left-flex .links-flex .links-box .links {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 110px;
  left: 0px;
  -webkit-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  background-color: #462f29;
  padding: 15px 0px;
  -webkit-transform: translateX(-30px);
  -ms-transform: translateX(-30px);
  transform: translateX(-30px);
}
@media screen and (max-width: 1024px) {
  header .left-flex .links-flex .links-box .links {
    position: static;
    opacity: 1;
    visibility: visible;
    top: auto;
    left: auto;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    padding: 0px 33px;
    padding-right: 0px;
  }
}
header .left-flex .links-flex .links-box .links a {
  display: block;
  line-height: 40px;
  white-space: nowrap;
  color: #c9a063;
  -webkit-transition: all none cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all none cubic-bezier(0.68, 0, 0.265, 1);
  transition: all none cubic-bezier(0.68, 0, 0.265, 1);
  padding: 0px 30px;
  text-decoration: none;
  font-size: 18px;
}
header .left-flex .links-flex .links-box .links a:hover {
  color: #fff;
}
@media screen and (max-width: 1024px) {
  header .left-flex .links-flex .links-box .links a {
    line-height: 30px;
    padding-right: 0px;
    white-space: pre-wrap;
  }
}
header .right-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  header .right-flex {
    position: fixed;
    right: 50px;
    top: 0px;
    height: 49px;
    background-color: #fff;
    padding-right: 15px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
header .right-flex .globe {
  background-image: url("../img/globe.svg");
  width: 20px;
  height: 20px;
  margin-top: 45px;
  margin-right: 10px;
  -webkit-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
}
@media screen and (max-width: 1024px) {
  header .right-flex .globe {
    margin-top: 15px;
  }
}
header .right-flex a {
  line-height: 30px;
  margin-top: 40px;
  text-decoration: none;
  color: #462f29;
  -webkit-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
}
header .right-flex a:hover {
  color: #c9a063;
}
@media screen and (max-width: 1024px) {
  header .right-flex a {
    margin-top: 9px;
    line-height: 30px;
  }
}
section.index-banner {
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  section.index-banner {
    margin-bottom: 0px;
  }
}
section.index-banner video {
  width: 100%;
  display: block;
}
section.index-banner .facade {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgba(39,48,66,0.7);
}
section.index-banner .flex-wrap {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0px;
  left: 0px;
}
section.index-banner .flex-wrap .flex-center {
  text-align: center;
  max-width: 767px;
  padding: 0px 30px;
}
@media screen and (max-width: 1023px) {
  section.index-banner .flex-wrap .flex-center {
    padding: 0px 60px;
  }
}
@media screen and (max-width: 767px) {
  section.index-banner .flex-wrap .flex-center {
    padding: 0px 30px;
  }
}
@media screen and (max-width: 374px) {
  section.index-banner .flex-wrap .flex-center {
    padding: 0px 15px;
  }
}
section.index-banner .flex-wrap .flex-center h2 {
  font-size: 64px;
  margin: 0px;
  margin-bottom: 15px;
  color: #c9a063;
  font-weight: 400;
  -webkit-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  opacity: 0;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
}
section.index-banner .flex-wrap .flex-center h2.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
@media screen and (max-width: 1023px) {
  section.index-banner .flex-wrap .flex-center h2 {
    font-size: 42px;
  }
}
@media screen and (max-width: 767px) {
  section.index-banner .flex-wrap .flex-center h2 {
    font-size: 32px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 374px) {
  section.index-banner .flex-wrap .flex-center h2 {
    font-size: 28px;
  }
}
section.index-banner .flex-wrap .flex-center h3 {
  font-size: 24px;
  color: #fff;
  margin: 0px;
  font-weight: 400;
  -webkit-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}
section.index-banner .flex-wrap .flex-center h3.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
@media screen and (max-width: 1023px) {
  section.index-banner .flex-wrap .flex-center h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  section.index-banner .flex-wrap .flex-center h3 {
    font-size: 16px;
  }
}
section .text-box h2 {
  font-size: 64px;
  margin: 0px;
  margin-bottom: 30px;
  font-weight: 300;
  -webkit-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  opacity: 0;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
}
section .text-box h2.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
@media screen and (max-width: 1279px) {
  section .text-box h2 {
    font-size: 42px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  section .text-box h2 {
    font-size: 32px;
    margin-bottom: 5px;
  }
}
section .text-box p {
  margin: 0px;
  text-align: justify;
  line-height: 2em;
  -webkit-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}
section .text-box p.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
@media screen and (max-width: 1279px) {
  section .text-box p {
    line-height: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  section .text-box p {
    line-height: 1.4em;
  }
}
section img {
  width: 100%;
  display: block;
}
section.center {
  padding: 60px 30px;
  max-width: 1366px;
  margin: 0px auto;
}
@media screen and (max-width: 1599px) {
  section.center {
    padding: 60px 120px;
  }
}
@media screen and (max-width: 1023px) {
  section.center {
    padding: 30px 60px;
  }
}
@media screen and (max-width: 767px) {
  section.center {
    padding: 30px;
  }
}
@media screen and (max-width: 374px) {
  section.center {
    padding: 30px 15px;
  }
}
section.index1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  section.index1 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
section.index1 .left {
  min-width: 440px;
  width: 440px;
}
@media screen and (max-width: 1599px) {
  section.index1 .left {
    margin-right: 60px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1279px) {
  section.index1 .left {
    min-width: 320px;
    width: 320px;
  }
}
@media screen and (max-width: 767px) {
  section.index1 .left {
    margin-right: 0px;
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 0px;
    margin-top: 15px;
    min-width: auto;
  }
}
section.index1 .left .img-box {
  margin-top: 30px;
}
section.index1 .right {
  width: 440px;
}
@media screen and (max-width: 767px) {
  section.index1 .right {
    width: 100%;
  }
}
section.index2 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  section.index2 .flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
section.index2 .flex .left {
  min-width: 440px;
  width: 440px;
  margin-right: 120px;
}
@media screen and (max-width: 1279px) {
  section.index2 .flex .left {
    min-width: 320px;
    width: 320px;
    margin-right: 60px;
  }
}
@media screen and (max-width: 767px) {
  section.index2 .flex .left {
    margin-right: 0px;
    width: 100%;
    min-width: auto;
  }
}
section.index2 .flex .left .text-box {
  margin-bottom: 120px;
}
@media screen and (max-width: 1599px) {
  section.index2 .flex .left .text-box {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  section.index2 .flex .left .text-box {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1279px) {
  section.index2 .flex .right {
    padding-top: 60px;
  }
}
@media screen and (max-width: 1023px) {
  section.index2 .flex .right {
    padding-top: 120px;
  }
}
@media screen and (max-width: 767px) {
  section.index2 .flex .right {
    padding-top: 15px;
  }
}
section.index3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  section.index3 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
section.index3 .left {
  width: 440px;
}
@media screen and (max-width: 767px) {
  section.index3 .left {
    width: 100%;
  }
}
section.index3 .text-box {
  min-width: 440px;
  width: 440px;
}
@media screen and (max-width: 1599px) {
  section.index3 .text-box {
    margin-left: 60px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1279px) {
  section.index3 .text-box {
    min-width: 320px;
    width: 320px;
  }
}
@media screen and (max-width: 767px) {
  section.index3 .text-box {
    margin-left: 0px;
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 0px;
    margin-top: 15px;
    min-width: auto;
  }
}
section.index3 .text-box img {
  margin-top: 30px;
}
section.index4 .text-box {
  text-align: center;
  max-width: 710px;
  margin: 0px auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  section.index4 .text-box {
    margin-bottom: 15px;
  }
}
section.index4 .text-box p {
  text-align: center;
}
section.index4 .flex-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
section.index4 .flex-logos .logo {
  width: 25%;
  padding: 0px 30px;
  -webkit-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  opacity: 0;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
section.index4 .flex-logos .logo.show {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
@media screen and (max-width: 767px) {
  section.index4 .flex-logos .logo {
    width: 50%;
  }
}
section.index5 {
  position: relative;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  section.index5 {
    margin-top: 0px;
    height: 400px;
    width: 100%;
    background-image: url("../img/index-sec5-1.jpg");
    background-position: center;
    background-size: cover;
  }
}
@media screen and (max-width: 374px) {
  section.index5 {
    height: 360px;
  }
}
section.index5 img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  section.index5 img {
    display: none;
  }
}
section.index5 .cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
section.index5 .cover .text-box {
  max-width: 1010px;
  text-align: center;
}
@media screen and (max-width: 1279px) {
  section.index5 .cover .text-box {
    max-width: auto;
    padding: 0px 60px;
  }
}
@media screen and (max-width: 767px) {
  section.index5 .cover .text-box {
    padding: 0px 30px;
  }
}
@media screen and (max-width: 374px) {
  section.index5 .cover .text-box {
    padding: 0px 15px;
  }
}
section.index5 .cover .text-box h2 {
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  section.index5 .cover .text-box h2 {
    margin-bottom: 15px;
  }
}
section.index5 .cover .text-box p {
  text-align: center;
  color: #fff;
}
section.index5 .cover .text-box a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  margin-top: 60px;
  line-height: 40px;
  border: 1px solid #fff;
  padding: 0px 45px;
  font-weight: 300;
  -webkit-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
}
section.index5 .cover .text-box a:hover {
  background-color: #c9a063;
  border-color: #c9a063;
}
@media screen and (max-width: 767px) {
  section.index5 .cover .text-box a {
    margin-top: 30px;
  }
}
section.about h2 {
  margin: 0px;
  font-size: 58px;
  font-weight: 400;
  display: block;
  text-align: center;
  margin-bottom: 30px;
  -webkit-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
}
section.about h2.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
@media screen and (max-width: 767px) {
  section.about h2 {
    font-size: 32px;
  }
}
section.about1 {
  position: relative;
}
@media screen and (max-width: 767px) {
  section.about1 {
    height: 320px;
    background-image: url("../img/about-sec1-1.jpg");
    background-position: center;
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  section.about1 img {
    display: none;
  }
}
section.about1 .slogan {
  padding: 30px 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 700px;
  font-size: 42px;
  background-color: #fff;
  color: #c9a063;
  position: absolute;
  bottom: 0px;
  right: 120px;
  height: 50%;
  -webkit-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  opacity: 0;
  -webkit-transform: translateX(100px);
  -ms-transform: translateX(100px);
  transform: translateX(100px);
}
section.about1 .slogan.show {
  opacity: 1;
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
}
@media screen and (max-width: 1365px) {
  section.about1 .slogan {
    padding: 0px 60px;
    width: 500px;
    right: 60px;
  }
}
@media screen and (max-width: 767px) {
  section.about1 .slogan {
    height: auto;
    right: auto;
    width: auto;
    padding: 30px;
    left: 0px;
    margin-right: 30px;
    font-size: 24px;
  }
}
section.about1 .slogan .text {
  -webkit-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  opacity: 0;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
section.about1 .slogan .text.show {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
section.about2 {
  position: relative;
}
@media screen and (max-width: 1023px) {
  section.about2 {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  section.about2 {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  section.about2 img.large {
    display: none;
  }
}
section.about2 .about {
  background-color: #c9a063;
  color: #fff;
  width: 600px;
  padding: 60px 90px;
  position: absolute;
  top: 280px;
  left: 120px;
}
@media screen and (max-width: 1365px) {
  section.about2 .about {
    width: 500px;
    padding: 30px 60px;
    top: 120px;
    left: 60px;
  }
}
@media screen and (max-width: 1023px) {
  section.about2 .about {
    width: 400px;
    padding: 30px;
    top: 30px;
    left: 30px;
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  section.about2 .about {
    position: static;
    width: 100%;
  }
}
section.about2 .about h1 {
  font-size: 42px;
  font-weight: 400;
  margin: 0px;
  margin-bottom: 15px;
  -webkit-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  opacity: 0;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
}
section.about2 .about h1.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
@media screen and (max-width: 767px) {
  section.about2 .about h1 {
    font-size: 28px;
  }
}
section.about2 .about p {
  margin: 0px;
  line-height: 1.8em;
  text-align: justify;
  -webkit-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}
section.about2 .about p.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
@media screen and (max-width: 767px) {
  section.about2 .about p {
    line-height: 1.5em;
  }
}
section.about2 .pad {
  display: none;
}
@media screen and (max-width: 767px) {
  section.about2 .pad {
    display: block;
    padding: 15px 30px;
    margin-top: 15px;
  }
}
section.about2 img.mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  section.about2 img.mobile {
    display: block;
  }
}
body.en section.about3 {
  background-image: url("../img/about-sec3-2.jpg");
}
section.about3 {
  margin: 120px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 300px;
  background-image: url("../img/about-sec3-1.jpg");
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1365px) {
  section.about3 {
    background-size: contain;
    margin: 60px 0px;
  }
}
@media screen and (max-width: 767px) {
  section.about3 {
    margin: 30px 0px;
    height: auto;
  }
}
section.about3 .text {
  max-width: 760px;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  margin-top: 15px;
  -webkit-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  opacity: 0;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
section.about3 .text.show {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
@media screen and (max-width: 1023px) {
  section.about3 .text {
    padding: 0px 30px;
  }
}
@media screen and (max-width: 767px) {
  section.about3 .text {
    font-size: 24px;
    padding: 30px;
  }
}
section.about4 {
  background-color: #faf5ef;
  margin: 120px 0px;
  padding-top: 60px;
}
@media screen and (max-width: 1023px) {
  section.about4 {
    margin: 60px 0px;
  }
}
@media screen and (max-width: 767px) {
  section.about4 {
    margin: 30px 0px;
  }
}
section.about5 {
  margin: 120px 0px;
  padding-top: 60px;
}
@media screen and (max-width: 1023px) {
  section.about5 {
    margin: 60px 0px;
  }
}
@media screen and (max-width: 767px) {
  section.about5 {
    margin: 30px 0px;
  }
}
section.about5 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0px 60px;
  max-width: 1366px;
  margin: 0px auto;
}
@media screen and (max-width: 767px) {
  section.about5 .flex {
    padding: 0px;
  }
}
section.about5 .flex .img {
  width: 25%;
  padding: 5px;
  -webkit-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  opacity: 0;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
section.about5 .flex .img.show {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
@media screen and (max-width: 1023px) {
  section.about5 .flex .img {
    width: 33.33%;
  }
}
@media screen and (max-width: 767px) {
  section.about5 .flex .img {
    width: 50%;
  }
}
section.about6 {
  text-align: center;
  padding-top: 60px;
}
section.about6 img {
  max-width: 1000px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  section.about6 img.large {
    display: none;
  }
}
section.about6 img.mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  section.about6 img.mobile {
    display: block;
  }
}
section.products1 {
  position: relative;
  margin-bottom: 80px;
  height: 60vh;
  background-image: url("../img/products-sec1-1.jpg");
  background-size: cover;
  background-position: center;
}
section.products1 .center {
  position: absolute;
  width: 70%;
  left: 15%;
  bottom: -80px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 160px;
  padding: 0px 30px;
  -webkit-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
}
section.products1 .center.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
@media screen and (max-width: 1365px) {
  section.products1 .center {
    width: 90%;
    left: 5%;
  }
}
@media screen and (max-width: 767px) {
  section.products1 .center {
    width: calc(100% - 60px);
    left: 30px;
    height: auto;
    padding: 30px;
  }
}
section.products1 .center .caption {
  max-width: 760px;
  text-align: center;
}
section.products2 {
  max-width: 1366px;
  padding: 60px;
  margin: 0px auto;
}
@media screen and (max-width: 1365px) {
  section.products2 {
    padding: 30px 60px;
    padding-top: 0px;
  }
}
@media screen and (max-width: 767px) {
  section.products2 {
    padding: 30px;
    padding-top: 0px;
  }
}
section.products2 .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 60px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  section.products2 .group {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
section.products2 .group .text {
  width: 40%;
}
@media screen and (max-width: 1023px) {
  section.products2 .group .text {
    width: 100%;
  }
}
section.products2 .group .text h2 {
  font-size: 32px;
  font-weight: 500;
  margin: 0px;
  margin-bottom: 15px;
  -webkit-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  opacity: 0;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
}
section.products2 .group .text h2.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
section.products2 .group .text p {
  line-height: 1.8em;
  text-align: justify;
  margin: 0px;
  -webkit-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}
section.products2 .group .text p.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
section.products2 .group .img {
  width: 50%;
  -webkit-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  opacity: 0;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
section.products2 .group .img.show {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
@media screen and (max-width: 1023px) {
  section.products2 .group .img {
    width: 100%;
  }
}
section.craft1 {
  position: relative;
  margin-bottom: 80px;
  height: 60vh;
  background-image: url("../img/craft-sec1-1.jpg");
  background-size: cover;
  background-position: center;
}
section.craft1 .center {
  position: absolute;
  width: 70%;
  left: 15%;
  bottom: -80px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 160px;
  padding: 0px 30px;
  -webkit-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
}
section.craft1 .center.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
@media screen and (max-width: 1365px) {
  section.craft1 .center {
    width: 90%;
    left: 5%;
  }
}
@media screen and (max-width: 767px) {
  section.craft1 .center {
    width: calc(100% - 60px);
    left: 30px;
    height: auto;
    padding: 30px;
  }
}
section.craft1 .center .caption {
  max-width: 760px;
  text-align: center;
}
section.craft2 {
  max-width: 800px;
  padding: 60px;
  margin: 0px auto;
}
@media screen and (max-width: 1365px) {
  section.craft2 {
    padding: 30px 60px;
    padding-top: 0px;
  }
}
@media screen and (max-width: 767px) {
  section.craft2 {
    padding: 30px;
    padding-top: 0px;
  }
}
section.craft2 .group {
  padding-top: 60px;
}
section.craft2 .group h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0px;
  margin-bottom: 15px;
  -webkit-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  opacity: 0;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
}
section.craft2 .group h2.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
section.craft2 .group img {
  margin: 0px;
  -webkit-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 500ms cubic-bezier(0.68, 0, 0.265, 1);
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}
section.craft2 .group img.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 60px 30px;
}
@media screen and (max-width: 767px) {
  footer {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
footer .logo {
  width: 225px;
  height: 126px;
  background-image: url("../img/logo.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  footer .logo {
    margin-top: 0px;
  }
}
footer .line {
  width: 1px;
  height: 175px;
  background-color: #c9a063;
  margin: 0px 45px;
}
@media screen and (max-width: 767px) {
  footer .line {
    width: 100%;
    height: 1px;
    margin: 30px 0px;
  }
}
footer .info .name {
  font-size: 18px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  footer .info .name {
    margin-bottom: 10px;
  }
}
footer .info .detail {
  line-height: 2em;
}
@media screen and (max-width: 374px) {
  footer .info .detail {
    font-size: 14px;
  }
}
#top {
  width: 36px;
  height: 46.5px;
  background-image: url("../img/top.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  bottom: 30px;
  right: 30px;
  -webkit-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  -o-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #top {
    bottom: 15px;
    right: 15px;
  }
}
#top.show {
  visibility: visible;
  opacity: 1;
}
