@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(255, 215, 73, 0.7), rgba(255, 215, 73, 0)) right bottom/100% 15% no-repeat, -webkit-gradient(linear, left top, right top, from(#06457b), to(#149fa4));
  background: radial-gradient(farthest-side at right bottom, rgba(255, 215, 73, 0.7), rgba(255, 215, 73, 0)) right bottom/100% 15% no-repeat, linear-gradient(90deg, #06457b, #149fa4);
}

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: .5em;
  margin: .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: .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(#ffd749), to(#e57b58));
  background: linear-gradient(90deg, #ffd749, #e57b58);
  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: #06457b;
}

.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: .8em 0;
  width: 8em;
  -webkit-transform: skewX(-10deg);
          transform: skewX(-10deg);
  background: linear-gradient(120deg, #f7d745, #e57b58);
}

.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 2px rgba(0, 0, 0, 0.5);
  color: #fff;
  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;
  right: 4.16667vw;
  top: 4.16667vw;
  width: 15.88542%;
}

.g_kv .desktop .tit {
  position: absolute;
  right: 10.9375vw;
  top: 27.08333%;
  width: 41.66667%;
}

.g_kv .desktop .tit .t1 {
  position: relative;
  width: 87.5%;
  margin: 0 0 0 6%;
}

.g_kv .desktop .tit .t2 {
  position: relative;
  display: inline-block;
  width: 43.125%;
  margin: 5% 5% 0 0;
}

.g_kv .desktop .tit .t3 {
  position: relative;
  display: inline-block;
  width: 48.125%;
}

.g_kv .desktop .tit img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}

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

.sc_intro {
  padding: 3rem 0;
}

.sc_intro p {
  max-width: calc(800px + 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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  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;
}

.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: #06457b;
  -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(#06457b), to(#149fa4));
  background: linear-gradient(90deg, #06457b, #149fa4);
  color: #fff;
  font-size: 1.2rem;
}

.agenda_cnt .td .title {
  margin-top: 15px;
}

.agenda_cnt .td .title .tit {
  position: relative;
  font-size: 1.375rem;
  line-height: 1.2;
  padding-right: 10px;
  display: block;
}

.agenda_cnt .td .title .tri {
  position: relative;
  display: block;
  margin: 15px auto;
  width: 100px;
  border-radius: 6px;
  border: 1px solid currentColor;
  padding: 4px 8px 5px;
  font-size: .875rem;
  color: #06457b;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.agenda_cnt .td .title .tri:hover {
  background-color: #ffd749;
  color: #06457b;
}

.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(6, 69, 123, 0.5);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 215, 73, 0.5)), to(rgba(255, 215, 73, 0.2)));
  background: linear-gradient(0deg, rgba(255, 215, 73, 0.5), rgba(255, 215, 73, 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: #06457b;
}

.spk_cnt .item .com {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.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: -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: #149fa4;
  padding: .5rem 2rem .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: .5em 1rem 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: .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: .25rem;
  padding-right: .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: .5rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.gift_cnt .item .name span {
  font-size: 0.875rem;
  line-height: 0.5;
}

.gift_cnt .item .count {
  margin: 1rem 0;
}

.gift_cnt .item .price {
  padding: .5rem 1rem .65rem;
  border-radius: 40px;
  background-color: #06457b;
  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;
  }
  .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;
  }
}
/*# sourceMappingURL=style.css.map */