html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.sec_wrap {
  margin: 0 auto;
  padding: 3rem 0;
}

@media screen and (min-width: 1440px) {
  .sec_wrap {
    max-width: 1440px;
  }
}
.fix_aside {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: 0.5rem;
  -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: 0.5em;
  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;
}
.fix_aside .fx_item.is_primary {
  background-image: linear-gradient(135deg, #7c54d2, #7c54d2);
  color: #fff;
}
.fix_aside .fx_item:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -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: translate(-50%, -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;
}

.g_header {
  z-index: 98;
  width: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 10%), linear-gradient(120deg, #0264b0, #7c54d2, #f7011d, #ffff00);
}
.g_header .header_wrap {
  position: relative;
  padding: 0.5rem;
}
.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_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.g_header .header_logo {
  padding: 0 1rem;
}
.g_header .header_logo img {
  width: 250px;
}
.g_header .nav_cnt {
  padding: 0 1rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.g_header .nav_item {
  padding: 0.75rem 1rem;
  font-size: 1.125em;
  line-height: 1;
  font-weight: normal;
}
.g_header .nav_item .dropdown-item {
  padding: 0.5rem 1rem;
}
.g_header .nav_item .dropdown-item:hover {
  background-color: #ffff00;
}
.g_header .nav_link {
  color: #fff;
  cursor: pointer;
}
.g_header .nav_link:hover {
  color: #ffff00;
  text-decoration: none;
}

.g_kv {
  position: relative;
}

.g_main {
  background: url("img/kv_bg.jpg") center/cover fixed;
}
.g_main .main_sc {
  padding: 60px 0;
}
.g_main .sc_title {
  position: relative;
  z-index: 2;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 30px;
}
.g_main .sc_title .tit {
  display: inline-block;
  padding-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: #7c54d2;
}
.g_main .sc_title::before, .g_main .sc_title::after {
  content: "";
  position: absolute;
  left: calc(50% - 2.5em);
  width: 5em;
  height: 1px;
  bottom: 0;
  background-color: #0264b0;
  background-image: -webkit-gradient(linear, left top, right top, from(#0264b0), to(#7c54d2));
  background-image: linear-gradient(90deg, #0264b0, #7c54d2);
}
.g_main .sc_title::after {
  bottom: -2px;
  background-color: #f7011d;
  background-image: -webkit-gradient(linear, left top, right top, from(#f7011d), to(#ffff00));
  background-image: linear-gradient(90deg, #f7011d, #ffff00);
}

.sc_intro {
  background-color: #fff;
}
.sc_intro .sec_cnt {
  max-width: 960px;
  margin: 0 auto;
  font-size: 1.25rem;
}
.sc_intro .p {
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 1em;
}
.sc_intro .cta {
  margin-top: 1rem;
  padding: 1rem 0 2rem;
  text-align: center;
}
.sc_intro .cta .cta_tit {
  font-size: 1.25rem;
  color: #0264b0;
}
.sc_intro .cta .bttn {
  display: inline-block;
  margin: 10px;
  border-radius: 0.5rem;
  padding: 1.4rem 3rem 1.5rem;
  font-size: 1.5rem;
  line-height: 1;
  background-color: #f7011d;
  color: #fff;
  opacity: 1;
  -webkit-transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, transform 300ms;
  transition: opacity 300ms, transform 300ms, -webkit-transform 300ms;
}
.sc_intro .cta .bttn:hover {
  text-decoration: none;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.6;
}
.sc_intro .cta .bttn2 {
  background-color: #0264b0;
}

.gift_cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gift_cnt .gift_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49%;
          flex: 0 0 49%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gift_cnt .pic {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 180px;
          flex: 0 0 180px;
  border: 2px solid #7c54d2;
  border-radius: 8px;
  overflow: hidden;
}
.gift_cnt .text {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  padding: 20px;
  background-color: #7c54d2;
  font-size: 1.25em;
}
.gift_cnt .text .tit {
  margin-bottom: 1em;
  font-weight: 700;
  color: #ffff00;
  line-height: 1;
  font-size: 1.2em;
}
.gift_cnt .text .t {
  color: #fff;
  line-height: 1.3;
}

.sc_agenda {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.1)));
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
}
.sc_agenda .sc_title .tit {
  color: #fff;
}

.ag_table {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  border: 1px solid #ffff00;
  font-size: 1.25em;
  color: #fff;
}
.ag_table .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid yellow;
  padding: 0.75rem 1.75rem;
  background-color: rgba(2, 100, 176, 0.9);
}
.ag_table .tr.soft_bg {
  background-color: rgba(0, 0, 0, 0.9);
}
.ag_table .tr .time {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 150px;
          flex: 0 0 150px;
}
.ag_table .tr .title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 72%;
          flex: 1 1 72%;
  padding-right: 2em;
}
.ag_table .tr .title span {
  display: block;
  color: #ffff00;
}
.ag_table .tr .part {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.ag_table .tr .speaker {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 28%;
          flex: 0 1 28%;
}
.ag_table .tr .speaker .name {
  color: #ffff00;
}
.ag_table .tr .speaker .job,
.ag_table .tr .speaker .cpy {
  font-size: 0.875em;
}
.ag_table .tr:last-child {
  border-bottom-width: 0;
}

.sc_speaker {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.9)));
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9));
}
.sc_speaker .container-fluid {
  max-width: 1280px;
}
.sc_speaker .sc_title .tit {
  color: #fff;
}
.spk_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.spk_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 220px;
  padding: 0 10px;
  cursor: pointer;
}
.spk_item .pic {
  padding: 0 20px;
  background-color: #fff;
}
.spk_item .wording {
  padding: 10px 20px;
  text-align: center;
}
.spk_item .wording .name {
  font-size: 1.25em;
  font-weight: 700;
  color: #ffff00;
}
.spk_item .wording .cpy {
  color: #fff;
}

