:root {
  --bg-color: #f1f1f3;
  --block-color: #040000;
  --yellow-color: #e1c785;
  --yellow-color2: #cbbd7a;
  --green-color: #184240;
  --light-gray-color: #7d7d7d;
  --dark-gray-color: #4f4f4f;
  --font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  --font-family-serif: "Noto Serif TC";
  --font-family-sans: "Noto Sans TC";
  --font-family-cinzel: "Cinzel";
  --font-family-didot: "Theano Didot";
  --font-family-nunito: "Nunito Sans";
}

html {
  font-size: 24px;
}

@media screen and (max-width: 1400px) {
  html {
    font-size: 21px;
  }
}

@media screen and (max-width: 1200px) {
  html {
    font-size: 18px;
  }
}

@media screen and (max-width: 991px) {
  html {
    font-size: 20px;
  }
}

@media screen and (max-width: 640px) {
  html {
    font-size: 14px;
  }
}

body {
  position: relative;
  z-index: 0;
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--txt-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: #888;
}

body::-webkit-scrollbar-thumb {
  background: #ccc;
}

body::-webkit-scrollbar-thumb:hover {
  background: #fff;
}

h1,
h2,
h3 {
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a,
button {
  -webkit-transition: all 0.3s 0s ease-in;
  -o-transition: all 0.3s 0s ease-in;
  -moz-transition: all 0.3s 0s ease-in;
  transition: all 0.3s 0s ease-in;
  text-decoration: none;
}

.l-wrapper {
  overflow: hidden;
}

h2,
h2>p {
  font-family: var(--font-family-bask);
  font-weight: 400;
  font-size: 3.9rem;
}

@media screen and (max-width: 991px) {

  h2,
  h2>p {
    font-size: 6.9rem;
  }
}

h3 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 0;
}

h3 p {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 0;
}

@media screen and (max-width: 640px) {
  h3 p {
    font-size: 1.7rem;
  }
}

h4 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #2E4C00;
  line-height: 1;
  margin-bottom: 1rem;
}

@media screen and (max-width: 640px) {
  h4 {
    font-size: 1.5rem;
  }
}

h4>p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #2E4C00;
  margin-bottom: 0;
}

