@import url("vendor/reset.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@300;400;500;600;700;900&display=swap");
body, html {
  font-family: "Noto Serif TC", serif;
  -webkit-tap-highlight-color: transparent;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  background-color: rgb(71, 80, 38);
}

a {
  transition: 0.5s ease;
  text-decoration: none;
}

button {
  transition: 0.5s ease;
}

textarea, select, input, button {
  outline: none;
}

:focus {
  outline-color: transparent;
  outline-style: none;
}

.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}

h3, p {
  text-align: justify;
  text-justify: inter-word;
}

.clear-fix {
  clear: both;
}

.orange {
  color: #d57c2a;
}

.pulsing0 {
  width: 99%;
  height: 99%;
  border-radius: 100px;
  z-index: 1;
  position: relative;
}
.pulsing0:before {
  width: 100%;
  height: 100%;
  border: inherit;
  top: 0;
  left: 0;
  z-index: 0;
  background: #FFF16F;
  border-radius: inherit;
  animation: pulsing1 2s linear;
}

@keyframes pulsing0 {
  0% {
    opacity: 1;
    transform: scaleY(1) scaleX(1);
  }
  20% {
    opacity: 0.5;
  }
  70% {
    opacity: 0.2;
    transform: scaleY(1.2) scaleX(1.2);
  }
  80% {
    opacity: 0;
    transform: scaleY(1.2) scaleX(1.2);
  }
  90% {
    opacity: 0;
    transform: scaleY(1) scaleX(1);
  }
}
.pulsing1 {
  width: 99%;
  height: 99%;
  border-radius: 100px;
  z-index: 1;
  position: relative;
}
.pulsing1:before {
  width: 100%;
  height: 100%;
  border: inherit;
  top: 0;
  left: 0;
  z-index: 0;
  background: #FFF16F;
  border-radius: inherit;
  animation: pulsing1 2s linear;
}

@keyframes pulsing1 {
  0% {
    opacity: 1;
    transform: scaleY(1) scaleX(1);
  }
  20% {
    opacity: 0.5;
  }
  70% {
    opacity: 0.2;
    transform: scaleY(1.3) scaleX(1.3);
  }
  80% {
    opacity: 0;
    transform: scaleY(1.3) scaleX(1.3);
  }
  90% {
    opacity: 0;
    transform: scaleY(1) scaleX(1);
  }
}
.pulsing2 {
  width: 99%;
  height: 99%;
  border-radius: 100px;
  z-index: 1;
  position: relative;
}
.pulsing2:before {
  width: 100%;
  height: 100%;
  border: inherit;
  top: 0;
  left: 0;
  z-index: 0;
  background: #FFF16F;
  border-radius: inherit;
  animation: pulsing2 2s linear;
}

@keyframes pulsing2 {
  0% {
    opacity: 1;
    transform: scaleY(1) scaleX(1);
  }
  20% {
    opacity: 0.5;
  }
  70% {
    opacity: 0.2;
    transform: scaleY(1.2) scaleX(1.05);
  }
  80% {
    opacity: 0;
    transform: scaleY(1.2) scaleX(1.05);
  }
  90% {
    opacity: 0;
    transform: scaleY(1) scaleX(1);
  }
}
.pulsing3 {
  width: 99%;
  height: 99%;
  border-radius: 100px;
  z-index: 1;
  position: relative;
}
.pulsing3:before {
  width: 100%;
  height: 100%;
  border: inherit;
  top: 0;
  left: 0;
  z-index: 0;
  background: #FFF16F;
  border-radius: inherit;
  animation: pulsing3 2s linear;
}

