: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-cheryl: "cheryl-sans";
}

html {
    font-size: 16px;
}

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;
}

@media (min-width: 992px) {
     :root {
        --border-radius: 100px;
        --sec-inner-left-space: 10%;
        --sec-inner-y-space: 100px;
    }
    html {
        font-size: 16px;
    }
}

@media (min-width: 1400px) {
    html {
        font-size: 18px;
    }
}

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,
h3>p {
    font-family: var(--font-family-swei);
    font-weight: 600;
    font-size: 3.3rem;
    line-height: 1;
}

h4,
h4>p {
    font-family: var(--font-family-w9);
    font-weight: 400;
    font-size: 2.7rem;
    line-height: 1;
}

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

figure {
    position: relative;
}

figcaption {
    font-size: 0.6rem;
    color: #ffffffe8;
    position: absolute;
    bottom: 4px;
    right: 7px;
    z-index: 2;
    font-weight: 300;
}

@media screen and (max-width: 640px) {
    figcaption {
        font-size: .6rem;
    }
}

.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: #D2E0DD;
    -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%;
}

.swiper-button-wrap {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.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-right.svg) no-repeat center;
    -moz-background-size: 70px;
    -o-background-size: 70px;
    background-size: 70px;
    position: relative;
    margin: 0 auto;
    top: initial;
    left: initial;
    right: initial;
}

@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:after {
    display: none;
}

.swiper-slide {
    position: relative;
}

.text-wrap {
    position: relative;
    margin-top: 7rem;
}

@media screen and (max-width: 1200px) {
    .text-wrap {
        margin-top: 3rem;
    }
}

@media screen and (max-width: 991px) {
    .text-wrap {
        margin-top: 0;
    }
}

.text-wrap h3 {
    font-size: 1.3rem;
    font-family: var(--font-family-cheryl);
    line-height: 1.4;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 1rem;
}

@media screen and (max-width: 640px) {
    .text-wrap h3 {
        font-size: 1.2rem;
    }
}

.text-wrap h4 {
    text-align: center;
}

.text-wrap h4 p {
    font-size: 1.45rem;
    font-family: var(--font-family-serif);
    line-height: 1.5;
}

@media screen and (max-width: 991px) {
    .text-wrap h4 p {
        font-size: 1.2rem;
    }
}

.text-wrap>p {
    font-family: var(--font-family-serif);
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
}

@media screen and (max-width: 640px) {
    .text-wrap>p {
        font-size: .9rem;
    }
}

.text-wrap>p.en,
.text-wrap>p.ch {
    font-size: 1.3rem;
    color: #005631;
    letter-spacing: 2px;
}

@media screen and (max-width: 640px) {
    .text-wrap>p.en,
    .text-wrap>p.ch {
        font-size: 1.1rem;
    }
}

.text-wrap>p.en {
    font-family: var(--font-family-cheryl);
}

.text-wrap .line {
    margin-bottom: 3rem;
    position: relative;
}

.text-wrap .line::after {
    content: "";
    display: block;
    width: 1px;
    height: 2rem;
    background: #005631;
    position: absolute;
    left: 50%;
    bottom: -2.5rem;
    opacity: .8;
}

.slogan {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

@media screen and (max-width: 991px) {
    .slogan {
        margin: 0 auto;
    }
}

.slogan p {
    font-family: var(--font-family-serif);
    font-size: 1.8rem;
    line-height: 1.6;
    letter-spacing: .35rem;
    white-space: nowrap;
}

@media screen and (max-width: 991px) {
    .slogan p {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 640px) {
    .slogan p {
        font-size: 1.2rem;
    }
}

.slogan p:nth-of-type(2) {
    margin-top: 6.6rem;
}

.slogan p i {
    content: "";
    display: inline-block;
    height: .9rem;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.overlay p {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 4px;
}

@-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);
    }
}

#section-kv {
    position: relative;
}

#section-kv img.bg {
    display: block;
    width: 100%;
}

@media screen and (max-width: 991px) {
    #section-kv img.bg.mob {
        display: none !important;
    }
    #section-kv img.bg.dsk {
        display: block !important;
    }
}

@media screen and (max-width: 640px) {
    #section-kv img.bg.mob {
        display: block !important;
    }
    #section-kv img.bg.dsk {
        display: none !important;
    }
}

#section-kv img.title {
    width: 35vw;
    position: absolute;
    top: 31%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
}

@media screen and (max-width: 640px) {
    #section-kv img.title {
        width: 85vw;
        top: 28.1%;
    }
}

#section-kv h1 {
    display: none;
}

#section-kv .ad-logo {
    position: absolute;
    bottom: .5rem;
    right: .5rem;
    width: 150px;
    z-index: 2;
}

@media screen and (max-width: 640px) {
    #section-kv .ad-logo {
        width: 120px;
    }
}

#section-1 {
    position: relative;
}

#section-1 .title {
    display: block;
    width: 29vw;
    position: absolute;
    top: 8.2%;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 2;
}

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

@media screen and (max-width: 640px) {
    #section-1 .title {
        width: 66vw;
    }
}

#section-1 #pic-wrap1 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media screen and (max-width: 991px) {
    #section-1 #pic-wrap1 {
        overflow-x: scroll;
        /* width */
        /* Track */
        /* Handle */
        /* Handle on hover */
    }
    #section-1 #pic-wrap1::-webkit-scrollbar {
        height: 0;
    }
    #section-1 #pic-wrap1::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    #section-1 #pic-wrap1::-webkit-scrollbar-thumb {
        background: #ccc;
    }
    #section-1 #pic-wrap1::-webkit-scrollbar-thumb:hover {
        background: #ccc;
    }
}

#section-1 .bg-pic {
    display: block;
    width: 100%;
    max-width: initial;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 991px) {
    #section-1 .bg-pic {
        width: 1600px;
    }
}

@media screen and (max-width: 640px) {
    #section-1 .bg-pic {
        width: 1400px;
    }
}

#section-kv .video-background {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    /* 放到背景層 */
}

