@charset "UTF-8";
:root {
  font-size: 18px;
}
@media (max-width: 1600px) {
  :root {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  :root {
    font-size: 14px;
  }
}

@keyframes float {
  0% {
    transform: scale(1.1) translateX(0px);
  }
  50% {
    transform: scale(1) translate(0px);
  }
  100% {
    transform: scale(1.1) translate(0px);
  }
}
@keyframes move_bg {
  0% {
    transform: translateX(-300px);
  }
  50% {
    transform: translate(0px);
  }
  100% {
    transform: translateX(-300px);
  }
}
@keyframes kv01_show {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes kv02_show {
  0% {
    opacity: 0;
    transform: translate(15px, 15px);
  }
  25% {
    opacity: 1;
    transform: translate(15px, 15px);
  }
  75% {
    opacity: 0.5;
    transform: translate(15px, 15px);
  }
  100% {
    opacity: 0;
    transform: translate(15px, 15px);
  }
}
@keyframes blink1 {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0.4;
  }
  20% {
    opacity: 0.8;
  }
  30% {
    opacity: 0.2;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 0.5;
  }
  80% {
    opacity: 1;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.8;
  }
}
@keyframes blink2 {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0.2;
  }
  20% {
    opacity: 0.8;
  }
  30% {
    opacity: 0.4;
  }
  40% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0.3;
  }
  70% {
    opacity: 0.9;
  }
  80% {
    opacity: 0;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
html {
  font-size: 20px;
}

body {
  font-family: "Lato", "Noto Sans TC", "Microsoft Jhenghei", "微軟正黑", sans-serif;
}

a {
  color: inherit;
}

.g_header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  background-color: transparent;
  transition: all 0.2s ease-out;
}
.g_header.is_active {
  background-color: #0033a1;
}
.g_header.is_active .nav_item {
  padding: 0.5rem 0.9375rem;
  font-size: 0.875rem;
}
.g_header .header_wrap {
  position: relative;
  padding: 0.5rem;
}
.g_header .header_logo {
  position: absolute;
  top: 50%;
  left: 2rem;
  width: 100px;
  transform: translateY(-50%);
}
.g_header .menu_btn {
  position: relative;
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 6px;
  border: 1px solid #fff;
}
.g_header .menu_btn .icon {
  display: inline-block;
  position: absolute;
  left: 20%;
  top: 50%;
  width: 60%;
  height: 4px;
  margin-top: -2px;
  background-color: #fff;
}
.g_header .menu_btn .icon::before, .g_header .menu_btn .icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.g_header .menu_btn .icon::before {
  top: -200%;
}
.g_header .menu_btn .icon::after {
  bottom: -200%;
}
.g_header .menu_btn.sty_white {
  border-color: #fff;
}
.g_header .menu_btn.sty_white .icon, .g_header .menu_btn.sty_white .icon::before, .g_header .menu_btn.sty_white .icon::after {
  background-color: #fff;
}
.g_header .nav_area {
  position: relative;
  z-index: 3;
}
.g_header .nav_cnt {
  display: flex;
  justify-content: flex-end;
}
.g_header .nav_item {
  padding: 0.5rem 0.9375rem;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: normal;
}
.g_header .nav_item.spBtn {
  display: inline-block;
  background-color: #cc27b0;
  border: 1px solid #cc27b0;
  border-radius: 10px;
  transition: all 0.2s ease-out;
}
.g_header .nav_item.spBtn:hover {
  background-color: #fff;
}
.g_header .nav_item.spBtn:hover .nav_link {
  color: #cc27b0;
}
.g_header .nav_link {
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease-out;
}
.g_header .nav_link:hover {
  color: #cc27b0;
}

.g_fixed {
  position: fixed;
  z-index: 99;
  right: 1.875rem;
  bottom: 1rem;
  transform: translateX(150%);
  transition: transform 600ms;
}
.g_fixed.is_active {
  transform: translateX(0%);
}
.g_fixed .fx_item {
  position: relative;
  display: block;
  border-radius: 0.5em;
  margin: 0.5em 0;
  width: 4em;
  height: 4em;
  background-color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
  transition: transform 240ms, box-shadow 240ms;
}
.g_fixed .fx_item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
}
.g_fixed .fx_item.is_primary {
  background-color: #0033a1;
  color: #fff;
  line-height: 1.3;
}
.g_fixed .fx_item .in_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.g_fixed .fx_item .in_wrap.txt {
  text-align: center;
  line-height: 1.3;
}
.g_fixed .fx_item .in_wrap.ic {
  width: 100%;
  height: 100%;
  padding: 0.6em;
}
.g_fixed .fx_item .in_wrap .ic_top {
  width: 100%;
  padding-top: 100%;
  background: url("img/ui/arrow_top.png") center/contain no-repeat;
}