@media screen and (max-width: 640px) {
  h4>p {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: .9rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

h5>p {
  font-size: .9rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 0;
}

p {
  font-family: var(--font-family-noto);
}

figure {
  position: relative;
}

figure img {
  display: block;
}

figcaption {
  font-size: .5rem;
  color: #fff;
  position: absolute;
  bottom: 1px;
  right: 7px;
  z-index: 2;
}

.o-0 {
  opacity: 0;
}

.o-1 {
  opacity: 1;
}

.d-n {
  display: none;
}

.d-b {
  display: block;
}

.c-w {
  color: #fff !important;
}

.loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: #fff;
}

.loader::after {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  border: 5px solid #FFF;
  border-bottom-color: #00645D;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: rotation 1s linear infinite;
  -moz-animation: rotation 1s linear infinite;
  -o-animation: rotation 1s linear infinite;
  animation: rotation 1s linear infinite;
  position: absolute;
  top: 40vh;
  left: -webkit-calc(50% - 24px);
  left: -moz-calc(50% - 24px);
  left: calc(50% - 24px);
}

.swiper-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.swiper-wrap .swiper {
  padding-bottom: 60px;
}

@media screen and (max-width: 1400px) {
  .swiper-wrap .swiper {
    padding-bottom: 46px;
  }
}

.swiper-buttons {
  width: 152px;
  position: relative;
}

@media screen and (max-width: 640px) {
  .swiper-buttons {
    width: 122px;
    padding: 0;
    margin: 0;
  }
}

.swiper-button-prev {
  width: 70px;
  height: 30px;
  background: url(../images/icon-arrow-prev.png) no-repeat center;
  -moz-background-size: 70px;
  -o-background-size: 70px;
  background-size: 70px;
  left: 0;
}

@media screen and (max-width: 640px) {
  .swiper-button-prev {
    width: 46px;
    height: 30px;
    -moz-background-size: 46px;
    -o-background-size: 46px;
    background-size: 46px;
  }
}

.swiper-button-prev:hover {
  background-image: url(../images/icon-arrow-prev2.png);
}

.swiper-button-prev:after {
  display: none;
}

.swiper-button-next {
  width: 70px;
  height: 30px;
  background: url(../images/icon-arrow-next.png) no-repeat center;
  -moz-background-size: 70px;
  -o-background-size: 70px;
  background-size: 70px;
  right: 0;
}

@media screen and (max-width: 640px) {
  .swiper-button-next {
    width: 46px;
    height: 30px;
    -moz-background-size: 46px;
    -o-background-size: 46px;
    background-size: 46px;
  }
}

.swiper-button-next:hover {
  background-image: url(../images/icon-arrow-next2.png);
}

.swiper-button-next:after {
  display: none;
}

.swiper-slide {
  position: relative;
}

.swiper-slide img {
  width: 100%;
  display: block;
  position: relative;
}

.swiper-slide p {
  font-size: .5rem;
  color: #fff;
  position: absolute;
  bottom: 1px;
  right: 7px;
  z-index: 2;
}

.swiper-pagination {
  bottom: 50px !important;
}

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border: 1px solid #fff;
  background: transparent;
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

@media screen and (max-width: 640px) {
  .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}

.container {
  position: relative;
  margin: 0 auto;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes rotation {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes rotation {
  0% {
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.main {
  background: url(../images/gray-bg1.png) repeat-y center top;
}

.group-section1 {
  position: relative;
}

.pic-info-1.container {
  width: 1380px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 164px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1400px) {
  .pic-info-1.container {
    width: 1200px;
    padding-top: 150px;
  }
}

@media screen and (max-width: 1200px) {
  .pic-info-1.container {
    width: 950px;
  }
}

@media screen and (max-width: 991px) {
  .pic-info-1.container {
    display: block;
    width: 90%;
  }
}

@media screen and (max-width: 640px) {
  .pic-info-1.container {
    padding-top: 58px;
  }
}

.pic-info-1.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.pic-info-1 .pic-wrap {
  width: -webkit-calc(100% - 493px);
  width: -moz-calc(100% - 493px);
  width: calc(100% - 493px);
}

@media screen and (max-width: 1400px) {
  .pic-info-1 .pic-wrap {
    width: -webkit-calc(100% - 386px);
    width: -moz-calc(100% - 386px);
    width: calc(100% - 386px);
  }
}

@media screen and (max-width: 1200px) {
  .pic-info-1 .pic-wrap {
    width: -webkit-calc(100% - 312px);
    width: -moz-calc(100% - 312px);
    width: calc(100% - 312px);
  }
}

@media screen and (max-width: 991px) {
  .pic-info-1 .pic-wrap {
    width: 100%;
    position: relative;
  }
}

.pic-info-1 .pic-wrap>p {
  font-size: 1.3rem;
  font-family: var(--font-family-nunito);
  color: #79976B;
  line-height: 1;
  margin-bottom: .5rem;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .pic-info-1 .pic-wrap>p {
    font-size: .8rem;
    font-weight: 500;
  }
}

@media screen and (max-width: 640px) {
  .pic-info-1 .pic-wrap>p {
    font-size: .7rem;
  }
}

.pic-info-1 .pic-wrap figure {
  position: relative;
  z-index: 2;
}

.pic-info-1 .pic-wrap figcaption {
  right: initial;
  left: 7px;
}

.pic-info-1 .pic-wrap.both {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.pic-info-1 .pic-wrap.both figure {
  width: 50%;
}

.pic-info-1 .pic-wrap .jingan {
  height: 275px;
  display: block;
  position: absolute;
  bottom: -275px;
  left: 0;
}

@media screen and (max-width: 1200px) {
  .pic-info-1 .pic-wrap .jingan {
    height: 200px;
    bottom: -200px;
  }
}

@media screen and (max-width: 640px) {
  .pic-info-1 .pic-wrap .jingan {
    height: 90px;
    bottom: -90px;
  }
}

.pic-info-1 .info-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 991px) {
  .pic-info-1 .info-wrap {
    width: 280px;
    padding-top: 2rem;
    margin-left: auto;
    margin-right: 0;
  }
}

.pic-info-1 .info-wrap>p {
  font-weight: 300;
  font-size: .7rem;
  line-height: 1.7;
  letter-spacing: .5px;
  margin-bottom: 0;
  color: #000;
}

@media screen and (max-width: 640px) {
  .pic-info-1 .info-wrap>p {
    font-size: .6rem;
  }
}

.urban {
  width: 45%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background: url(../images/green-bg.png) repeat right top;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding-top: 36px;
}

@media screen and (max-width: 1400px) {
  .urban {
    width: 42%;
  }
}

@media screen and (max-width: 991px) {
  .urban {
    width: 50%;
    height: -webkit-calc(100% - 357px);
    height: -moz-calc(100% - 357px);
    height: calc(100% - 357px);
    padding-top: 20px;
  }
}

@media screen and (max-width: 640px) {
  .urban {
    height: -webkit-calc(100% - 218px);
    height: -moz-calc(100% - 218px);
    height: calc(100% - 218px);
  }
}

.urban img {
  display: block;
  mix-blend-mode: overlay;
  opacity: .6;
}

.movefreely {
  width: 700px;
  position: absolute;
  left: 0;
  bottom: -2px;
  z-index: 1;
  mix-blend-mode: multiply;
}

@media screen and (max-width: 1400px) {
  .movefreely {
    width: 600px;
  }
}

@media screen and (max-width: 1200px) {
  .movefreely {
    width: 490px;
  }
}

@media screen and (max-width: 640px) {
  .movefreely {
    width: 85%;
  }
}

#section-kv {
  height: 100vh;
  min-height: 800px;
  background: url(../images/kv-bg.png) no-repeat center bottom;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
  padding-top: 31vh;
}

@media screen and (max-width: 991px) {
  #section-kv {
    padding-top: 39vh;
  }
}

@media screen and (max-width: 640px) {
  #section-kv {
    background-image: url(../images/kv-bg-m.png);
    height: -webkit-calc(100vh - 100px);
    height: -moz-calc(100vh - 100px);
    height: calc(100vh - 100px);
    min-height: initial;
  }
}

#section-kv .title {
  display: block;
  width: 900px;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  #section-kv .title {
    width: 790px;
  }
}