#section-kv .video-background video {
    position: absolute;
    bottom: 0;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -o-object-fit: cover;
    object-fit: cover;
    display: none;
}

#section-kv .video-background .video-desktop {
    display: block;
}

@media screen and (max-width: 720px) {
    #section-kv .video-background .video-desktop {
        display: none;
    }
    #section-kv .video-background .video-mobile {
        display: block;
        width: 100%;
        height: auto;
    }
}

#section-2 {
    padding: 5rem 0 0rem;
    background: url(../images/s2-tree1.png) no-repeat left 10%/300px, url(../images/s2-tree2.png) no-repeat right 45%/236px, url(../images/s2-tree3-new.png) no-repeat left 71%/290px;
    background-color: #D2E0DD;
}

@media screen and (max-width: 991px) {
    #section-2 {
        /* background: url(../images/s2-tree6-m.png) no-repeat right bottom/360px;
    background-color: #D2E0DD;
    padding-bottom: 11rem;*/
    }
}

@media screen and (max-width: 640px) {
    #section-2 {
        -moz-background-size: 70vw;
        -o-background-size: 70vw;
        background-size: 70vw;
    }
}

#section-2 .container {
    width: 1380px;
    margin: 0 auto;
}

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

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

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

#section-2 .content-wrap {
    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;
    position: relative;
}

@media screen and (max-width: 991px) {
    #section-2 .content-wrap {
        display: block;
        margin-bottom: 9rem;
    }
}

#section-2 .content-wrap>* {
    font-family: var(--font-family-serif);
    color: #005631;
}

@media screen and (max-width: 991px) {
    #section-2 .content-wrap:nth-of-type(1) {
        background: url(../images/s2-tree1-m.png) no-repeat left 0/220px;
        padding-top: 6rem;
    }
}

@media screen and (max-width: 640px) {
    #section-2 .content-wrap:nth-of-type(1) {
        -moz-background-size: 30vw;
        -o-background-size: 30vw;
        background-size: 30vw;
        padding-top: 3rem;
    }
}

@media screen and (max-width: 1400px) {
    #section-2 .content-wrap:nth-of-type(1) .group-wrap {
        width: 1000px;
    }
}

@media screen and (max-width: 1200px) {
    #section-2 .content-wrap:nth-of-type(1) .group-wrap {
        width: 888px;
    }
}

@media screen and (max-width: 991px) {
    #section-2 .content-wrap:nth-of-type(1) .group-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 640px) {
    #section-2 .content-wrap:nth-of-type(1) .group-wrap {
        padding-top: 3rem;
    }
}

#section-2 .content-wrap:nth-of-type(2) {
    display: block;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media screen and (max-width: 1200px) {
    #section-2 .content-wrap:nth-of-type(2) {
        margin-bottom: 3rem;
    }
}

@media screen and (max-width: 991px) {
    #section-2 .content-wrap:nth-of-type(2) {
        margin-bottom: 9rem;
    }
}

#section-2 .content-wrap:nth-of-type(2) .slogan {
    position: absolute;
    top: 0;
    right: 50px;
}

@media screen and (max-width: 1200px) {
    #section-2 .content-wrap:nth-of-type(2) .slogan {
        right: 0;
    }
}

@media screen and (max-width: 991px) {
    #section-2 .content-wrap:nth-of-type(2) .slogan {
        position: relative;
        top: initial;
        right: initial;
    }
}

#section-2 .content-wrap:nth-of-type(2) .group-wrap {
    width: 1150px;
}

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

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

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

@media screen and (max-width: 640px) {
    #section-2 .content-wrap:nth-of-type(2) .group-wrap {
        padding-top: 1rem;
    }
}

#section-2 .content-wrap:nth-of-type(2) img.mob {
    margin: 0 auto;
    max-width: 420px;
    width: 70vw;
}

@media screen and (max-width: 640px) {
    #section-2 .content-wrap:nth-of-type(2) img.mob {
        width: 90vw;
    }
}

@media screen and (max-width: 991px) {
    #section-2 .content-wrap:nth-of-type(3) {
        background: url(../images/s2-tree3-m.png) no-repeat right 410px/220px, url(../images/s2-tree5-m.png) no-repeat left bottom/220px;
        padding-top: 6rem;
        padding-bottom: 12rem;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 640px) {
    #section-2 .content-wrap:nth-of-type(3) {
        background: url(../images/s2-tree3-m.png) no-repeat right 234px/190px, url(../images/s2-tree5-m.png) no-repeat left bottom/220px;
        padding-top: 0;
        padding-bottom: 12rem;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 991px) {
    #section-2 .content-wrap:nth-of-type(3) .slogan {
        margin-bottom: 11rem;
    }
}

@media screen and (max-width: 1400px) {
    #section-2 .content-wrap:nth-of-type(3) .group-wrap {
        width: 1027px;
    }
}

@media screen and (max-width: 1200px) {
    #section-2 .content-wrap:nth-of-type(3) .group-wrap {
        width: 888px;
    }
}

@media screen and (max-width: 991px) {
    #section-2 .content-wrap:nth-of-type(3) .group-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    #section-2 .content-wrap:nth-of-type(3) .text-wrap span {
        display: block;
    }
    #section-2 .content-wrap:nth-of-type(3) .text-wrap i {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    #section-2 .content-wrap:nth-of-type(3) .text-wrap span {
        display: inline;
    }
    #section-2 .content-wrap:nth-of-type(3) .text-wrap i {
        display: inline;
    }
}

#section-2 .content-wrap:nth-of-type(4) {
    display: block;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media screen and (max-width: 1200px) {
    #section-2 .content-wrap:nth-of-type(4) {
        margin-bottom: 3rem;
    }
}

@media screen and (max-width: 991px) {
    #section-2 .content-wrap:nth-of-type(4) {
        margin-bottom: 0;
    }
}

#section-2 .content-wrap:nth-of-type(4) .logo {
    width: 60%;
    max-width: 240px;
    display: block;
    margin: 0 auto 2rem;
}

