@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(#f5a06b), to(#ea6410));
  background: linear-gradient(#f5a06b, #ea6410);
  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: #1e2537;
  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;
}

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

.cta {
  margin-top: 2rem;
  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: #f5a06b;
}
.cta .bttn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  border-radius: 2.5rem;
  height: 5rem;
  background-color: #fff;
  overflow: hidden;
}
.cta .bttn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 200%;
  background-image: linear-gradient(-45deg, #f5a06b, #1e2537 50%);
  -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: #f5a06b;
  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-bottom: 60px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(30, 37, 55, 0.9)), to(rgba(30, 37, 55, 0.7)));
  background: linear-gradient(rgba(30, 37, 55, 0.9), rgba(30, 37, 55, 0.7));
  color: #fff;
}
.sc_agenda::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 20px solid;
  border-color: #f5a06b #f5a06b 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: 30px;
}
.agnd_cnt .item .main {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 34em;
          flex: 0 0 34em;
}
.agnd_cnt .item .main .tit {
  color: #71fff8;
  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: #f5a06b;
}
.agnd_cnt .item .spk .job {
  font-size: 1em;
}

.sc_gift {
  padding-bottom: 4rem;
  background-color: #fff;
}

.gift_cnt .item .img {
  overflow: hidden;
}
.gift_cnt .item .img img {
  padding: 0 25px;
}
.gift_cnt .item .txt {
  margin-top: 0.8em;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
}
.gift_cnt .item .brand {
  font-size: 1.2em;
  font-weight: 700;
}
.gift_cnt .item .mod {
  margin: 0.25em 0;
  font-size: 1.1em;
  line-height: 1.4;
  color: #1e2537;
}

.g_footer {
  position: relative;
  padding: 40px 0 20px;
  background-color: #1e2537;
}
.g_footer::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  border: 20px solid;
  border-color: transparent transparent #f5a06b #f5a06b;
}
.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;
  color: #fff;
}
.g_footer .logo_cnt .logo {
  padding: 0 10px;
}
.g_footer .logo_cnt .logo img {
  height: 80px;
}
.g_footer .rights {
  margin-top: 30px;
  font-size: 0.8rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.67);
  text-align: center;
}
.g_footer .rights .wrap {
  display: inline-block;
  text-align: left;
  padding-left: 25px;
}
.g_footer .rights .wrap li {
  padding-top: 4px;
  padding-bottom: 4px;
}

@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.5rem;
  }

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

  .intro_cnt {
    font-size: 1rem;
  }

  .sc_agenda {
    padding: 10px 15px 40px;
  }

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

  .sc_gift {
    padding-bottom: 30px;
  }

  .gift_cnt .item {
    margin-bottom: 40px;
  }
  .gift_cnt .item .img {
    margin-top: -15px;
  }
  .gift_cnt .item .img img {
    padding: 0 50px;
  }
  .gift_cnt .item .txt {
    margin-top: 0.5em;
    font-size: 1.25rem;
  }

  .g_footer {
    padding-bottom: 80px;
  }
  .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;
  }
}