@media screen and (max-width: 991px) {
  #section-kv .title {
    width: 85vw;
    max-width: 790px;
  }
}

#section-kv .subtitle {
  display: block;
  width: 569px;
  margin: 4vh auto 0;
  mix-blend-mode: overlay;
}

@media screen and (max-width: 1200px) {
  #section-kv .subtitle {
    width: 475px;
  }
}

@media screen and (max-width: 991px) {
  #section-kv .subtitle {
    width: 54vw;
    max-width: 475px;
  }
}

@media screen and (max-width: 640px) {
  #section-kv .subtitle {
    margin-top: 1rem;
  }
}

#section-kv h1 {
  display: none;
}

#section-1 {
  position: relative;
  z-index: 2;
}

#section-1 .info-wrap {
  width: 320px;
  margin-left: 92px;
}

@media screen and (max-width: 1400px) {
  #section-1 .info-wrap {
    width: 285px;
    margin-left: 50px;
  }
}

@media screen and (max-width: 1200px) {
  #section-1 .info-wrap {
    width: 241px;
    margin-left: 50px;
  }
}

@media screen and (max-width: 991px) {
  #section-1 .info-wrap {
    width: 278px;
    margin: 0 0 0 auto;
  }
}

@media screen and (max-width: 640px) {
  #section-1 .info-wrap {
    width: 45%;
  }
}

#section-1 .info-wrap h3 {
  width: 100%;
  margin-bottom: 1rem;
}

#section-1 .info-wrap h3 p {
  line-height: 1.3;
  margin-bottom: 0;
  color: #fff;
  position: relative;
}

#section-1 .info-wrap h3 p:first-of-type::after {
  content: "";
  display: block;
  width: 91px;
  height: 1px;
  background-color: #ffffff99;
  position: absolute;
  top: 54%;
  right: 5px;
  z-index: 1;
}

@media screen and (max-width: 1200px) {
  #section-1 .info-wrap h3 p:first-of-type::after {
    width: 70px;
  }
}

@media screen and (max-width: 991px) {
  #section-1 .info-wrap h3 p:first-of-type::after {
    width: 85px;
    right: 12px;
  }
}

@media screen and (max-width: 640px) {
  #section-1 .info-wrap h3 p:first-of-type::after {
    width: 47px;
  }
}

#section-1 .info-wrap>p {
  width: 100%;
  color: #fff !important;
}

#section-2 {
  position: relative;
  z-index: 2;
}

#section-2 .container {
  padding-top: 100px;
  padding-bottom: 135px;
}

@media screen and (max-width: 1200px) {
  #section-2 .container {
    padding-top: 80px;
    padding-bottom: 90px;
  }
}

@media screen and (max-width: 991px) {
  #section-2 .container {
    padding-top: 45px;
    padding-bottom: 120px;
  }
}

@media screen and (max-width: 640px) {
  #section-2 .container {
    padding-top: 25px;
    padding-bottom: 65px;
  }
}

#section-2 .pic-wrap {
  width: -webkit-calc(100% - 558px);
  width: -moz-calc(100% - 558px);
  width: calc(100% - 558px);
}

@media screen and (max-width: 1400px) {
  #section-2 .pic-wrap {
    width: -webkit-calc(100% - 434px);
    width: -moz-calc(100% - 434px);
    width: calc(100% - 434px);
  }
}

@media screen and (max-width: 1200px) {
  #section-2 .pic-wrap {
    width: -webkit-calc(100% - 364px);
    width: -moz-calc(100% - 364px);
    width: calc(100% - 364px);
  }
}

@media screen and (max-width: 991px) {
  #section-2 .pic-wrap {
    width: 100%;
  }
}

#section-2 .pic-wrap figcaption {
  left: initial;
  right: 7px;
}

#section-2 .info-wrap {
  width: 480px;
  padding-top: 180px;
  padding-left: 0;
}

@media screen and (max-width: 1400px) {
  #section-2 .info-wrap {
    width: 360px;
  }
}

@media screen and (max-width: 1200px) {
  #section-2 .info-wrap {
    width: 320px;
    padding-top: 124px;
  }
}

@media screen and (max-width: 991px) {
  #section-2 .info-wrap {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 80px;
  }
}

@media screen and (max-width: 640px) {
  #section-2 .info-wrap {
    padding-top: 47px;
  }
}

#section-2 .info-wrap>p {
  width: 350px;
}

@media screen and (max-width: 1400px) {
  #section-2 .info-wrap>p {
    width: 310px;
  }
}

@media screen and (max-width: 1200px) {
  #section-2 .info-wrap>p {
    width: 266px;
  }
}

@media screen and (max-width: 991px) {
  #section-2 .info-wrap>p {
    width: 425px;
  }
}

@media screen and (max-width: 640px) {
  #section-2 .info-wrap>p {
    width: 70%;
  }
}

#section-3 {
  position: relative;
  z-index: 2;
}

#section-3::before {
  content: "";
  display: block;
  width: 700px;
  height: 100%;
  background: url(../images/green-bg2.png) repeat-y left top;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 1400px) {
  #section-3::before {
    width: 600px;
  }
}

@media screen and (max-width: 1200px) {
  #section-3::before {
    width: 492px;
  }
}