@media screen and (max-width: 991px) {
    #section-2 .content-wrap:nth-of-type(4) .logo {
        max-width: 170px;
        margin-top: 50px;
    }
}

#section-2 .content-wrap:nth-of-type(4) .group-wrap {
    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-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 991px) {
    #section-2 .content-wrap:nth-of-type(4) .group-wrap {
        padding-top: 0;
    }
}

#section-2 .content-wrap:nth-of-type(4) .text-wrap {
    width: 25rem;
    margin-top: 0;
}

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

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

#section-2 .content-wrap:nth-of-type(4) .photo {
    width: -webkit-calc(100% - 27rem);
    width: -moz-calc(100% - 27rem);
    width: calc(100% - 27rem);
}

@media screen and (max-width: 1200px) {
    #section-2 .content-wrap:nth-of-type(4) .photo {
        width: -webkit-calc(100% - 24rem);
        width: -moz-calc(100% - 24rem);
        width: calc(100% - 24rem);
    }
}

@media screen and (max-width: 991px) {
    #section-2 .content-wrap:nth-of-type(4) .photo {
        width: 100%;
        margin: 0 auto 2rem;
    }
    #section-2 .content-wrap:nth-of-type(4) .photo img {
        margin: 0 auto;
    }
}

#section-2 .group-wrap {
    padding-top: 6rem;
    width: 1200px;
    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-2 .group-wrap {
        display: block;
        width: 90%;
    }
}

#section-2 .swiper-wrap {
    width: 730px;
    margin: 0;
    padding-bottom: 5rem;
}

@media screen and (max-width: 1200px) {
    #section-2 .swiper-wrap {
        width: 550px;
        padding-bottom: 2rem;
    }
}

@media screen and (max-width: 991px) {
    #section-2 .swiper-wrap {
        width: 90%;
        margin: 0 auto;
    }
}

#section-2 .swiper {
    padding-right: 50px;
    padding-bottom: 50px;
}

@media screen and (max-width: 1200px) {
    #section-2 .swiper {
        padding-right: 30px;
        padding-bottom: 30px;
    }
}

@media screen and (max-width: 991px) {
    #section-2 .swiper {
        padding-right: 0;
        padding-bottom: 0;
    }
}

#section-2 .swiper-slide {
    position: relative;
    overflow: visible;
}

@media screen and (max-width: 991px) {
    #section-2 .swiper-slide {
        display: block;
    }
}

#section-2 .swiper-slide figure {
    display: block;
    width: 100%;
    position: relative;
    background-color: #D2E0DD;
}

#section-2 .swiper-slide figure img {
    display: block;
    width: 100%;
    position: relative;
    z-index: 2;
    opacity: .5;
}

#section-2 .swiper-slide figure img.shadow {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    opacity: .5;
}

#section-2 .swiper-slide figcaption {
    font-size: .6rem;
    color: #fff;
    position: absolute;
    left: 1%;
    bottom: 1%;
    z-index: 2;
}

@media screen and (max-width: 640px) {
    #section-2 .swiper-slide figcaption {
        font-size: .6rem;
    }
}

#section-2 .swiper-slide-active figure {
    background-color: transparent;
}

#section-2 .swiper-slide-active figure img {
    opacity: 1;
}

#section-3 {
    position: relative;
}

#section-3 .text-wrap {
    position: absolute;
    top: 4%;
    left: 7vw;
    z-index: 2;
    margin-top: 0;
}

@media screen and (max-width: 991px) {
    #section-3 .text-wrap {
        top: 8%;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}

@media screen and (max-width: 640px) {
    #section-3 .text-wrap {
        top: 6%;
    }
}

#section-3 .text-wrap h4 p {
    color: #fff;
    font-size: 1.3rem;
    font-family: var(--font-family-serif);
    line-height: 1.4;
    letter-spacing: 2px;
}

@media screen and (max-width: 640px) {
    #section-3 .text-wrap h4 p {
        font-size: 1.2rem;
    }
}

#section-3 .text-wrap>p {
    color: #fff;
    font-size: .9rem;
    line-height: 1.7;
}

#section-3 .text-wrap .line {
    margin-bottom: 2.5rem;
}

#section-3 .text-wrap .line::after {
    height: 1.5rem;
    background: #fff;
    bottom: -2rem;
}

#section-3 #pic-wrap2 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media screen and (max-width: 991px) {
    #section-3 #pic-wrap2 {
        overflow-x: scroll;
        /* width */
        /* Track */
        /* Handle */
        /* Handle on hover */
    }
    #section-3 #pic-wrap2::-webkit-scrollbar {
        height: 0;
    }
    #section-3 #pic-wrap2::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    #section-3 #pic-wrap2::-webkit-scrollbar-thumb {
        background: #ccc;
    }
    #section-3 #pic-wrap2::-webkit-scrollbar-thumb:hover {
        background: #ccc;
    }
}

#section-3 .bg-pic {
    display: block;
    width: 100%;
    max-width: initial;
    position: relative;
    z-index: 1;
}

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

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

#section-4 {
    background: url(../images/s4-tree.png) no-repeat right top/328px;
    background-color: #D2E0DD;
}

@media screen and (max-width: 991px) {
    #section-4 {
        background: #D2E0DD;
    }
}

#section-4 .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 1400px;
    margin: 0 auto;
    padding: 5rem 0;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -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;
    position: relative;
}

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

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

@media screen and (max-width: 991px) {
    #section-4 .container {
        display: block;
        width: 100%;
        padding: 4rem 0 5rem;
    }
}

@media screen and (max-width: 640px) {
    #section-4 .container {
        padding: 3rem 0 5rem;
    }
}

#section-4 .slogan {
    width: 200px;
    color: #005631;
}

@media screen and (max-width: 991px) {
    #section-4 .slogan {
        width: 100%;
        -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
        writing-mode: initial;
        text-orientation: initial;
        text-align: center;
        margin-bottom: 4.5rem;
        position: relative;
    }
    #section-4 .slogan::after {
        content: "";
        display: block;
        width: 1px;
        height: 2rem;
        background: #005631;
        position: absolute;
        left: 50%;
        bottom: -3rem;
        opacity: .8;
    }
    #section-4 .slogan p {
        line-height: 1.2;
    }
    #section-4 .slogan p:nth-of-type(2) {
        margin-top: 0;
    }
}

