@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700;900&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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, 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;
  vertical-align: baseline;
  font: inherit;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  position: relative;
  overflow-x: hidden;
  scroll-behavior: smooth;
  visibility: hidden;
  opacity: 0;
  font-family: "Noto Sans TC", sans-serif;
  letter-spacing: 0;
  color: #DF0539;
}
body.fade-in {
  opacity: 1;
  -webkit-transition: opacity 2s ease;
  transition: opacity 2s ease;
  visibility: visible;
}

/*----------------------通用設定------------------------*/
::-moz-selection {
  color: #fff;
  background: #DF0539;
}
::selection {
  color: #fff;
  background: #DF0539;
}

a {
  outline: none;
}

a, a:hover {
  text-decoration: none;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

*:focus {
  outline: none;
}

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

#Wapper {
  overflow: hidden;
}

.row {
  position: relative;
}
@media all and (max-width: 768px) {
  .row {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media all and (min-width: 769px) {
  .row {
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  .row:not(.col) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media all and (min-width: 769px) and (max-width: 990px) {
  .row:not(.w100) {
    width: 80%;
  }
}
@media all and (min-width: 991px) {
  .row {
    width: 1200px;
    max-width: 96%;
  }
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

@media all and (min-width: 576px) {
  .col-11 {
    max-width: 1170px;
    width: 92%;
    margin: 0 auto;
  }
}

@media all and (min-width: 576px) {
  .col-10 {
    max-width: 1000px;
    width: 92%;
    margin: 0 auto;
  }
}

.imgPng {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

/*----------------------共用樣式------------------------*/
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.mpsrel {
  position: relative;
}

.bgcover {
  width: 100%;
  height: 0;
  background: center/cover;
}

/*-------------------背景圖片 桌手機分開-----------------*/
@media all and (max-width: 575px) {
  .bgcover[data-src-lg] {
    content: attr(data-src-lg, url);
  }
}
@media all and (min-width: 576px) {
  .bgcover[data-src-sm] {
    content: attr(data-src-sm, url);
  }
}
.block-title {
  line-height: 1;
  font-weight: 900;
  -webkit-text-stroke: 2px #DF0539;
  -webkit-text-fill-color: #DF0539;
}
@media all and (max-width: 768px) {
  .block-title {
    font-size: 24vw;
  }
}
@media all and (min-width: 769px) {
  .block-title {
    font-size: 13.5vw;
  }
}
.block-title.bdr {
  -webkit-text-fill-color: white;
}
@media all and (max-width: 990px) {
  .block-title {
    text-align: center;
  }
}

header {
  z-index: 100;
  width: 100%;
  background: white;
  border-bottom: 2px solid #DF0539;
  -webkit-transition: top 0.6s;
  transition: top 0.6s;
  position: fixed;
  top: 0;
  left: 0%;
}
@media all and (max-width: 990px) {
  header .title-bar {
    height: 60px;
    border-bottom: 1px solid white;
    position: relative;
    z-index: 11;
  }
}
@media all and (min-width: 769px) and (max-width: 990px) {
  header .title-bar {
    height: 70px;
  }
}
@media all and (min-width: 991px) {
  header li:hover .subBox {
    visibility: visible;
    opacity: 1;
  }
}
header.navdown {
  top: -120px;
}
header .navBox {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
}
@media all and (max-width: 990px) {
  header .navBox {
    display: none;
    height: 100vh;
    background-color: #DF0539;
    position: fixed;
    top: 0;
    right: 0%;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
  }
}
header a .svg {
  width: 100%;
}
header .logo {
  position: absolute;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 12;
  -webkit-transition: 0s;
  transition: 0s;
}
@media all and (max-width: 990px) {
  header .logo {
    left: 50%;
    -webkit-transform: translate(-50%, -42%);
            transform: translate(-50%, -42%);
    width: 130px;
  }
}
@media all and (min-width: 991px) {
  header .logo {
    left: 20px;
    width: 150px;
  }
}
@media all and (min-width: 1440px) {
  header .logo {
    left: 40px;
    width: 240px;
  }
}
header .menuicon {
  position: absolute;
  right: 16px;
  z-index: 12;
}
header .menuicon .mpsrel {
  width: 40px;
  height: 40px;
}
header .menuicon .bar, header .menuicon .bar:after, header .menuicon .bar:before {
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  content: "";
  position: absolute;
  top: 0;
  right: 0%;
  height: 3px;
  width: 22px;
  background: #df0539;
}
header .menuicon .bar {
  margin-top: 22px;
  width: 22px;
}
header .menuicon .bar:before {
  top: -9px;
}
header .menuicon .bar:after {
  top: 9px;
}
@media all and (max-width: 768px) {
  header .menuicon {
    top: 7px;
  }
}
@media all and (min-width: 769px) and (max-width: 990px) {
  header .menuicon {
    top: 15px;
  }
}
@media all and (min-width: 991px) {
  header .menuicon {
    display: none;
  }
}
header.menu-expanded .menuicon .bar {
  background: rgba(0, 0, 0, 0);
}
header.menu-expanded .menuicon .bar:before {
  top: 0px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 25px;
  background: white;
}
header.menu-expanded .menuicon .bar:after {
  top: 0px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 25px;
  background: white;
}
header.menu-expanded .title-bar {
  background: #DF0539;
}
header.menu-expanded .logo .svg .cls-1 {
  fill: white;
  stroke: white;
}
header ul.mmenu {
  text-align: center;
}
@media all and (max-width: 990px) {
  header ul.mmenu {
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
  }
  header ul.mmenu a .svg .cls-1 {
    fill: white;
    stroke: white;
  }
}
@media all and (min-width: 991px) {
  header ul.mmenu {
    padding: 0px 20px 0px 60px;
    margin: 0 auto;
    max-width: 1200px;
  }
}
@media all and (min-width: 1440px) {
  header ul.mmenu {
    padding: 10px 20px 10px 60px;
  }
}
header ul.mmenu > li {
  position: relative;
}
header ul.mmenu > li > a {
  display: block;
  position: relative;
  color: #DF0539;
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.6875em;
}
@media all and (max-width: 990px) {
  header ul.mmenu > li > a {
    color: white;
    padding: 0.5em 0.5em;
  }
  header ul.mmenu > li:last-child {
    margin-bottom: 3em;
  }
}
@media all and (min-width: 991px) {
  header ul.mmenu > li {
    display: inline-block;
    margin: 0 8px;
  }
  header ul.mmenu > li span {
    padding: 16px;
    display: block;
  }
  header ul.mmenu > li a {
    font-size: 1.8vw;
  }
  header ul.mmenu > li:hover > a, header ul.mmenu > li.active > a {
    color: #DF0539;
  }
}
@media all and (min-width: 1440px) {
  header ul.mmenu > li {
    margin: 0 40px;
  }
  header ul.mmenu > li > a {
    font-size: 1.6875em;
  }
}

.olink a {
  display: inline-block;
  width: 30px;
  margin: 0 6px;
}
@media all and (max-width: 990px) {
  .olink {
    position: absolute;
    bottom: 15%;
    left: 0%;
    width: 100%;
    text-align: center;
  }
  .olink a {
    margin-top: 0.2em;
  }
  .olink .svg .a {
    fill: white;
    stroke: white;
  }
}
@media all and (min-width: 991px) {
  .olink {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .olink a {
    padding: 2px;
  }
}
@media all and (min-width: 1440px) {
  .olink {
    right: 40px;
  }
  .olink a {
    padding: 0;
  }
}

footer {
  background-color: #DF0539;
  color: white;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 2;
  padding: 30px;
}
@media all and (max-width: 768px) {
  footer {
    font-size: 0.75em;
  }
}
@media all and (min-width: 769px) {
  footer {
    font-size: 1em;
  }
}
@media all and (max-width: 768px) {
  footer {
    padding: 10px;
  }
}
@media all and (max-width: 990px) {
  footer {
    margin-top: -8px;
  }
}

.asj.fade {
  opacity: 0;
}
.asj.fade.animated {
  opacity: 1;
  -webkit-transition: opacity 2s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 2s cubic-bezier(0.25, 1, 0.5, 1);
}

.asj.fade-up {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.asj.fade-up.animated {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: opacity 1s, -webkit-transform 0.6s;
  transition: opacity 1s, -webkit-transform 0.6s;
  transition: opacity 1s, transform 0.6s;
  transition: opacity 1s, transform 0.6s, -webkit-transform 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.38, 0.005, 0.215, 1);
          transition-timing-function: cubic-bezier(0.38, 0.005, 0.215, 1);
}

.asj[data-delay="100"] {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.asj[data-delay="200"] {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.asj[data-delay="300"] {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.asj[data-delay="500"] {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}