@media screen and (max-width: 991px) {
  #section-3::before {
    height: -webkit-calc(100% - 364px);
    height: -moz-calc(100% - 364px);
    height: calc(100% - 364px);
  }
}

@media screen and (max-width: 640px) {
  #section-3::before {
    width: 85%;
    height: -webkit-calc(100% - 230px);
    height: -moz-calc(100% - 230px);
    height: calc(100% - 230px);
  }
}

#section-3 .container {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media screen and (max-width: 1400px) {
  #section-3 .container {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 991px) {
  #section-3 .container {
    padding-top: 39px;
    padding-bottom: 149px;
  }
}

@media screen and (max-width: 640px) {
  #section-3 .container {
    padding-bottom: 88px;
  }
}

#section-3 .pic-wrap {
  width: -webkit-calc(100% - 620px);
  width: -moz-calc(100% - 620px);
  width: calc(100% - 620px);
}

@media screen and (max-width: 1400px) {
  #section-3 .pic-wrap {
    width: -webkit-calc(100% - 433px);
    width: -moz-calc(100% - 433px);
    width: calc(100% - 433px);
  }
}

@media screen and (max-width: 1200px) {
  #section-3 .pic-wrap {
    width: -webkit-calc(100% - 394px);
    width: -moz-calc(100% - 394px);
    width: calc(100% - 394px);
  }
}

@media screen and (max-width: 991px) {
  #section-3 .pic-wrap {
    width: 100%;
  }
}

#section-3 .info-wrap {
  width: 360px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 115px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 1400px) {
  #section-3 .info-wrap {
    width: 316px;
    margin-left: 60px;
  }
}

@media screen and (max-width: 1200px) {
  #section-3 .info-wrap {
    width: 271px;
    margin-left: 60px;
  }
}

@media screen and (max-width: 991px) {
  #section-3 .info-wrap {
    width: 427px;
    padding-top: 90px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 640px) {
  #section-3 .info-wrap {
    width: 70%;
    padding-top: 54px;
  }
}

#section-3 .info-wrap>p {
  text-align: justify;
}

#section-3 .livefully {
  width: 600px;
  display: block;
  position: absolute;
  bottom: 0;
  left: -webkit-calc(100% - 620px);
  left: -moz-calc(100% - 620px);
  left: calc(100% - 620px);
}

@media screen and (max-width: 1400px) {
  #section-3 .livefully {
    width: 453px;
    left: -webkit-calc(100% - 433px);
    left: -moz-calc(100% - 433px);
    left: calc(100% - 433px);
  }
}

@media screen and (max-width: 1200px) {
  #section-3 .livefully {
    width: 418px;
    left: -webkit-calc(100% - 394px);
    left: -moz-calc(100% - 394px);
    left: calc(100% - 394px);
  }
}

@media screen and (max-width: 991px) {
  #section-3 .livefully {
    left: initial;
    right: -5.5%;
  }
}

@media screen and (max-width: 991px) {
  #section-3 .livefully {
    width: 80%;
  }
}

#section-4 {
  position: relative;
}

#section-4:before {
  content: "";
  display: block;
  width: 100%;
  height: 8rem;
  background: url(../images/green-bg3.png) repeat center top;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  #section-4:before {
    top: -1px;
    bottom: initial;
  }
}

#section-4 .container {
  padding-top: 3rem;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  #section-4 .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    width: 90%;
  }
}

#section-4 .info>p {
  width: 960px;
  font-weight: 300;
  font-size: .7rem;
  line-height: 1.7;
  letter-spacing: .5px;
  margin: 0 auto 1.5rem;
  color: #000;
  text-align: center;
}

@media screen and (max-width: 991px) {
  #section-4 .info>p {
    width: 425px;
    text-align: justify;
  }
}

@media screen and (max-width: 640px) {
  #section-4 .info>p {
    width: 70%;
  }
}

#section-4 .info>p span {
  display: block;
}

@media screen and (max-width: 991px) {
  #section-4 .info>p span {
    display: inline;
  }
}

#section-4 h4 {
  text-align: center;
}

#section-4 h5 {
  text-align: center;
  margin-bottom: 1rem;
}

#section-4 .en {
  font-size: 1.3rem;
  font-family: var(--font-family-nunito);
  color: #79976B;
  line-height: 1;
  margin-bottom: 2rem;
  text-align: center;
}

@media screen and (max-width: 640px) {
  #section-4 .en {
    font-size: 1.1rem;
    margin-bottom: 1.7rem;
  }
}

#section-4 .swiper-wrap {
  width: 1260px;
  margin: 0 auto;
}

@media screen and (max-width: 1400px) {
  #section-4 .swiper-wrap {
    width: 1160px;
  }
}

@media screen and (max-width: 1200px) {
  #section-4 .swiper-wrap {
    width: 900px;
  }
}

@media screen and (max-width: 991px) {
  #section-4 .swiper-wrap {
    padding-top: 0;
    width: 100%;
  }
}

#section-4 .swiper-wrap .swiper {
  padding-bottom: 50px;
}

#section-5 {
  position: relative;
  z-index: 2;
}

#section-5 .container {
  padding-top: 70px;
}

