@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC:400&display=swap");
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td, figure {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: 0;
  display: block;
}

legend, hr {
  display: none;
}

th {
  font-style: inherit;
  font-weight: inherit;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

a {
  outline: none;
  hlbr: expression(this.onFocus=this.blur());
  text-decoration: none;
  cursor: pointer;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

* {
  box-sizing: border-box;
}

/* main.css ==============================================*/
/*Variable*/
/*Mixin*/
/*Reset*/
.hide {
  display: none;
}

/*Body*/
[class*=g-bt-] {
  width: 270px;
  display: inline-block;
  position: relative;
  text-align: center;
  color: #fff;
  transition: 0.5s;
  font-weight: normal;
  font-size: 40px;
  letter-spacing: 2px;
  line-height: 2;
  font-family: "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  cursor: pointer;
}
[class*=g-bt-] span {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}
[class*=g-bt-] span:before {
  content: "";
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 8%, white 49%, rgba(255, 255, 255, 0) 93%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: 1s;
  animation: bt_shine 2s ease infinite;
}
@keyframes bt_shine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}
[class*=g-bt-]:after {
  content: "";
  width: 90%;
  height: 15px;
  background: radial-gradient(farthest-corner at 0% 0, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 50%), radial-gradient(farthest-corner at 100% 0, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 50%);
  background-size: 80% 100%, 80% 100%;
  background-position: 0 0, 100% 0;
  background-repeat: no-repeat;
  position: absolute;
  top: 101%;
  left: 5%;
  filter: blur(2px);
}
[class*=g-bt-] i.icon-arrow {
  margin-left: 3%;
  width: 15px;
  height: 30px;
  background: url(../images/icon-next-fff.svg) no-repeat center;
  background-size: 100%;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
[class*=g-bt-]:hover {
  background: #000;
  color: #fff;
}

.g-bt-1 {
  border: 2px solid #fff;
}

.g-bt-2 {
  background: linear-gradient(to right, #00a8ba, #00c3d8, #00a8ba);
}
.g-bt-2:hover {
  background: #ffc500;
}

.g-form li {
  position: relative;
  padding: 0px 0 0px 20%;
  font-size: 20px;
  border: 1px solid #bbb;
  border-radius: 4px;
  margin: 15px 0;
  background-color: #fff;
}
.g-form li label {
  width: 20%;
  position: absolute;
  top: 15px;
  left: 20px;
  text-align: left;
}
.g-form li input {
  padding: 15px 15px;
  border-radius: 3px;
  border: 0;
  width: 100%;
  background: transparent;
  font-size: 20px;
  font-family: "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  transition: 0.2s;
}
.g-form li input:focus, .g-form li input:hover {
  background-color: #fff;
}
.g-form li select {
  padding: 15px 15px;
  border-radius: 3px;
  border: 1px solid #bbb;
  width: 100%;
  background: #fff;
  font-size: 20px;
  font-family: "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  -webkit-appearance: none;
  appearance: none;
}
.g-form li select:focus, .g-form li select:hover {
  background-color: #fff;
}
.g-form li textarea {
  padding: 15px 15px;
  border-radius: 3px;
  border: 1px solid #bbb;
  background: #f2f2f2;
  width: 100%;
  height: 150px;
  font-size: 20px;
  font-family: "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  transition: 0.2s;
}
.g-form li textarea:focus, .g-form li textarea:hover {
  background-color: #fff;
}
.g-form li input[type=checkbox], .g-form li input[type=radio] {
  display: none;
}
.g-form li input[type=checkbox] + label, .g-form li input[type=radio] + label {
  padding-left: 40px;
  width: 100%;
  position: relative;
  display: inline-block;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}
.g-form li input[type=checkbox] + label:before, .g-form li input[type=radio] + label:before,
.g-form li input[type=checkbox] + label:after, .g-form li input[type=radio] + label:after {
  content: "✔";
  color: #000;
  width: 35px;
  height: 35px;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  background-position: -633px -466px;
  transition: 0.2s;
  text-align: center;
  font-size: 35px;
  line-height: 0.8;
}
.g-form li input[type=checkbox] + label:before, .g-form li input[type=radio] + label:before {
  content: "";
  border: 1px solid #ccc;
  border-radius: 4px;
}
.g-form li input[type=checkbox] + label:after, .g-form li input[type=radio] + label:after {
  opacity: 0;
  visibility: hidden;
  transform-origin: 50% 80%;
  transform: scale(1.5);
  background-color: transparent;
}
.g-form li input[type=checkbox] + label:active:after, .g-form li input[type=checkbox]:checked + label:after,
.g-form li input[type=radio] + label:active:after, .g-form li input[type=radio]:checked + label:after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.g-form li .g-bt-1 {
  margin: 0 auto;
}
.g-form li a {
  text-decoration: underline;
}
.g-form.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 1s;
  display: block;
}

#serum0-content {
  max-width: 1280px;
  margin: 0 auto;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.5;
  text-align: center;
  font-size: 15px;
  color: #686868;
}
#serum0-content img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

#s0-try {
  background: url(../images/bg-try.jpg);
  background-size: 100% 100%;
  padding: 50px 0;
}
#s0-try .group {
  width: 70%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  padding-bottom: 3%;
}
#s0-try header {
  padding-top: 4%;
}
#s0-try header h2 {
  color: #ffc500;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
}
#s0-try header h2:before, #s0-try header h2:after {
  content: "";
  width: 2px;
  height: 50px;
  background: #000;
  display: inline-block;
  vertical-align: middle;
  margin: 0 40px;
}
#s0-try header h2:before {
  transform: rotate(-40deg);
}
#s0-try header h2:after {
  transform: rotate(40deg);
}
#s0-try header p {
  font-size: 21px;
}
#s0-try .g-form {
  width: 90%;
  max-width: 570px;
  margin: 3% auto;
}
#s0-try .is-big {
  width: 100%;
  font-size: 16px;
}
#s0-try .is-noBorder {
  border: 0;
  background: none;
}
#s0-try .is-rule label {
  top: 0;
  left: 0;
}
#s0-try .is-noLeft {
  padding-left: 0;
}
#s0-try .is-2row {
  display: flex;
  justify-content: space-between;
}
#s0-try .is-2row select {
  width: 49%;
}
#s0-try .btns {
  width: 100%;
}
#s0-try button {
  border: 0;
  margin: 0 auto;
  display: block;
}
#s0-try .list-star {
  padding-left: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
}
#s0-try .list-star li {
  text-align: left;
  padding: 0;
  padding-left: 20px;
  font-size: 15px;
  border: 0;
  margin: 0;
  position: relative;
}
#s0-try .list-star li:before {
  content: "*";
  border: 0;
  background: none;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 767px) {
  .is-m {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (max-width: 1280px) {
  #serum0-content {
    font-size: 2vw;
  }

  [class*=g-bt-] {
    width: 21vw;
    font-size: 2.9vw;
  }
  [class*=g-bt-] i.icon-arrow {
    width: 1.5vw;
    height: 3vw;
  }

  #s0-try header h2 {
    font-size: 4vw;
  }
  #s0-try header p {
    font-size: 1.6vw;
  }

  .g-form li {
    font-size: 17px;
  }
  .g-form li select {
    font-size: 17px;
  }
}
@media screen and (max-width: 768px) {
  [class*=g-bt-] {
    width: 60vw;
    font-size: 6vw;
  }
  [class*=g-bt-] i.icon-arrow {
    width: 3vw;
    height: 6vw;
    top: -0.4vw;
  }

  #s0-try .group {
    width: 94%;
    padding-bottom: 5%;
  }
  #s0-try header h2 {
    font-size: 8vw;
  }
  #s0-try header h2:before, #s0-try header h2:after {
    width: 0.3vw;
    height: 7vw;
    margin: 0 5vw;
  }
  #s0-try header p {
    font-size: 3.3vw;
  }
  #s0-try .is-big {
    font-size: 3vw;
  }
  #s0-try .is-rule label {
    transform: translateY(0);
  }
  #s0-try .list-star li {
    font-size: 3vw;
  }

  .g-form li {
    font-size: 4vw;
  }
  .g-form li label {
    top: 50%;
    left: 2.5vw;
    transform: translateY(-50%);
  }
  .g-form li select {
    font-size: 4vw;
    padding: 4vw;
  }
  .g-form li input {
    font-size: 4vw;
    padding: 4vw;
  }
}