@charset "UTF-8";
@font-face {
  font-family: 'HelveticaNeue';
  src: url("../fonts/HelveticaNeue.ttf");
}

.en {
  font-family: 'HelveticaNeue';
  font-weight: bold;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  font-family: "微軟正黑體", "Microsoft JhengHei", sans-serif;
  font-weight: 400;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

ul, li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
}

@media only screen and (max-width: 640px) {
  .container {
    max-width: 750px;
    margin: 0 auto;
  }
}

.m0auto {
  margin: 0 auto;
}

.p-x-100 {
  padding: 0 100px;
}

.img-fluid {
  display: block;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

.img-full {
  display: block;
  width: 100%;
  height: auto;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.show {
  display: block !important;
}

.hidden {
  display: none;
}

.z-100 {
  z-index: 100;
}

.z-200 {
  z-index: 200;
}

.z-300 {
  z-index: 300;
}

.z-400 {
  z-index: 400;
}

.z-500 {
  z-index: 500;
}

.pointer {
  cursor: pointer;
}

.relative {
  position: relative;
}

.my-absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.absolute-center {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: auto;
}

img[usemap], map area {
  outline: none;
}

.li-number {
  list-style-type: decimal;
}

.li-dot {
  list-style-type: disc;
}

@-webkit-keyframes sway {
  0%, 100% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  50% {
    -webkit-transform: rotate(6deg);
            transform: rotate(6deg);
  }
}

@keyframes sway {
  0%, 100% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  50% {
    -webkit-transform: rotate(6deg);
            transform: rotate(6deg);
  }
}

.anima-sway {
  -webkit-animation: sway;
          animation: sway;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 100% 0;
          transform-origin: 50% 100% 0;
}

.anima-bounce {
  -webkit-animation: bounce;
          animation: bounce;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.anima-fadeInDown {
  -webkit-animation: myfadeInDown;
          animation: myfadeInDown;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.anima-heartBeat {
  -webkit-animation: heartBeat;
          animation: heartBeat;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.anima-pulse {
  -webkit-animation: pulse;
          animation: pulse;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes light {
  0% {
    -webkit-filter: drop-shadow(0px 0px 10px #ffcd5900);
            filter: drop-shadow(0px 0px 10px #ffcd5900);
  }
  50% {
    -webkit-filter: drop-shadow(0px 0px 10px #FFCD59);
            filter: drop-shadow(0px 0px 10px #FFCD59);
  }
  100% {
    -webkit-filter: drop-shadow(0px 0px 10px #ffcd5900);
            filter: drop-shadow(0px 0px 10px #ffcd5900);
  }
}

@keyframes light {
  0% {
    -webkit-filter: drop-shadow(0px 0px 10px #ffcd5900);
            filter: drop-shadow(0px 0px 10px #ffcd5900);
  }
  50% {
    -webkit-filter: drop-shadow(0px 0px 10px #FFCD59);
            filter: drop-shadow(0px 0px 10px #FFCD59);
  }
  100% {
    -webkit-filter: drop-shadow(0px 0px 10px #ffcd5900);
            filter: drop-shadow(0px 0px 10px #ffcd5900);
  }
}

@-webkit-keyframes myfadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
  }
}

@keyframes myfadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
  }
}

.anima-light {
  -webkit-filter: drop-shadow(0px 0px 10px #000);
          filter: drop-shadow(0px 0px 10px #000);
}

.anima-scalelittle {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

/* ==================== 
component
====================  */
body {
  overflow-x: hidden;
}

.text-red {
  color: #FF4C4B;
}

.text-small {
  font-size: 20px;
  font-weight: normal;
}

.overflow-hidden {
  overflow: hidden;
}

.cover-part {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* ==================== 
nav
====================  */
nav.my-nav {
  border-top: 4px solid #3a8139;
  border-bottom: 4px solid #FFFC54;
  background-color: white;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2000;
}

nav.my-nav a.logo {
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  margin: 0 16px;
  padding: 0;
}

nav.my-nav ul.nav-group {
  display: none;
  position: relative;
  margin: 0;
}

nav.my-nav ul.nav-group li {
  display: inline-block;
  margin: 0 8px;
  padding: 8px;
}

nav.my-nav ul.nav-group li.active a {
  color: #3a8139;
  font-weight: bold;
}

nav.my-nav ul.nav-group li.active:hover a {
  color: #3a8139;
  font-weight: bold;
}

nav.my-nav ul.nav-group li a {
  color: #c1c1c2;
  text-decoration: none;
}

nav.my-nav ul.nav-group li a:hover {
  color: #000;
  font-weight: bold;
}

nav.my-nav .ham-button {
  width: 32px;
  height: 32px;
  padding: 2px;
}

@media only screen and (max-width: 576px) {
  nav.my-nav ul.nav-group {
    position: absolute;
    top: 66px;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 16px;
  }
  nav.my-nav ul.nav-group li {
    display: block;
    padding: 8px;
    margin-bottom: 8px;
  }
  nav.my-nav ul.nav-group li a {
    color: #000;
    display: inline-block;
    padding: 0;
    width: 100%;
  }
}

/* ==================== 
share
====================  */
.share-bar {
  padding: 6px 12px;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1000;
  border-radius: 20px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.share-bar .icon {
  cursor: pointer;
}

.share-bar .icon img {
  width: 28px;
  height: 28px;
}

.share-bar .copy, .share-bar .line, .share-bar .fb {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.share-bar.open {
  background-color: #b2b2b2;
}

.share-bar.open .copy, .share-bar.open .line, .share-bar.open .fb {
  opacity: 1;
  padding-right: 12px;
}

@media only screen and (max-width: 576px) {
  .share-bar {
    right: 10px;
  }
}

/* ==================== 
kv
====================  */
.kv {
  position: relative;
  z-index: 500;
}

.kv .road {
  overflow: hidden;
  background-color: #befaff;
}

.kv .road::before {
  content: '';
  position: absolute;
  width: 1.7%;
  height: 100%;
  top: 70px;
  left: 66%;
  background-image: repeating-linear-gradient(to top, rgba(255, 255, 255, 0.8) 0px, rgba(255, 255, 255, 0.8) 8%, transparent 8%, transparent 14%);
  background-size: 100% 226%;
  background-position: center 0;
  -webkit-animation: road-line 1s infinite linear;
          animation: road-line 1s infinite linear;
  -webkit-transform: perspective(393px) rotateX(71deg) rotateZ(6deg) translate3d(-5px, 0, 0);
          transform: perspective(393px) rotateX(71deg) rotateZ(6deg) translate3d(-5px, 0, 0);
}

.kv .road::after {
  content: '';
  position: absolute;
  width: 3%;
  height: 100%;
  top: 70px;
  left: 88%;
  background-image: repeating-linear-gradient(to top, rgba(255, 255, 255, 0.8) 0px, rgba(255, 255, 255, 0.8) 8%, transparent 8%, transparent 14%);
  background-size: 100% 226%;
  background-position: center 0;
  -webkit-animation: road-line 1s infinite linear;
          animation: road-line 1s infinite linear;
  -webkit-transform: perspective(393px) rotateX(71deg) rotateZ(-27deg) translate3d(-5px, 0, 0);
          transform: perspective(393px) rotateX(71deg) rotateZ(-27deg) translate3d(-5px, 0, 0);
}

.kv .car {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-perspective: 300px;
          perspective: 300px;
  -webkit-animation: car 3s infinite ease-in-out;
          animation: car 3s infinite ease-in-out;
}

@-webkit-keyframes road-line {
  30% {
    background-position: center 75%;
  }
  50% {
    background-position: center 100%;
  }
  75% {
    background-position: center 20%;
  }
  100% {
    background-position: center 100%;
  }
}

@keyframes road-line {
  30% {
    background-position: center 75%;
  }
  50% {
    background-position: center 100%;
  }
  75% {
    background-position: center 20%;
  }
  100% {
    background-position: center 100%;
  }
}

@-webkit-keyframes car {
  15%, 18% {
    -webkit-transform: rotateX(5deg) translate3d(-2.3em, 58px, 0);
            transform: rotateX(5deg) translate3d(-2.3em, 58px, 0);
  }
  36% {
    -webkit-transform: rotateX(5deg) translate3d(-0.8em, 55px, 0);
            transform: rotateX(5deg) translate3d(-0.8em, 55px, 0);
  }
  61% {
    -webkit-transform: rotateX(5deg) translate3d(2.8em, 55px, 0);
            transform: rotateX(5deg) translate3d(2.8em, 55px, 0);
  }
}

@keyframes car {
  15%, 18% {
    -webkit-transform: rotateX(5deg) translate3d(-2.3em, 58px, 0);
            transform: rotateX(5deg) translate3d(-2.3em, 58px, 0);
  }
  36% {
    -webkit-transform: rotateX(5deg) translate3d(-0.8em, 55px, 0);
            transform: rotateX(5deg) translate3d(-0.8em, 55px, 0);
  }
  61% {
    -webkit-transform: rotateX(5deg) translate3d(2.8em, 55px, 0);
            transform: rotateX(5deg) translate3d(2.8em, 55px, 0);
  }
}

@media only screen and (max-width: 768px) {
  @-webkit-keyframes car {
    15%, 18% {
      -webkit-transform: rotateX(5deg) translate3d(-2.3em, 48px, 0);
              transform: rotateX(5deg) translate3d(-2.3em, 48px, 0);
    }
    36% {
      -webkit-transform: rotateX(5deg) translate3d(-0.8em, 45px, 0);
              transform: rotateX(5deg) translate3d(-0.8em, 45px, 0);
    }
    61% {
      -webkit-transform: rotateX(5deg) translate3d(2.8em, 45px, 0);
              transform: rotateX(5deg) translate3d(2.8em, 45px, 0);
    }
  }
  @keyframes car {
    15%, 18% {
      -webkit-transform: rotateX(5deg) translate3d(-2.3em, 48px, 0);
              transform: rotateX(5deg) translate3d(-2.3em, 48px, 0);
    }
    36% {
      -webkit-transform: rotateX(5deg) translate3d(-0.8em, 45px, 0);
              transform: rotateX(5deg) translate3d(-0.8em, 45px, 0);
    }
    61% {
      -webkit-transform: rotateX(5deg) translate3d(2.8em, 45px, 0);
              transform: rotateX(5deg) translate3d(2.8em, 45px, 0);
    }
  }
}

.page-1 .kv {
  background-color: #fdfaee;
}

/* ==================== 
section-1
====================  */
.page-1 .section-1 {
  background-color: #fdfaee;
  background-image: url(../images/page1-pc/bgIcon-yellow.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  padding: 70px 0;
}

.page-1 .section-1 .title-1 {
  margin-bottom: 50px;
}

.page-1 .section-1 .subtitle-1 {
  margin-bottom: 35px;
}

.page-1 .section-1 .content-1 {
  margin-bottom: 70px;
}

.page-1 .section-1 .title-2 {
  margin-bottom: 35px;
}

@media only screen and (max-width: 768px) {
  .page-1 .section-1 {
    padding: 40px 0 30px 0;
  }
  .page-1 .section-1 .title-1 {
    margin-bottom: 40px;
  }
  .page-1 .section-1 .subtitle-1 {
    margin-bottom: 25px;
  }
  .page-1 .section-1 .content-1 {
    margin-bottom: 40px;
  }
  .page-1 .section-1 .title-2 {
    margin-bottom: 5px;
  }
}

/* ==================== 
section-2
====================  */
.page-1 .section-2 {
  padding: 70px 0 120px;
}

.page-1 .section-2 .title-1 {
  margin-bottom: 25px;
}

.page-1 .section-2 .subtitle-1 {
  margin-bottom: 50px;
}

@media only screen and (max-width: 768px) {
  .page-1 .section-2 {
    padding: 60px 0 40px;
  }
  .page-1 .section-2 .title-1 {
    margin-bottom: 25px;
  }
  .page-1 .section-2 .subtitle-1 {
    margin-bottom: 40px;
  }
}

/* ==================== 
section-3
====================  */
.page-1 .section-3 {
  background-color: #f0f0f0;
  background-image: url(../images/page1-pc/bgIcon-gray.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  padding: 70px 0 150px;
}

.page-1 .section-3 .title-1 {
  margin-bottom: 55px;
}

.page-1 .section-3 .content-1 {
  margin-bottom: 75px;
}

.page-1 .section-3 .note-1 span.li-title {
  display: inline-block;
  background-color: #3a8139;
  color: #fff;
  line-height: 25px;
  padding: 0 10px;
  border-radius: 12px;
  margin-right: 10px;
}

.page-1 .section-3 .note-1 .space {
  display: inline-block;
  height: 4px;
}

@media only screen and (max-width: 768px) {
  .page-1 .section-3 {
    padding: 40px 0 80px;
  }
  .page-1 .section-3 .title-1 {
    margin-bottom: 40px;
  }
  .page-1 .section-3 .content-1 {
    margin-bottom: 75px;
  }
  .page-1 .section-3 .note-1 .space {
    height: 4px;
  }
}

/* ==================== 
note
====================  */
.page-1 .note {
  padding: 85px 0 55px;
  text-align: justify;
}

.page-1 .note .title {
  margin-bottom: 30px;
}

.page-1 .note .content-2 {
  padding-top: 15px;
  font-size: 12px;
}

.page-1 .note .content-2 h5 {
  color: #3a8139;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-1 .note .content-2 li.toggle {
  display: none;
}

.page-1 .note .action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-1 .note .action .toggle-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-1 .note .action .toggle-btn .plus-icon, .page-1 .note .action .toggle-btn .minus-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
}

.page-1 .note .action .toggle-btn .plus-icon {
  background-image: url(../images/plus-icon.svg);
}

.page-1 .note .action .toggle-btn .minus-icon {
  background-image: url(../images/minus-icon.svg);
  display: none;
}

.page-1 .note .action .toggle-btn p {
  display: inline-block;
  margin: 0;
  color: #3a8139;
  font-weight: bold;
  margin-left: 4px;
}

/* ==================== 
footer
====================  */
.footer .menu a {
  font-size: 14px;
  line-height: 20px;
  color: #333333;
}

.footer .menu a:hover {
  color: #00a94f;
}

.footer .text a {
  font-size: 13px;
  line-height: 17px;
  color: #333333;
}

.footer .text a:hover {
  color: #00a94f;
}

.footer .block {
  border-top: 10px solid #00a94f;
}

/* ==================== 
top
====================  */
.top {
  background-color: yellow;
  margin-bottom: 66px;
  margin-right: 20px;
  position: fixed;
  bottom: 0;
  right: 0;
}

.top span {
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(../images/top-sprite.png);
  background-size: cover;
  background-position: left center;
}

.top:hover span {
  background-position: right center;
}
/*# sourceMappingURL=style-1.css.map */