html {
  font-size: 18px;
}

body {
  padding: 0 2vw;
  font-family: "Noto Sans TC", sans-serif;
  overflow-x: hidden;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgba(194, 255, 255, 0.2)), color-stop(80%, #c2ffff));
  background: linear-gradient(rgba(194, 255, 255, 0.2) 20%, #c2ffff 80%);
}

a {
  color: inherit;
}

@media screen and (min-width: 1400px) {
  .container {
    max-width: calc(65em + 30px);
  }
}
.fix_aside {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: 0.5rem;
  -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(51, 51, 51, 0.19);
          box-shadow: 0 1px 3px 0 rgba(51, 51, 51, 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-image: linear-gradient(135deg, #2a5cb5, #2f8ce5);
  color: #fff;
}
.fix_aside .fx_item:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 5px 0 rgba(51, 51, 51, 0.19);
          box-shadow: 0 4px 5px 0 rgba(51, 51, 51, 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_header {
  left: 0;
  top: 0;
  z-index: 98;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#00769c), to(#38b8d6));
  background: linear-gradient(90deg, #00769c, #38b8d6);
}
.g_header.is_active .nav_item {
  font-size: 1rem;
}
.g_header.is_active .header_wrap {
  padding: 0;
}
.g_header .header_wrap {
  position: relative;
  padding: 0.5rem;
  -webkit-transition: padding 300ms;
  transition: padding 300ms;
}
.g_header .menu_btn {
  position: relative;
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 6px;
  border: 1px solid #fff;
}
.g_header .menu_btn .icon {
  display: inline-block;
  position: absolute;
  left: 20%;
  top: 50%;
  width: 60%;
  height: 4px;
  margin-top: -2px;
  background-color: #fff;
}
.g_header .menu_btn .icon::before, .g_header .menu_btn .icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.g_header .menu_btn .icon::before {
  top: -200%;
}
.g_header .menu_btn .icon::after {
  bottom: -200%;
}
.g_header .menu_btn.sty_white {
  border-color: #fff;
}
.g_header .menu_btn.sty_white .icon, .g_header .menu_btn.sty_white .icon::before, .g_header .menu_btn.sty_white .icon::after {
  background-color: #fff;
}
.g_header .nav_area {
  position: relative;
  z-index: 3;
}
.g_header .nav_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.g_header .header_logo {
  padding: 0 1rem;
}
.g_header .header_logo img {
  width: 250px;
}
.g_header .nav_cnt {
  padding: 0 1rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.g_header .nav_item {
  padding: 0.5em 1em;
  font-size: 1em;
  line-height: 1;
  font-weight: normal;
  -webkit-transition: font 300ms;
  transition: font 300ms;
}
.g_header .nav_link {
  color: #fff;
}
.g_header .nav_link:hover {
  color: #f8c44f;
  text-decoration: none;
}

.main_wrap {
  max-width: 1600px;
  margin: 0 auto;
  background-color: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.g_kv {
  position: relative;
}

.g_main {
  position: relative;
}
.g_main::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 15vw;
  background: url("img/footbg.png") center bottom/cover no-repeat;
}

.sc_intro {
  padding: 50px 0;
}

.intro_cnt .strong {
  font-size: 1.8em;
  font-weight: 700;
  color: #2a5cb5;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.intro_cnt .strong .l2 {
  color: #38b8d6;
}
.intro_cnt .p {
  text-align: justify;
  line-height: 1.67;
  margin-bottom: 1em;
  font-size: 1.25em;
}
.intro_cnt .cta {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  text-align: center;
}
.intro_cnt .cta .bttn {
  display: inline-block;
  margin: 10px 0;
  border-radius: 2em;
  padding: 1.4rem 3rem 1.5rem;
  font-size: 2em;
  font-weight: 300;
  line-height: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff7847), to(#df5b33));
  background: linear-gradient(#ff7847, #df5b33);
  color: #fff;
  -webkit-transition: letter-spacing 300ms;
  transition: letter-spacing 300ms;
  letter-spacing: 0;
}
.intro_cnt .cta .bttn:hover {
  text-decoration: none;
  letter-spacing: 0.25em;
}

.sc_gift {
  padding-bottom: 80px;
}
.sc_gift .container-fluid {
  max-width: 1400px;
  padding: 0 40px;
}

.gift_cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.gift_pt.pt1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
}
.gift_pt.pt1 .pt_top .tit {
  color: #38b8d6;
}
.gift_pt.pt1 .pic {
  background-color: #fff;
}
.gift_pt.pt2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
}
.gift_pt .pt_top {
  font-size: 1.25em;
  text-align: center;
}
.gift_pt .pt_top .tit {
  display: inline-block;
  font-size: 1.2em;
  font-weight: 700;
  color: #ff7847;
}
.gift_pt .pt_top .text {
  display: inline-block;
}
.gift_pt .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gift_pt .gift_item {
  margin: 1rem 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 270px;
          flex: 0 1 270px;
  text-align: center;
}
.gift_pt .gift_item:nth-child(2) {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 290px;
          flex: 0 1 290px;
}
.gift_pt .pic {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 450px;
          flex: 0 1 450px;
  background-color: rgba(56, 184, 214, 0.1);
  padding: 10px 16px;
  border-radius: 150px;
  border: 2px solid #2f8ce5;
  overflow: hidden;
}
.gift_pt .wording {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  padding: 0 2.5%;
}
.gift_pt .wording .tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0.4em 0;
  height: 2.4em;
  font-size: 1.5em;
  line-height: 1.2;
  font-weight: 700;
  color: #2f8ce5;
}
.gift_pt .wording .tit span {
  display: inline-block;
  padding: 0 0.1em;
}
.gift_pt .wording .text {
  font-size: 1.125em;
  line-height: 1.4rem;
}
.gift_pt .wording .text span {
  font-size: 1.2em;
  color: #ff7847;
}
.gift_pt .wording .tip {
  margin-top: 0.25em;
  line-height: 1.3;
}
.gift_pt .wording .other {
  margin-top: 1em;
  font-size: 0.9em;
  color: #585858;
}

.sc_detail {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f8f7f9;
}

@media (max-width: 767px) {
  .g_header .nav_cnt {
    padding: 0;
  }

  body {
    font-size: 16px;
  }

  .sc_intro {
    padding-top: 30px;
    padding-bottom: 0;
  }
  .sc_intro .strong {
    line-height: 1.3;
  }
  .sc_intro .p {
    padding: 0 1em;
    text-align: left;
  }

  .sc_gift {
    padding-bottom: 30px;
  }
  .sc_gift .container-fluid {
    padding: 0 15px;
  }

  .gift_cnt {
    margin-top: 2em;
    padding: 0 15px;
    display: block;
  }

  .gift_pt.pt2 {
    margin-top: 30px;
  }
  .gift_pt.pt2 .items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .gift_pt .items {
    display: block;
  }
  .gift_pt .gift_item {
    margin: 10px 0 30px;
  }
  .gift_pt .wording .tit {
    margin-top: 0.5em;
    text-align: center;
  }
  .gift_pt .cta .bttn {
    font-size: 1.675em;
  }
  .gift_pt .cta .bttn:hover {
    padding: 1.4rem 4rem 1.5rem;
  }
}