@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans TC", "Microsoft Jhenghei", "微軟正黑", sans-serif;
  background: radial-gradient(farthest-side at right bottom, rgba(136, 208, 239, 0.7), rgba(235, 72, 127, 0)) right bottom/100% 15% no-repeat, -webkit-gradient(linear, left top, right top, from(#211754), to(#170e46));
  background: radial-gradient(farthest-side at right bottom, rgba(136, 208, 239, 0.7), rgba(235, 72, 127, 0)) right bottom/100% 15% no-repeat, linear-gradient(90deg, #211754, #170e46);
}

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: 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: linear-gradient(135deg, #f7d745, #e57b58);
  color: #fff;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.5);
}
.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;
}

@-webkit-keyframes ctaAni {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(1.05);
            transform: scaleX(1.05);
  }
}

@keyframes ctaAni {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(1.05);
            transform: scaleX(1.05);
  }
}
.cta {
  margin-top: 2rem;
}
.cta .bttn {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 220px;
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}
.cta .bttn .wrp {
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#eb487f), to(#e57b58));
  background: linear-gradient(90deg, #0C6BB0, #A6E8FF);
  padding: 1px;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
  -webkit-animation: ctaAni 1s linear infinite alternate;
          animation: ctaAni 1s linear infinite alternate;
}
.cta .bttn .wrp_in {
  border-radius: 10px;
  padding: 30px;
  -webkit-transition: background 300ms;
  transition: background 300ms;
  background-color: #170e46;
}
.cta .bttn .txt {
  position: absolute;
  left: 0;
  top: 48%;
  z-index: 3;
  width: 100%;
  padding: 0 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cta .bttn .t {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  padding-left: 4px;
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
}
.cta .bttn .i {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 36px;
          flex: 0 0 36px;
}
.cta .bttn:hover {
  text-decoration: none;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.cta .bttn:hover .wrp {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  -webkit-box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.5);
}
.cta .bttn:hover .wrp_in {
  background-color: rgba(23, 14, 70, 0);
}

.sc_title {
  position: relative;
  z-index: 2;
  line-height: 1;
  margin-bottom: 1em;
  text-align: center;
  font-size: 2rem;
}
.sc_title .tit {
  display: inline-block;
  padding: 0.8em 0;
  width: 8em;
  -webkit-transform: skewX(-10deg);
          transform: skewX(-10deg);
  background: linear-gradient(45deg, #6EC7D6, #27638C);
}
.sc_title .txt {
  position: absolute;
  left: 50%;
  top: 42%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  text-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
  color: white;
  font-weight: 700;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.g_kv .desktop {
  position: relative;
}
.g_kv .desktop img {
  max-width: 100%;
}
.g_kv .desktop .pic .pic1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  -webkit-animation: blink 1.6s forwards ease-in-out;
          animation: blink 1.6s forwards ease-in-out;
}
/* .g_kv .desktop .logo {
  position: absolute;
  left: 4.1666666667vw;
  top: 4.1666666667vw;
  width: 15.8854166667%;
} */
.g_kv .desktop .tit {
  position: absolute;
  left: 3.7vw;
  top: 56%;
  width: calc((1100 / 1920) * 100%);
}

.g_kv .desktop .tit .p1 {
  width: calc((1098 / 1100) * 100%);
}

.g_kv .desktop .tit .p2 {
  width: calc((1099 / 1100) * 100%);
  margin-top: 1vw;
}

.g_kv .desktop .tit .p3 {
  width: calc((532 / 1100) * 100%);
  /* margin-left: 2%; */
  margin-top: 2vw;
}

.g_kv .desktop .tit .p4 {
  width: calc((532 / 1100) * 100%);
  margin-top: 1vw;
}

.g_kv .desktop .tit .p5 {
  width: calc((532 / 1100) * 100%);
  margin-top: 5vw;
}

.g_kv .desktop .tit .p6 {
  width: calc((532 / 1100) * 100%);
  margin-top: 5vw;
  left: 0;
}


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

.sc_intro {
  padding: 3rem 0;
}
.sc_intro p {
  max-width: calc(916px + 2rem);
  margin: 0 auto 1em;
  padding: 0 1rem;
  font-size: 1.25rem;
}
.sc_intro p:last-child {
  margin-bottom: 0;
}

.sc_agenda {
  padding: 2rem 0;
}

.agenda_cnt .ag_wrap {
  padding: 0;
}
.agenda_cnt .ag_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
}
.agenda_cnt .ag_row.td_one .td {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  text-align: center;
}
.agenda_cnt .ag_row.td_split {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.agenda_cnt .ag_row.td_split .td,
.agenda_cnt .ag_row.td_split .ag_date {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: calc(50% - .5rem);
}
.agenda_cnt .ag_row.td_split .td .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.qtn_letter{
  height: 100%;
}

.agenda_cnt .ag_date {
  text-align: center;
  line-height: 1;
}
.agenda_cnt .ag_date .date,
.agenda_cnt .ag_date .time {
  display: inline-block;
}
.agenda_cnt .ag_date .date {
  font-size: 2rem;
  font-weight: 700;
}
.agenda_cnt .ag_date .time {
  padding-left: 1rem;
  font-size: 1.5rem;
  font-weight: 400;
}
.agenda_cnt .td {
  padding: 0 30px 20px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, color-stop(67%, #fff), to(#c1c7d1));
  background: linear-gradient(90deg, #fff 67%, #c1c7d1);
  color: #170e46;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.19);
}
.agenda_cnt .td .time {
  display: inline-block;
  padding: 4px 12px 8px;
  border-radius: 0 0 12px 12px;
  max-width: 12rem;
  background: -webkit-gradient(linear, left top, right top, from(#e57b58), to(#eb487f));
  background: linear-gradient(90deg, #FFD150, #ff9812);
  color: #fff;
  font-size: 1.2rem;
}
.agenda_cnt .td .title {
  margin-top: 15px;
}
.agenda_cnt .td .title .tit {
  font-size: 1.375rem;
  line-height: 1.2;
  padding-right: 10px;
}
.agenda_cnt .td .title .tri {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  border-radius: 6px;
  border: 1px solid #0C6BB0;
  padding: 4px 8px 5px;
  font-size: 0.875rem;
  color: #0C6BB0;
  line-height: 1;
  cursor: pointer;
}
.agenda_cnt .td .title .tri:hover {
  background-color: #0C6BB0;
  color: #fff;
}
.sc_speaker .tri {
  display: inline-block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
border-radius: 6px;
border: 1px solid #0C6BB0;
padding: 4px 8px 5px;
font-size: 0.875rem;
color: #0C6BB0;
line-height: 1;
  cursor: pointer;
  margin-top: 10px;
  /* float: right; */
}
.sc_speaker .tri:hover{
  background-color: #0C6BB0;
  color: #fff;
}
.agenda_cnt .td .speaker {
  margin-top: 12px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.4;
}
.agenda_cnt .td .speaker .name {
  font-size: 1.2em;
  font-weight: 500;
  color: #000;
}
.sc_speaker {
  padding: 3rem 0;
}

.spk_cnt .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.spk_cnt .item_wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  padding: 0 5px;
  margin-bottom: 10px;
}
.spk_cnt .item {
  border-radius: 4px;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
  color: #000;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.19);
}
.spk_cnt .item .img {
  background-color: rgba(23, 14, 70, 0.5);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(235, 72, 127, 0.5)), to(rgba(235, 72, 127, 0.2)));
  background: linear-gradient(0deg, rgba(235, 72, 127, 0.5), rgba(235, 72, 127, 0.2));
}
.spk_cnt .item img {
  max-width: 100%;
  display: block;
}
.spk_cnt .item .speaker {
  padding: 1rem;
  line-height: 1.1;
  font-size: 0.875rem;
}
.spk_cnt .item .name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #170e46;
}
.spk_cnt .item .com {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.sc_gift {
  padding: 3rem 0;
  color: white;
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gift_cnt .item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 24%;
          flex: 0 1 24%;
}
.gift_cnt .item .type {
  border-radius: 2px 10px 0 0;
  display: inline-block;
  background-color: #FF9914;
  padding: 0.5rem 2rem 0.5rem 1rem;
  line-height: 1;
  color: #fff;
}
.gift_cnt .item .img {
  border-radius: 0 4px 4px 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.19);
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0.5em;
  font-size: 1.25em;
}
.gift_cnt .item .att .t {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.gift_cnt .item .att .l {
  margin-top: 3px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 3rem;
          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 {
  padding: 0.5rem 1rem 0.65rem;
  border-radius: 40px;
  background-color: #170e46;
  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;
}

.g_footer {
  padding: 3rem 0;
}
.g_footer .foo_logo {
  margin: 0 auto;
  max-width: 200px;
}

@media (max-width: 767px) {
  .sc_intro p {
    font-size: 1.125rem;
  }

  .ag_table {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  .ag_table .td {
    margin-top: 1rem;
  }

  .agenda_cnt .td .title .tri {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 8px 10px;
  }

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

  .spk_cnt .item {
    width: 100%;
    margin-bottom: 1rem;
  }

  /* .agenda_cnt .ag_row.td_split {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .ag_row .ag_date {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }

  .agenda_cnt .td {
    max-width: 100%!important;
  }

  .ag_table .td {
    width: 100%!important;
  }

  .ag_row .title {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start!important;
    flex-direction: column;
  }

  .td_one .td {
    display: flex!important;
    justify-content: center!important;
    flex-direction: column!important;
    align-items: flex-start!important;
  } */

  /* .d-lg-block {
    display: none;
  } */
}
