@charset "UTF-8";
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;
  transform: translateX(150%);
  transition: transform 600ms;
}
.fix_aside.is_active {
  transform: translateX(0%);
}
.fix_aside .fx_item {
  position: relative;
  display: block;
  border-radius: 0.5em;
  margin: 0.5em 0;
  width: 4em;
  height: 4em;
  background: #fff linear-gradient(120deg, #fff, #ddd);
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
  transition: transform 240ms, box-shadow 240ms;
}
.fix_aside .fx_item.is_primary {
  background: linear-gradient(135deg, #10113b, #234369);
  color: #fff;
}
.fix_aside .fx_item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
}
.fix_aside .fx_item .in_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.fix_aside .fx_item .in_wrap.txt {
  text-align: center;
  line-height: 1.3;
}
.fix_aside .fx_item .in_wrap.ic {
  width: 100%;
  height: 100%;
  padding: 0.6em;
}
.fix_aside .fx_item .in_wrap .ic_top {
  width: 100%;
  padding-top: 100%;
  background: url("img/ui/arrow_top.png") center/contain no-repeat;
}

.cta {
  margin-top: 2rem;
}
.cta .bttn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3rem;
  width: 320px;
  margin: 0 auto;
  padding: 1rem 2.5rem;
  background-color: rgba(16, 17, 59, 0.67);
  background: linear-gradient(120deg, rgba(16, 17, 59, 0.9), #4cb3cf);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
  transition-property: background, transform, box-shadow;
  transition-duration: 300ms;
}
.cta .bttn .t {
  flex: 1 1 auto;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  line-height: 1;
  text-align: left;
  font-weight: 700;
}
.cta .bttn .t span {
  font-size: 1.75rem;
  color: #fff;
}
.cta .bttn .i {
  flex: 0 0 50px;
}
.cta .bttn:hover {
  transform: scale(1.04) translate3d(0, 0, 0);
  text-decoration: none;
  box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.2);
}

.sc_title {
  position: relative;
  z-index: 2;
  line-height: 1;
  margin-bottom: 2em;
  text-align: center;
}
.sc_title .tit {
  position: relative;
  display: inline-block;
  border-radius: 2px;
  border: 2px solid #f8ca41;
  padding: 0.5rem 1.5rem 0.6rem;
  background-color: #fff;
  box-shadow: 6px 6px 0 0 #f8ca41;
  font-size: 1.5rem;
  color: #242119;
}

