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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
  list-style: none;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

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

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

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

a {
  text-decoration: none;
}

a img {
  border: none;
}

img {
  display: block;
  border: none;
}

.wrap {
  position: relative;
}

html,
body {
  width: 100%;
}
html.noscroll,
body.noscroll {
  overflow: hidden;
}

* {
  box-sizing: border-box;
  font-family: "Noto Sans TC", sans-serif;
}

.btnMenu {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 15px;
  position: fixed;
  top: 20px;
  right: 15px;
  float: right;
  margin: 0;
  transform: rotate(0deg);
  z-index: 300;
  cursor: pointer;
}
.btnMenu span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #5fc2e1;
  box-sizing: border-box;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  transition-property: transform, opacity, background-color;
}
.btnMenu span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}
.btnMenu span:nth-child(2) {
  top: 8px;
  transform-origin: left center;
}
.btnMenu span:nth-child(3) {
  top: 16px;
  transform-origin: left center;
}
@media (min-width: 981px) {
  .btnMenu {
    display: none;
  }
}

.active .btnMenu span {
  background: #fff;
}
.active .btnMenu span:nth-child(1) {
  transform: rotate(45deg) translateY(-3.5px);
}
.active .btnMenu span:nth-child(2) {
  transform: scaleX(0);
  opacity: 0;
}
.active .btnMenu span:nth-child(3) {
  transform: rotate(-45deg) translateY(4px);
}
.active .navList {
  transform: translateX(0);
}

.header {
  width: 100%;
  position: fixed;
  z-index: 299;
  transition: all 0.35s linear;
  padding-top: 30px;
}
@media (max-width: 1440px) {
  .header {
    padding-top: 25px;
  }
}
@media screen and (min-width: 981px) {
  .header.scroll {
    background-color: white;
    padding: 0;
    border-bottom: 4px solid #5fc2e0;
  }
}
@media (max-width: 980px) {
  .header {
    position: fixed;
    padding: 0;
    top: 0;
  }
  .header .header_list {
    max-width: 100%;
    padding: 15px 20px;
    border-radius: 0;
  }
  .header .logo {
    max-width: 250px;
  }
}

.header_list {
  border-radius: 50px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  padding-left: 70px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-right: 16px;
  max-width: 96.875%;
  width: 100%;
  margin: auto;
}
@media (max-width: 1440px) {
  .header_list {
    padding-left: 40px;
  }
}

.logo {
  max-width: 458px;
  width: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
}
.logo a {
  width: 100%;
}
@media (max-width: 1440px) {
  .logo {
    max-width: 343.5px;
  }
}

.navList {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -ms-flex-pack: center;
  align-items: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.navList .homeBtn {
  display: block;
}
.navList li.b_bg {
  padding: unset;
}
.navList li.b_bg a {
  border-radius: 35px;
  font-weight: 700;
  color: white;
  background-color: #5fc2e0;
  padding: 21px 51px;
}
@media (max-width: 1440px) {
  .navList li.b_bg a {
    padding: 18px 40px;
  }
}
.navList li.b_bg a:hover {
  background: #0084c0;
  color: white;
}
.navList li:not(.b_bg) {
  display: flex;
  justify-content: center;
  min-width: 120px;
  margin-right: 30px;
}
@media (max-width: 1440px) {
  .navList li:not(.b_bg) {
    margin-right: 25px;
  }
}
.navList li a {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  display: inline-block;
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
  color: #999999;
  transition: 0.3s;
}
.navList li a:hover {
  color: #0084c0;
  font-weight: bold;
}
@media (max-width: 1440px) {
  .navList li a {
    font-size: 18px;
  }
}
@media (max-width: 980px) {
  .navList {
    position: absolute;
    left: 100vw;
    top: 0;
    z-index: -1;
    transition: all 0.2s linear;
    width: 100%;
    height: 100vh;
    background-color: #5fc2e0;
    flex-direction: column;
    gap: 30px;
    justify-content: flex-start;
    padding-top: 100px;
  }
  .navList li:not(.bg_bg) {
    margin-right: unset;
  }
  .navList li a {
    padding: 18px 40px;
    color: white;
    font-weight: bold;
  }
  .navList.open {
    z-index: 1;
    position: fixed;
    left: 0;
  }
}

.gotop {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: 0.5s;
  bottom: -80px;
  right: 15px;
  background: url("../images/gotop.svg") center center no-repeat;
  background-size: contain;
  z-index: 90;
  opacity: 0;
}
@media (max-width: 980px) {
  .gotop {
    width: 45px;
    height: 45px;
    right: 5px;
  }
}
.gotop:hover {
  transform: translateY(-10px);
}
.gotop.show {
  opacity: 1;
  bottom: 25px;
}
@media screen and (min-width: 990px) {
  .gotop.show {
    bottom: 15px;
  }
  .gotop.btm {
    bottom: 115px;
  }
}

.footer_content {
  background-color: #5fc2e0;
  text-align: center;
  padding: 16px 15px 12px;
}
.footer_content p {
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #ffffff;
  padding: 8px 0;
}
.footer_content span {
  display: block;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: center;
  color: #ffffff;
  padding: 6px 0;
}

@media (min-width: 0px) {
  html,
body {
    min-width: 320px;
  }
}
.fix-order {
  position: fixed;
  bottom: 25%;
  right: 0px;
  background: url("../images/fix_order.png?240509") center center no-repeat;
  background-size: contain;
  z-index: 90;
  bottom: 30%;
  width: 105px;
  height: 230px;
  transition: all 0.2s linear;
}
@media (max-width: 1440px) {
  .fix-order {
    width: 90px;
    height: 200px;
  }
}
@media (max-width: 980px) {
  .fix-order {
    bottom: 18%;
    width: 60px;
    height: 132px;
  }
}
.fix-order:hover {
  background: url("../images/fix_order_hover.png?240509") center center no-repeat;
  background-size: contain;
}

.txtBlock {
  animation: txtBlock 1.6s cubic-bezier(0, 1.08, 0.61, 1.02) 1 forwards;
}

/* Border Animation */
.border_ani1 {
  animation: border_ani1 0.8s ease-in-out 1 forwards;
}

.border_ani2 {
  animation: border_ani2 0.8s ease-in-out 1 forwards;
}

.border_ani3 {
  animation: border_ani3 0.8s ease-in-out 1 forwards;
}

/* Circle Animation */
.cir_ani1,
.cir_ani {
  animation: zoomIn 0.8s ease-in-out 1 forwards;
}

/* Car Entry Animation */
.car_entry {
  animation: car_entry 0.8s linear 1 forwards;
}

/* Car Goal Animation */
@media (min-width: 1701px) {
  .car_goal {
    animation: car_goal 5s cubic-bezier(0.17, 0.32, 0.67, 0.5) 1 forwards;
  }
}
@media (min-width: 1501px) {
  .car_goal {
    animation: car_goal_15 4s cubic-bezier(0.17, 0.32, 0.67, 0.5) 1 forwards;
  }
}
@media (min-width: 1365px) {
  .car_goal {
    animation: car_goal_13 3.8s cubic-bezier(0.17, 0.32, 0.67, 0.5) 1 forwards;
  }
}

.jumpUp {
  animation: none;
}

@media (min-width: 1365px) {
  .jumpUp {
    animation: fadeInUp 0.5s ease-in-out 1;
    animation-fill-mode: forwards;
  }
}
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

main {
  background-color: #e2e3e3;
}