@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;900&family=Noto+Sans+TC:wght@300;400;700&display=swap");
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: #002B4A linear-gradient(180deg, #009FD9, #006794 50%, #002B4A);
  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/arrow_top.png") center/contain no-repeat;
}

.g_header {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 10%), linear-gradient(90deg, #009FD9, #006794 50%, #002B4A);
}
.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 #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: #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: center;
}
.g_header .nav_item {
  padding: 0.75rem 1rem;
  font-size: 1.125em;
  line-height: 1;
}
.g_header .nav_link {
  color: #fff;
}
.g_header .nav_link:hover {
  color: #FCCF00;
  text-decoration: none;
}

.sc_title {
  position: relative;
  z-index: 2;
  line-height: 1;
  margin-bottom: 2em;
  text-align: center;
}
.sc_title .tit {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  padding: 0 1em 0.33em;
  font-size: 2rem;
  font-weight: 400;
  color: #00587C;
}

@keyframes scale {
  0% {
    left: 0;
    top: 0;
    transform: scale(1);
  }
  100% {
    left: -2%;
    transform: scale(1.04);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0) scale(1);
    opacity: 0.05;
  }
  50% {
    transform: rotate(-180deg) scale(0.8 1.2);
    opacity: 0.02;
  }
  100% {
    transform: rotate(-360deg) scale(1);
    opacity: 0.05;
  }
}
@keyframes fade_right {
  0% {
    transform: translateX(-12%) scale(1.2);
    opacity: 0;
  }
  50% {
    transform: translateX(0) scale(1);
    opacity: 0.1;
  }
  100% {
    transform: translateX(12%) scale(0.8);
    opacity: 0;
  }
}
@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(8px, 16px);
  }
}
.g_kv {
  position: relative;
  background-image: linear-gradient(180deg, #009FD9, #006794 50%, #002B4A);
  max-height: calc(100vh - 58px);
  min-height: 500px;
  overflow: hidden;
}
.g_kv .bg {
  width: 100%;
}
.g_kv .w,
.g_kv .mw,
.g_kv .d {
  position: absolute;
  z-index: 3;
}
.g_kv .w {
  top: 18.5185185185%;
  right: 12.5%;
  width: 33.3333333333%;
}
.g_kv .w .addr {
  margin-top: 2rem;
  font-size: 1.66vw;
  color: #fff;
  text-align: right;
}
.g_kv .m {
  position: relative;
  z-index: 5;
  width: 58.3333333333%;
  animation: scale 6s linear infinite alternate;
}
.g_kv .m img {
  transform-origin: 60% center;
}
.g_kv .m_wild {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -5.8%;
  width: 69.7916666667%;
  transform: translateY(-50%);
}
.g_kv .m_wild img {
  animation: fade_right 4s linear infinite;
}
.g_kv .d {
  top: 62.037037037%;
  right: 12.5%;
}
.main_content {
  position: relative;
  z-index: 2;
  overflow-x: hidden;
}

.sc_intro {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.sc_intro .intro_wrap {
  font-size: 1.25rem;
}
.sc_intro p:last-child {
  margin-bottom: 0;
}

.cta {
  margin-top: 2rem;
  font-size: 0;
  text-align: center;
}
.cta .bttn {
  position: relative;
  display: inline-block;
  border-radius: 2rem;
  background-color: #002B4A;
}
.cta .bttn div {
  position: relative;
  z-index: 2;
  bottom: 6px;
  border-radius: 2rem;
  background-color: #00587C;
  padding: 0.75em 2.5em;
  font-size: 1.5rem;
  line-height: 1.1;
  color: #fff;
  transition: bottom 300ms;
}
.cta .bttn:hover {
  text-decoration: none;
}
.cta .bttn:hover div {
  bottom: 0;
}

.sc_agenda {
  padding: 4rem 0;
  background-color: #fafafb;
  position: relative;
}
.sc_agenda::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: url("img/kv_m.png") right bottom/cover no-repeat;
  opacity: 0.1;
}
.sc_agenda .container {
  position: relative;
  z-index: 2;
}

.ag_table {
  border: 1px solid #aaa;
}
.ag_table .tr {
  display: flex;
  align-items: center;
  border-top: 1px solid #aaa;
  background-color: rgba(255, 255, 255, 0.5);
}
.ag_table .tr.tr_tit .td {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.ag_table .tr.tr_tit .td .td_inner {
  font-size: 1rem;
  color: #000;
}
.ag_table .tr:first-child {
  border-top-width: 0;
}
.ag_table .tr .td {
  padding: 1rem 1.5rem;
  line-height: 1;
}
.ag_table .tr .time {
  flex: 0 0 20%;
}
.ag_table .tr .title {
  flex: 1 0 45%;
  line-height: 1.33;
  font-size: 1.25rem;
  color: #002B4A;
}
.ag_table .tr .speaker {
  flex: 0 0 35%;
}
.ag_table .tr .sp_name {
  font-size: 1.125em;
  font-weight: 700;
  color: #00587C;
}
.ag_table .tr .sp_tit {
  margin: 0.5rem 0;
}
.ag_table .tr.soft_bg {
  background-color: rgba(170, 170, 170, 0.1);
}
.ag_table .tr.tr_spec {
  position: relative;
  display: block;
  background-color: rgba(170, 170, 170, 0.1);
}
.ag_table .tr.tr_spec .td {
  padding: 0.75rem 1.5rem;
  color: #002B4A;
}
.ag_table .tr.tr_spec .title {
  text-align: center;
}
.ag_table .tr.tr_spec .time {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.switch_part {
  border: 1px solid #aaa;
  border-bottom-width: 0;
  margin-top: 1rem;
  display: flex;
}
.switch_part .sw {
  flex: 1 0 25%;
  padding: 1rem 1.5rem;
  background-color: rgba(170, 170, 170, 0.6);
  line-height: 1.2;
  cursor: pointer;
}
.switch_part .sw .sw_before {
  color: #fff;
}
.switch_part .sw .sw_tit {
  font-size: 1.5rem;
  font-weight: 700;
  color: #002B4A;
}
.switch_part .sw.sw1:hover {
  background-color: rgba(0, 159, 232, 0.5);
}
.switch_part .sw.sw1.is_active {
  background-color: #009FE8;
}
.switch_part .sw.sw2:hover {
  background-color: rgba(141, 195, 62, 0.5);
}
.switch_part .sw.sw2.is_active {
  background-color: #8DC33E;
}
.switch_part .sw.sw3:hover {
  background-color: rgba(236, 108, 0, 0.5);
}
.switch_part .sw.sw3.is_active {
  background-color: #EC6C00;
}
.switch_part .sw.sw4:hover {
  background-color: rgba(0, 88, 124, 0.5);
}
.switch_part .sw.sw4.is_active {
  background-color: #00587C;
}
.switch_part .sw.is_active .sw_tit {
  color: #FCCF00;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.ag_part_table {
  display: none;
}
.ag_part_table#part0 {
  display: block;
}

.sc_speaker {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.sc_speaker .item {
  cursor: pointer;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.3;
}
.sc_speaker .item:hover .img img {
  transform: scale(1.08);
}
.sc_speaker .item .img {
  margin: 0 auto;
  max-width: 220px;
  border-radius: 50%;
  overflow: hidden;
}
.sc_speaker .item .img img {
  transition: transform 200ms;
}
.sc_speaker .item .name {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  color: #00587C;
}
.sc_speaker .item .tit {
  padding: 0.5em 0;
}

.sc_gift {
  padding: 3rem 0;
}

.cnt_tit {
  display: inline-block;
  border-radius: 2rem;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0.25em;
  background-color: #002B4A;
  font-size: 1.25em;
  font-weight: 300;
  color: #FCCF00;
}

.cnt_tip {
  margin-bottom: 0.5rem;
}

.gift_cnt .item {
  position: relative;
  padding-top: 1rem;
}
.gift_cnt .item.soft_bg {
  background-color: rgba(0, 88, 124, 0.05);
}
.gift_cnt .item .att {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0.5rem 1rem;
  text-align: center;
  background-color: #009FE8;
  color: #fff;
  line-height: 1;
}
.gift_cnt .item .img {
  overflow: hidden;
}
.gift_cnt .item .img img {
  padding: 25px;
}
.gift_cnt .item .txt {
  position: relative;
  line-height: 1;
  padding: 1em;
  padding-bottom: calc(1em + 25px);
  text-align: center;
}
.gift_cnt .item .val {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1;
  color: #00587C;
}
.gift_cnt .item .tip {
  border-radius: 4px;
  display: inline-block;
  padding: 0.25em;
  border: 1px solid currentColor;
  font-size: 1rem;
  margin-top: 0.25rem;
  font-weight: 300;
  color: #009FE8;
}
.gift_cnt .item .active {
  margin-top: 0.5rem;
  line-height: 1.6;
  width: 100%;
}
.gift_cnt .item.qa_item {
  background-color: rgba(0, 88, 124, 0.9);
}
.gift_cnt .item.qa_item .val {
  color: #fff;
}

.sc_location {
  padding-top: 1.5rem;
  padding-bottom: 1.75rem;
  background-color: #00587C;
  overflow: hidden;
}
.sc_location .sc_title {
  margin-bottom: 0;
}
.sc_location .sc_title .tit {
  color: rgba(255, 255, 255, 0.8);
}
.sc_location .infomaion {
  padding-bottom: 1rem;
  font-size: 1.125rem;
  color: #fff;
  align-items: flex-end;
}
.sc_location .loca,
.sc_location .addr {
  line-height: 1;
}
.sc_location .loca {
  margin-left: 2rem;
  font-size: 2rem;
  font-weight: 700;
}
.sc_location .addr {
  margin-left: 1rem;
  color: #FCCF00;
  font-weight: 100;
}
.sc_location .map {
  flex: 1 0 50%;
}
.sc_location .map_wrap {
  position: relative;
  height: 100%;
  min-height: 20vw;
}
.sc_location .map_wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.sc_detail {
  padding: 3rem 0;
  background-color: #fafafa;
}
.sc_detail ol {
  padding-left: 1.25em;
}
.sc_detail li a {
  text-decoration: underline;
  color: #002B4A;
}
.sc_detail li a:hover {
  color: #EC6C00;
}

.sc_footer {
  overflow: hidden;
}
.sc_footer .logo {
  padding: 30px 0;
  margin: 0 auto;
  width: 210px;
}

.modal-dialog {
  max-width: 36rem;
}

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

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

.modal-body {
  margin: 0.25em 0;
  padding: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .sc_location .sc_title {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .g_header.is_active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  .g_header .nav_cnt {
    position: absolute;
    left: -0.5rem;
    top: 100%;
    width: calc(100% + 1rem);
    display: block;
    margin-top: 0.5rem;
    background: linear-gradient(90deg, #009FD9, #006794 50%, #002B4A);
  }
  .g_header .nav_item {
    padding: 1rem 2rem;
  }

  .g_kv {
    background-image: none;
    min-height: initial;
  }

  .sc_title .tit {
    margin-left: -1rem;
    padding: 1rem;
  }
  .sc_title .tit .zh {
    font-size: 2rem;
  }

  .sc_intro {
    padding: 2rem 0;
  }

  .switch_part {
    flex-wrap: wrap;
  }
  .switch_part .sw {
    flex: 1 0 50%;
  }

  .ag_table {
    border-radius: 0;
  }
  .ag_table .tr {
    display: block;
    padding: 0.75rem 1.5rem;
  }
  .ag_table .tr .td {
    padding: 0.33rem 0rem;
    line-height: 1;
  }
  .ag_table .tr .time {
    color: #2eafcb;
  }
  .ag_table .tr .sp_tit {
    margin: 0.33rem 0;
  }
  .ag_table .tr.tr_spec {
    position: relative;
    display: block;
    background-color: #fff;
  }
  .ag_table .tr.tr_spec .td {
    padding: 0.25rem 0;
    color: #aaa;
  }
  .ag_table .tr.tr_spec .title {
    text-align: left;
  }
  .ag_table .tr.tr_spec .time {
    position: static;
    top: 0;
    transform: translateY(0);
  }

  .gift_cnt {
    display: block;
  }
  .gift_cnt .item .txt {
    padding-top: 0;
  }

  .sc_location {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .sc_location .infomaion {
    padding: 0;
    padding-bottom: 1rem;
    text-align: center;
  }
  .sc_location .loca {
    margin-top: 1rem;
    margin-left: 0;
    margin-bottom: 0.5rem;
  }
  .sc_location .addr {
    margin-left: 0;
    font-weight: 100;
  }
  .sc_location .map {
    flex: 1 0 60%;
  }
  .sc_location .map_wrap {
    position: relative;
    height: 100%;
    padding-top: 75%;
  }
  .sc_location .map_wrap iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .fix_aside {
    right: 0.5rem;
    display: flex;
  }
  .fix_aside .fx_item {
    margin: 0 0.5em;
  }

  .sc_detail .container {
    padding: 0 15px;
  }
  .sc_detail .detail_cnt {
    padding-right: 1.5rem;
  }
  .sc_detail .detail_cnt ul {
    padding-left: 2.5rem;
  }
}