#section-4 .swiper-wrap {
    width: -webkit-calc(100% - 200px);
    width: -moz-calc(100% - 200px);
    width: calc(100% - 200px);
    margin: 0;
}

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

@media screen and (max-width: 991px) {
    #section-4 .swiper-wrap {
        width: 90%;
        margin: 0 auto;
    }
}

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

#section-4 .swiper-slide {
    position: relative;
}

#section-4 .swiper-slide figure {
    display: block;
    width: 100%;
    position: relative;
}

@media screen and (max-width: 991px) {
    #section-4 .swiper-slide figure {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto;
    }
}

#section-4 .swiper-slide figure img {
    display: block;
}

#section-4 .swiper-slide figcaption {
    font-size: .6rem;
    color: #fff;
    position: absolute;
    left: 1%;
    bottom: 1%;
    z-index: 2;
}

@media screen and (max-width: 640px) {
    #section-4 .swiper-slide figcaption {
        font-size: .6rem;
    }
}

@media screen and (max-width: 991px) {
    #section-5 {
        background: url(../images/s6-tree2.png) no-repeat right bottom/300px;
        background-color: #D2E0DD;
        padding-top: 4rem;
        padding-bottom: 10rem;
    }
}

@media screen and (max-width: 640px) {
    #section-5 {
        -moz-background-size: 46vw;
        -o-background-size: 46vw;
        background-size: 46vw;
    }
}

#section-5 .house {
    width: 376px;
    margin: 0 auto 3rem;
    -webkit-transform: translateX(37px);
    -moz-transform: translateX(37px);
    -ms-transform: translateX(37px);
    -o-transform: translateX(37px);
    transform: translateX(37px);
}

@media screen and (max-width: 640px) {
    #section-5 .house {
        width: 300px;
    }
}

#section-5 .slogan {
    color: #005631;
    margin-bottom: 4rem;
}

#section-5 .text-wrap>* {
    color: #005631;
}

#section-5 .swiper-wrap {
    width: 90%;
    margin: 0 auto 3rem;
}

@media screen and (max-width: 640px) {
    #section-5 .swiper-wrap {
        width: 85%;
    }
}

#section-6 {
    background: url(../images/s6-tree1.png) no-repeat left top/256px, url(../images/s6-tree2.png) no-repeat right bottom/328px;
    background-color: #D2E0DD;
    padding: 6rem 0 2rem;
}

@media screen and (max-width: 991px) {
    #section-6 {
        display: none;
    }
}

#section-6 .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 1050px;
    margin: 0 auto;
    -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: 1200px) {
    #section-6 .container {
        width: 960px;
    }
}

@media screen and (max-width: 991px) {
    #section-6 .container {
        display: block;
        width: 90%;
    }
}

#section-6 .slogan {
    width: 100px;
    color: #005631;
}

#section-6 .swiper-wrap {
    width: -webkit-calc(100% - 100px);
    width: -moz-calc(100% - 100px);
    width: calc(100% - 100px);
    max-width: 830px;
    margin: 0;
    padding-bottom: 5rem;
}

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

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

#section-6 .swiper {
    padding-right: 50px;
    padding-bottom: 50px;
}

@media screen and (max-width: 1200px) {
    #section-6 .swiper {
        padding-right: 30px;
        padding-bottom: 30px;
    }
}

#section-6 .swiper-slide {
    position: relative;
    overflow: visible;
}

@media screen and (max-width: 991px) {
    #section-6 .swiper-slide {
        display: block;
    }
}

#section-6 .swiper-slide figure {
    display: block;
    width: 100%;
    position: relative;
    background-color: #D2E0DD;
}

#section-6 .swiper-slide figure img {
    display: block;
    width: 100%;
    position: relative;
    z-index: 2;
    opacity: .5;
}

#section-6 .swiper-slide figure img.shadow {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    opacity: .5;
}

#section-6 .swiper-slide figcaption {
    font-size: .6rem;
    color: #fff;
    position: absolute;
    left: 1%;
    bottom: 1%;
    z-index: 2;
}

@media screen and (max-width: 640px) {
    #section-6 .swiper-slide figcaption {
        font-size: .6rem;
    }
}

#section-6 .swiper-slide-active figure {
    background-color: transparent;
}

#section-6 .swiper-slide-active figure img {
    opacity: 1;
}

#section-7 .content-wrap {
    position: relative;
}

#section-7 .content-wrap:last-of-type * {
    color: #fff;
}

#section-7 .content-wrap:last-of-type .text-wrap {
    right: initial;
    left: 8%;
}

@media screen and (max-width: 991px) {
    #section-7 .content-wrap:last-of-type .text-wrap {
        right: 0;
        left: 0;
        margin: 0 auto;
    }
}

#section-7 .content-wrap:last-of-type .text-wrap .line::after {
    background: #fff;
}

#section-7 .text-wrap {
    width: 22rem;
    position: absolute;
    top: 13%;
    right: -webkit-calc(50% - 33rem);
    right: -moz-calc(50% - 33rem);
    z-index: 2;
    margin-top: 0;
}

@media screen and (max-width: 1200px) {
    #section-7 .text-wrap {
        /* right: -webkit-calc(50% - 30rem);
    right: -moz-calc(50% - 30rem);
    right: calc(50% - 30rem); */
    }
}

@media screen and (max-width: 991px) {
    #section-7 .text-wrap {
        right: 0;
        left: 0;
        margin: 0 auto;
    }
    #section-7 .text-wrap h3 {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 640px) {
    #section-7 .text-wrap {
        top: 4%;
        color: white;
    }
}

#section-7 .text-wrap .line::after {
    background: #000;
}

#section-7 .text-wrap h4 p {
    font-size: 1.3rem;
    font-family: var(--font-family-serif);
    line-height: 1.4;
    letter-spacing: 2px;
}