.sc_location {
  background-color: #f2f2f2;
}
.sc_location .sec_cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sc_location .loc_wording {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 0 0 30px 30px;
  text-align: center;
}
.sc_location .loc_wording .val {
  margin-top: 30px;
  line-height: 1.1;
}
.sc_location .loc_wording .val .tit {
  font-size: 1.25rem;
  color: #0264b0;
}
.sc_location .loc_wording .val span {
  display: block;
  font-weight: normal;
  font-size: 1rem;
  margin-top: 6px;
  padding-bottom: 20px;
}
.sc_location .loc_wording .val .tip {
  opacity: 0.8;
  color: #0264b0;
}
.sc_location .loc_map {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 60%;
          flex: 1 0 60%;
}
.sc_location .loc_map .map_wrap {
  position: relative;
  padding-top: 50%;
}
.sc_location .loc_map .map_wrap iframe {
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
}

.sc_detail {
  background-color: #fff;
}
.sc_detail .sec_cnt .list {
  padding-left: 1.5rem;
  padding-right: 40px;
  margin-top: -4px;
  margin-bottom: 0;
}
.sc_detail .sec_cnt .list li {
  padding: 8px 0;
  line-height: 1.3;
}
.sc_detail .sec_cnt .list li ul {
  margin-top: 10px;
  padding-left: 1.5rem;
}
.sc_detail .sec_cnt .list a {
  color: #0070c5;
  text-decoration: underline;
}
.sc_detail .sec_cnt .list a:hover {
  color: #7c54d2;
}

.modal-content {
  border-width: 0;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.19);
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 2rem;
  line-height: 1;
  border-bottom: 0 solid #000;
}
.modal-header .modal_t {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.modal-header .modal_t .n {
  font-size: 1.25rem;
  font-weight: 500;
}
.modal-header .modal_t .j {
  padding-left: 0.5em;
}
.modal-header .modal_close {
  font-size: 2rem;
  line-height: 1;
  color: #000;
  opacity: 1;
}

.modal-body {
  padding: 0 2rem 2rem;
  font-size: 1em;
}
.modal-body h5 {
  font-size: 1.125em;
}
.modal-body ul {
  padding-left: 1.5em;
}
.modal-body ul:last-child,
.modal-body p:last-child {
  margin-bottom: 0;
}

.g_footer {
  padding: 1rem 0;
  background-color: #eee;
}
.g_footer .d-flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.g_footer .part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.g_footer .part .logo {
  padding: 0 20px;
}
.g_footer .part .logo img {
  height: 60px;
}

@media (max-width: 767px) {
  .g_header {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 10%), linear-gradient(160deg, #7c54d2 10%, #0264b0 90%);
  }
  .g_header .nav_content {
    display: block;
  }
  .g_header .header_logo {
    display: block;
    padding: 1rem;
  }
  .g_header .nav_cnt {
    padding: 0;
    display: block;
  }
  .g_header .nav_item {
    padding: 1rem 2rem;
  }

  .g_main .main_sc {
    padding: 40px 0;
  }
  .sc_intro {
    padding: 0 1rem;
  }
  .sc_intro .sec_cnt {
    font-size: 1rem;
  }
  .sc_intro .p {
    padding: 0 1em;
    text-align: left;
  }
  .sc_intro .cta {
    margin: 0 -15px;
  }
  .sc_intro .cta .tip {
    font-size: 1.125rem;
  }
  .sc_intro .cta .bttn {
    margin: 5px;
    padding: 0.9rem 2rem 1rem;
  }
  .sc_intro .cta .bttn span {
    display: block;
    padding: 2px 0;
  }

  .gift_cnt {
    margin: 0 5px;
    display: block;
  }
  .gift_cnt .gift_item {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin: 10px 0;
  }
  .gift_cnt .text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
    font-size: 1rem;
  }
  .gift_cnt .pic {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    border-radius: 0;
  }

  .sc_agenda .sec_cnt {
    display: block;
  }

  .ag_table {
    margin-top: 1rem;
  }
  .ag_table .tr {
    display: block;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .ag_table .tr .title {
    font-size: 1.4;
  }
  .ag_table .tr .speaker {
    margin-top: 10px;
  }

  .spk_items {
    display: block;
  }

  .spk_item {
    margin: 20px auto;
  }
  .sc_location {
    padding-bottom: 0;
  }
  .sc_location .sec_cnt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sc_location .loc_map {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .sc_location .loc_map .map_wrap {
    width: calc(100vw - 30px);
    height: calc(100vw - 30px);
  }
  .sc_location .loc_wording {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 20px 10px 0;
  }

  .sc_detail .sec_cnt {
    display: block;
  }
  .sc_detail .sec_cnt .list {
    padding-left: 2rem;
    padding-right: 1rem;
  }

  .g_footer {
    padding: 2rem 0;
  }

  .modal-header {
    padding-left: 1.5rem;
  }
  .modal-header .modal_t .name {
    display: block;
  }

  .modal-body {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}