html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans TC", "Microsoft Jhenghei", sans-serif;
}

a {
  color: inherit;
}

.fix_aside {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: 1rem;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  -webkit-transition: -webkit-transform 600ms;
  transition: -webkit-transform 600ms;
  transition: transform 600ms;
  transition: transform 600ms, -webkit-transform 600ms;
}
.fix_aside.is_active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.fix_aside .fx_item {
  position: relative;
  display: block;
  border-radius: 1em;
  margin: 0.5em 0;
  width: 4em;
  height: 4em;
  background: #fff linear-gradient(120deg, #fff, #ddd);
  font-size: 0.95rem;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
  -webkit-transition: -webkit-transform 240ms, -webkit-box-shadow 240ms;
  transition: -webkit-transform 240ms, -webkit-box-shadow 240ms;
  transition: transform 240ms, box-shadow 240ms;
  transition: transform 240ms, box-shadow 240ms, -webkit-transform 240ms, -webkit-box-shadow 240ms;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fix_aside .fx_item.is_primary {
  background: linear-gradient(120deg, #039bbb, #06202f);
  color: #fff;
}
.fix_aside .fx_item:hover {
  -webkit-transform: translate3d(0, -3px, 0);
          transform: translate3d(0, -3px, 0);
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
}
.fix_aside .fx_item .in_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}
.fix_aside .fx_item .in_wrap.txt {
  text-align: center;
  line-height: 1.2;
  font-weight: 700;
}
.fix_aside .fx_item .in_wrap.ic_top {
  width: 100%;
  height: 100%;
  padding: 0.5em 0;
}
.fix_aside .fx_item .in_wrap.ic_top .ic {
  width: 100%;
  height: 100%;
  background: url("img/ui/arrow_top.png") center/contain no-repeat;
}

.g_header {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 19;
  background-color: rgba(6, 32, 47, 0.8);
}
.g_header .header_wrap {
  position: relative;
}
.g_header .header_logo {
  position: absolute;
  top: 50%;
  left: 2rem;
  width: 100px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.g_header .menu_btn {
  display: block;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 1rem;
}
.g_header .nav_item {
  line-height: 1;
  font-weight: normal;
}
.g_header .nav_link {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 1.125em;
  color: #fff;
  background-color: rgba(148, 249, 54, 0);
}
.g_header .nav_link:hover {
  background-color: rgba(148, 249, 54, 0.3);
  text-decoration: none;
}

.primary_cta {
  display: inline-block;
  border-radius: 3rem;
  padding: 0.5em 2em 0.6em;
  background: linear-gradient(120deg, #94f936, #029bbb, #08feff);
  color: #fff;
  font-weight: 700;
  font-size: 1.75rem;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}
.primary_cta:hover {
  text-decoration: none;
  color: #fff;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.primary_cta span,
.primary_cta img {
  display: inline-block;
  vertical-align: middle;
}
.primary_cta span {
  color: inherit;
}
.primary_cta img {
  margin-left: 0.5rem;
  width: 1.75rem;
}

body {
  background: url("img/mainbg.jpg") center/cover fixed;
}

.g_kv {
  position: relative;
}
.g_kv .bg {
  height: 50vw;
}
.g_kv .tit {
  position: absolute;
  right: 5%;
  bottom: 5vw;
  height: 40vw;
}
.g_kv .tit img {
  height: 100%;
}

.cta_wrap {
  margin-top: 40px;
  text-align: center;
}
.cta_wrap .cta_text {
  margin-bottom: 15px;
  font-size: 1.125rem;
  line-height: 1.2;
  color: #039bbb;
}

.main_sc {
  padding-top: 40px;
  padding-bottom: 60px;
}
.main_sc + .main_sc {
  padding-top: 0;
}

.g_main {
  position: relative;
  z-index: 2;
  background: linear-gradient(rgba(0, 0, 0, 0.9) 60px, rgba(6, 32, 47, 0.9), rgba(3, 155, 187, 0.9));
}
.g_main .sc_title {
  position: relative;
  z-index: 2;
  line-height: 1;
  margin-bottom: 30px;
  text-align: center;
}
.g_main .sc_title .tit {
  display: inline-block;
  font-size: 2rem;
  padding-bottom: 0.5em;
  font-weight: 300;
  line-height: 1;
  background: -webkit-gradient(linear, left top, right top, from(#94f936), to(#029bbb)) center bottom/90% 2px no-repeat;
  background: linear-gradient(90deg, #94f936, #029bbb) center bottom/90% 2px no-repeat;
  color: #08feff;
}

.sc_intro {
  background-color: #fff;
}
.sc_intro .intr_cnt {
  margin: 0 auto;
  max-width: 50em;
  font-size: 1.125em;
  line-height: 1.67;
}

.sc_agenda {
  background: radial-gradient(closest-side, rgba(8, 254, 255, 0.25), rgba(8, 254, 255, 0));
}

.ag_table {
  max-width: 920px;
  margin: 0 auto;
  font-size: 1.125rem;
}
.ag_table .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px;
  border-bottom: 1px solid #08feff;
  color: #fff;
}
.ag_table .tr_soft {
  background-color: white;
  color: #000;
}
.ag_table .tr_soft .time {
  color: #039bbb;
}
.ag_table .td {
  padding: 10px 15px;
}
.ag_table .td_time {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 140px;
          flex: 0 0 140px;
}
.ag_table .time {
  color: #08feff;
}
.ag_table .td_topic {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ag_table .tpc {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  padding-right: 1em;
}
.ag_table .toggle {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background-color: #039bbb;
  padding: 0.4em 0.8em 0.5em;
  color: #fff;
  border-radius: 4px;
  font-size: 0.9em;
  cursor: pointer;
}
.ag_table .toggle:hover {
  background-color: #06202f;
}
.ag_table .td_speaker {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 36%;
          flex: 0 0 36%;
}
.ag_table .spk .j {
  font-weight: 500;
  font-size: 1em;
  color: #94f936;
}
.sc_company {
  background-color: rgba(0, 0, 0, 0.1);
  background: -webkit-gradient(linear, left top, right top, from(rgba(3, 155, 187, 0)), color-stop(rgba(3, 155, 187, 0.5)), to(rgba(3, 155, 187, 0)));
  background: linear-gradient(90deg, rgba(3, 155, 187, 0), rgba(3, 155, 187, 0.5), rgba(3, 155, 187, 0));
}
.sc_company .d-lg-flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sc_company .categ {
  padding: 0 10px;
}
.sc_company .cag_tit {
  padding-left: 24px;
  margin-top: 1em;
  color: #fff;
}
.sc_company .cpy_item {
  padding: 4px;
}
.sc_company .cpy_item img {
  width: 280px;
  border-radius: 24px;
  background-color: #fff;
  -webkit-transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, -webkit-transform 300ms;
  transition: transform 300ms, opacity 300ms;
  transition: transform 300ms, opacity 300ms, -webkit-transform 300ms;
  opacity: 1;
}

.sc_location .map_tit {
  padding-bottom: 12px;
  font-size: 1.25rem;
  color: #fff;
}
.sc_location .map_tit .tit {
  font-weight: 700;
  font-size: 1.2em;
}
.sc_location .map_tit .txt {
  font-size: 1.1em;
  margin: 0 10px;
}
.sc_location .map_wrap {
  position: relative;
  overflow: hidden;
  padding-top: 50%;
  border-radius: 10px;
}
.sc_location .map_wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.sc_detail {
  color: #fff;
}

.modal-content {
  border-width: 0;
}

.modal-header {
  border-bottom-width: 0;
  padding-left: 2rem;
  line-height: 1;
}
.modal-header .h4 {
  color: #039bbb;
  font-weight: 700;
}
.modal-header button.close {
  font-size: 2rem;
  color: #000;
  opacity: 1;
}

.modal-body {
  padding: 1.25rem 2rem 1.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1.125rem;
  line-height: 1.2;
}
.modal-body ul,
.modal-body ol {
  padding-left: 1.7rem;
  margin-bottom: 0;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.modal-body li {
  padding: 0.2rem 0;
}

@media (max-width: 767px) {
  .fix_aside {
    right: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .fix_aside .fx_item {
    margin: 0 0.25em;
  }

  .g_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #06202f;
  }
  .g_header .header_wrap {
    padding: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .g_header .nav_area {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .g_header .nav_cnt {
    display: block;
  }
  body {
    background: url("img/mainbg.jpg") 25% bottom/cover fixed;
  }

  .g_kv {
    margin-top: 60px;
  }
  .g_kv .bg {
    height: 50vh;
  }
  .g_kv .tit {
    right: 0;
    bottom: 8vh;
    height: auto;
  }
  .g_kv .tit img {
    height: auto;
    width: 100%;
  }

  .sc_intro .intr_cnt {
    line-height: 1.5;
  }

  .ag_table .tr {
    display: block;
    padding: 15px;
  }
  .ag_table .td {
    padding: 0;
  }
  .ag_table .td_topic {
    margin-top: 4px;
  }
  .ag_table .tpc {
    padding-right: 0;
    font-size: 1.25em;
    line-height: 1.3;
  }
  .ag_table .td_speaker {
    margin-top: 8px;
  }

  .sc_company .categ .items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sc_company .categ .cpy_item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .modal-header {
    padding-left: 1.5rem;
  }

  .modal-body {
    padding: 1.5rem;
    font-size: 1rem;
  }
}