@media screen and (max-width: 991px) {
  #section-5 .container {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  #section-5 .container {
    padding-top: 50px;
  }
}

#section-5 .pic-wrap {
  width: -webkit-calc(100% - 558px);
  width: -moz-calc(100% - 558px);
  width: calc(100% - 558px);
  position: relative;
  padding-bottom: 120px;
}

@media screen and (max-width: 1400px) {
  #section-5 .pic-wrap {
    width: -webkit-calc(100% - 435px);
    width: -moz-calc(100% - 435px);
    width: calc(100% - 435px);
  }
}

@media screen and (max-width: 1200px) {
  #section-5 .pic-wrap {
    width: -webkit-calc(100% - 364px);
    width: -moz-calc(100% - 364px);
    width: calc(100% - 364px);
    padding-bottom: 95px;
  }
}

@media screen and (max-width: 991px) {
  #section-5 .pic-wrap {
    width: 100%;
    padding-bottom: 68px;
  }
}

@media screen and (max-width: 640px) {
  #section-5 .pic-wrap {
    padding-bottom: 45px;
  }
}

#section-5 .pic-wrap figcaption {
  left: initial;
  right: 7px;
}

#section-5 .info-wrap {
  width: 480px;
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 120px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 1400px) {
  #section-5 .info-wrap {
    width: 400px;
  }
}

@media screen and (max-width: 1200px) {
  #section-5 .info-wrap {
    width: 330px;
    padding-bottom: 95px;
  }
}

@media screen and (max-width: 991px) {
  #section-5 .info-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 640px) {
  #section-5 .info-wrap {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 2rem;
  }
}

@media screen and (max-width: 991px) {
  #section-5 .info-wrap .text {
    width: 270px;
    padding-top: .5rem;
  }
}

@media screen and (max-width: 640px) {
  #section-5 .info-wrap .text {
    width: 49%;
    padding-top: 0;
  }
}

#section-5 .info-wrap .text>p {
  width: 366px;
  font-weight: 300;
  font-size: .7rem;
  line-height: 1.7;
  letter-spacing: .5px;
  text-align: justify;
  margin-bottom: 1.5rem;
  color: #000;
}

@media screen and (max-width: 1400px) {
  #section-5 .info-wrap .text>p {
    width: 325px;
  }
}

@media screen and (max-width: 1200px) {
  #section-5 .info-wrap .text>p {
    width: 280px;
  }
}

@media screen and (max-width: 991px) {
  #section-5 .info-wrap .text>p {
    width: 260px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 640px) {
  #section-5 .info-wrap .text>p {
    width: 100%;
    line-height: 1.4;
  }
}

@media screen and (max-width: 640px) {
  #section-5 .info-wrap h4 {
    margin-bottom: 0.5rem;
  }
}

@media screen and (max-width: 991px) {
  #section-5 .info-wrap h4 p {
    width: 156px;
    margin: 0 auto;
    line-height: 1.2;
  }
}

@media screen and (max-width: 640px) {
  #section-5 .info-wrap h4 p {
    width: 87px;
    margin: 0 auto;
    line-height: 1.2;
  }
}

#section-5 .info-wrap h5 {
  margin-left: 1rem;
}

@media screen and (max-width: 991px) {
  #section-5 .info-wrap h5 {
    margin-left: 0;
  }
}

@media screen and (max-width: 640px) {
  #section-5 .info-wrap h5 {
    font-size: .8rem 11.2px;
    margin-left: 0;
    margin-bottom: .5rem;
    text-align: center;
  }
}

#section-5 .info-wrap img {
  width: 365px;
}

@media screen and (max-width: 1400px) {
  #section-5 .info-wrap img {
    width: 325px;
  }
}

@media screen and (max-width: 1200px) {
  #section-5 .info-wrap img {
    width: 280px;
  }
}

@media screen and (max-width: 991px) {
  #section-5 .info-wrap img {
    width: 43%;
    margin-right: 36px;
  }
}

@media screen and (max-width: 640px) {
  #section-5 .info-wrap img {
    width: 45%;
    margin-right: 5%;
  }
}

#section-5 .en {
  font-size: 1.7rem;
  font-family: var(--font-family-nunito);
  color: #79976B;
  line-height: 1;
  margin-bottom: 0;
  position: absolute;
  bottom: 1.8rem;
  left: 0;
}

@media screen and (max-width: 991px) {
  #section-5 .en {
    left: 0;
    right: 0;
    text-align: center;
    bottom: 1rem;
  }
}

@media screen and (max-width: 640px) {
  #section-5 .en {
    font-size: 1.3rem;
  }
}

#section-6 .top-title {
  background: url(../images/s4-title-bg.png) repeat center top;
  padding: 2.5rem 0 1.2rem;
}

@media screen and (max-width: 640px) {
  #section-6 .top-title {
    padding: 1.5rem 0 1.8rem;
  }
}

#section-6 .top-title h2 {
  font-size: 1.5rem;
  letter-spacing: 10px;
  color: #fff;
  text-align: center;
  margin-bottom: .5rem;
  padding-left: .7rem;
}

@media screen and (max-width: 640px) {
  #section-6 .top-title h2 {
    font-size: 1.1rem;
    letter-spacing: 4px;
  }
}