.g_header {
  background: linear-gradient(90deg, #fff 103px, rgba(255, 255, 255, 0.9) 80%);
}
.g_header .header_wrap {
  position: relative;
  padding: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.g_header .header_logo {
  flex: 0 0 100px;
  padding: 0.5rem 1rem;
}
.g_header .header_logo img {
  height: 40px;
}
.g_header .menu_trigger {
  text-align: right;
}
.g_header .menu_btn {
  margin-left: auto;
  position: relative;
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 6px;
  border: 1px solid #000;
}
.g_header .menu_btn .icon {
  display: inline-block;
  position: absolute;
  left: 20%;
  top: 50%;
  width: 60%;
  height: 4px;
  margin-top: -2px;
  background-color: #000;
}
.g_header .menu_btn .icon::before, .g_header .menu_btn .icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.g_header .menu_btn .icon::before {
  top: -200%;
}
.g_header .menu_btn .icon::after {
  bottom: -200%;
}
.g_header .menu_btn.sty_white {
  border-color: #000;
}
.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 {
  flex: 1 0 auto;
  position: relative;
  z-index: 3;
}
.g_header .nav_cnt {
  display: flex;
  justify-content: center;
}
.g_header .nav_item {
  font-size: 1.125em;
  line-height: 1;
  font-weight: normal;
}
.g_header .nav_link {
  display: block;
  padding: 0.75rem 1rem;
  color: #343434;
}
.g_header .nav_link:hover {
  color: #f8ca41;
  text-decoration: none;
}
.g_header .functional_area {
  flex: 0 0 100px;
  display: inline-flex;
  justify-content: flex-end;
}
.g_header .functional_area .toggle_wrap {
  flex: 0 0 auto;
  position: relative;
}
.g_header .functional_area .toggle_wrap:hover .collapse_wrap {
  display: block;
}
.g_header .functional_area .toggle_wrap:hover .toggle_icon {
  background-color: #f8ca41;
}
.g_header .functional_area .toggle_icon {
  padding: 13px;
  text-align: center;
}
.g_header .functional_area .toggle_icon img {
  width: 24px;
}
.g_header .functional_area .collapse_wrap {
  position: absolute;
  top: 100%;
  left: calc(50% - 25px);
  display: none;
}
.g_header .func_link {
  display: inline-block;
  text-decoration: none;
  color: #fff;
}
.g_header .func_link .link_in {
  width: 50px;
  height: 50px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.g_header .func_link .link_in.is_twitter {
  background-color: #55acee;
}
.g_header .func_link .link_in.is_twitter:hover {
  background-color: #2795e9;
}
.g_header .func_link .link_in.is_facebook {
  background-color: #3b5998;
}
.g_header .func_link .link_in.is_facebook:hover {
  background-color: #2d4373;
}
.g_header .func_link .link_in.is_linkedin {
  background-color: #0077b5;
}
.g_header .func_link .link_in.is_linkedin:hover {
  background-color: #046293;
}
.g_header .func_link .link_in.is_email {
  background-color: #777;
}
.g_header .func_link .link_in.is_email:hover {
  background-color: #5e5e5e;
}
.g_header .func_link .link_in.is_cal {
  background-color: #f4f4f4;
}
.g_header .func_link .link_in.is_cal:hover {
  background-color: #fff;
}
.g_header .func_link .link_icon {
  display: inline-block;
  fill: #fff;
  stroke: none;
}
.g_header .func_link .link_icon img,
.g_header .func_link .link_icon svg {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

@keyframes scalee {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.03);
    opacity: 0.67;
  }
}
.g_kv {
  position: relative;
}
.g_kv .desktop img {
  max-width: 100%;
}
.g_kv .alert_toggle {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0.33rem 1rem 0.4rem;
  background-color: #f8ca41;
  color: #000;
  cursor: pointer;
}
.g_kv .alert_toggle:hover {
  background-color: rgba(248, 202, 65, 0.9);
  text-decoration: underline;
}

.g_main {
  position: relative;
  z-index: 2;
}

.sc_intro {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.sc_intro .intro_wrap {
  max-width: calc(760px + 2rem);
  margin: 0 auto 1em;
  padding: 0 1rem;
  font-size: 1.125rem;
}
.sc_intro .intro_wrap ul {
  padding-left: 3rem;
  padding-right: 1.25rem;
  font-weight: 400;
}
.sc_intro .intro_wrap ul li {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.sc_intro .cta {
  text-align: center;
}
.sc_intro .cta .before {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}
.sc_intro .cta .before div {
  position: relative;
  padding: 0.75rem 2rem;
  background-color: #f8ca41;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 700;
}
.sc_intro .cta .before div::before, .sc_intro .cta .before div::after {
  content: "";
  position: absolute;
  border: 2px solid #d36c16;
  width: 10px;
  height: 10px;
}
.sc_intro .cta .before div::before {
  left: -10px;
  top: -10px;
  border-width: 2px 0 0 2px;
}
.sc_intro .cta .before div::after {
  right: -10px;
  bottom: -10px;
  border-width: 0 2px 2px 0;
}
.sc_intro .cta .tip {
  margin-top: 1rem;
}
.sc_intro .cta .tip div {
  margin-bottom: 0.33rem;
  font-size: 0.875rem;
  text-align: center;
  color: #565656;
}

.sc_agenda {
  padding: 3rem 0 4rem;
  background-color: #242119;
}
.agenda_cnt .ag_row {
  display: flex;
  margin-bottom: 3px;
  background-color: #fff;
}
.agenda_cnt .ag_row.ag_tit {
  background-color: #ffefbf;
}
.agenda_cnt .ag_row.ag_tit .title {
  color: rgba(16, 17, 59, 0.67);
  font-size: 1rem;
}
.agenda_cnt .ag_row.ag_tit .title .zh {
  margin-top: 0;
}
.agenda_cnt .td {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 5rem;
  padding: 0.5rem 1rem;
}
.agenda_cnt .td.td_time {
  flex: 0 0 auto;
}
.agenda_cnt .td.td_tit {
  flex: 1 0 40%;
}
.agenda_cnt .td.td_spk {
  flex: 0 1 60%;
  line-height: 1.3;
}
.agenda_cnt .td .en {
  font-family: "Lato", sans-serif;
}
.agenda_cnt .td .time {
  font-family: "Lato", sans-serif;
}
.agenda_cnt .td .title:nth-child(n+2) {
  margin-top: 1rem;
}
.agenda_cnt .td .title .en {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.1;
  color: #234369;
}
.agenda_cnt .td .title .zh {
  margin-top: 0.25rem;
  color: #555;
}
.agenda_cnt .td .title .tip {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgba(35, 67, 105, 0.67);
}
.agenda_cnt .td .spk {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.agenda_cnt .td .spk:last-child {
  border-bottom: 0;
}
.agenda_cnt .td .spk .prefix {
  font-size: 0.875rem;
  color: #787878;
  text-decoration: underline;
  margin-bottom: 0.5rem;
}
.agenda_cnt .td .spk .name {
  color: #234369;
}
.agenda_cnt .td .spk .tit {
  color: #343434;
}
.agenda_cnt .td .spk .en .name {
  font-size: 1.125rem;
  font-weight: 700;
}
.agenda_cnt .td .spk .zh {
  margin-top: 0.25rem;
}
.agenda_cnt .ag_table + .tip {
  margin-top: 1rem;
}
.agenda_cnt .ag_table + .tip div {
  font-size: 0.875rem;
  text-align: center;
  color: #fff;
}

.sc_speaker {
  padding: 3rem 0;
  background-color: #f8f8f8;
}

.spk_cnt .items {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.spk_cnt .items.special {
  justify-content: center;
}
.spk_cnt .items.special .item_wrap {
  text-align: center;
}
.spk_cnt .items.special .item_wrap .img {
  margin: 0 auto;
}
.spk_cnt .item_wrap {
  flex: 0 0 25%;
  padding: 0 5px;
  margin-bottom: 10px;
}
.spk_cnt .item {
  border-radius: 4px;
  height: 100%;
  overflow: hidden;
  color: #000;
  cursor: pointer;
  text-align: center;
}
.spk_cnt .item .img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #fff url("img/ui/mic.png") center/100px no-repeat;
  overflow: hidden;
  margin: 0 auto;
}
.spk_cnt .item img {
  max-width: 100%;
  display: block;
  transform: translate3d(0, 0, 0);
  transition: transform 300ms;
}
.spk_cnt .item .speaker {
  padding: 0.5rem 0.5rem 1rem;
  line-height: 1.1;
  font-size: 0.875rem;
}
.spk_cnt .item .speaker .en {
  font-family: "Lato", sans-serif;
}
.spk_cnt .item .name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #10113b;
}
.spk_cnt .item .name .zh {
  margin-left: 0.5rem;
}
.spk_cnt .item .com {
  margin-top: 0.75rem;
}
.spk_cnt .item .tit .en,
.spk_cnt .item .tit .zh {
  padding-top: 0.5rem;
}
.spk_cnt .item:hover .img img {
  transform: scale(1.1);
}

.sc_sponsor {
  padding: 3rem 0;
}

.spn_cnt .spn_sort {
  display: flex;
  justify-content: center;
}
.spn_cnt .spn_sort .sort {
  margin: 0 4px;
  line-height: 1;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
}
.spn_cnt .spn_items {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}
.spn_cnt .spn_items .categ_tit {
  border: 1px solid currentColor;
  padding: 0.5rem 1rem;
  text-align: center;
  color: #234369;
}
.spn_cnt .spn_items .spn_item {
  flex: 0 1 20%;
  padding: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.spn_cnt .spn_items .spn_item img {
  border-radius: 10px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
  transition: box-shadow 240ms;
}
.spn_cnt .spn_items .spn_item a:hover img {
  box-shadow: 0 0px 5px 0 rgba(0, 0, 0, 0.4);
}
.spn_cnt .spn_items.main_categ {
  flex-wrap: nowrap;
  justify-content: space-around;
}
.spn_cnt .spn_items.main_categ .main,
.spn_cnt .spn_items.main_categ .ext {
  flex: 0 1 40%;
  display: inline-flex;
}
.spn_cnt .spn_items.main_categ .spn_item {
  flex: 0 0 50%;
}

.sc_gift {
  padding: 3rem 0;
}

.gift_cnt .gift_intro {
  margin: 0 auto 2rem;
  padding: 0 1em;
  max-width: 50em;
  font-size: 1.25rem;
}
.gift_cnt .gift_intro p {
  margin-bottom: 0;
}
.gift_cnt .items {
  display: flex;
  justify-content: space-between;
}
.gift_cnt .item {
  position: relative;
  flex: 0 1 24%;
}
.gift_cnt .item .type {
  border-radius: 2px 10px 0 0;
  display: inline-block;
  background-color: #4cb3cf;
  padding: 0.5rem 2rem 0.5rem 1rem;
  line-height: 1;
  color: #fff;
}
.gift_cnt .item .img {
  border-radius: 0 4px 4px 4px;
  overflow: hidden;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.19);
}
.gift_cnt .item .txt {
  margin-top: 1rem;
  padding: 0.5em 2rem 2rem;
  text-align: center;
  line-height: 1;
}
.gift_cnt .item .att {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5em;
  font-size: 1.25em;
}
.gift_cnt .item .att .t {
  flex: 0 0 auto;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.gift_cnt .item .att .l {
  margin-top: 3px;
  flex: 0 0 3rem;
  height: 1px;
  background-color: #fff;
}
.gift_cnt .item .name {
  margin-top: 0.5rem;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.3;
}
.gift_cnt .item .count {
  margin: 1rem 0;
}
.gift_cnt .item .price {
  border: 1px solid #4cb3cf;
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.gift_cnt .more {
  margin-top: 1rem;
  text-align: center;
}
.gift_cnt .more_inner {
  display: inline-block;
  border-radius: 3rem;
  padding: 1rem 2rem;
  font-size: 1.25rem;
}

.sc_location {
  padding: 4rem 0;
  background-color: rgba(248, 202, 65, 0.05);
}
.sc_location .location_cnt {
  display: flex;
  justify-content: space-between;
}
.sc_location .info_wrap {
  flex: 0 0 33%;
  padding-left: 1.5rem;
}
.sc_location .info_wrap .sc_title {
  margin-left: -1.5rem;
  text-align: left;
}
.sc_location .info_wrap .part {
  display: flex;
  align-items: flex-end;
  line-height: 1;
  font-family: "Lato", sans-serif;
}
.sc_location .info_wrap .part .date {
  font-size: 2rem;
  padding-right: 0.5rem;
}
.sc_location .info_wrap .part .day {
  border-radius: 0.25rem;
  padding: 0.4rem 0.5rem;
  font-size: 0.875rem;
  background-color: #10113b;
  color: #fff;
}
.sc_location .info_wrap .part .time {
  padding-left: 0.5rem;
  padding-bottom: 0.2rem;
  font-size: 1.25rem;
}
.sc_location .info_wrap .loca {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #10113b;
}
.sc_location .info_wrap .addr {
  border-radius: 4px;
  font-size: 1rem;
}
.sc_location .map_wrap {
  flex: 1 0 67%;
  padding-right: 10px;
}
.sc_location .map_wrap .map {
  position: relative;
  padding-top: 50%;
  overflow: hidden;
  box-shadow: 10px 10px 0 0 rgba(248, 202, 65, 0.3);
}
.sc_location .map_wrap .map iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.sc_detail {
  padding: 3rem 0;
  background-color: #f8f8f8;
}
.sc_detail ul,
.sc_detail ol {
  padding-left: 1.25em;
}
.sc_detail li {
  line-height: 1.3;
  padding: 0.33rem 0;
}

.g_footer {
  padding: 1rem 0;
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2) 10%, rgba(0, 0, 0, 0));
}
.g_footer .foo_logo {
  margin: 0 auto;
  max-width: 200px;
}

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

.modal-header button.close {
  font-size: 2rem;
  line-height: 1;
  color: #000;
  opacity: 1;
}

@media (max-width: 767px) {
  .g_header {
    background-color: #fff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
  }
  .g_header .header_logo img {
    height: 48px;
  }
  .g_header .nav_area {
    position: absolute;
    width: calc(100% + 1rem);
    top: 100%;
    left: -0.5rem;
  }
  .g_header .nav_cnt {
    display: block;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
    background: linear-gradient(180deg, #eee, #f8f8f8) no-repeat;
  }
  .g_header .nav_link {
    padding: 1rem 2rem;
  }
  .g_header .functional_area {
    display: none;
  }

  .cta .bttns {
    display: block;
  }

  .sc_intro .intro_wrap {
    font-size: 1.125rem;
  }

  .ag_table {
    margin-bottom: 2rem;
  }
  .ag_table .ag_row {
    display: block;
    margin-bottom: 2px;
  }
  .ag_table .td {
    min-height: auto;
  }
  .ag_table .td.td_time {
    display: inline-flex;
    min-height: auto;
  }
  .ag_table .td.td_spk {
    padding-top: 0;
  }

  .sc_agenda {
    padding-bottom: 2rem;
  }

  .spn_cnt .spn_items.main_categ {
    display: block;
  }
  .spn_cnt .spn_items.main_categ .main,
.spn_cnt .spn_items.main_categ .ext {
    display: flex;
  }
  .spn_cnt .spn_items .spn_item {
    flex-basis: 50%;
  }

  .spk_cnt .items,
.gift_cnt .items {
    display: block;
  }

  .spk_cnt .item {
    margin-bottom: 1rem;
    text-align: center;
  }
  .spk_cnt .item .img {
    display: inline-block;
  }
  .spk_cnt .item .tit {
    padding-top: 0.25rem;
  }

  .sc_location {
    padding: 2rem 0 5rem;
  }
  .sc_location .location_cnt {
    display: block;
  }
  .sc_location .info_wrap {
    margin-bottom: 1rem;
  }
  .sc_location .info_wrap .loca {
    margin-bottom: 0;
  }
  .sc_location .map_wrap {
    padding-right: 0;
  }
  .sc_location .map_wrap .map {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }

  .g_footer {
    padding: 3rem;
  }
}