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;
}

/*# sourceMappingURL=reset.css.map */
* {
  font-family: "Noto Sans TC", sans-serif;
  scroll-behavior: smooth;
}

.hover {
  cursor: pointer;
}

.top {
  position: absolute;
  right: 15px;
  max-width: 70px;
  bottom: -100px;
  transition: all 0.3s linear;
  opacity: 0;
  z-index: -2;
}
@media (max-width: 1440px) {
  .top {
    max-width: 60px;
    right: 10px;
  }
}
@media (max-width: 1440px) {
  .top {
    max-width: 40px;
  }
}
@media (max-width: 980px) {
  .top {
    max-width: 45px;
  }
}
.top.fixed {
  z-index: 3;
  opacity: 1;
  bottom: 15px;
  position: fixed;
}
@media (max-width: 980px) {
  .top.fixed {
    bottom: 20px;
  }
}
.top.fixed:hover {
  bottom: 25px;
}
.top figure, .top img {
  width: 100%;
}

@media (max-width: 980px) {
  html,
body {
    width: 100%;
  }
  html.noscroll,
body.noscroll {
    overflow: hidden;
  }
}
.wrap {
  position: relative;
  overflow: hidden;
}

.btnMenu {
  display: block;
  width: 30px;
  height: 20px;
  line-height: 15px;
  position: fixed;
  top: 25px;
  right: 15px;
  float: right;
  margin: 0;
  transform: rotate(0deg);
  z-index: 30;
  cursor: pointer;
}
.btnMenu.choose_open {
  z-index: 3;
}
.btnMenu span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: white;
  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 .menu_list {
  transform: translateX(0);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  z-index: 3;
  width: 100%;
  font-family: "Noto Sans TC", sans-serif;
  padding-top: 1.7vw;
  padding-right: 2.5%;
  padding-left: 3.75%;
}
@media (max-width: 980px) {
  .header {
    padding-top: 30px;
    width: fit-content;
  }
}
.header > ul {
  display: flex;
}
.header .logo_title {
  display: flex;
  align-items: center;
  gap: 35px;
  color: white;
  font-weight: bold;
  letter-spacing: 1.1px;
}
@media (max-width: 980px) {
  .header .logo_title {
    gap: 20px;
  }
}
.header .logo_list {
  position: relative;
}
.header .logo_list:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 65px;
  background-color: #fff;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1440px) {
  .header .logo_list:after {
    height: 52px;
  }
}
@media (max-width: 980px) {
  .header .logo_list:after {
    height: 40px;
  }
}
.header .logo_line1 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 1440px) {
  .header .logo_line1 {
    font-size: 11.2px;
  }
}
.header .logo_line2 {
  font-size: 22px;
}
@media (max-width: 1440px) {
  .header .logo_line2 {
    font-size: 17.6px;
  }
}
@media (max-width: 980px) {
  .header .logo_line2 {
    font-size: 15px;
  }
}
.header figure {
  max-width: 192px;
  margin-right: 35px;
  width: 100%;
}
@media (max-width: 1440px) {
  .header figure {
    max-width: 144px;
  }
}
@media (max-width: 980px) {
  .header figure {
    max-width: 100px;
    margin-right: 15px;
  }
}
.header figure img {
  width: 100%;
}
.header .menu_list {
  gap: 25px;
}
@media (max-width: 980px) {
  .header .menu_list {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding-top: 100px;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #a6f2f4;
    left: 100vw;
    top: 0;
    z-index: -1;
    transition: all 0.2s linear;
  }
  .header .menu_list.open {
    z-index: 9299;
    position: fixed;
    left: 0;
  }
}
.header .menu_list a {
  border-radius: 30px;
  border: 4px solid #26a9ac;
  padding: 7px 23px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1.1px;
  color: #a6f2f4;
  background-color: #2d858c;
  box-shadow: inset #154548 0px 0px 10px -2px;
  transition: all 0.15s linear;
}
@media (max-width: 1440px) {
  .header .menu_list a {
    font-size: 16px;
  }
}
.header .menu_list a:hover {
  background-color: #a6f2f4;
  box-shadow: none;
  color: #087a7b;
}

.footer {
  font-family: "Noto Sans TC", sans-serif;
  background-color: black;
  position: relative;
  padding-bottom: 85px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 980px) {
  .footer {
    padding-top: 30px;
    padding-bottom: 30px;
    line-height: 1.5;
  }
}
.footer::before {
  content: "";
  position: absolute;
  width: 100%;
  padding-bottom: 19.55%;
  background-image: url(../images/footer_tree.svg);
  bottom: calc(100% - 1px);
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.footer_content {
  max-width: 1270px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 1440px) {
  .footer_content {
    max-width: 90vw;
  }
}
@media (max-width: 980px) {
  .footer_content {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}
.footer p {
  color: white;
}
.footer p:not(.gray) {
  margin-bottom: 20px;
}
.footer .gray {
  color: #8b8b8b;
}
.footer a {
  color: #5bcfd9;
  border-bottom: 1px solid #5bcfd9;
  line-height: 1.8;
  transition: all 0.15s linear;
}
.footer a:hover {
  color: white;
  border-bottom: 1px solid white;
}