@media screen and (max-width: 640px) {
    #section-7 .text-wrap h4 p {
        font-size: 1.2rem;
    }
    #section-7 .text-wrap .line::after {
        background: #fff;
    }
}

#section-7 .text-wrap>p {
    font-size: .9rem;
    line-height: 1.7;
}

#section-7 .text-wrap .line {
    margin-bottom: 2.5rem;
}

#section-7 .text-wrap .line::after {
    height: 1.5rem;
    bottom: -2rem;
}

#section-7 img {
    display: block;
    width: 100%;
}

#section-8 {
    position: relative;
}

@media screen and (max-width: 991px) {
    #section-8 {
        background-color: #D2E0DD;
        padding-top: 1px;
    }
}

#section-8 .text-wrap {
    position: absolute;
    bottom: 5%;
    left: 5%;
    z-index: 2;
    margin-top: 0;
    text-shadow: 0 0 5px #000, 0 0 10px #000, 0 0 10px #000;
}

@media screen and (max-width: 991px) {
    #section-8 .text-wrap {
        position: relative;
        bottom: initial;
        left: initial;
        margin: 3rem auto;
        text-shadow: none;
    }
}

#section-8 .text-wrap * {
    color: #fff;
}

@media screen and (max-width: 991px) {
    #section-8 .text-wrap * {
        color: #005631;
    }
}

#section-8 .text-wrap .line::after {
    background: #fff;
}

@media screen and (max-width: 991px) {
    #section-8 .text-wrap .line::after {
        background: #005631;
    }
}

#section-8 .text-wrap h4 p {
    font-size: 1.3rem;
    font-family: var(--font-family-serif);
    line-height: 1.4;
    letter-spacing: 2px;
}

@media screen and (max-width: 640px) {
    #section-8 .text-wrap h4 p {
        font-size: 1.2rem;
    }
}

#section-8 .text-wrap>p {
    font-size: .9rem;
    line-height: 1.7;
}

#section-8 .text-wrap .line {
    margin-bottom: 2.5rem;
}

#section-8 .text-wrap .line::after {
    height: 1.5rem;
    bottom: -2rem;
}

#section-8 figure {
    display: block;
    width: 100%;
    position: relative;
}

@media screen and (max-width: 991px) {
    #section-8 figure:first-of-type {
        margin-bottom: 1.5rem;
    }
}

#section-8 img {
    display: block;
    width: 100%;
}

#section-9 {
    position: relative;
}

@media screen and (max-width: 991px) {
    #section-9 {
        background: url(../images/s9-tree1-m.png) no-repeat left top;
        background-color: #D2E0DD;
        padding-top: 1px;
    }
}

@media screen and (max-width: 640px) {
    #section-9 {
        -moz-background-size: 95px;
        -o-background-size: 95px;
        background-size: 95px;
    }
}

#section-9 .text-wrap {
    position: absolute;
    bottom: 5%;
    left: 5%;
    z-index: 2;
    margin-top: 0;
    text-shadow: 0 0 5px #000, 0 0 10px #000, 0 0 10px #000;
}

@media screen and (max-width: 991px) {
    #section-9 .text-wrap {
        position: relative;
        bottom: initial;
        left: initial;
        margin: 3rem auto;
        text-shadow: none;
    }
}

#section-9 .text-wrap * {
    color: #fff;
}

@media screen and (max-width: 991px) {
    #section-9 .text-wrap * {
        color: #005631;
    }
}

#section-9 .text-wrap .line::after {
    background: #fff;
}

@media screen and (max-width: 991px) {
    #section-9 .text-wrap .line::after {
        background: #005631;
    }
}

#section-9 .text-wrap h4 p {
    font-size: 1.3rem;
    font-family: var(--font-family-serif);
    line-height: 1.4;
    letter-spacing: 2px;
}

@media screen and (max-width: 640px) {
    #section-9 .text-wrap h4 p {
        font-size: 1.2rem;
    }
}

#section-9 .text-wrap>p {
    font-size: .9rem;
    line-height: 1.7;
}

#section-9 .text-wrap .line {
    margin-bottom: 2.5rem;
}

#section-9 .text-wrap .line::after {
    height: 1.5rem;
    bottom: -2rem;
}

#section-9 figure {
    display: block;
    width: 100%;
    position: relative;
}

#section-9 img {
    display: block;
    width: 100%;
}

#section-9 .pic {
    margin-bottom: 1.5rem;
}

#section-form {
    background: url(../images/s10-tree1.png) no-repeat left top/256px, url(../images/form-bg.png) no-repeat left bottom/100%;
    background-color: #D2E0DD;
    padding: 6rem 0 12rem;
}

@media screen and (max-width: 991px) {
    #section-form {
        padding-top: 200px;
        padding-bottom: 15rem;
        background: url(../images/s10-tree1-m.png) no-repeat right -webkit-calc(0% + 50px)/auto 150px, url(../images/s10-tree2-m.png) no-repeat left bottom/600px;
        background: url(../images/s10-tree1-m.png) no-repeat right -moz-calc(0% + 50px)/auto 150px, url(../images/s10-tree2-m.png) no-repeat left bottom/600px;
        background: url(../images/s10-tree1-m.png) no-repeat right calc(0% + 50px)/auto 150px, url(../images/s10-tree2-m.png) no-repeat left bottom/600px;
        background-color: #D2E0DD;
    }
}

@media screen and (max-width: 640px) {
    #section-form {
        padding-top: 170px;
        background: url(../images/s10-tree1-m.png) no-repeat right -webkit-calc(0% + 50px)/auto 120px, url(../images/s10-tree2-m.png) no-repeat left bottom/95vw;
        background: url(../images/s10-tree1-m.png) no-repeat right -moz-calc(0% + 50px)/auto 120px, url(../images/s10-tree2-m.png) no-repeat left bottom/95vw;
        background: url(../images/s10-tree1-m.png) no-repeat right calc(0% + 50px)/auto 120px, url(../images/s10-tree2-m.png) no-repeat left bottom/95vw;
        background-color: #D2E0DD;
    }
}

