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

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

.cta .bttn {
  display: inline-flex;
  align-items: center;
  border-radius: 3rem;
  padding: 0.5em 2em 0.625em;
  line-height: 1;
  background-color: #0091ab;
  font-size: 1.5rem;
}
.cta .bttn div {
  padding: 0 0.5rem;
  flex: 1 1 100%;
  color: #fff;
  font-weight: 700;
  transform-origin: left center;
  transition: transform 300ms;
}
.cta .bttn img {
  flex: 0 0 50px;
  max-width: 50px;
  transition: transform 300ms;
}
.cta .bttn:hover {
  text-decoration: none;
}
.cta .bttn:hover div {
  transform: scale(1.07);
}
.cta .bttn:hover img {
  transform: translateX(10px);
}

.g_kv {
  position: relative;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1);
}
.g_kv .cta {
  position: absolute;
  left: 0;
  bottom: 3rem;
  width: 100%;
  text-align: center;
}
.sc_intro {
  padding-top: 4rem;
}
.sc_intro .intro_wrap {
  max-width: 50em;
  font-size: 1.25rem;
  line-height: 1.8;
}
.sc_intro .cta {
  margin-top: 2rem;
  text-align: center;
}
.sc_intro .cta .bttn {
  background-color: #3c64ae;
}

.sc_footer {
  padding: 4rem 0;
  background: linear-gradient(0deg, #d5e1f3, rgba(213, 225, 243, 0));
}

@media screen and (max-width: 767px) {
  .g_kv .cta {
    bottom: 1rem;
  }

  .sc_intro {
    padding-top: 2rem;
  }
  .sc_intro .intro_wrap {
    font-size: 1rem;
  }
}