@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;700&family=Noto+Sans+TC:wght@300;400;500;700&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::after {
  display: none;
  content: url(../images/menu_btn_hover_80.png) url(../images/menu_btn_default_80.png);
}

.fixed-position {
  position: fixed;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  padding: 40px 40px 0;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
header.open .scroll {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  visibility: visible;
  opacity: 1;
  pointer-events: initial;
}
header.open .container-burger .burger span {
  background: rgba(255, 255, 255, 0);
}
header.open .container-burger .burger span::after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  bottom: 0px;
  background: #21553c;
}
header.open .container-burger .burger span::before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  top: 0px;
  background: #21553c;
}

.container-burger {
  z-index: 99;
  margin-right: 6%;
  cursor: pointer;
}
.container-burger .burger {
  position: relative;
  width: 80px;
  height: 80px;
  background: url(../images/menu_btn_default_80.png) center/contain no-repeat;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.container-burger .thunder {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.container-burger .burger:hover {
  background: url(../images/menu_btn_hover_80.png) center/contain no-repeat;
}
.container-burger .burger:hover .thunder {
  opacity: 0;
}

.scroll {
  overflow-y: auto;
  width: 100vw;
  height: 100vh;
  background-color: #001038;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  z-index: 2;
}

.burger-menu {
  width: 100%;
  height: 100vh;
  min-height: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.container-menu {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 40px 0 0 200px;
}
.container-menu .menu .main {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.container-menu .menu .main:not(:last-child) {
  margin-bottom: 25px;
}
.container-menu .menu .f100 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  background-color: #001038;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  -webkit-text-stroke: 1px #fff;
  -webkit-transition: letter-spacing 0.4s ease-in-out;
  transition: letter-spacing 0.4s ease-in-out;
}
.container-menu .menu .f100::before {
  content: attr(data-title);
  white-space: nowrap;
  background-color: white;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0%;
  height: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  -webkit-transition-property: width, letter-spacing;
  transition-property: width, letter-spacing;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0em;
}
@media (min-width: 320px) {
  .container-menu .menu .main:hover .f100 {
    letter-spacing: 0.05em;
  }
  .container-menu .menu .main:hover .f100::before {
    width: 100%;
    letter-spacing: 0.05em;
  }
}

.container-info {
  width: 20%;
  -ms-flex-item-align: end;
      align-self: flex-end;
  padding-bottom: 60px;
  padding-right: 10px;
}
.container-info .f14-r {
  line-height: 22px;
}
.container-info .f14-r:not(:last-child) {
  margin-bottom: 10px;
}

.container-media {
  background-color: #ffa825;
  height: 100%;
  width: 104px;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 60px 0;
}
.container-media a {
  display: block;
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.container-media a:not(:last-child) {
  margin-bottom: 24px;
}

.closebtn {
  font-weight: 700;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  position: absolute;
  bottom: 60px;
  left: 200px;
}
.closebtn a {
  line-height: 0.8;
  -webkit-transition: letter-spacing 0.4s ease-in-out;
  transition: letter-spacing 0.4s ease-in-out;
}
@media (min-width: 768px) {
  .closebtn:hover a {
    letter-spacing: 0.05em;
  }
}

@media (max-width: 1440px) and (min-width: 1025px) {
  .container-menu .menu .f100 {
    font-size: 5vw;
  }

  .closebtn.f100 {
    font-size: 5vw;
    bottom: 100px;
  }

  .container-info {
    padding-bottom: 100px;
  }

  .container-media {
    padding: 100px 0;
  }
}
@media (max-width: 1024px) {
  header {
    padding: 0;
  }
  header.open .container-burger {
    background-color: #001038;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
  }

  .container-burger {
    padding: 24px 24px 0;
    margin-right: 0;
    width: 100%;
  }
  .container-burger .burger {
    width: 48px;
    height: 48px;
  }

  .scroll {
    padding-top: 96px;
    height: 100vh;
  }

  .burger-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 24px;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    min-height: calc(100vh - 96px);
    height: auto;
    position: relative;
  }

  .org {
    width: calc(100% + 48px);
    height: 9vh;
    background-color: #ffa825;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-left: -24px;
    margin-top: auto;
  }

  .container-menu {
    width: 100%;
    padding: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    margin-bottom: 40px;
  }

  .container-info {
    display: none;
  }

  .container-media {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    background-color: transparent;
    height: auto;
    width: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0;
    margin-bottom: 40px;
  }
  .container-media a:not(:last-child) {
    margin-bottom: 0px;
    margin-right: 21px;
  }

  .closebtn {
    position: relative;
    bottom: auto;
    left: auto;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-bottom: 40px;
  }
}
footer {
  background: black;
  text-align: center;
  padding: 9px 0;
}
@media (max-width: 767px) {
  footer {
    padding: 15px 0;
  }
}

::-moz-selection {
  background-color: #ffa825;
  color: white;
}

::selection {
  background-color: #ffa825;
  color: white;
}

body,
html {
  overflow-x: hidden;
  background-color: #001038;
}

body {
  font-family: "Mulish", "Noto Sans TC", sans-serif;
  color: white;
  font-weight: 400;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.6s ease-in;
  transition: 0.6s ease-in;
  position: relative;
}
body.loading {
  opacity: 1;
  visibility: visible;
}

.mo {
  display: none;
}
@media (max-width: 767px) {
  .mo {
    display: block;
  }
}

.pc {
  display: none;
}
@media (min-width: 768px) {
  .pc {
    display: block;
  }
}

.container {
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
}
@media (min-width: 768px) {
  .container {
    width: 80%;
  }
}
@media (min-width: 992px) {
  .container {
    width: 90%;
  }
}
@media (min-width: 1200px) {
  .container {
    margin-left: 15%;
    margin-right: 8%;
    max-width: 77%;
  }
}
@media (min-width: 1441px) {
  .container {
    margin: 0 auto;
    max-width: 1104px;
  }
}

a {
  outline: none;
  color: inherit;
}

a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

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

*:focus {
  outline: none;
}

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

.lang_tw .tw {
  display: block;
}
.lang_tw .en {
  display: none;
}

.lang_en .tw {
  display: none;
}
.lang_en .en {
  display: block;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.title-section {
  width: 100%;
  height: 160px;
  background-color: #001038;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}
.title-section h1 {
  position: fixed;
  top: 40px;
  left: 144px;
}
.title-section .f14-r {
  position: fixed;
  top: 82px;
  left: 560px;
}
.title-section img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-animation: flicker 1.5s forwards;
          animation: flicker 1.5s forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@-webkit-keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0;
  }
}
@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0;
  }
}
@media (max-width: 991px) {
  .title-section h1 {
    left: 100px;
  }
  .title-section .f14-r {
    left: 516px;
    padding-right: 16px;
  }
}
@media (max-width: 767px) {
  .title-section {
    height: 160px;
  }
  .title-section h1 {
    width: 223px;
    left: 16px;
    top: 80px;
  }
}

.list-section {
  margin-top: 160px;
}
@media (max-width: 767px) {
  .list-section {
    margin-top: 160px;
  }
}

[data-aos=fade] {
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
[data-aos=fade].aos-animate {
  opacity: 1;
}

.f100 {
  font-size: 6.25rem;
}
@media (max-width: 1200px) {
  .f100 {
    font-size: 5rem;
  }
}
@media (max-width: 991px) {
  .f100 {
    font-size: 3.125rem;
  }
}
@media (max-width: 767px) {
  .f100 {
    font-size: 2.375rem;
  }
}

.f18-m {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 25.2px;
}

.f18-r {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 25.2px;
}

.f16-m {
  font-size: 1rem;
  font-weight: 500;
  line-height: 22.4px;
}

.f16-r {
  font-size: 1rem;
  font-weight: 400;
  line-height: 22.4px;
}

.f16 {
  font-size: 1rem;
  font-weight: 300;
  line-height: 22.4px;
}

.f14-m {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 19.6px;
}

.f14-r {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 19.6px;
}

.f12-m {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 16.8px;
}

.f12-r {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 16.8px;
}

.f10-r {
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 14px;
}

.btnwrap .btn {
  display: block;
  padding: 14px 22px;
  color: #001038;
  line-height: 25.2px;
  font-weight: 500;
  background-color: white;
  border-radius: 40px;
  border: 4px solid #334060;
  -webkit-box-shadow: inset 0px 0px 0px 4px #999faf;
          box-shadow: inset 0px 0px 0px 4px #999faf;
}
@media (max-width: 1200px) {
  .btnwrap .btn {
    font-size: 1.125rem;
  }
}
@media (max-width: 767px) {
  .btnwrap .btn {
    font-size: 0.875rem;
  }
}
@media (min-width: 1201px) {
  .btnwrap .btn {
    font-size: 1.125rem;
  }
}
@media (max-width: 767px) {
  .btnwrap .btn {
    line-height: 19.6px;
  }
}
.btnwrap .btn .hover {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #ffc256;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.btnwrap .btn .unhover {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
@media (min-width: 768px) {
  .btnwrap .btn:hover {
    background-color: #001038;
    border: 4px solid rgba(255, 194, 86, 0.2);
    -webkit-box-shadow: inset 0px 0px 0px 4px #f0cc8b;
            box-shadow: inset 0px 0px 0px 4px #f0cc8b;
  }
  .btnwrap .btn:hover .hover {
    opacity: 1;
    visibility: visible;
  }
  .btnwrap .btn:hover .unhover {
    opacity: 0;
  }
}
@media (max-width: 767px) {
  .btnwrap .btn {
    padding: 10px 22px;
  }
}

.delete {
  width: 40px;
  height: 40px;
}
.delete::before, .delete::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: " ";
  height: 25px;
  width: 2px;
  background-color: white;
}
.delete::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.delete::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 767px) {
  .delete::before, .delete::after {
    height: 20px;
    width: 2px;
  }
}

sup {
  vertical-align: super;
  font-size: 12px;
}