#section-form .container {
    width: 1375px;
    margin: 0 auto;
}

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

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

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

#section-form .top-wrap {
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 6rem;
}

@media screen and (max-width: 991px) {
    #section-form .top-wrap {
        display: block;
    }
}

@media screen and (max-width: 640px) {
    #section-form .top-wrap {
        margin-bottom: 3rem;
    }
}

#section-form .top-wrap>img {
    width: -webkit-calc(100% - 490px - 6rem);
    width: -moz-calc(100% - 490px - 6rem);
    width: calc(100% - 490px - 6rem);
}

@media screen and (max-width: 1400px) {
    #section-form .top-wrap>img {
        width: -webkit-calc(100% - 490px - 3rem);
        width: -moz-calc(100% - 490px - 3rem);
        width: calc(100% - 490px - 3rem);
    }
}

@media screen and (max-width: 1200px) {
    #section-form .top-wrap>img {
        width: -webkit-calc(100% - 420px - 2rem);
        width: -moz-calc(100% - 420px - 2rem);
        width: calc(100% - 420px - 2rem);
    }
}

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

#section-form .top-wrap .info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 490px;
    text-align: center;
    -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: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 1200px) {
    #section-form .top-wrap .info {
        width: 420px;
    }
}

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

#section-form .top-wrap .info p {
    font-family: var(--font-family-serif);
    font-size: 1.6rem;
    color: #005631;
    line-height: 1.5;
    margin-bottom: 0;
}

@media screen and (max-width: 640px) {
    #section-form .top-wrap .info p {
        font-size: 1.1rem;
    }
}

#section-form .top-wrap .info p.en {
    margin-bottom: 1rem;
    font-family: var(--font-family-cheryl);
    font-weight: 300;
    letter-spacing: 2px;
}

@media screen and (max-width: 640px) {
    #section-form .top-wrap .info p.en {
        font-size: 1.2rem;
    }
}

#section-form .top-wrap .info img {
    display: block;
    width: 100%;
    margin: 3rem auto 0;
}

@media screen and (max-width: 991px) {
    #section-form .top-wrap .info img {
        max-width: 500px;
        width: 90%;
    }
}

#section-form .top-title {
    font-size: 2rem;
    font-family: var(--font-family-serif);
    font-weight: 300;
    text-align: center;
    color: #005631;
    margin-bottom: 4rem;
}

@media screen and (max-width: 991px) {
    #section-form .top-title {
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        text-orientation: upright;
        margin: 0 auto 4rem;
        text-align: left;
    }
}

@media screen and (max-width: 640px) {
    #section-form .top-title {
        margin-bottom: 3rem;
    }
}

#section-form .top-title p {
    display: inline;
}

@media screen and (max-width: 991px) {
    #section-form .top-title p {
        display: block;
        font-family: var(--font-family-serif);
        font-size: 1.8rem;
        font-weight: 300;
        line-height: 1.6;
        letter-spacing: .35rem;
        white-space: nowrap;
    }
}

@media screen and (max-width: 991px) and (max-width: 640px) {
    #section-form .top-title p {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 991px) {
    #section-form .top-title p:nth-of-type(2) {
        margin-top: 9rem;
    }
}

@media screen and (max-width: 991px) and (max-width: 640px) {
    #section-form .top-title p:nth-of-type(2) {
        margin-top: 7rem;
    }
}

@media screen and (max-width: 991px) {
    #section-form .top-title p i {
        content: "";
        display: inline-block;
        height: .9rem;
    }
}

#section-form .tree.mob {
    display: block;
    margin: 0 auto 6rem;
    width: 40%;
}

#section-form .promotion {
    position: relative;
    border: solid 1px #005631;
    padding: 3rem 0 2.5rem;
}

@media screen and (max-width: 991px) {
    #section-form .promotion {
        width: 80%;
        padding-bottom: 0;
        margin: 0 auto;
    }
}

#section-form .promotion h4 {
    width: 19rem;
    font-size: 1.6rem;
    font-family: var(--font-family-serif);
    font-weight: 300;
    text-align: center;
    color: #005631;
    position: absolute;
    top: -2rem;
    left: 0;
    right: 0;
    background-color: #D2E0DD;
    padding: 1rem 0;
    margin: 0 auto;
}

@media screen and (max-width: 640px) {
    #section-form .promotion h4 {
        width: 13rem;
        font-size: 1.3rem;
        top: -1.8rem;
    }
}

#section-form .promotion ul {
    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;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
}

@media screen and (max-width: 991px) {
    #section-form .promotion ul {
        width: 100%;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 640px) {
    #section-form .promotion ul {
        width: 95%;
    }
}

#section-form .promotion ul li {
    width: initial;
    padding: 0 1rem;
}

@media screen and (max-width: 991px) {
    #section-form .promotion ul li {
        width: 50%;
        margin-bottom: 3rem;
        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;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media screen and (max-width: 640px) {
    #section-form .promotion ul li:nth-of-type(2) img {
        width: 80%;
    }
}

#section-form .logo-box {
    width: 200px;
    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-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#section-form .logo-box p {
    font-family: var(--font-family-serif);
    font-weight: 500;
    font-size: .9rem;
    line-height: 1;
    margin-top: 1rem;
    margin-bottom: 0;
    color: #005631;
}

@media screen and (max-width: 640px) {
    #section-form .logo-box p {
        font-size: .6rem;
    }
}

@media screen and (max-width: 640px) {
    #section-form .logo-box p.mob-ls0 {
        letter-spacing: 0;
    }
}

#section-form .logo-wrap {
    width: auto;
}

#section-form .logo-wrap ul {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 1200px) {
    #section-form .logo-wrap ul {
        width: 720px;
        margin: 0 auto;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

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

