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

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

a {
  color: inherit;
}

.gdn_underline {
  display: inline-block;
  position: relative;
}
.gdn_underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#99e071), to(#07b2ac));
  background: linear-gradient(90deg, #99e071, #07b2ac);
}

.g_fixed {
  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;
}
.g_fixed.is_active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.g_fixed .fx_item {
  position: relative;
  display: block;
  border-radius: 0.5em;
  margin: 0.5em 0;
  width: 4em;
  height: 4em;
  background-color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
  -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;
}
.g_fixed .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);
}
.g_fixed .fx_item .in_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.g_fixed .fx_item .in_wrap.txt {
  text-align: center;
  line-height: 1.3;
}
.g_fixed .fx_item .in_wrap.ic {
  width: 100%;
  height: 100%;
  padding: 0.6em;
}
.g_fixed .fx_item .in_wrap .ic_top {
  width: 100%;
  padding-top: 100%;
  background: url("img/ui/arrow_top.png") center/contain no-repeat;
}

.cta {
  text-align: center;
}
.cta a {
  display: inline-block;
  border-radius: 3rem;
  padding: 5px;
  background: -webkit-gradient(linear, left top, right top, from(#07b2ac), to(#99e071)) no-repeat;
  background: linear-gradient(90deg, #07b2ac, #99e071) no-repeat;
  font-size: 2rem;
  line-height: 1;
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}
.cta a span {
  display: block;
  border-radius: 3rem;
  padding: 1.5rem 4rem;
}
.cta a:hover {
  text-decoration: none;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.cta .main_btn {
  color: #fff;
  text-shadow: 0 2px 1px rgba(0, 0, 0, 0.4);
}
.cta .sub_btn {
  margin-left: 30px;
  color: #07b2ac;
  background: -webkit-gradient(linear, left top, right top, from(#50dcd7), to(#b9e0a3)) no-repeat;
  background: linear-gradient(90deg, #50dcd7, #b9e0a3) no-repeat;
}
.cta .sub_btn span {
  background-color: #fff;
}

.all_wrap {
  max-width: 1280px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  -webkit-box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.2);
}

.g_main {
  position: relative;
  z-index: 2;
  padding: 1rem 0 2rem;
}
.g_main .sc_title {
  text-align: center;
  margin-bottom: 1rem;
}
.g_main .sc_title .tit {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
}
.g_main .sc_title .tit::after {
  content: "";
  position: absolute;
}

.sc_intros {
  padding: 2rem 0;
}
.sc_intros .intro_cnt {
  border-radius: 1rem;
  padding: 2.5rem 5rem;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
  font-size: 1.25rem;
}
.sc_intros .intro_cnt .cta {
  margin-top: 1.5rem;
}

.sc_point {
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.sc_point .point_cnt {
  padding: 1rem 5rem;
}
.sc_point .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.sc_point .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
}
.sc_point .item .t {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #040c74;
}
.sc_point .item .p {
  font-size: 1.25rem;
}

.sc_agenda {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.sc_agenda .infor {
  text-align: center;
  padding-top: 1.5rem;
}
.sc_agenda .infor .time,
.sc_agenda .infor .title {
  line-height: 1;
}
.sc_agenda .infor .time {
  font-size: 1.125rem;
  font-weight: 700;
  color: #07b2ac;
}
.sc_agenda .infor .title {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  color: #040c74;
}
.sc_agenda .ready {
  margin-top: 2rem;
  padding-left: 3rem;
  padding-right: 3rem;
}
.sc_agenda .ready .infor {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border: 1px solid #07b2ac;
}

.agenda_cnt {
  padding-top: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.agd_item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 33%;
          flex: 1 0 33%;
  padding: 0 1rem;
  text-align: center;
}
.agd_item .spk .img {
  margin: 1rem auto;
  width: 200px;
  border-radius: 50%;
  overflow: hidden;
}
.agd_item .spk .name {
  font-size: 1.25rem;
  line-height: 1;
}
.agd_item .spk .comp {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.3;
}
.agd_item .infor .points ul {
  margin-top: 1rem;
  padding-left: 0;
  list-style-type: none;
}
.agd_item .infor .points li {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  border: 1px solid #07b2ac;
  border-width: 0 0 1px 1px;
  line-height: 1.2;
}

.sc_gift {
  padding-bottom: 40px;
}

.gift_cnt {
  padding-bottom: 60px;
  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;
}
.gift_cnt .img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 200px;
          flex: 0 1 200px;
  padding-right: 40px;
}
.gift_cnt .img img {
  width: 100%;
  border-radius: 10px;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  -webkit-box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.3);
}
.gift_cnt .parag {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-left: 20px;
  font-size: 1.5rem;
}

.g_footer {
  position: relative;
  z-index: 3;
  padding-bottom: 5rem;
}
.g_footer .cta {
  position: relative;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.g_footer .cta a {
  -webkit-box-shadow: 0 25px 50px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 25px 50px 5px rgba(0, 0, 0, 0.2);
}
.g_footer .logo {
  margin-top: 100px;
}
.g_footer .logo img {
  display: block;
  max-width: 400px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .g_main .sc_title {
    text-align: center;
    margin-bottom: 1rem;
  }
  .g_main .sc_title .tit {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
  }
  .g_main .sc_title .tit::after {
    content: "";
    position: absolute;
  }

  .sc_intros {
    padding: 0;
  }
  .sc_intros .intro_cnt {
    padding: 0 1rem;
    font-size: 1.125rem;
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.19);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.19);
  }

  .cta {
    padding: 0 30px;
  }
  .cta a {
    display: block;
    font-size: 1.25rem;
  }
  .cta a span {
    padding: 1rem 2rem;
  }
  .cta .sub_btn {
    margin-left: 0;
    margin-top: 20px;
  }

  .sc_agenda {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .sc_agenda .ready {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .sc_agenda .infor {
    text-align: center;
    padding-top: 1.5rem;
  }
  .sc_agenda .infor .time,
.sc_agenda .infor .title {
    line-height: 1;
  }
  .sc_agenda .infor .time {
    font-size: 1.125rem;
    font-weight: 700;
    color: #07b2ac;
  }
  .sc_agenda .infor .title {
    margin-top: 0.5rem;
    font-size: 1.25rem;
    color: #040c74;
  }

  .agenda_cnt {
    padding-left: 1rem;
    padding-right: 1rem;
    display: block;
  }

  .agd_item {
    padding: 1rem;
    padding-top: 0;
  }
  .agd_item .infor .points li {
    padding-left: 0.5rem;
  }

  .gift_cnt {
    display: block;
  }
  .gift_cnt .img {
    padding-right: 0;
    padding-bottom: 40px;
    text-align: center;
  }
  .gift_cnt .img img {
    width: 50%;
  }
  .gift_cnt .parag {
    line-height: 1.3;
  }
  .gift_cnt .parag strong {
    margin-top: 1rem;
  }

  .g_footer {
    padding-bottom: 6rem;
  }
  .g_footer .logo {
    margin-top: 3rem;
  }
}