.g_kv {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 90vh;
  background-color: #0033a1;
}
.g_kv .kv_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.g_kv .kv_bg_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100vw + 300px);
  height: 100%;
  background: url("img/kv_bg.jpg") center/cover no-repeat;
  animation: move_bg 20s ease-in-out alternate infinite;
}
.g_kv .kv_01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: overlay;
}
.g_kv .kv_01 .o1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(img/kv_01.png) center/cover no-repeat;
  animation-name: blink1, blink2;
  animation-duration: 0.6s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: steps(10);
  animation-direction: alternate;
  animation-play-state: running;
  white-space: nowrap;
  animation-fill-mode: both;
}
.g_kv .kv_01 .o2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(img/kv_02.png) center/cover no-repeat;
  transform: translate(-10px, 0);
  animation-name: blink1, blink2;
  animation-duration: 0.6s;
  animation-delay: 0;
  animation-iteration-count: infinite;
  animation-timing-function: steps(10);
  animation-direction: alternate;
  animation-play-state: running;
  white-space: nowrap;
  animation-fill-mode: both;
}
.g_kv .kv_logo {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 20.3125%;
  height: auto;
}
.g_kv .kv_mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(img/kv_mask.png) center left/cover no-repeat;
}
.g_kv .kv_tit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 41.6666666667%;
  transform: translate(-95%, -38%);
}
.g_kv .kv_tit .t2 {
  position: relative;
  margin: 35px 0 80px;
}
.g_kv .kv_tit .t3 {
  position: relative;
  width: 76.25%;
}
.g_kv .kv_tit img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.g_kv .timer {
  position: absolute;
  right: 25px;
  bottom: 25px;
  color: #fff;
  text-align: center;
  letter-spacing: -4px;
}
.g_kv .timer .tb {
  position: relative;
  display: inline-block;
  width: 4rem;
  height: 3.5rem;
  padding-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: #000;
  letter-spacing: normal;
}
.g_kv .timer .tb::after {
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  line-height: 1;
  text-align: center;
  font-weight: 300;
  color: #cc27b0;
}
.g_kv .timer .tb span {
  position: absolute;
  left: 50%;
  top: calc(50% - 0.5rem);
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
}
.g_kv .timer .d {
  border-radius: 1rem 0 0 1rem;
}
.g_kv .timer .d::after {
  content: "day";
}
.g_kv .timer .h::after {
  content: "hour";
}
.g_kv .timer .m::after {
  content: "min";
}
.g_kv .timer .s {
  border-radius: 0 1rem 1rem 0;
}
.g_kv .timer .s::after {
  content: "sec";
}

.container {
  padding: 50px 50px;
}
.sc_company .container, .sc_wording .container {
  padding-left: 0;
  padding-right: 0;
}

.g_main .sc_title {
  text-align: center;
  margin-bottom: 40px;
}
.g_main .sc_title .tit {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #0033a1;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.g_main .sc_title .tit span {
  font-size: 1.5rem;
}
.g_main .cta_box {
  padding: 20px 0;
  text-align: center;
}
.g_main .cta_box .bttn a {
  display: inline-block;
  border-radius: 3rem;
  font-size: 1.875rem;
  letter-spacing: 3px;
  font-weight: bold;
  line-height: 1;
  transition: transform 300ms;
}
.g_main .cta_box .bttn a span {
  display: block;
  border-radius: 3rem;
  padding: 1.5625rem 5rem;
}
.g_main .cta_box .bttn a:hover {
  text-decoration: none;
  transform: scale(1.1);
}
.g_main .cta_box .bttn.main_btn a {
  background-color: #0033a1;
  color: #fff;
}

.sc_intros {
  background: url(img/main_bg.png) top right/635px auto no-repeat;
}
.sc_intros .sc_title {
  margin: 35px auto 15px;
}
.sc_intros .container {
  padding: 20px 60px 40px;
  margin: 50px auto;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border-radius: 25px;
}

