@charset "UTF-8";
html,
body {
  font-family: 'Noto Sans TC', Microsoft Jhenghei, '微軟正黑', sans-serif; }

a {
  color: inherit;
  text-decoration: none; }
  a:hover {
    text-decoration: none; }

.primary_btn .btn_in {
  display: block;
  border-radius: 28px;
  max-width: 100%;
  width: 220px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  background-color: #008cd6;
  color: #fff;
  -webkit-box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.3);
  -webkit-transition: background 250ms;
  -o-transition: background 250ms;
  transition: background 250ms; }
  .primary_btn .btn_in:hover {
    background-color: #003a74; }

.layout_sec {
  border-top: 1px solid #fff; }

.sec_title {
  margin-top: 60px;
  margin-bottom: -5px;
  text-align: left; }
  .sec_title .tit {
    display: inline-block;
    border-bottom: 1px solid currentColor;
    margin-right: .7em;
    margin-bottom: 1em;
    height: 58px;
    overflow: hidden;
    font-size: 3em;
    font-weight: 100;
    line-height: 1;
    color: rgba(0, 140, 214, 0.2); }
  .sec_title .l, .sec_title .r {
    padding: 0 .2em; }

.g_fixtop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 29;
  width: 100%;
  padding: 0 30px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.9)), color-stop(52%, rgba(255, 255, 255, 0.49)), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.49) 52%, rgba(255, 255, 255, 0));
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.49) 52%, rgba(255, 255, 255, 0));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.49) 52%, rgba(255, 255, 255, 0));
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  -o-transition: transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms; }
  .g_fixtop .cta_combine {
    padding-top: 17px;
    padding-bottom: 18px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .g_fixtop .cta_combine .primary_btn .btn_in {
      width: 180px; }
    .g_fixtop .cta_combine .sub_btn .btn_in {
      display: block;
      padding: 1em;
      color: #008cd6; }
      .g_fixtop .cta_combine .sub_btn .btn_in:hover {
        color: #003a74; }
  .g_fixtop.is_active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }

.g_header {
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 30; }
  .g_header .logo img {
    height: 80px; }

.g_hero {
  padding-bottom: 80px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eff4e4), to(#fff));
  background: -webkit-linear-gradient(top, #eff4e4 50%, #fff);
  background: -o-linear-gradient(top, #eff4e4 50%, #fff);
  background: linear-gradient(180deg, #eff4e4 50%, #fff); }
  .g_hero img {
    width: 100%; }
  .g_hero .g_intro {
    position: relative;
    z-index: 1;
    border-radius: 12px;
    max-width: 90%;
    width: 800px;
    margin: -40px auto 0;
    padding: 60px;
    background-color: #fff;
    -webkit-box-shadow: 0 10px 25px 0 rgba(34, 72, 140, 0.25);
    box-shadow: 0 10px 25px 0 rgba(34, 72, 140, 0.25);
    font-size: 1.25em; }
    .g_hero .g_intro p:last-child {
      margin-bottom: 0; }
    .g_hero .g_intro .sub_btn {
      position: relative;
      display: block;
      margin-top: 30px;
      padding: 0;
      -webkit-transition-property: padding;
      -o-transition-property: padding;
      transition-property: padding;
      -webkit-transition-duration: 400ms;
      -o-transition-duration: 400ms;
      transition-duration: 400ms; }
      .g_hero .g_intro .sub_btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #a73439; }
      .g_hero .g_intro .sub_btn:hover {
        color: #003a74;
        padding: 0 20px; }
        .g_hero .g_intro .sub_btn:hover .btn_in {
          max-width: 100%;
          border-radius: 4px; }
      .g_hero .g_intro .sub_btn .btn_in {
        position: relative;
        border-radius: 28px;
        z-index: 1;
        max-width: 370px;
        display: block;
        padding: .6em 1.4em .6em 1em;
        color: #a73439;
        border: 1px solid currentColor;
        background-color: #fff;
        text-align: center;
        -webkit-transition-property: max-width, border-radius;
        -o-transition-property: max-width, border-radius;
        transition-property: max-width, border-radius;
        -webkit-transition-duration: 400ms;
        -o-transition-duration: 400ms;
        transition-duration: 400ms; }

.g_gift img {
  width: 160px; }

.g_gift .text {
  padding-left: 20px;
  font-size: 1.3em; }
  .g_gift .text .tit {
    font-size: 1.5em;
    color: #a73439; }
  .g_gift .text .name {
    font-weight: 700; }
  .g_gift .text .tip {
    padding-top: 10px;
    padding-bottom: 50px;
    font-size: 0.875em;
    color: #bbb; }

@media screen and (min-width: 992px) {
  .g_position .pos_name br {
    display: none; } }

.g_process {
  padding-bottom: 60px; }
  .g_process .process_switch ul {
    padding: 0;
    margin: 0 10px;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end; }
  .g_process .process_switch li {
    position: relative;
    padding: 10px 40px 20px 25px;
    border: 2px solid #ededed;
    border-bottom-width: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    color: #bbb;
    cursor: pointer;
    background-color: #ededed;
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
    -webkit-transition: all 200ms;
    -o-transition: all 200ms;
    transition: all 200ms;
    white-space: nowrap; }
    .g_process .process_switch li .area {
      display: inline-block;
      vertical-align: middle;
      line-height: 1; }
    .g_process .process_switch li strong {
      margin-top: 4px;
      display: block;
      font-size: 1.4em;
      overflow: hidden;
      white-space: nowrap;
      -o-text-overflow: ellipsis;
      text-overflow: ellipsis; }
    .g_process .process_switch li::before {
      content: '';
      display: inline-block;
      vertical-align: middle;
      height: 100%;
      width: 1px; }
    .g_process .process_switch li:hover {
      color: #999; }
    .g_process .process_switch li.is_active {
      border-color: #008cd6;
      color: #000;
      background-color: #fff;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0); }
  .g_process .part_wrap {
    position: relative;
    z-index: 1; }
    .g_process .part_wrap .part {
      border: 2px solid #2a4461;
      background-color: #fff;
      display: none;
      opacity: 0;
      -webkit-transition: opacity 0ms;
      -o-transition: opacity 0ms;
      transition: opacity 0ms; }
      .g_process .part_wrap .part.is_active {
        display: block;
        opacity: 1;
        -webkit-transition: opacity 300ms;
        -o-transition: opacity 300ms;
        transition: opacity 300ms; }
    .g_process .part_wrap .part_content {
      padding-top: 10px;
      padding-bottom: 10px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-flow: wrap;
      flex-flow: wrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
  .g_process .process_item {
    -webkit-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    padding: 15px 25px;
    border-top: 1px solid rgba(42, 68, 97, 0.2); }
    .g_process .process_item:hover {
      background-color: rgba(237, 237, 237, 0.3); }
    .g_process .process_item.bg_soft {
      background-color: rgba(42, 68, 97, 0.1); }
      .g_process .process_item.bg_soft,
      .g_process .process_item.bg_soft + .process_item {
        border-top: 0 solid transparent; }
    .g_process .process_item .time,
    .g_process .process_item .title {
      font-size: 1.15em;
      line-height: 1.2; }
    .g_process .process_item .time {
      color: #008cd6;
      margin-bottom: 6px; }
    .g_process .process_item .title {
      font-weight: 700; }
    .g_process .process_item .pic {
      border-radius: 50%;
      margin-right: 20px;
      max-width: 120px;
      overflow: hidden;
      -webkit-box-shadow: 0 0 0 1px #ededed;
      box-shadow: 0 0 0 1px #ededed;
      cursor: pointer; }
      .g_process .process_item .pic:hover {
        -webkit-box-shadow: 0 0 0 1px #008cd6;
        box-shadow: 0 0 0 1px #008cd6; }
      .g_process .process_item .pic img {
        width: 100%; }
    .g_process .process_item .text .text_block {
      margin-bottom: 15px; }
    .g_process .process_item .text .text_tit {
      font-size: .875em;
      font-weight: bold;
      color: #a73439; }
    .g_process .process_item .text .text_br {
      padding-left: .7em;
      margin-top: 4px; }
      .g_process .process_item .text .text_br .tit,
      .g_process .process_item .text .text_br .name {
        display: inline-block;
        vertical-align: baseline; }
      .g_process .process_item .text .text_br .name {
        margin-top: 0;
        padding-left: .25e; }
    .g_process .process_item .text .name {
      font-weight: 700;
      margin-top: 5px;
      font-size: 1.2em; }

.g_speaker {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 100px; }

.sp_area {
  display: block;
  margin-bottom: 30px;
  cursor: pointer; }
  .sp_area:hover img {
    -webkit-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08); }
  .sp_area .pic {
    border: 2px solid #2a4461;
    overflow: hidden; }
  .sp_area img {
    width: 100%;
    -webkit-transition: -webkit-transform 300ms;
    transition: -webkit-transform 300ms;
    -o-transition: transform 300ms;
    transition: transform 300ms;
    transition: transform 300ms, -webkit-transform 300ms; }
  .sp_area .text {
    margin-top: 8px;
    text-align: center; }
  .sp_area .name {
    font-size: 1.35em; }

.sp_dia_name {
  font-size: 1.35em; }

.sp_dia_intro {
  padding: 10px 20px 30px; }
  .sp_dia_intro .dt {
    font-size: 1.25em;
    font-weight: 700; }
    .sp_dia_intro .dt:not(:first-child) {
      margin-top: 1em; }
  .sp_dia_intro .dd {
    margin-top: 6px; }
  .sp_dia_intro ul {
    margin: 0;
    padding-left: 1.5em; }

.g_company {
  background-color: #fafafa;
  padding-bottom: 60px; }
  .g_company .com_title {
    position: relative;
    margin-top: 0.5em;
    margin-left: 10px;
    margin-bottom: .75em;
    font-size: 1.25em;
    line-height: 1;
    color: #008cd6; }
  .g_company .com_item {
    margin-bottom: 30px; }
    .g_company .com_item .img {
      display: block;
      position: relative;
      -webkit-box-shadow: 0 0 0 0 rgba;
      box-shadow: 0 0 0 0 rgba; }
      .g_company .com_item .img img {
        width: 100%; }
    .g_company .com_item a.img[href]:hover img {
      -webkit-box-shadow: inherit;
      box-shadow: inherit; }

.g_position {
  padding-bottom: 60px; }
  .g_position::after {
    top: 20%;
    right: 4%;
    width: 60%;
    height: 90%; }
  .g_position .container {
    position: relative;
    z-index: 1; }
  .g_position .pos_name {
    padding: 1em 0;
    font-size: 1.6em;
    font-weight: 700;
    text-align: center;
    line-height: 1.3; }
  .g_position .map {
    position: relative;
    height: 100%;
    width: 100%; }
    .g_position .map iframe {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%; }
  .g_position .infomation {
    position: relative; }
    .g_position .infomation ul,
    .g_position .infomation li {
      list-style: none; }
    .g_position .infomation ul {
      padding-left: 0;
      margin-left: 4px; }
    .g_position .infomation li {
      margin-top: 1em; }
    .g_position .infomation .name {
      color: #008cd6; }
    .g_position .infomation .val {
      margin-top: 2px; }
    .g_position .infomation a {
      color: #003a74;
      text-decoration: underline; }
      .g_position .infomation a:hover {
        color: #FF3900; }

.g_regulation {
  padding-bottom: 60px; }
  .g_regulation .reg_wrap {
    padding-top: 20px;
    padding-bottom: 20px; }
  .g_regulation .reg_list {
    padding-left: 2em;
    margin-left: 0; }
    .g_regulation .reg_list li {
      line-height: 1.4;
      margin-bottom: 15px; }
  .g_regulation .privacy_link {
    text-align: right;
    margin-top: 2em; }
    .g_regulation .privacy_link a {
      border-radius: 8px;
      display: inline-block;
      padding: 1em 1.5em;
      background-color: #f49c00;
      color: #fff; }
      .g_regulation .privacy_link a:hover {
        background-color: #c17b00; }

.g_footer {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000; }

.g_fixbottom .totop {
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 29;
  -webkit-transform: translate3d(150px, 0, 0);
  transform: translate3d(150px, 0, 0);
  -webkit-transition: -webkit-transform 250ms;
  transition: -webkit-transform 250ms;
  -o-transition: transform 250ms;
  transition: transform 250ms;
  transition: transform 250ms, -webkit-transform 250ms; }
  .g_fixbottom .totop.is_active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }

.g_fixbottom .arrow_top {
  border-radius: 28px;
  width: 88px;
  height: 55px;
  background-color: #ededed;
  position: relative;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2); }
  .g_fixbottom .arrow_top:hover {
    background-color: #dadada; }

.g_fixbottom .arrowtop_icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  width: 24px;
  height: 24px;
  background: url("../img/common/arrow_top.svg") center/contain no-repeat; }

@media (max-width: 991px) {
  .g_process .process_switch ul {
    position: relative;
    display: block;
    height: 74px; }
  .g_process .process_switch li {
    position: absolute; }
    .g_process .process_switch li:first-child {
      left: 0;
      top: 0; }
    .g_process .process_switch li:last-child {
      right: 0;
      top: 0; }
    .g_process .process_switch li.is_active {
      z-index: 1; }
  .g_position .map {
    height: 0;
    padding-top: 50%; } }

@media (max-width: 767px) {
  .g_hero .g_intro {
    margin-top: 20px;
    max-width: 94%;
    padding: 30px; }
  .sec_title {
    text-align: center;
    margin-bottom: 20px; }
    .sec_title .tit {
      margin-right: 0;
      font-size: 3em; }
  .g_fixtop {
    top: inherit;
    bottom: 0;
    padding: 0;
    height: 50px;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
    .g_fixtop .logo {
      display: none; }
    .g_fixtop .cta_combine {
      padding-top: 0;
      padding-bottom: 0;
      width: 100%;
      -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }
      .g_fixtop .cta_combine .sign_item {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
        flex: 1 1 50%; }
      .g_fixtop .cta_combine .primary_btn .btn_in {
        width: 100%;
        border-radius: 0;
        -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
        height: 50px;
        line-height: 50px; }
      .g_fixtop .cta_combine .sub_btn .btn_in {
        width: 100%;
        margin: 0;
        padding: 0;
        background-color: #fff;
        height: 50px;
        line-height: 50px; }
  .g_fixbottom .totop {
    right: 10px;
    bottom: 60px; }
  .g_fixbottom .arrow_top {
    border-radius: 25px;
    height: 60px;
    width: 60px; }
  .g_header .logo img {
    height: 60px; }
  .g_hero .g_kv .kv_bg {
    height: 667px; }
  .g_hero .g_kv .kv_word {
    width: 80%; }
  .g_hero .g_intro {
    position: static;
    right: 0;
    width: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
    .g_hero .g_intro .parag_area {
      padding-top: 20px;
      padding-bottom: 20px; }
      .g_hero .g_intro .parag_area .strong1 {
        font-size: 1.5em;
        line-height: 1.2; }
      .g_hero .g_intro .parag_area .strong2 {
        font-size: 1.125em; }
      .g_hero .g_intro .parag_area .cta_combine {
        margin-top: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
        .g_hero .g_intro .parag_area .cta_combine .g_addto {
          margin-left: 2em; }
  .g_hero .g_kv .kv_bg {
    -webkit-transition: height 500ms 0ms;
    -o-transition: height 500ms 0ms;
    transition: height 500ms 0ms; }
  .g_hero.is_anied .g_kv .kv_bg {
    height: 400px; }
  .g_hero.is_anied .g_kv .kv_graph {
    -webkit-transform: translate3d(-45%, 0%, 0);
    transform: translate3d(-45%, 0%, 0); }
  .g_hero.is_anied .g_kv .kv_word {
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0); }
  .g_hero.is_anied .g_intro {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0); }
  .g_gift {
    text-align: center; }
    .g_gift .text {
      padding-left: 0; }
  .g_process .process_switch ul {
    height: auto;
    margin: 20px 0 10px; }
  .g_process .process_switch li {
    position: static;
    padding: 15px 20px 20px;
    border-bottom-width: 2px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
    .g_process .process_switch li.is_active {
      z-index: 1; }
  .g_process .part_wrap .process_item {
    padding-left: 0;
    padding-right: 0; }
    .g_process .part_wrap .process_item .right {
      margin-top: 15px; } }

.g_article section {
  padding-top: 30px;
  padding-bottom: 30px; }

.g_article h1 {
  font-size: 3em;
  color: #a73439;
  text-align: center; }

.g_article h2 {
  margin-bottom: 20px;
  color: #2a4461; }

.g_article p {
  margin-bottom: 1.25em;
  font-size: 1.25em;
  line-height: 1.7; }

.g_article ul {
  padding-left: 1.75em; }

.g_article li {
  font-size: 1.1em;
  line-height: 1.6; }
  .g_article li:not(:first-child) {
    padding-top: 8px; }
  .g_article li:not(:last-child) {
    padding-bottom: 8px; }
  .g_article li .spot {
    display: block;
    font-weight: 700;
    font-size: 1.2em; }

.arti_pics {
  text-align: center;
  padding-bottom: 60px; }
  .arti_pics img {
    margin: 0 15px;
    max-width: calc(100% - 30px); }