#section-6 .top-title>p {
  font-size: .7rem;
  font-weight: 300;
  letter-spacing: .5px;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}

@media screen and (max-width: 640px) {
  #section-6 .top-title>p {
    width: 70%;
    margin: 0 auto;
    font-size: .6rem;
    letter-spacing: -1px;
  }
}

#section-6 .top-title img {
  width: 636px;
  display: block;
  margin: 0 auto 2.5rem;
}

@media screen and (max-width: 1400px) {
  #section-6 .top-title img {
    width: 575px;
  }
}

@media screen and (max-width: 1200px) {
  #section-6 .top-title img {
    width: 524px;
  }
}

@media screen and (max-width: 640px) {
  #section-6 .top-title img {
    width: 70%;
    margin-bottom: .5rem;
  }
}

#section-6 .container {
  width: 1250px;
  padding: 3rem 0 1rem;
}

@media screen and (max-width: 1400px) {
  #section-6 .container {
    width: 1150px;
  }
}

@media screen and (max-width: 1200px) {
  #section-6 .container {
    width: 990px;
  }
}

@media screen and (max-width: 991px) {
  #section-6 .container {
    width: 85%;
    padding-top: 0;
  }
}

#section-6 .content-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
}

@media screen and (max-width: 991px) {
  #section-6 .content-wrap {
    margin-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#section-6 .content-wrap .info-wrap {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  #section-6 .content-wrap .info-wrap {
    width: 100%;
  }
}

#section-6 .content-wrap .info-wrap .logo {
  height: -webkit-calc(50% - 1px);
  height: -moz-calc(50% - 1px);
  height: calc(50% - 1px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 1px solid #2E4C00;
}

@media screen and (max-width: 991px) {
  #section-6 .content-wrap .info-wrap .logo {
    height: initial;
    padding: 2.5rem 0;
  }
}

#section-6 .content-wrap .info-wrap .logo img {
  width: 340px;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  #section-6 .content-wrap .info-wrap .logo img {
    width: 270px;
  }
}

@media screen and (max-width: 991px) {
  #section-6 .content-wrap .info-wrap .logo img {
    width: 42%;
  }
}

@media screen and (max-width: 640px) {
  #section-6 .content-wrap .info-wrap .logo img {
    width: 50%;
  }
}

#section-6 .content-wrap .info-wrap .text {
  height: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  #section-6 .content-wrap .info-wrap .text {
    height: initial;
    padding: 2.5rem 0;
  }
}

#section-6 .content-wrap .info-wrap .text h4 {
  font-size: 1.55rem;
  text-align: center;
  letter-spacing: 2px;
}

@media screen and (max-width: 640px) {
  #section-6 .content-wrap .info-wrap .text h4 {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}

#section-6 .content-wrap .info-wrap .text>p {
  font-size: .7rem;
  margin: 0 auto;
  text-align: justify;
  font-weight: 400;
}

#section-6 .content-wrap .pic-wrap {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  #section-6 .content-wrap .pic-wrap {
    width: 100%;
  }
}

#section-6 .content-wrap .pic-wrap>figure {
  width: -webkit-calc(50% - 7px);
  width: -moz-calc(50% - 7px);
  width: calc(50% - 7px);
  height: 100%;
}

#section-6 .content-wrap .pic-wrap figure {
  position: relative;
}

#section-6 .content-wrap .pic-wrap figure img {
  width: 100%;
}

#section-6 .content-wrap .pic-wrap figcaption {
  display: flex;
  width: 97%;
  left: 0;
  right: 0;
  margin: 0 auto;
  justify-content: space-between;
}

#section-6 .content-wrap .pic-wrap .two-pic {
  width: -webkit-calc(50% - 7px);
  width: -moz-calc(50% - 7px);
  width: calc(50% - 7px);
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

@media screen and (max-width: 991px) {
  #section-6 .content-wrap .pic-wrap .two-pic {
    height: initial;
  }
}

#section-6 .content-wrap.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 991px) {
  #section-6 .content-wrap.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#section-6 .content-wrap.reverse .pic-wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

#section-6 .content-wrap:nth-of-type(1) .text p {
  width: 476px;
}

@media screen and (max-width: 1400px) {
  #section-6 .content-wrap:nth-of-type(1) .text p {
    width: 418px;
  }
}

@media screen and (max-width: 1200px) {
  #section-6 .content-wrap:nth-of-type(1) .text p {
    width: 358px;
  }
}

@media screen and (max-width: 991px) {
  #section-6 .content-wrap:nth-of-type(1) .text p {
    width: 80%;
  }
}

#section-6 .content-wrap:nth-of-type(2) .text p {
  width: 540px;
}

@media screen and (max-width: 1400px) {
  #section-6 .content-wrap:nth-of-type(2) .text p {
    width: 476px;
  }
}

@media screen and (max-width: 1200px) {
  #section-6 .content-wrap:nth-of-type(2) .text p {
    width: 404px;
  }
}

@media screen and (max-width: 991px) {
  #section-6 .content-wrap:nth-of-type(2) .text p {
    width: 80%;
  }
}

@media screen and (max-width: 640px) {
  #section-6 .content-wrap:nth-of-type(2) .text p {
    width: 85%;
  }
}