.intro_cnt {
  line-height: 1.5;
}
.intro_cnt .parag {
  text-align: justify;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1rem;
}
.intro_cnt .parag img {
  position: relative;
  width: 90%;
  height: auto;
  display: block;
  margin: 15px auto;
}
.intro_cnt .parag .lists {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.intro_cnt .parag .lists .list {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.intro_cnt .parag .lists .list img {
  position: relative;
  width: 100%;
  max-width: 30px;
  height: auto;
  box-sizing: content-box;
  padding: 0 15px;
}
.intro_cnt .parag .lists .list p {
  position: relative;
  flex: 1 0 0;
  margin: 0;
  padding: 0;
  font-size: 1.125rem;
  font-weight: bold;
}
.intro_cnt ul {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.intro_cnt ul li {
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.sc_agenda {
  padding: 60px 0;
  background: linear-gradient(145deg, #0033A1, #004FB5, #0071CE);
}
.sc_agenda .tit {
  position: relative;
  font-size: 1.75rem;
  letter-spacing: 2px;
  font-weight: bold;
  color: #fff;
}

.agenda_cnt .table {
  position: relative;
  margin: 25px auto;
  border: solid #fff;
  border-width: 1px 0;
}
.agenda_cnt .table .tr {
  position: relative;
  display: flex;
  padding: 1rem 0;
  background-color: transparent;
  border: solid rgba(255, 255, 255, 0.5);
  border-width: 1px 0;
}
.agenda_cnt .table .tr:last-child .tit {
  border-width: 0;
}
.agenda_cnt .table .tr .time {
  flex: 0 0 13%;
  line-height: 1.5;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.3125rem 0;
  color: #fff;
  text-align: center;
}
.agenda_cnt .table .tr .infor {
  padding: 0 1rem;
  flex: 1 0 60%;
}
.agenda_cnt .table .tr .topic {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFE600;
}
.agenda_cnt .table .tr .tit {
  position: relative;
  box-sizing: border-box;
  padding: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
  border: solid rgba(255, 255, 255, 0.5);
  border-width: 0 0 1px;
}
.agenda_cnt .table .tr .text {
  position: relative;
  line-height: 1.5;
  font-size: 0.9375rem;
  font-weight: 300;
  padding: 1rem 0;
  color: #fff;
  margin: 0;
}
.agenda_cnt .cta_box {
  padding: 20px 0;
  text-align: center;
}
.agenda_cnt .cta_box .bttn.main_btn a {
  background-color: #cc27b0;
  color: #fff;
}

.sc_download {
  position: relative;
  padding: 60px 0;
  background: #0033a1 url(img/bottom_bg.png) bottom left/800px auto no-repeat;
}
.sc_download .sc_title .tit {
  color: #fff;
}
.sc_download .container {
  padding: 60px 50px;
  background-color: rgba(0, 51, 161, 0.8);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
.sc_download .container .w {
  color: #fff;
}
.sc_download .container .cta_box {
  padding: 20px 0;
  text-align: center;
}
.sc_download .container .cta_box .bttn.main_btn a {
  background-color: #fff;
  color: #0033a1;
}

.sc_active ol {
  font-size: 0.8125rem;
}
.sc_active ol li {
  margin: 5px auto;
}

@media (max-width: 1440px) {
  .g_header.is_active .nav_item {
    padding: 4px 0.625rem;
    font-size: 0.75rem;
  }
  .g_kv .kv_logo {
    top: 10%;
    left: 10%;
    width: 20.3125%;
  }
  .g_kv .tit_bg {
    transform: translate(-85%, -54%);
  }
  .g_kv .kv_tit {
    width: 41.6666666667%;
    transform: translate(-95%, -38%);
  }
  .g_kv .kv_tit .t2 {
    margin: 15px 0 40px;
  }
  .g_main .container {
    max-width: 900px;
  }
  .g_main .sc_title {
    margin-bottom: 1.25rem;
  }
  .g_main .sc_title .tit {
    font-size: 1.5rem;
    padding: 0 0.5rem;
  }
  .g_main .sc_title .tit span {
    font-size: 1.25rem;
  }
  .g_main .cta_box {
    padding: 1.25rem 0;
    text-align: center;
  }
  .g_main .cta_box .bttn a {
    font-size: 1.75rem;
  }
  .g_main .cta_box .bttn a span {
    padding: 0.9375rem 3.75rem;
  }
  .g_main .cta_box .bttn.main_btn a {
    background-color: #0033a1;
    color: #fff;
  }
  .sc_intros .sc_title {
    margin: 0.9375rem auto 0.9375rem;
  }
  .sc_intros .container {
    padding: 20px 60px 40px;
    margin: 50px auto;
  }
  .intro_cnt {
    line-height: 1.5;
  }
  .intro_cnt .parag {
    font-size: 0.875rem;
  }
  .intro_cnt .parag img {
    margin: 0.9375rem auto;
  }
  .intro_cnt .parag .lists .list img {
    max-width: 30px;
    padding: 0 15px;
  }
  .intro_cnt .parag .lists .list p {
    font-size: 0.9375rem;
  }
  .sc_agenda {
    padding: 40px 0;
  }
  .sc_agenda .tit {
    font-size: 1.75rem;
  }
  .agenda_cnt .table {
    margin: 25px auto;
  }
  .agenda_cnt .table .tr {
    padding: 1rem 0;
  }
  .agenda_cnt .table .tr .time {
    font-size: 1rem;
    padding: 0.3125rem 0;
  }
  .agenda_cnt .table .tr .infor {
    padding: 0 1rem;
    flex: 1 0 60%;
  }
  .agenda_cnt .table .tr .topic {
    font-size: 1.25rem;
  }
  .agenda_cnt .table .tr .tit {
    padding: 0 0 1rem;
    font-size: 1.125rem;
  }
  .agenda_cnt .table .tr .text {
    font-size: 0.8125rem;
  }
  .agenda_cnt .cta_box {
    padding: 20px 0;
    text-align: center;
  }
  .agenda_cnt .cta_box .bttn.main_btn a {
    background-color: #cc27b0;
    color: #fff;
  }
  .sc_download {
    position: relative;
    padding: 60px 0;
    background: #0033a1 url(img/bottom_bg.png) bottom left/800px auto no-repeat;
  }
  .sc_download .sc_title .tit {
    color: #fff;
  }
  .sc_download .container {
    padding: 60px 50px;
    background-color: rgba(0, 51, 161, 0.8);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  }
  .sc_download .container .w {
    color: #fff;
  }
  .sc_download .container .cta_box {
    padding: 20px 0;
    text-align: center;
  }
  .sc_download .container .cta_box .bttn.main_btn a {
    background-color: #fff;
    color: #0033a1;
  }
}
@media (max-width: 768px) {
  .g_header {
    display: none;
  }
  .g_kv {
    height: 120vw;
  }
  .g_kv .kv_bg_inner {
    background: url("img/kv_bg.jpg") -330px 100%/cover no-repeat;
    animation: float 20s ease-in-out alternate infinite;
  }
  .g_kv .kv_logo {
    top: 5%;
    left: 5%;
    width: 50%;
  }
  .g_kv .tit_bg {
    width: 70%;
    transform: translate(-50%, -54%);
  }
  .g_kv .kv_tit {
    width: 80%;
    transform: translate(-50%, -58%);
  }
  .g_kv .kv_tit .t2 {
    margin: 15px 0;
  }
  .container {
    padding: 20px 20px;
  }
  .g_main .sc_title {
    margin-bottom: 1.25rem;
  }
  .g_main .sc_title .tit {
    font-size: 1.5rem;
    padding: 0;
  }
  .g_main .sc_title .tit span {
    font-size: 1.5rem;
  }
  .g_main .cta_box {
    padding: 20px 0;
  }
  .g_main .cta_box .bttn a span {
    border-radius: 3rem;
    padding: 1.5625rem 5rem;
  }
  .g_main .cta_box .bttn.main_btn a {
    background-color: #0033a1;
    color: #fff;
  }
  .sc_intros .sc_title {
    margin: 2.1875rem auto 0.9375rem;
  }
  .sc_intros .container {
    padding: 1.25rem 2.5rem 2.5rem;
    margin: 3.125rem auto;
  }
  .intro_cnt .parag {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  .intro_cnt .parag img {
    margin: 0.9375rem auto;
  }
  .intro_cnt .parag .lists .list {
    margin: 5px auto;
  }
  .intro_cnt .parag .lists .list img {
    max-width: 1.875rem;
    padding: 0 0.9375rem;
  }
  .intro_cnt .parag .lists .list p {
    font-size: 1.125rem;
  }
  .intro_cnt ul {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .intro_cnt ul li {
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }
  .sc_download {
    padding: 2.5rem 0;
  }
  .sc_download .container {
    padding: 3.75rem 3.125rem;
  }
  .sc_active ol {
    font-size: 0.8125rem;
  }
  .sc_active ol li {
    margin: 5px auto;
  }
}/*# sourceMappingURL=style.css.map */