@keyframes pulsing3 {
  0% {
    opacity: 1;
    transform: scaleY(1) scaleX(1);
  }
  20% {
    opacity: 0.5;
  }
  70% {
    opacity: 0.2;
    transform: scaleY(1.3) scaleX(1.05);
  }
  80% {
    opacity: 0;
    transform: scaleY(1.3) scaleX(1.05);
  }
  90% {
    opacity: 0;
    transform: scaleY(1) scaleX(1);
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  /*background-color: #fff;   */
}
header .header-div {
  position: relative;
}
header .header-div .outer-div {
  margin: 0 auto;
  max-width: 1200px;
  padding: 20px 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
header .header-div .outer-div .brand a {
  display: inline-flex;
}
header .header-div .outer-div .links .navi li {
  display: inline-block;
  position: relative;
}
header .header-div .outer-div .links .navi li a {
  font-weight: 400;
  font-size: 16px;
  color: rgb(71, 80, 38);
  padding: 5px 25px;
  display: inline-block;
  position: relative;
}
header .header-div .outer-div .links .navi li a:hover {
  color: rgb(210, 175, 76);
}
header .header-div .outer-div .links .navi li:last-child a {
  padding-right: 0;
}

.body-home header {
  width: 50%;
}
.body-home header .header-div {
  position: relative;
}
.body-home header .header-div .outer-div {
  width: 600px;
}

@media all and (max-width: 1260px) {
  .body-home header .header-div .outer-div {
    width: calc(100% - 30px);
  }
}
@media all and (max-width: 1240px) {
  header {
    background-color: #fff;
    min-height: 68px;
  }
  header .header-div .outer-div {
    padding: 5px 15px;
  }
  header .header-div .outer-div .brand img {
    height: 46px;
  }
  header .header-div .outer-div .links {
    display: none;
  }
  .body-home header {
    width: 100%;
  }
}
footer {
  position: relative;
  z-index: 2;
}

.section-footer {
  position: relative;
}
.section-footer .footer-div {
  position: relative;
}

.toggle-btn {
  display: none;
  position: fixed;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  top: 0;
  right: 0;
  width: 68px;
  height: 68px;
  z-index: 889;
  background: rgb(71, 80, 38);
  border: none;
  padding: 0;
}
.toggle-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgb(210, 175, 76);
  margin: 3px 0;
  transition: 0.5s ease;
  border-radius: 100px;
}

.body-mobile-active {
  overflow: hidden;
}
.body-mobile-active .toggle-btn {
  z-index: 999;
}
.body-mobile-active .toggle-btn span:nth-child(1) {
  transform: rotate(-45deg);
  position: absolute;
  top: 28px;
}
.body-mobile-active .toggle-btn span:nth-child(2) {
  transform: rotate(-135deg);
  position: absolute;
  top: 28px;
}
.body-mobile-active .toggle-btn span:nth-child(3) {
  display: none;
}

.hide {
  display: none;
}

.overlay {
  z-index: 128;
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
}

.body-mobile-active .overlay {
  display: block;
}

#mobile-nav {
  z-index: 130;
  display: none;
  position: fixed;
  left: 0;
  top: 63px;
  height: auto;
  height: 100vh;
  overflow-y: auto;
  padding-bottom: 20px;
  overflow-y: auto;
  width: 100%;
  background-color: rgb(71, 80, 38);
}
#mobile-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#mobile-nav ul li {
  display: block;
  border-bottom: 1px solid #fff;
}
#mobile-nav ul li:last-child {
  border-bottom: none;
}
#mobile-nav ul li.other-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#mobile-nav ul li.other-links .link {
  display: inline-flex;
  align-items: center;
  margin-left: 15px;
}
#mobile-nav ul li.other-links .link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  border: 1px solid #fff;
  padding: 5px 0;
  letter-spacing: 2px;
  height: -moz-fit-content;
  height: fit-content;
  min-width: 155px;
  margin: 0 5px;
}
#mobile-nav ul li.other-links .link a i {
  display: inline-flex;
  align-items: center;
  background-image: url(../images/inline_arrow_white.svg);
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  margin-left: 15px;
}
#mobile-nav ul li.other-links .link a:hover {
  background-color: rgba(193, 203, 173, 0.6);
}
#mobile-nav ul li.other-links .society {
  display: inline-block;
}
#mobile-nav ul li.other-links .society .icons {
  display: inline-flex;
  align-items: center;
}
#mobile-nav ul li a {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  display: block;
  padding: 45px 15px;
  text-align: center;
  position: relative;
}
#mobile-nav ul li a:hover {
  color: rgb(210, 175, 76);
}

.body-mobile-active #mobile-nav {
  display: block;
}

