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

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

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: -webkit-gradient(linear, left top, left bottom, from(#0f054c), to(black));
  background: linear-gradient(#0f054c, black);
  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_kv {
  position: relative;
}

.g_main {
  position: relative;
  z-index: 2;
  background: url("img/16_9_bg.jpg") center/cover fixed no-repeat;
}

.sc_title {
  padding: 40px 0;
  text-align: center;
}
.sc_title .tit {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fbc70e;
  padding-bottom: 10px;
  border-bottom: 1px solid currentColor;
}

.sc_intro {
  padding-top: 40px;
  padding-bottom: 60px;
  background-color: #fff;
}

.intro_cnt {
  font-size: 1.25rem;
}
.intro_cnt .link {
  text-align: right;
}
.intro_cnt .link a {
  display: inline-block;
  color: #ff2c9c;
  font-size: 16px;
  text-decoration: underline;
}
.intro_cnt .link a:hover {
  color: #5761d7;
}

.parag {
  margin-bottom: 1em;
}
.parag .h4 {
  color: #0f054c;
}

.cta {
  margin-top: 20px;
  font-size: 0;
  text-align: center;
}
.cta .tip {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.25rem;
  margin-right: 20px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: #0f054c;
}
.cta .bttn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  border-radius: 2.5rem;
  height: 5rem;
  border: 2px solid #fbc70e;
  overflow: hidden;
}
.cta .bttn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 200%;
  background-image: linear-gradient(135deg, #ff2c9c, #5761d7 75%);
  -webkit-transition: top 400ms;
  transition: top 400ms;
}
.cta .bttn div {
  position: relative;
  top: 50%;
  z-index: 2;
  padding: 0 3em;
  font-size: 1.25rem;
  line-height: 1;
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -webkit-transform 400ms;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cta .bttn div span {
  color: #0f054c;
  margin-right: 0.5em;
}
.cta .bttn div strong {
  font-size: 1.5em;
  font-weight: 500;
  color: #fff;
}
.cta .bttn:hover {
  color: inherit;
  text-decoration: none;
}
.cta .bttn:hover::before {
  top: -100%;
}
.cta .bttn:hover div {
  -webkit-transform: translateY(-50%) scale(1.1);
          transform: translateY(-50%) scale(1.1);
}

.sc_agenda {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  background: radial-gradient(circle, rgba(87, 97, 215, 0.9), #0f054c);
  color: #fff;
}
.sc_agenda::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 20px solid;
  border-color: #15d9fd #15d9fd transparent transparent;
}
.sc_agenda .sc_title .tit {
  color: #fff;
}

.agnd_cnt {
  position: relative;
  z-index: 2;
}
.agnd_cnt .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
}
.agnd_cnt .item:last-child {
  margin-top: 40px;
}
.agnd_cnt .item .main {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 34em;
          flex: 0 0 34em;
}
.agnd_cnt .item .main .tit {
  color: #fbc70e;
  font-size: 1.2em;
  line-height: 1.3;
}
.agnd_cnt .item .main .info {
  border-left: 1px solid currentColor;
  margin-top: 6px;
  margin-left: 6px;
  padding: 2px 16px;
  padding-right: 0;
  font-size: 1em;
}
.agnd_cnt .item .spk {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14em;
          flex: 0 0 14em;
  padding-left: 50px;
}
.agnd_cnt .item .spk .name {
  font-size: 1.2em;
  font-weight: 700;
  color: #0f054c;
}
.agnd_cnt .item .spk .job {
  font-size: 1em;
}

.sc_gift {
  padding-bottom: 4rem;
  background: #0f054c url("img/kv_bg.png") right center/contain no-repeat;
}
.sc_gift .tit {
  color: #15d9fd;
}

.gift_cnt .item {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gift_cnt .item .img {
  background: linear-gradient(-135deg, #5761d7, #0f054c);
  border-radius: 12px;
}
.gift_cnt .item .img img {
  position: relative;
  right: 6px;
  bottom: 6px;
  border-radius: 10px;
}
.gift_cnt .item .txt {
  font-size: 3rem;
}
.gift_cnt .item .brand {
  line-height: 1;
  color: #fff;
  font-weight: 500;
}

.g_footer {
  position: relative;
  padding: 30px 0;
}
.g_footer::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  border: 20px solid;
  border-color: transparent transparent #0f054c #0f054c;
}
.g_footer .logo_cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 0;
}
.g_footer .logo_cnt .item {
  padding: 0 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.g_footer .logo_cnt .key {
  padding-right: 20px;
}
.g_footer .logo_cnt .logo {
  padding: 0 10px;
}
.g_footer .logo_cnt .logo img {
  height: 80px;
}

@media (max-width: 767px) {
  .fix_aside {
    right: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .fix_aside .fx_item {
    margin: 0 0.5em;
  }

  .sc_title {
    padding: 30px 10px;
  }
  .sc_title .tit {
    font-size: 1.35rem;
    font-weight: 500;
  }

  .sc_intro {
    padding: 30px 15px 40px;
  }

  .intro_cnt {
    font-size: 1rem;
  }

  .cta {
    margin-top: 30px;
    font-size: 0;
    text-align: center;
  }
  .cta .bttn {
    height: 4rem;
  }
  .cta .bttn div strong {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
  }

  .sc_agenda {
    padding: 30px 15px;
  }

  .agnd_cnt .item {
    display: block;
    font-size: 1.125rem;
  }
  .agnd_cnt .item .spk {
    margin-top: 10px;
    padding-left: 0;
  }
  .agnd_cnt .item:last-child {
    margin-top: 20px;
  }

  .sc_gift {
    padding-bottom: 30px;
    background-position: right bottom;
  }

  .gift_cnt .item {
    margin-bottom: 20px;
  }
  .gift_cnt .item .img {
    max-width: 67vw;
  }
  .gift_cnt .item .txt {
    margin-top: 20px;
    text-align: center;
  }
  .gift_cnt .item .txt .brand {
    font-size: 2rem;
  }

  .g_footer .logo_cnt {
    display: block;
    padding: 0;
  }
  .g_footer .logo_cnt .item {
    display: block;
    padding: 0 10px;
    margin-bottom: 30px;
    text-align: center;
  }
  .g_footer .logo_cnt .key {
    padding-right: 0;
    margin-bottom: 6px;
  }
  .g_footer .logo_cnt .logo {
    padding: 6px 0;
  }
  .g_footer .logo_cnt .logo img {
    height: 60px;
  }
}