#section-6 .content-wrap:nth-of-type(3) .text p {
  width: 540px;
}

@media screen and (max-width: 1400px) {
  #section-6 .content-wrap:nth-of-type(3) .text p {
    width: 476px;
  }
}

@media screen and (max-width: 1200px) {
  #section-6 .content-wrap:nth-of-type(3) .text p {
    width: 412px;
  }
}

@media screen and (max-width: 991px) {
  #section-6 .content-wrap:nth-of-type(3) .text p {
    width: 80%;
  }
}

@media screen and (max-width: 640px) {
  #section-6 .content-wrap:nth-of-type(3) .text p {
    width: 85%;
  }
}

#section-7 {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background-color: #79976B;
}

@media screen and (max-width: 991px) {
  #section-7 {
    padding-top: 3rem;
  }
}

@media screen and (max-width: 640px) {
  #section-7 {
    padding-bottom: 4rem;
  }
}

#section-7 .container {
  width: 1200px;
}

@media screen and (max-width: 1400px) {
  #section-7 .container {
    width: 1100px;
  }
}

@media screen and (max-width: 1200px) {
  #section-7 .container {
    width: 900px;
  }
}

@media screen and (max-width: 991px) {
  #section-7 .container {
    width: 100%;
  }
}

#section-7 .title {
  width: 380px;
  display: block;
  margin: 0 auto 4.5rem;
}

@media screen and (max-width: 1200px) {
  #section-7 .title {
    width: 300px;
  }
}

@media screen and (max-width: 991px) {
  #section-7 .title {
    width: 200px;
  }
}

#section-7 .info-wrap {
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  #section-7 .info-wrap {
    width: 80%;
  }
}

#section-7 .info-wrap .text h5 {
  font-size: .85rem;
  font-weight: 300;
  letter-spacing: .8rem;
  line-height: 1;
  color: #fff;
  margin-bottom: 1rem;
  text-align: center;
}

#section-7 .info-wrap .text p {
  font-size: .6rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: .5rem;
  text-align: center;
}

#section-7 .info-wrap .text p span {
  font-size: .45rem;
}

#section-7 .info-wrap .maps {
  margin-bottom: 3rem;
}

#section-7 .info-wrap .maps iframe {
  width: 100%;
  height: 410px;
}

@media screen and (max-width: 991px) {
  #section-7 .info-wrap .maps iframe {
    height: 50vw;
  }
}

#section-7 .form-wrap {
  width: 750px;
  margin: 4.5rem auto 0;
}

@media screen and (max-width: 991px) {
  #section-7 .form-wrap {
    width: 80%;
  }
}

@media screen and (max-width: 640px) {
  #section-7 .form-wrap {
    width: 90%;
  }
}

#section-7 .form-wrap .control {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 auto;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
}

@media screen and (max-width: 1200px) {
  #section-7 .form-wrap .control {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  #section-7 .form-wrap .control {
    width: 100%;
    margin-bottom: 0;
  }
}

#section-7 .form-wrap .control>* {
  width: -webkit-calc(50% - 2rem);
  width: -moz-calc(50% - 2rem);
  width: calc(50% - 2rem);
  margin: 0 1% 1.7rem;
}

@media screen and (max-width: 991px) {
  #section-7 .form-wrap .control>* {
    width: 100%;
  }
}

#section-7 .form-wrap h2 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 16px;
  text-align: center;
  color: #fff;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 991px) {
  #section-7 .form-wrap form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

#section-7 .form-wrap input[type="text"],
#section-7 .form-wrap input[type="tel"],
#section-7 .form-wrap input[type="email"] {
  width: 27%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  padding: 0 10px 0;
  border: solid 1px #fff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background-color: transparent;
  font-size: .6rem;
  text-align: left;
  color: #fff;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#section-7 .form-wrap input[type="text"]:focus,
#section-7 .form-wrap input[type="tel"]:focus,
#section-7 .form-wrap input[type="email"]:focus {
  outline: none;
}

@media screen and (max-width: 640px) {

  #section-7 .form-wrap input[type="text"],
  #section-7 .form-wrap input[type="tel"],
  #section-7 .form-wrap input[type="email"] {
    height: 30px;
  }
}

#section-7 .form-wrap input[type="text"]::-webkit-input-placeholder,
#section-7 .form-wrap input[type="tel"]::-webkit-input-placeholder,
#section-7 .form-wrap input[type="email"]::-webkit-input-placeholder {
  color: #fff;
}

#section-7 .form-wrap input[type="text"]:-moz-placeholder,
#section-7 .form-wrap input[type="tel"]:-moz-placeholder,
#section-7 .form-wrap input[type="email"]:-moz-placeholder {
  color: #fff;
}

#section-7 .form-wrap input[type="text"]::-moz-placeholder,
#section-7 .form-wrap input[type="tel"]::-moz-placeholder,
#section-7 .form-wrap input[type="email"]::-moz-placeholder {
  color: #fff;
}

#section-7 .form-wrap input[type="text"]:-ms-input-placeholder,
#section-7 .form-wrap input[type="tel"]:-ms-input-placeholder,
#section-7 .form-wrap input[type="email"]:-ms-input-placeholder {
  color: #fff;
}