#section-form .logo-wrap ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    border-left: solid 1px #005631;
    -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-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 1200px) {
    #section-form .logo-wrap ul li {
        width: 33.33%;
        margin-bottom: 0;
    }
    #section-form .logo-wrap ul li:nth-of-type(1) .logo-box:last-of-type:after,
    #section-form .logo-wrap ul li:nth-of-type(2) .logo-box:last-of-type:after,
    #section-form .logo-wrap ul li:nth-of-type(3) .logo-box:last-of-type:after {
        content: "";
        display: block;
        width: -webkit-calc(100% - 3rem);
        width: -moz-calc(100% - 3rem);
        width: calc(100% - 3rem);
        height: 1px;
        background: #005631;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0 auto;
    }
    #section-form .logo-wrap ul li:nth-of-type(4) {
        border-left: none;
    }
}

@media screen and (max-width: 991px) {
    #section-form .logo-wrap ul li {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        border-left: 0;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-bottom: solid 1px #005631;
        padding: 1.5rem 0;
    }
    #section-form .logo-wrap ul li:nth-of-type(1) .logo-box:last-of-type:after,
    #section-form .logo-wrap ul li:nth-of-type(2) .logo-box:last-of-type:after,
    #section-form .logo-wrap ul li:nth-of-type(3) .logo-box:last-of-type:after {
        display: none;
    }
    #section-form .logo-wrap ul li:nth-of-type(4) {
        border-left: none;
    }
    #section-form .logo-wrap ul li:last-of-type {
        border-bottom: 0;
    }
}

#section-form .logo-wrap ul li:first-of-type {
    border-left: none;
}

@media screen and (max-width: 640px) {
    #section-form .logo-wrap ul li:first-of-type .logo-box:first-of-type img {
        max-width: 35%;
    }
}

#section-form .logo-wrap ul li .logo-box {
    height: 170px;
    position: relative;
}

@media screen and (max-width: 1400px) {
    #section-form .logo-wrap ul li .logo-box {
        width: 190px;
    }
    #section-form .logo-wrap ul li .logo-box img {
        zoom: .9;
    }
}

@media screen and (max-width: 1200px) {
    #section-form .logo-wrap ul li .logo-box {
        height: 120px;
    }
}

@media screen and (max-width: 991px) {
    #section-form .logo-wrap ul li .logo-box {
        width: -webkit-calc(50% - 2px);
        width: -moz-calc(50% - 2px);
        width: calc(50% - 2px);
        height: 74px;
        border-left: solid 1px #005631;
    }
}

@media screen and (max-width: 991px) {
    #section-form .logo-wrap ul li .logo-box:first-of-type {
        border-left: 0;
    }
}

#section-form .logo-wrap ul li .logo-box:first-of-type:after {
    content: "";
    display: block;
    width: -webkit-calc(100% - 3rem);
    width: -moz-calc(100% - 3rem);
    width: calc(100% - 3rem);
    height: 1px;
    background: #005631;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}

@media screen and (max-width: 991px) {
    #section-form .logo-wrap ul li .logo-box:first-of-type:after {
        display: none;
    }
}

#section-form .logo-wrap ul li .logo-box h6 {
    line-height: 1.5;
}

#section-form .logo-wrap ul li .logo-box h6 p {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

@media screen and (max-width: 640px) {
    #section-form .logo-wrap ul li .logo-box h6 p {
        font-size: 1rem;
        letter-spacing: 0;
    }
}

#section-form .logo-wrap ul li .logo-box h6 p.en {
    font-family: var(--font-family-sans);
}

@media screen and (max-width: 640px) {
    #section-form .logo-wrap ul li .logo-box>p {
        font-size: .9rem;
    }
}

@media screen and (max-width: 640px) {
    #section-form .logo-wrap ul li .logo-box img {
        max-width: 70%;
    }
}

#section-form .note {
    font-family: var(--font-family-serif);
    font-weight: 500;
    font-size: .75rem;
    line-height: 1.8;
    margin-top: 1.5rem;
    margin-bottom: 5rem;
    color: #005631;
    text-align: center;
}

@media screen and (max-width: 991px) {
    #section-form .note {
        width: 80%;
        margin: 1.5rem auto 3rem;
    }
    #section-form .note span {
        display: block;
    }
}

@media screen and (max-width: 640px) {
    #section-form .note {
        width: 85%;
        font-size: .6rem;
    }
}

#section-form .ps.mob {
    font-family: var(--font-family-serif);
    font-size: .8rem;
    text-align: center;
    color: #005631;
    margin-top: 1rem;
}

#section-form .logo {
    display: block;
    margin: 6rem auto 6rem;
}

@media screen and (max-width: 640px) {
    #section-form .logo {
        width: 38vw;
        margin: 4rem auto 3rem;
    }
}

#section-form .info-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 1060px;
    margin: 0 auto 7rem;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -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: 1200px) {
    #section-form .info-wrap {
        width: 960px;
    }
}

@media screen and (max-width: 991px) {
    #section-form .info-wrap {
        width: 90%;
        max-width: 570px;
        margin-bottom: 3rem;
        -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;
    }
}

@media screen and (max-width: 640px) {
    #section-form .info-wrap {
        width: 90%;
        max-width: 570px;
        margin-bottom: 1rem;
    }
}

#section-form .info-wrap .map {
    width: -webkit-calc(100% - 360px);
    width: -moz-calc(100% - 360px);
    width: calc(100% - 360px);
    max-width: 610px;
}

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

#section-form .info-wrap .map iframe {
    display: block;
    width: 100%;
    height: 340px;
    border: 0;
}

#section-form ul {
    width: 450px;
}

@media screen and (max-width: 991px) {
    #section-form ul {
        width: 90%;
        max-width: 630px;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}

#section-form ul li {
    width: 100%;
    font-family: var(--font-family-serif);
    font-size: 1rem;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 1.8px;
    text-align: left;
    color: #005631;
    margin-bottom: 0.8rem;
}

#section-form ul li span {
    font-weight: 500;
}

@media screen and (max-width: 991px) {
    #section-form ul li {
        margin-bottom: 0;
        font-size: .9rem;
    }
}

#section-form .form-wrap {
    width: 1000px;
    padding-bottom: 5rem;
    margin: 0 auto;
}

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

