@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
html {
  font-family: "Noto Sans TC", "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.05em;
  scroll-behavior: smooth;
  color: #333;
  --green_word: #479952;
  --green_dark: #1c8340;
  --green_lite: #9CCD5A;
  --red_word:#FA835F;
  interpolate-size: allow-keywords;
}
@media all and (min-width: 768px) {
  html {
    font-size: 22px;
  }
}
@media all and (min-width: 1024px) {
  html {
    font-size: 20px;
  }
}
@media all and (min-width: 1200px) {
  html {
    font-size: 22px;
  }
}
@media all and (min-width: 1440px) {
  html {
    font-size: 24px;
  }
}
@media all and (min-width: 1680px) {
  html {
    font-size: 26px;
  }
}
html * {
  box-sizing: border-box;
}
html img {
  display: block;
  width: 100%;
}
html img.cover {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html a {
  color: inherit;
  text-decoration: none;
}
html h1, html h2, html h3, html h4, html h5, html p {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
html p ~ p {
  margin-top: 1em;
}
html body {
  width: 100%;
  min-height: 100dvh;
  background: linear-gradient(to bottom, #00001E 0%, #000040 55%, #00629C 100%);
}
html ._pc {
  display: none;
}
@media all and (min-width: 1024px) {
  html ._mb {
    display: none;
  }
  html ._pc {
    display: block;
  }
}

header {
  position: sticky;
  z-index: 999;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background: linear-gradient(to right, #00629C 0%, #00629C 30%, #000040 79%, #00001E 100%);
}
header .logo {
  position: relative;
  width: 20%;
  min-width: 12em;
  max-width: 15em;
  transition: all 0.2s ease-out;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 180%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 180%, 0 100%);
}
@media all and (min-width: 1024px) {
  header .logo {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 200%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 200%, 0 100%);
  }
}
header .logo:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180%;
  background-color: #1c8340;
  background: linear-gradient(to bottom, #AB2E69 -20%, #23569D 51%, #00125E 71%, transparent 90%);
}
@media all and (min-width: 1024px) {
  header .logo:before {
    height: 200%;
  }
}
header .logo a {
  position: absolute;
  width: 70%;
  height: 80%;
  top: 10%;
  left: 15%;
  transform: scale(1.1) translateY(15%);
  transition: transform 0.2s ease-out;
}
header .logo a img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header nav {
  flex-grow: 1;
  padding: 1em;
  color: #fff;
  font-size: 0.8em;
}
@media screen and (min-width: 1350px) {
  header nav {
    font-size: 0.85em;
  }
}
@media all and (min-width: 1680px) {
  header nav {
    font-size: 0.85em;
  }
}
header nav .nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
header nav .nav-list > li {
  cursor: pointer;
  position: relative;
}
header nav .nav-list > li._sub-nav > a {
  display: flex;
  justify-content: center;
  align-items: center;
}
header nav .nav-list > li._sub-nav > a:after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  background-color: currentColor;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin-left: 0.2em;
}
header nav .nav-list > li:hover {
  color: #FFB319;
}
header nav .nav-list > li:hover > a {
  font-weight: 400;
}
header nav .nav-list > li .sub-nav .sub-nav__list {
  background-color: #fff;
  color: #001999;
}
header nav .nav-list > li .sub-nav .sub-nav__list > li a {
  position: relative;
  display: block;
  padding: 1em 1.5em;
  width: -moz-max-content;
  width: max-content;
  font-size: 0.9em;
  font-weight: 500;
}
header nav .nav-list > li .sub-nav .sub-nav__list > li a:before, header nav .nav-list > li .sub-nav .sub-nav__list > li a:after {
  content: "";
  position: absolute;
  width: 0.2em;
  aspect-ratio: 1/1;
  background-color: currentColor;
  left: 0.75em;
  top: 50%;
  transform: translateY(-50%);
}
header nav .nav-list > li .sub-nav .sub-nav__list > li a:after {
  left: auto;
  right: 0.75em;
}
header nav .nav-list > li .sub-nav .sub-nav__list > li ~ li {
  border-top: 1px solid #ddd;
}
header nav .nav-list > li .sub-nav .sub-nav__list > li:hover {
  background-color: rgba(230, 0, 128, 0.4);
}
@media screen and (max-width: 1199px) {
  header nav {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: #00125E;
    right: -100%;
    transition: right 0.5s ease-out;
    font-size: 1.5em;
  }
}
@media screen and (max-width: 1199px) and (min-width: 1024px) {
  header nav {
    font-size: 1em;
    max-width: 20em;
  }
}
@media screen and (max-width: 1199px) {
  header nav .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0em;
    padding: 1em;
  }
  header nav .nav-list > li > a {
    display: block;
    padding: 1em;
    text-align: center;
  }
  header nav .nav-list > li .sub-nav {
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease-out;
    text-align: center;
  }
  header nav .nav-list > li .sub-nav .sub-nav__list > li a {
    margin: 0 auto;
  }
  header nav .nav-list > li._sub-nav.open .sub-nav {
    height: auto;
  }
  header nav .nav-list > li:hover:after {
    bottom: 0;
  }
}
@media all and (min-width: 1200px) {
  header nav .nav-list {
    gap: 2em;
  }
  header nav .nav-list > li:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.65em;
    width: 0%;
    height: 5px;
    background: linear-gradient(to right, #D0235A 25%, #23569D 66%);
    transition: width 0.2s ease-out;
  }
  header nav .nav-list > li ~ li::before {
    content: "";
    position: absolute;
    left: -1em;
    transform: translateX(-50%);
    width: 2px;
    height: 1em;
    background: linear-gradient(to top, #D0235A 25%, #23569D 66%);
  }
  header nav .nav-list > li .sub-nav {
    pointer-events: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-1em);
    padding-top: 1em;
    opacity: 0;
    transition: all 0.3s ease-out;
  }
  header nav .nav-list > li .sub-nav .sub-nav__list li {
    padding: 0 0.5em;
  }
  header nav .nav-list > li._sub-nav:hover .sub-nav {
    pointer-events: all;
    transform: translate(-50%, 0);
    opacity: 1;
  }
  header nav .nav-list > li:hover:after {
    width: 100%;
  }
}
header .ham {
  position: relative;
  z-index: 1000;
  padding: 1.5em;
  color: #fff;
  margin-right: 1em;
}
@media screen and (max-width: 1199px) {
  header .ham .ham__line {
    position: absolute;
    width: 70%;
    height: 2px;
    background-color: #fff;
    transform: translateY(-50%);
    left: 15%;
    transition: all 0.2s ease-out;
  }
  header .ham .ham__line._t {
    top: 25%;
  }
  header .ham .ham__line._m {
    top: 50%;
  }
  header .ham .ham__line._b {
    top: 75%;
  }
  header .ham.open .ham__line._t {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  header .ham.open .ham__line._m {
    top: 50%;
    width: 0;
  }
  header .ham.open .ham__line._b {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  header .ham.open ~ nav {
    right: 0;
    box-shadow: 0 0 10em 10em rgba(255, 44, 244, 0.3);
  }
}
@media all and (min-width: 1200px) {
  header .ham {
    display: none;
  }
}
header.scroll .logo {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 0 100%);
}
header.scroll .logo a {
  transform: scale(1) translateY(0%);
}

footer {
  background-color: #00629C;
  color: #fff;
  font-size: 0.8em;
  padding: 3em 0;
  text-align: center;
  border-top: 10px solid #D0235A;
}

section {
  position: relative;
}
section .sec__title {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  padding: 1em 0;
}
section .sec__title::before, section .sec__title::after {
  content: "";
  flex-grow: 1;
  width: 10%;
  height: 5px;
  background: linear-gradient(to right, #23569D 21%, #D0235A 49%, #FBCA47 100%);
  left: 0;
}
section .sec__title:after {
  left: auto;
  right: 0;
  transform: rotate(180deg);
}
section .sec__title .logo {
  width: 40%;
}
section .sec__title h2 {
  flex-shrink: 0;
  color: #fff;
  font-weight: 500;
  font-size: 8vw;
}
section .inner {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
@media all and (min-width: 1024px) {
  section .sec__title {
    gap: 1.5em;
    padding: 2em 0;
  }
  section .sec__title .logo {
    width: 15em;
  }
  section .sec__title h2 {
    font-size: 3em;
  }
  section .inner {
    width: 86%;
    max-width: 1400px;
  }
}

.container {
  padding: 3em 0;
}
.container .inner .container__title {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5em 0;
  background: linear-gradient(to right, #23569D 0%, #00125E 2%, #23569D 21%, #D0235A 49%, #FBCA47 100%);
}
.container .inner .container__title h2 {
  font-size: 1.7em;
  color: #fff;
  font-weight: 600;
}
.container .inner .container__content {
  background-color: #fff;
  padding: 1em;
}
.container .inner .container__content._transparent {
  background-color: unset;
  padding: 0;
  margin-top: 3em;
}
@media all and (min-width: 1024px) {
  .container .inner .container__content {
    padding: 2em;
  }
}

@keyframes float_defualt {
  0% {
    transform: translateY(var(--float_defualt_range));
  }
  100% {
    transform: translateY(calc(var(--float_defualt_range) * -1));
  }
}

/* Utility class for overflow control */
body.overflow-hidden {
  overflow: hidden;
}/*# sourceMappingURL=base.css.map */