@media all and (max-width: 1240px) {
  .toggle-btn {
    display: inline-flex;
  }
}
@media all and (max-width: 640px) {
  #mobile-nav ul li.other-links .society .icons a {
    padding: 10px;
  }
  #mobile-nav ul li.other-links .link {
    margin-left: 0;
  }
  #mobile-nav ul li.other-links .link a {
    margin: 10px;
  }
}
.section-home .block01 .two-cols {
  display: flex;
  flex-wrap: wrap;
}
.section-home .block01 .two-cols .col {
  width: 50%;
  position: relative;
  display: flex;
}
.section-home .block01 .two-cols .col:nth-child(1) {
  background-image: url(../images/home_deco_01.svg);
  background-color: #fff;
  background-position: 38vw center;
  background-repeat: no-repeat;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.section-home .block01 .two-cols .col:nth-child(1) .slogan {
  position: relative;
  width: 100%;
}
.section-home .block01 .two-cols .col:nth-child(1) .slogan:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15vw;
  height: 2px;
  background-color: rgb(71, 80, 38);
}
.section-home .block01 .two-cols .col:nth-child(1) .slogan h1 {
  font-size: 72px;
  color: rgb(71, 80, 38);
  font-weight: 600;
  width: 600px;
  margin: 0 auto;
  text-align: right;
  background-image: url(../images/home_slogan.svg);
  background-position: right center;
  background-repeat: no-repeat;
  position: relative;
  display: block;
}
.section-home .block01 .two-cols .col:nth-child(1) .link {
  margin-top: 30px;
  margin-left: 250px;
}
.section-home .block01 .two-cols .col:nth-child(1) .link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgb(71, 80, 38);
  border: 1px solid rgb(71, 80, 38);
  padding: 5px 0;
  letter-spacing: 2px;
  min-width: 146px;
  margin-right: 10px;
}
.section-home .block01 .two-cols .col:nth-child(1) .link a i {
  display: inline-flex;
  align-items: center;
  background-image: url(../images/inline_arrow_darkgreen.svg);
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  margin-left: 15px;
}
.section-home .block01 .two-cols .col:nth-child(1) .link a:hover {
  background-color: rgba(193, 203, 173, 0.6);
}
.section-home .block01 .two-cols .col:nth-child(1) .society {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 30px;
}
.section-home .block01 .two-cols .col:nth-child(1) .society .icons {
  width: 600px;
  margin: 0 auto;
}
.section-home .block01 .two-cols .col:nth-child(1) .society .icons a {
  display: inline-block;
  margin: 0 10px;
}
.section-home .block01 .two-cols .col:nth-child(1) .society .icons a:hover {
  opacity: 0.2;
}
.section-home .block01 .two-cols .col:nth-child(2) img {
  width: 100%;
}
.section-home .block01 .two-cols .col:nth-child(2) .owl-home-banner .item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
}
.section-home .block01 .two-cols .col:nth-child(2) .owl-home-banner .item .mobile {
  display: none;
}
.section-home .block01 .two-cols .col:nth-child(2) .owl-home-banner .owl-dots {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  text-align: center;
}
.section-home .block01 .two-cols .col:nth-child(2) .owl-home-banner .owl-dots button {
  margin: 0 8px;
}
.section-home .block01 .two-cols .col:nth-child(2) .owl-home-banner .owl-dots button span {
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background-color: #fff;
  display: inline-block;
}
.section-home .block01 .two-cols .col:nth-child(2) .owl-home-banner .owl-dots button.active span {
  background-color: rgb(210, 175, 76);
}
.section-home .block02 {
  background-color: rgba(71, 80, 38, 0.95);
  padding: 100px 0;
}
.section-home .block02 .block-title {
  position: relative;
}
.section-home .block02 .block-title:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 2px;
  background-color: rgb(210, 175, 76);
  width: calc(50% - 600px - 15px);
}
.section-home .block02 .block-title .outer-div {
  max-width: 1230px;
  margin: 0 auto;
  position: relative;
}
.section-home .block02 .block-title .outer-div h2 {
  padding-right: 65px;
  background-image: url(../images/title_deco_01.svg);
  background-position: center right;
  background-repeat: no-repeat;
  text-align: right;
  color: rgb(210, 175, 76);
  /*font-family: PMingLiU;*/
  font-family: "Noto Serif TC", serif;
  font-weight: bold;
  margin: 0 15px;
}
.section-home .block02 .block-title .outer-div h2 span {
  display: block;
  font-weight: 700;
  line-height: 1.2;
}
.section-home .block02 .block-title .outer-div h2 span.small {
  font-size: 18px;
}
.section-home .block02 .block-title .outer-div h2 span.big {
  font-size: 40px;
}

@media all and (max-width: 1260px) {
  .section-home .block01 .two-cols .col:nth-child(1) .slogan h1 {
    width: calc(100% - 30px);
    margin: 0 15px;
  }
  .section-home .block02 .block-title:before {
    width: 6px;
  }
}
@media all and (max-width: 1240px) {
  .section-home .block01 .two-cols {
    display: block;
  }
  .section-home .block01 .two-cols .col {
    width: 100%;
  }
  .section-home .block01 .two-cols .col:nth-child(1) {
    display: none;
  }
  .section-home .block01 .two-cols .col:nth-child(2) .owl-home-banner .item .web {
    display: none;
  }
  .section-home .block01 .two-cols .col:nth-child(2) .owl-home-banner .item .mobile {
    display: block;
  }
  .section-home .block02 {
    padding: 50px 0;
  }
  .section-home .block02 .block-title:before {
    right: auto;
    left: 0;
    width: 30px;
  }
  .section-home .block02 .block-title .outer-div h2 {
    text-align: left;
    background-position: bottom left;
    background-size: 20px auto;
    margin: 0 35px;
    padding-left: 25px;
  }
  .section-home .block02 .block-title .outer-div h2 span.small {
    font-size: 14px;
  }
  .section-home .block02 .block-title .outer-div h2 span.big {
    font-size: 24px;
  }
  main {
    margin-top: 68px;
  }
}/*# sourceMappingURL=main.css.map */