@media screen and (max-width: 991px) {
    #section-form .form-wrap {
        width: -webkit-calc(100% - 100px);
        width: -moz-calc(100% - 100px);
        width: calc(100% - 100px);
        max-width: 500px;
    }
}

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

#section-form .form-wrap .control {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto 2.5rem;
    -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-form .form-wrap .control {
        width: 920px;
    }
}

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

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

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

#section-form .form-wrap h2 {
    font-family: var(--font-family-cinzel);
    font-size: 1.2rem;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 1px;
    text-align: center;
    color: #005631;
    margin-bottom: 1.5rem;
}

#section-form .form-wrap input[type="text"],
#section-form .form-wrap input[type="tel"],
#section-form .form-wrap input[type="email"],
#section-form .form-wrap input[type="number"] {
    width: -webkit-calc(50% - 2rem);
    width: -moz-calc(50% - 2rem);
    width: calc(50% - 2rem);
    display: inline-block;
    height: 56px;
    padding: 13px 23px 10px 0;
    margin: 0 0 1rem;
    border: 0;
    border-bottom: solid 1px #0e8652;
    background-color: transparent;
    font-family: var(--font-family-serif);
    font-size: 1rem;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.24px;
    text-align: left;
    color: #005631;
}

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

@media screen and (max-width: 991px) {
    #section-form .form-wrap input[type="text"],
    #section-form .form-wrap input[type="tel"],
    #section-form .form-wrap input[type="email"],
    #section-form .form-wrap input[type="number"] {
        width: 100%;
        height: 50px;
        font-size: .9rem;
        padding: 16px 20px;
        border: solid 1px #0e8652;
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    #section-form .form-wrap input[type="text"],
    #section-form .form-wrap input[type="tel"],
    #section-form .form-wrap input[type="email"],
    #section-form .form-wrap input[type="number"] {
        height: 40px;
        font-size: .8rem;
        padding: 12px 20px;
    }
}

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

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

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

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

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

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

#section-form .form-wrap button[type="button"],
#section-form .form-wrap input[type="button"],
#section-form .form-wrap input[type="submit"] {
    cursor: pointer;
    display: block;
    width: 230px;
    height: 45px;
    margin: 0 auto;
    padding: 0;
    border: 0;
    background: #005631;
    font-family: var(--font-family-serif);
    font-size: 1rem;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 3px;
    text-align: center;
    color: #fff;
}

@media screen and (max-width: 991px) {
    #section-form .form-wrap button[type="button"],
    #section-form .form-wrap input[type="button"],
    #section-form .form-wrap input[type="submit"] {
        width: 100%;
        height: 40px;
    }
}

@media screen and (max-width: 640px) {
    #section-form .form-wrap input[type="button"],
    #section-form .form-wrap button[type="button"],
    #section-form .form-wrap input[type="submit"] {
        font-size: .8rem;
    }
}

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

#section-form .form-wrap div[data-role='county'],
#section-form .form-wrap div[data-role='district'] {
    width: -webkit-calc(50% - 2rem);
    width: -moz-calc(50% - 2rem);
    width: calc(50% - 2rem);
    margin: 0;
}

@media screen and (max-width: 991px) {
    #section-form .form-wrap div[data-role='county'],
    #section-form .form-wrap div[data-role='district'] {
        width: 100%;
    }
}

#section-form .form-wrap select {
    width: 100%;
    display: inline-block;
    height: 56px;
    margin: 0 0 1rem;
    border: 0;
    border-bottom: solid 1px #0e8652;
    background-color: transparent;
    font-family: var(--font-family-serif);
    font-size: 1rem;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.24px;
    text-align: left;
    color: #005631;
    /* height: 59px;
    margin: 0;
    padding: 0 30px 0 23px;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    border-radius: 13px;
    border: solid 1px #777575;
    background-color: #fff;
    font-family: 'Noto Sans TC';
    font-size: 17px;
    font-weight: 500;
    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_arrow.png) no-repeat -webkit-calc(100% - 10px) center;
    background: url(../images/icon_select_arrow.png) no-repeat -moz-calc(100% - 10px) center;
    background: url(../images/icon_select_arrow.png) no-repeat calc(100% - 10px) center; */
    /* background-color: #fff; */
    /* color: #a4a4a5; */
}

@media screen and (max-width: 991px) {
    #section-form .form-wrap select {
        width: 100%;
        height: 50px;
        font-size: .9rem;
        border: solid 1px #0e8652;
        text-align: center;
        /* height: 70px;
        font-size: 20px;
        padding: 0 30px 0 20px; */
    }
}

@media screen and (max-width: 640px) {
    #section-form .form-wrap select {
        height: 40px;
        font-size: .8rem;
        /* height: 50px;
        font-size: 14px; */
        /* margin-bottom: 12px; */
        /* padding: 10px 20px; */
        /* -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        border-radius: 8px; */
    }
}

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

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

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

#section-form .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-form .form-wrap select.slt-county {
        width: 100%;
        margin-bottom: 24px;
    }
}

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

#section-form .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-form .form-wrap select.slt-district {
        width: 100%;
        margin-bottom: 24px;
    }
}

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

#section-form .form-wrap .control-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    border-radius: 13px;
    border: solid 1px #BEAD9C;
    background-color: #BEAD9C;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -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-form .form-wrap .control-group {
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        border-radius: 8px;
    }
}

#section-form .form-wrap .privacy {
    margin: 2rem auto 2rem;
}

@media screen and (max-width: 991px) {
    #section-form .form-wrap .privacy {
        width: 95%;
        margin-bottom: 36px;
    }
}

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

@media screen and (max-width: 991px) {
    #section-form .form-wrap .privacy p {
        text-align: center;
    }
    #section-form .form-wrap .privacy p span {
        display: block;
    }
}

@media screen and (max-width: 640px) {
    #section-form .form-wrap .privacy p {
        font-size: .6rem;
    }
    #section-form .form-wrap .privacy p span:nth-child(1) {
        display: block;
    }
}

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

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

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


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

.jc-bs3-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.jc-bs3-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}