@import"all.css";
@import"https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@500&amp;display=swap";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after {
    content: "";
    content: none
}

q:before,
q:after {
    content: "";
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

input,
button,
textarea {
    outline: none
}

* {
    box-sizing: border-box
}

a {
    text-decoration: none
}

a {
    color: #666
}

body {
    font-family: Helvetica, Arial, "Noto Sans TC", "微軟正黑體", Heiti TC, "メイリオ", sans-serif;
    line-height: 1;
    color: #666
}

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */
@keyframes flip {
    from {
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        animation-timing-function: ease-out
    }

    40% {
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        animation-timing-function: ease-out
    }

    50% {
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        animation-timing-function: ease-in
    }

    80% {
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        animation-timing-function: ease-in
    }

    to {
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        animation-timing-function: ease-in
    }
}

.animated.flip {
    backface-visibility: visible;
    animation-name: flip
}

@keyframes lightSpeedIn {
    from {
        transform: translate3d(20%, 0, 0) skewX(-30deg);
        opacity: 0
    }

    60% {
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        transform: skewX(-5deg)
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out
}

@keyframes rotateIn {
    from {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0
    }

    to {
        transform-origin: center;
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.rotateIn {
    animation-name: rotateIn
}

@keyframes jackInTheBox {
    from {
        opacity: 0;
        transform: scale(0.1) rotate(30deg);
        transform-origin: center bottom
    }

    50% {
        transform: rotate(-10deg)
    }

    70% {
        transform: rotate(3deg)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.jackInTheBox {
    animation-name: jackInTheBox
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

.zoomInDown {
    animation-name: zoomInDown
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

.zoomInLeft {
    animation-name: zoomInLeft
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

.zoomInRight {
    animation-name: zoomInRight
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 50px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

.zoomInUp {
    animation-name: zoomInUp
}

@keyframes slideInDown {
    from {
        transform: translate3d(0, -10%, 0);
        visibility: visible
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

.slideInDown {
    animation-name: slideInDown
}

@keyframes slideInLeft {
    from {
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

.slideInLeft {
    animation-name: slideInLeft
}

@keyframes slideInRight {
    from {
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

.slideInRight {
    animation-name: slideInRight
}

@keyframes slideInUp {
    from {
        transform: translate3d(0, 10%, 0);
        visibility: visible
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

.slideInUp {
    animation-name: slideInUp
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.animated.infinite {
    animation-iteration-count: infinite
}

.animated.delay-1s {
    animation-delay: 1s
}

.animated.delay-2s {
    animation-delay: 2s
}

.animated.delay-3s {
    animation-delay: 3s
}

.animated.delay-4s {
    animation-delay: 4s
}

.animated.delay-5s {
    animation-delay: 5s
}

.animated.fast {
    animation-duration: 800ms
}

.animated.faster {
    animation-duration: 500ms
}

.animated.slow {
    animation-duration: 2s
}

.animated.slower {
    animation-duration: 3s
}

@media(print),
(prefers-reduced-motion: reduce) {
    .animated {
        animation-duration: 1ms !important;
        transition-duration: 1ms !important;
        animation-iteration-count: 1 !important
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-10%, 0, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

.fadeInLeft {
    animation-name: fadeInLeft
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(10%, 0, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

.fadeInRight {
    animation-name: fadeInRight
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -30%, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20%, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.7, 0.7, 0.7)
    }

    50% {
        opacity: 1
    }
}

.zoomIn {
    animation-name: zoomIn
}

.img_effects {
    animation-name: effects;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    transform: translate3d(100%, 0, 0)
}

.effects_wrap {
    position: relative;
    overflow: hidden
}

@keyframes effects {
    0% {
        transform: translate3d(-100%, 0, 0)
    }

    50% {
        transform: translate3d(0%, 0, 0)
    }

    100% {
        transform: translate3d(100%, 0, 0)
    }
}

.clip_bottom {
    animation-name: clip_bottom
}

@keyframes clip_bottom {
    0% {
        -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%)
    }

    100% {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%)
    }
}

.clip_top {
    animation-name: clip_top
}

@keyframes clip_top {
    0% {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0)
    }

    100% {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
    }
}

.clip_left {
    animation-name: clip_left
}

@keyframes clip_left {
    0% {
        -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%)
    }

    100% {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
    }
}

.clip_right {
    animation-name: clip_right
}

@keyframes clip_right {
    0% {
        -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%)
    }

    100% {
        -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
        clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%)
    }
}

body {
    font-family: "Noto Sans TC", sans-serif
}

.container {
    margin: 0 auto
}

iframe,
video {
    width: 100%;
    max-width: 100%
}

a:hover {
    text-decoration: none
}

.flex,
.row {
    display: flex;
    flex-wrap: wrap
}

.lightBox {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 3%;
    z-index: 999
}

.lightBox .content {
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    max-width: 600px;
    color: #000;
    font-size: 13px;
    position: relative;
    z-index: 9;
    line-height: 20px
}

.lightBox .content .contentText {
    max-height: 80vh;
    overflow-y: auto;
    padding-right: 15px
}

.lightBox .content .contentText p {
    color: #000 !important
}

.bgClose {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0
}

.close {
    width: 36px;
    height: 36px;
    position: absolute;
    top: -10px;
    right: -10px;
    background: #000;
    cursor: pointer;
    border-radius: 100%
}

.close:before,
.close:after {
    content: "";
    width: 24px;
    height: 1px;
    position: absolute;
    top: 17px;
    right: 6px;
    transform: rotate(45deg);
    background: #fff
}

.close:after {
    transform: rotate(-45deg)
}

footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 99999
}

footer .flex div {
    flex: 0 0 33.3333%;
    text-align: center
}

footer .flex div a {
    color: #fff !important;
    display: block;
    width: 100%;
    line-height: 36px;
    padding: 7px 0;
    font-size: 18px;
    letter-spacing: 2px
}

@media(max-width: 500px) {
    footer .flex div a {
        font-size: 16px;
        letter-spacing: 0px
    }
}

footer .flex div a i {
    padding-right: 3px;
    color: #fff !important
}

footer .flex div a img {
    max-width: 21px;
    padding-right: 3px;
    vertical-align: middle
}

footer .flex .tel {
    background: #e56a33;
    border-right: solid 1px #fff
}

footer .flex .fb {
    background-color: #5678bf;
    border-right: solid 1px #fff
}

footer .flex .message {
    background-color: #00c6ff
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    transition: .7s background-color;
    z-index: 99;
    padding: 10px 0
}

@media(max-width: 500px) {
    header {
        padding: 5px 0
    }
}

header .logo {
    flex: 0 0 50%;
    padding: 0 30px
}

header .logo img {
    max-width: 132px;
    transition: .7s max-width
}

@media(max-width: 500px) {
    header .logo img {
        max-width: 120px
    }
}

main img {
    max-width: 100%
}

@media(max-width: 2000px) {
    main img {
        max-width: initial;
        width: 100%
    }
}

main .box {
    margin-top: -3px
}

.fixed {
    background-color: rgba(255, 255, 255, .75);
    transition: .7s background-color
}

.fixed .logo img {
    max-width: 100px;
    transition: .7s max-width
}

@media(max-width: 500px) {
    .fixed .logo img {
        max-width: 100px
    }
}

.fixed menu li a {
    padding: 18px 20px;
    transition: .7s padding
}

.fixed .mobileBth {
    top: 1px;
    transition: .7s top
}

.next-arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    z-index: 9;
    background-color: rgba(255, 255, 255, .75);
    color: #000;
    width: 42px;
    height: 42px;
    text-align: center;
    line-height: 42px;
    border: none;
    border-radius: 100%;
    cursor: pointer
}

.next-arrow:hover {
    background-color: #fff
}

.prev-arrow {
    position: absolute;
    top: 50%;
    left: 20px;
    z-index: 9;
    background-color: rgba(255, 255, 255, .75);
    color: #000;
    width: 42px;
    height: 42px;
    text-align: center;
    line-height: 42px;
    border: none;
    border-radius: 100%;
    cursor: pointer
}

.prev-arrow:hover {
    background-color: #fff
}

.slick-slide img {
    max-width: initial;
    width: 100%
}

.slick-dots {
    position: absolute;
    width: 100%;
    justify-content: center;
    left: 0;
    bottom: 30px;
    display: flex;
    flex-wrap: wrap
}

.slick-dots li {
    margin: 0 6px;
    cursor: pointer
}

.slick-dots li button {
    border: none;
    background-color: rgba(255, 255, 255, .75);
    font-size: 0;
    z-index: 9;
    border-radius: 100%;
    width: 15px;
    height: 15px
}

.slick-dots .slick-active button {
    background-color: #fff
}

.formTable {
    padding: 60px 30px;
    position: relative;
    top: -3px
}

.formTable .content {
    max-width: 500px;
    margin: 0 auto
}

.formTable .content .title {
    text-align: center;
    padding-bottom: 50px
}

.formTable .content .title span {
    font-size: 24px;
    font-weight: bold;
    border-bottom: solid 1px #000;
    color: #000
}

.formTable .content .check_row {
    text-align: center;
    padding-top: 50px
}

.formTable .content .check_row a {
    border-bottom: solid 1px #000
}

.formTable .content .send {
    text-align: center;
    padding-top: 90px
}

.formTable .content .send button {
    font-size: 18px;
    padding: 15px 30px;
    color: #fff !important;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: bold
}

.formTable .content .row .row_col {
    flex: 0 0 100%
}

@media(max-width: 500px) {
    .formTable .content .row .row_col {
        flex: 0 0 100%
    }
}

.formTable .content .row .row_col .col {
    margin-bottom: 30px
}

.formTable .content .row .row_col .col input[type=text] {
    width: 100%;
    height: 40px;
    border-radius: 4px;
    background-color: #fff;
    font-size: 18px;
    border: solid 1px #ccc;
    padding-left: 5px;
    color: #000 !important
}

.formTable .content .row .row_col .col select {
    width: 100%;
    height: 40px;
    border-radius: 4px;
    background-color: #fff;
    font-size: 18px;
    border: solid 1px #ccc;
    padding-left: 5px;
    color: #000 !important
}

.formTable .content .row .row_col .col select option {
    color: #000 !important
}

.formTable .content .row .row_col .col span {
    color: #c02 !important
}

.formTable .content .row .row_col .col label {
    font-size: 18px;
    padding-bottom: 12px;
    color: #000;
    display: block
}

.formTable .content .row .row_col .col textarea {
    width: 100%;
    /* height: 240px; */
    border-radius: 4px;
    background-color: #fff;
    font-size: 18px;
    border: solid 1px #ccc;
    padding: 5px;
    color: #000 !important;
    font-family: "微軟正黑體"
}

.formTable .content .row .row_col .col div {
    display: flex;
    flex-wrap: wrap
}

.formTable .content .row .row_col .col div .county {
    flex: 0 0 calc(50% - 15px);
    margin: 0;
    margin-right: 15px
}

@media(max-width: 500px) {
    .formTable .content .row .row_col .col div .county {
        flex: 0 0 100%;
        margin: 0;
        margin-bottom: 30px
    }
}

.formTable .content .row .row_col .col div .district {
    flex: 0 0 calc(50% - 15px);
    margin: 0;
    margin-left: 15px
}

@media(max-width: 500px) {
    .formTable .content .row .row_col .col div .district {
        flex: 0 0 100%;
        margin: 0
    }
}

.formTable .content .row .row_col .col .col-2 {
    flex: 0 0 100%
}

@media(max-width: 500px) {
    .formTable .content .row .row_col .col .col-2 {
        flex: 0 0 100%;
        margin-bottom: 30px
    }
}

#email {
    margin-bottom: 25px
}

.map_section {
    padding: 5% 0
}

.map_section .title {
    text-align: center;
    padding-bottom: 50px
}

.map_section .title span {
    font-size: 24px;
    font-weight: bold;
    border-bottom: solid 1px #000;
    color: #000
}

.map_section .content {
    max-width: 500px;
    margin: 0 auto
}

@media(max-width: 500px) {
    .map_section .content {
        padding: 30px;
        padding-bottom: 60px
    }
}

.map_section .content .row {
    align-items: center
}

.map_section .content .row .data {
    flex: 0 0 100%
}

@media(max-width: 500px) {
    .map_section .content .row .data {
        flex: 0 0 100%
    }
}

.map_section .content .row .data .col {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px
}

.map_section .content .row .data .col span {
    font-size: 18px;
    color: #000;
    flex: 0 0 100px
}

@media(max-width: 500px) {
    .map_section .content .row .data .col span {
        flex: 0 0 100%;
        margin-bottom: 20px;
        font-size: 16px
    }
}

.map_section .content .row .data .col div {
    font-size: 22px;
    color: #000;
    flex: 0 0 calc(100% - 110px)
}

@media(max-width: 500px) {
    .map_section .content .row .data .col div {
        flex: 0 0 100%
    }
}

.map_section .content .row .data .col .reception {
    line-height: 25px
}

.map_section .content .row .data .col .reception br {
    display: none
}

@media(max-width: 500px) {
    .map_section .content .row .data .col .reception br {
        display: block
    }
}

.map_section .content .row .googleMap {
    flex: 0 0 100%
}

@media(max-width: 500px) {
    .map_section .content .row .googleMap {
        flex: 0 0 100%
    }
}

.map_section .content .row .googleMap .iframe_col {
    padding: 15px;
    background-color: #fff;
    border: solid 1px #ccc;
    border-radius: 8px
}

.map_section .content .row .googleMap .iframe_col iframe {
    height: 300px !important;
    width: 100% !important
}

.data_bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    top: -2px
}

.map {
    position: relative;
    overflow-y: hidden;
    overflow-y: auto;
    top: -1px
}

.map .mask {
    display: none;
    position: sticky;
    top: 45%;
    left: 0%;
    z-index: 10
}

@media(max-width: 500px) {
    .map .mask {
        display: block
    }
}

.map .mask img {
    max-width: 47px;
    position: absolute;
    width: 47px !important;
    animation: hand 3s infinite ease-in-out
}

.map img {
    max-width: initial;
    width: 1280px
}

@keyframes hand {
    from {
        left: 30%
    }

    to {
        left: 70%
    }
}

.gotop {
    position: fixed;
    right: 20px;
    bottom: 10%;
    font-size: 20px;
    width: 40px;
    height: 40px;
    background-color: #2c0148;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 100%;
    cursor: pointer;
    display: none
}

@media(max-width: 500px) {
    .gotop {
        display: block
    }
}

.ease {
    position: relative
}

.ease article {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap
}

.ease article div {
    flex: 100%
}

.slick_wrap {
    top: -1px;
    position: relative
}

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