#section-7 .form-wrap input[type="text"]::-ms-input-placeholder,
#section-7 .form-wrap input[type="tel"]::-ms-input-placeholder,
#section-7 .form-wrap input[type="email"]::-ms-input-placeholder {
  color: #fff;
}

#section-7 .form-wrap input[type="text"]::placeholder,
#section-7 .form-wrap input[type="tel"]::placeholder,
#section-7 .form-wrap input[type="email"]::placeholder {
  color: #fff;
}

#section-7 .form-wrap input[type="button"] {
  width: 11%;
  height: 40px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background-color: #fff;
  font-size: .5rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0;
  text-align: center;
  color: #79976b;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}

@media screen and (max-width: 640px) {
  #section-7 .form-wrap input[type="button"] {
    height: 30px;
    font-size: .4rem;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
  }
}

#section-7 .form-wrap input[type="button"]:hover {
  cursor: pointer;
}

#section-7 .form-wrap input[type="submit"] {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  margin: 0 auto;
  padding: 0 20px;
  border: 0;
  background-color: #fff;
  font-size: .5rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0;
  text-align: center;
  color: #79976b;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}

@media screen and (max-width: 640px) {
  #section-7 .form-wrap input[type="submit"] {
    height: 30px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
  }
}

#section-7 .form-wrap input[type="submit"]:hover {
  cursor: pointer;
}

#section-7 .form-wrap select {
  width: 48.1%;
  height: 40px;
  margin: 0;
  padding: 0 30px 0 23px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  border: solid 1px #fff;
  font-family: 'Noto Sans TC';
  font-size: .6rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.24px;
  text-align: left;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: url(../images/icon-select-down.svg) no-repeat -webkit-calc(100% - 10px) center;
  background: url(../images/icon-select-down.svg) no-repeat -moz-calc(100% - 10px) center;
  background: url(../images/icon-select-down.svg) no-repeat calc(100% - 10px) center;
  -moz-background-size: 10px;
  -o-background-size: 10px;
  background-size: 10px;
  background-color: transparent;
  color: #fff;
}

@media screen and (max-width: 640px) {
  #section-7 .form-wrap select {
    height: 30px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
  }
}

#section-7 .form-wrap select:nth-of-type(2) {
  margin-left: 3%;
}

#section-7 .form-wrap select option {
  background-color: #fff;
  color: #333;
}

#section-7 .form-wrap select.active {
  color: #333;
}

#section-7 .form-wrap select.active option {
  color: #333;
}

#section-7 .form-wrap select.slt-county {
  width: -webkit-calc(27% - 8px);
  width: -moz-calc(27% - 8px);
  width: calc(27% - 8px);
  margin-right: 16px;
}

@media screen and (max-width: 991px) {
  #section-7 .form-wrap select.slt-county {
    width: 100%;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 640px) {
  #section-7 .form-wrap select.slt-county {
    font-size: 14px;
  }
}

#section-7 .form-wrap select.slt-district {
  width: -webkit-calc(27% - 8px);
  width: -moz-calc(27% - 8px);
  width: calc(27% - 8px);
}

@media screen and (max-width: 991px) {
  #section-7 .form-wrap select.slt-district {
    width: 100%;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 640px) {
  #section-7 .form-wrap select.slt-district {
    font-size: 14px;
  }
}

#section-7 .form-wrap .txt-code {
  margin-right: 0;
}

#section-7 .form-wrap .txt-email {
  width: 43% !important;
}
@media screen and (max-width: 640px) {
  #section-7 .form-wrap .txt-email {
    width: 100% !important;
  }
}

#section-7 .form-wrap .control-group {
  width: 100%;
  margin-top: 1.5rem;
}

@media screen and (max-width: 640px) {
  #section-7 .form-wrap .control-group {
    width: 100%;
    margin: 0 0 1rem;
  }
}

#section-7 .form-wrap .twzipcode {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 53%;
  /* width: 100%; */
}
@media screen and (max-width: 640px) {
  #section-7 .form-wrap .twzipcode {
    width: 100%;
  }
}

#section-7 .form-wrap .privacy {
  margin: 0 auto 1rem;
}

@media screen and (max-width: 640px) {
  #section-7 .form-wrap .privacy input {
    margin: 0 5px 0 0;
    position: relative;
    top: 3px;
  }
}

#section-7 .form-wrap .privacy p {
  font-family: var(--font-family-serif);
  font-size: .44rem;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: 0.3px;
  text-align: center;
  color: #fff;
  margin-bottom: .8rem;
}

@media screen and (max-width: 991px) {
  #section-7 .form-wrap .privacy p {
    font-size: .38rem;
  }
}

@media screen and (max-width: 640px) {
  #section-7 .form-wrap .privacy p {
    font-size: .5rem;
    text-align: center;
  }

  #section-7 .form-wrap .privacy p:first-of-type {
    margin-bottom: 1rem;
  }
}

#section-7 .form-wrap .privacy a {
  display: inline-block;
  font-size: .44rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #fff;
}

@media screen and (max-width: 991px) {
  #section-7 .form-wrap .privacy a {
    font-size: .38rem;
  }
}

@media screen and (max-width: 640px) {
  #section-7 .form-wrap .privacy a {
    font-size: .5rem;
  }
}

/*# sourceMappingURL=style.css.map */