@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap";
body {
  font-family: "Noto Sans TC", sans-serif;
  overflow-x: hidden;
}

.main_color {
  color: #000;
}

.sub_color {
  color: #FDCF5E;
}

.fix_aside {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: 0.5rem;
  transform: translateX(150%);
  transition: transform 600ms;
}
.fix_aside.is_active {
  transform: translateX(0%);
}
.fix_aside .fx_item {
  position: relative;
  display: block;
  border-radius: 0.5em;
  margin: 0.5em 0;
  width: 4.6em;
  height: 4.6em;
  background-color: #fff;
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
  transition: transform 240ms, box-shadow 240ms;
}
.fix_aside .fx_item.is_primary {
  background: linear-gradient(135deg, #d10020, rgba(210, 5, 31, 0.9), rgba(214, 21, 31, 0.8), rgba(221, 46, 31, 0.6), rgba(230, 82, 30, 0.4), rgba(241, 127, 30, 0.3), rgba(241, 127, 30, 0));
  color: #fff;
  line-height: 1.2;
  border: solid 1px white;
  box-sizing: content-box;
  font-weight: bold;
}
.fix_aside .fx_item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
}
.fix_aside .fx_item .in_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.fix_aside .fx_item .in_wrap.ic {
  width: 100%;
  height: 100%;
  padding: 0.6em;
}
.fix_aside .fx_item .in_wrap.ic .ic_top {
  width: 100%;
  padding-top: 100%;
  background: url("img/ui/arrow_top.png") center/contain no-repeat;
}

.g_header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 98;
  width: 70%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 2%;
  backdrop-filter: blur(5px);
  border-radius: 200px;
  border: solid 1px white;
  padding: 0 50px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
}
.g_header .header_cnt {
  position: relative;
  padding: 0.5rem;
  display: flex;
}
.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_area .nav_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.g_header .nav_area .nav_content .header_logo {
  width: 120px;
}
.g_header .nav_area .nav_content .header_logo img {
  width: 100%;
  max-width: 100%;
}
.g_header .nav_area .nav_cnt {
  display: inline-flex;
}
.g_header .nav_area .nav_item {
  font-size: 16px;
  line-height: 1;
  font-weight: normal;
}
.g_header .nav_area .nav_item.is_highlight {
  padding: 0 6px;
}
.g_header .nav_area .nav_item.is_highlight .nav_link {
  background-color: #FDCF5E;
  color: #000;
}
.g_header .nav_area .nav_link {
  border-radius: 4px;
  display: block;
  padding: 12px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.g_header .nav_area .nav_link:hover {
  color: #FDCF5E;
  text-decoration: none;
}
.g_header .header_sns {
  flex: 1 0 auto;
  padding: 0 12px;
  text-align: right;
}
.g_header .header_sns .hover {
  display: inline-block;
  position: relative;
}
.g_header .header_sns .hover img {
  width: 40px;
  line-height: 0;
}
.g_header .header_sns .hover:hover .hover_menu {
  display: block;
}
.g_header .header_sns .hover_holder {
  cursor: pointer;
}
.g_header .header_sns .hover_menu {
  position: absolute;
  padding: 0.5em 0;
  display: none;
}
.g_header .header_sns .hover_menu .hover_item {
  cursor: pointer;
  display: block;
  margin-top: 0.5em;
}

.bttn {
  display: inline-block;
}
.bttn .bttn_inner {
  cursor: pointer;
  display: block;
  padding: 0.75em 2em;
  border-radius: 2em;
  font-size: 1.25em;
  line-height: 1;
  border: 2px solid #000;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  color: #000;
}
.bttn .bttn_inner:hover {
  text-decoration: none;
}
.bttn .xl_size {
  font-size: 2em;
}
.bttn .lg_size {
  font-size: 1.5em;
}
.bttn .sm_size {
  font-size: 1em;
}
.bttn .xs_size {
  padding: 0.35em 1em;
  font-size: 0.95em;
}
.bttn .main_b {
  background-color: #000;
  color: #fff;
  text-shadow: 0 2px rgba(0, 0, 0, 0.2);
}
.bttn .main_b:hover {
  background-color: #000;
}
.bttn .dark_b {
  border-width: 0;
  background-color: #000;
  color: #000;
}
.bttn .dark_b:hover {
  background-color: #160f02;
}
.bttn .sub_b {
  background-color: #fff;
  color: #000;
}
.bttn .sub_b:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.g_kv {
  position: relative;
  width: 100%;
  height: 97vh;
}
.g_kv .logo {
  position: absolute;
  width: 26%;
  top: 3%;
  left: 0%;
}
.g_kv .kvbg_inner {
  position: fixed;
  width: 100%;
}
.g_kv .kvbg_inner .kvbg {
  width: 100%;
  max-width: 100%;
  transform-origin: 40% 50%;
  animation: bg_scale 10s linear infinite alternate both;
}
@keyframes bg_scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.g_kv .t1 {
  position: absolute;
  width: 46.875%;
  top: 80%;
  left: 46%;
  transform: translate(-85%, -55%);
}
.g_kv .t1 img {
  width: 100%;
  max-width: 100%;
}
.g_kv .p1,
.g_kv .p2 {
  position: absolute;
  width: 7.8125%;
  left: 48%;
  top: 35%;
}
.g_kv .p1 img,
.g_kv .p2 img {
  width: 100%;
  max-width: 100%;
}
.g_kv .p2 {
  mix-blend-mode: multiply;
}
.g_kv .dl_btn {
  position: absolute;
  cursor: pointer;
  width: 21.875%;
  left: 18%;
  top: 65%;
}
.g_kv .dl_btn img {
  width: 100%;
  max-width: 100%;
}

@keyframes foltBg {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes float {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.g_main {
  position: absolute;
  width: 100%;
  z-index: 1;
  top: 105%;
}
.g_main.plan {
  overflow: hidden;
  top: 0;
}

.main_sc {
  padding: 60px 0;
}

.sc_title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
}
.sc_title .tit {
  color: #000;
  font-weight: 700;
  line-height: 1;
}
.sc_title .tit.c_main {
  color: #000;
}
.sc_title .tit.c_white {
  color: #fff;
}

.sc_intro {
  position: relative;
  padding: 6rem 0 6rem 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}
.sc_intro-cnt {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.sc_intro-cnt h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  letter-spacing: 0.1rem;
  color: #124F69;
}
.sc_intro-cnt h2 span {
  margin: 0;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
}
.sc_intro-cnt h2 span img {
  width: 27px;
  max-width: 100%;
}
.sc_intro-cnt h2.second span {
  font-size: 3rem;
  margin: 0;
}
.sc_intro-cnt h2.topic_title {
  font-size: 1.8rem;
  letter-spacing: initial;
  margin-top: 20%;
}
.sc_intro-cnt h2.topic_title span img {
  width: 22px;
}
.sc_intro-cnt .text {
  font-size: 18px;
  text-align: center;
  color: #ffffff;
  padding: 0 8rem;
  margin-top: 4%;
}
.sc_intro-cnt .text span {
  color: #3FA9F5;
  font-weight: 700;
  font-size: 1.25rem;
}
.sc_intro-cnt h3.subtit {
  font-size: 1.5rem;
  margin: 1.25rem 0 1.75rem 0;
  font-weight: 700;
  letter-spacing: 0.08rem;
  color: #fff;
  display: inline-block;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(135deg, #3FA9F5, #aa86ff);
}
.sc_intro-cnt h3.subtit span {
  letter-spacing: 0rem;
}
.sc_intro-cnt .topic {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 5% 0 2% 0;
  width: 100%;
}
.sc_intro-cnt .topic .item {
  flex: 0 0 150px;
  margin: 0 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #124F69;
  height: 150px;
  border-radius: 100%;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.sc_intro-cnt .topic .item img {
  max-width: 80px;
  margin: 35px auto;
  transition: all 0.4s ease-in-out;
}
.sc_intro-cnt .topic .item.active {
  background: linear-gradient(#FF3930, #FFC72A);
  border-color: white;
  transition: all 0.4s ease-in-out;
}
.sc_intro-cnt .topic .item.active img {
  filter: brightness(1000%);
  -webkit-filter: brightness(1000%);
  transition: all 0.4s ease-in-out;
}
.sc_intro-cnt .br_line {
  padding: 0 3%;
}
.sc_intro-cnt .br_line img {
  width: 100%;
  max-width: 100%;
}
.sc_intro-cnt .topic_content {
  display: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 2%;
}
.sc_intro-cnt .topic_content .topic_category {
  flex: 0 0 20%;
  font-weight: bold;
  font-size: 2rem;
  color: #124F69;
  margin: 0;
  padding: 0;
  letter-spacing: initial;
}
.sc_intro-cnt .topic_content .topic_text {
  flex: 0 0 80%;
  margin: 0;
  color: #124F69;
  text-align: left;
  font-size: 1rem;
  padding: 0 5% 0 0;
}
.sc_intro-cnt .topic_content.active {
  display: flex;
}
.sc_intro-cnt .cta {
  margin-top: 2.25rem;
}
.sc_intro-cnt .cta .cta-info .cta-time {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.08rem;
  color: #fff;
}
.sc_intro-cnt .cta .cta-interact {
  display: inline-block;
}
.sc_intro-cnt .cta .cta-interact .cta-bttn {
  position: relative;
  top: 0px;
  left: 0px;
  background: linear-gradient(230deg, #6cb9f4, #339DED);
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 0.5rem 2rem;
  margin-top: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.sc_intro-cnt .cta .cta-interact .cta-bttn:hover {
  transform: scale(1.025);
  box-shadow: 0 0 16px 4px rgba(0, 0, 0, 0.1);
}
.sc_intro-cnt .cta .cta-interact .cta-bttn p {
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 10px;
  font-weight: 700;
}
.sc_intro-cnt .cta .cta-interact .cta-bttn img {
  margin-left: 6px;
  animation-name: arrow-ani;
  animation-duration: 1.25s;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}
@keyframes arrow-ani {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(8px);
  }
  100% {
    transform: translateX(0px);
  }
}
.sc_intro-cnt .btn-shine {
  display: inline-block;
  z-index: 2;
  font-size: 1.5rem;
  text-align: center;
  padding: 0px 48px;
  margin-bottom: 0.25rem;
  color: #fff;
  letter-spacing: 3px;
  background: linear-gradient(to right, #b7edff 0, #44E71E 10%, #6cb9f4 20%);
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
@-moz-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 300px;
  }
  100% {
    background-position: 300px;
  }
}
@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 300px;
  }
  100% {
    background-position: 300px;
  }
}
@-o-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 300px;
  }
  100% {
    background-position: 300px;
  }
}
@keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 300px;
  }
  100% {
    background-position: 300px;
  }
}
.sc_intro .features {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 1rem;
  width: 100%;
}
.sc_intro .features .item {
  flex: 0 0 25%;
  margin: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.sc_intro .features .item img {
  max-width: 100px;
  margin: 0 auto 0.25rem auto;
}
.sc_intro .features .item .wording {
  text-align: center;
  margin-top: 10px;
}
.sc_intro .features .item .wording span {
  color: #f9ce22;
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  font-weight: 500;
  border: solid 1px #f9ce22;
  padding: 2px 15px;
  border-radius: 5px;
}
.sc_intro .features .item ul {
  position: relative;
}
.sc_intro .features .item ul li {
  text-align: left;
  color: #000;
  margin: 6px 0;
  font-size: 0.8rem;
  line-height: 1.2rem;
}

.sc_plan {
  position: relative;
  padding: 5rem 0 5rem 0;
  background: linear-gradient(rgba(65, 65, 65, 0.8), #414141);
  border-radius: 35px 35px 0 0;
}
.sc_plan-cnt {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.sc_plan-cnt .sub_topic {
  text-align: center;
  color: #F7CE23;
}
.sc_plan-cnt h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  letter-spacing: 0.1rem;
  color: #124F69;
}
.sc_plan-cnt h2 span {
  margin: 0;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
}
.sc_plan-cnt h2 span img {
  width: 27px;
  max-width: 100%;
}
.sc_plan-cnt h2.topic_title {
  font-size: 1.8rem;
  letter-spacing: initial;
  color: #ffffff;
}
.sc_plan-cnt h2.topic_title span img {
  width: 22px;
  filter: brightness(1000%);
  -webkit-filter: brightness(1000%);
}
.sc_plan-cnt h5.topic_title {
  margin-top: 50px;
  color: #ffffff;
}
.sc_plan-cnt .text {
  font-size: 18px;
  text-align: center;
  color: #124F69;
  padding: 0 8rem;
  margin-top: 4%;
}
.sc_plan-cnt .text span {
  color: #3FA9F5;
  font-weight: 700;
  font-size: 1.25rem;
}
.sc_plan-cnt .plans {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 5% 0 2% 0;
  width: 100%;
  gap: 20px;
}
.sc_plan-cnt .plans .plan {
  flex: 0 0 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  display: flex;
  justify-content: stretch;
  align-items: center;
  flex-direction: column;
  text-decoration: none;
  border: solid 2px #767676;
  border-radius: 15px;
  padding: 40px 20px 20px 20px;
  margin-top: 25px;
}
.sc_plan-cnt .plans .plan img {
  width: auto;
  height: 210px;
}
.sc_plan-cnt .plans .plan img.MTshadow {
  position: absolute;
  mix-blend-mode: multiply;
}
.sc_plan-cnt .plans .plan.c1:before {
  width: 200px;
  position: absolute;
  content: "3天免費試用";
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  background: #0586DE;
  padding: 3px 15px;
  border-radius: 10px;
  top: -10%;
}
.sc_plan-cnt .plans .plan.c2:before {
  width: 200px;
  position: absolute;
  content: "季方案";
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  background: #0586DE;
  padding: 3px 15px;
  border-radius: 10px;
  top: -10%;
}
.sc_plan-cnt .plans .plan.c3:before {
  width: 200px;
  position: absolute;
  content: "年方案";
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  background: #0586DE;
  padding: 3px 15px;
  border-radius: 10px;
  top: -10%;
}
.sc_plan-cnt .plans .plan.c4:before {
  width: 200px;
  position: absolute;
  content: "兩年方案";
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  background: #0586DE;
  padding: 3px 15px;
  border-radius: 10px;
  top: -10%;
}
.sc_plan-cnt .plans .plan .content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  height: 250px;
}
.sc_plan-cnt .plans .plan .content ul {
  margin: 0;
  padding: 0;
  margin-top: 20px;
}
.sc_plan-cnt .plans .plan .content ul li {
  list-style: none;
  color: white;
  text-align: left;
  margin: 5px 0;
  font-size: 1rem;
}
.sc_plan-cnt .plans .plan .content ul li span {
  color: #F7CE23;
}
.sc_plan-cnt .plans .plan .content ul li span.wrong {
  color: #FE1F57;
}
.sc_plan-cnt .plans .plan .content .name {
  margin-top: 10px;
  color: white;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 1px;
  text-align: left;
  line-height: 1.4rem;
}
.sc_plan-cnt .plans .plan .content .price {
  position: relative;
  font-size: 2.2rem;
  font-weight: bold;
  color: #F7CE23;
  left: 50%;
  transform: translateX(-50%);
}
.sc_plan-cnt .plans .plan .content .price span {
  font-size: 1rem;
  margin: 0 5px;
  font-weight: normal;
}
.sc_plan-cnt .plans .plan .content .old_price {
  position: relative;
  color: #a6a6a6;
  left: 50%;
  transform: translateX(-50%);
}
.sc_plan-cnt .plans .plan .btn {
  position: relative;
  margin-top: 25px;
}
.sc_plan-cnt .plans .plan .btn a {
  padding: 5px 20px;
  color: #FE1F56;
  border: solid 1px #FE1F56;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.4s;
}
.sc_plan-cnt .plans .plan .btn a:hover {
  text-decoration: none;
  background: #FE1F56;
  color: white;
  transition: all 0.4s;
}

.g_footer {
  position: relative;
  width: 100%;
  padding: 4% 0;
  font-size: 0.75rem;
  background-color: #000;
  border-radius: 35px 35px 0 0;
  margin-top: -2rem;
}
.g_footer .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.g_footer .row .logo {
  width: 200px;
}
.g_footer .row .logo img {
  width: 100%;
  max-width: 100%;
}
.g_footer .row .info p {
  color: #8D8D8D;
  font-size: 0.8rem;
}
.g_footer .row .info p a,
.g_footer .row .info p span {
  color: #8D8D8D;
  margin-left: 15px;
}

.breadcrumb {
  position: relative;
  margin-top: 10%;
  background: transparent;
  padding: 0 5%;
  color: #4E4E4E;
  font-size: 1rem;
  margin-top: 13%;
}
.breadcrumb a {
  color: #4E4E4E;
}

.plan_bg {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.plan_bg .kvbg {
  width: 1920px;
}

.plan_content {
  position: relative;
  width: 100%;
  padding-bottom: 3%;
}
.plan_content .plan_intro {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0 5%;
}
.plan_content .plan_intro .pic {
  flex: 0 0 500px;
}
.plan_content .plan_intro .pic img {
  width: 100%;
  max-width: 100%;
}
.plan_content .plan_intro .content {
  margin-top: 5%;
}
.plan_content .plan_intro .content .name {
  font-weight: bold;
  font-size: 2rem;
}
.plan_content .plan_intro .content .price {
  font-size: 3.4rem;
  font-weight: 800;
  margin-top: 2%;
}
.plan_content .plan_intro .content .price span {
  font-size: 1rem;
  font-weight: bold;
  margin: 0 5px;
}
.plan_content .plan_intro .btn {
  position: absolute;
  width: 180px;
  right: 8%;
  top: 45%;
}
.plan_content .plan_intro .btn img {
  width: 100%;
  max-width: 100%;
}
.plan_content .plan_info {
  margin: 0 0 10% 0;
  padding: 5% 8%;
  background-color: white;
  border-radius: 25px;
}
.plan_content .plan_info .switches {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.plan_content .plan_info .switches .switch {
  font-size: 1.4rem;
  padding: 0.5% 8%;
  border: solid 1px #124F69;
  border-radius: 10px;
  color: #124F69;
  transition: all 0.4s ease-in-out;
  letter-spacing: 0.2rem;
  cursor: pointer;
}
.plan_content .plan_info .switches .switch.active {
  background: #124F69;
  color: white;
  transition: all 0.4s ease-in-out;
}
.plan_content .plan_info .content {
  margin-top: 5%;
  display: none;
}
.plan_content .plan_info .content.active {
  display: block;
}
.plan_content .plan_info .content .title {
  font-weight: bold;
  font-size: 1.4rem;
  color: #4E4E4E;
  margin: 5px 0;
}
.plan_content .plan_info .content .text {
  font-size: 1rem;
}
.plan_content .plan_info .content ul {
  margin: 0 0 0 20px;
  padding: 0;
}
.plan_content .plan_info .content ul li {
  font-weight: bold;
  font-size: 1.4rem;
  color: #4E4E4E;
  margin: 5px 0;
}

.sub_form {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}
.sub_form .kvbg_inner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100vh;
  overflow: hidden;
  top: 0;
}
.sub_form .kvbg_inner .kvbg {
  width: 1920px;
  height: 2061px;
}
.sub_form form {
  position: absolute;
  width: 960px;
  max-width: 960px;
  height: 90vh;
  overflow-y: scroll;
  top: 50%;
  transform: translateY(-50%);
}
.sub_form form .form_header {
  width: 100%;
  padding: 8px 0;
  text-align: center;
  background: rgba(249, 206, 35, 0.9);
}
.sub_form form .form_header p {
  color: #000;
  font-size: 1.8rem;
  letter-spacing: 0.5rem;
  margin: 0;
  padding: 0;
}
.sub_form form .form_main {
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  padding: 30px 50px 50px 50px;
}
.sub_form form .form_main .projects {
  position: relative;
}
.sub_form form .form_main .projects .title {
  font-size: 1.4rem;
  border-bottom: solid 1px #000;
  padding: 20px 0 10px 0;
}
.sub_form form .form_main .projects .title span {
  font-size: 1rem;
}
.sub_form form .form_main .projects .title .same {
  width: 14px;
  height: 14px;
  margin: 0 4px;
  font-size: 1rem;
  margin-left: 10px;
}
.sub_form form .form_main .projects .title .same input {
  font-size: 15px;
  line-height: 19px;
  letter-spacing: 0px;
  color: rgb(0, 0, 0);
  opacity: 1;
  margin-left: 5px;
}
.sub_form form .form_main .buyer {
  position: relative;
}
.sub_form form .form_main .buyer .title {
  font-size: 1.4rem;
  border-bottom: solid 1px #000;
  padding: 20px 0 10px 0;
}
.sub_form form .form_main .buyer .title span {
  font-size: 1rem;
}
.sub_form form .form_main .buyer .title span.necessary {
  margin-left: 10px;
  color: red;
}
.sub_form form .form_main .buyer .title .same {
  width: 14px;
  height: 14px;
  margin: 0 4px;
  font-size: 1rem;
  margin-left: 10px;
}
.sub_form form .form_main .buyer .title .same input {
  font-size: 15px;
  line-height: 19px;
  letter-spacing: 0px;
  color: rgb(0, 0, 0);
  opacity: 1;
  margin-left: 5px;
}
.sub_form form .form_main .buyer .person .title {
  font-size: 1.4rem;
  border-bottom: solid 1px #000;
  padding: 20px 0 10px 0;
}
.sub_form form .form_main .buyer .person .title span {
  font-size: 1rem;
}
.sub_form form .form_main .buyer .person .title span.necessary {
  margin-left: 10px;
  color: red;
}
.sub_form form .form_main .buyer .person .title .same {
  width: 14px;
  height: 14px;
  margin: 0 4px;
  font-size: 1rem;
  margin-left: 10px;
}
.sub_form form .form_main .buyer .person .title .same input {
  font-size: 15px;
  line-height: 19px;
  letter-spacing: 0px;
  color: rgb(0, 0, 0);
  opacity: 1;
  margin-left: 5px;
}
.sub_form form .form_main .buyer .person .form_p1 {
  padding: 20px 0;
}
.sub_form form .form_main .buyer .contain.inline {
  display: inline-block;
}
.sub_form form .form_main .buyer .receipt {
  padding: 20px 0 30px 0;
  font-size: 1rem;
  line-height: 24px;
  display: flex;
  align-items: flex-start;
  font-weight: normal;
}
.sub_form form .form_main .buyer .receipt input {
  min-width: 14px;
  margin-right: 10px;
  margin-top: 4.5px;
}
.sub_form form .form_main .buyer .notice {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sub_form form .form_main .buyer .notice .title {
  border: none;
}
.sub_form form .form_main .buyer #toggler {
  position: relative;
  clear: both;
}
.sub_form form .form_main .buyer #toggler ._note_wrap {
  position: relative;
  background: rgba(243, 242, 242, 0.8);
  overflow: auto;
  font-size: 16px;
  line-height: 1.8em;
  padding: 10px 20px;
}
.sub_form form .form_main .buyer #toggler ._note_wrap ul {
  padding: 0;
}
.sub_form form .form_main .buyer .submit_btn {
  position: relative;
  width: 250px;
  background: linear-gradient(#FF3930, #FFC72A);
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 25px;
  padding: 5px 0;
  margin-top: 20px;
  cursor: pointer;
}
.sub_form form .form_main .buyer .submit_btn a {
  text-decoration: none;
  text-align: center;
  color: whtie;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  letter-spacing: 0.4rem;
  margin: 0;
  padding: 0;
}
.sub_form form .form_main .buyer .form_p1 {
  padding: 20px 0;
}
.sub_form form .form_main .buyer .quests .title {
  font-size: 1.4rem;
  border-bottom: solid 1px #000;
  padding: 20px 0 10px 0;
}
.sub_form form .form_main .buyer .quests .title span {
  font-size: 1rem;
}
.sub_form form .form_main .buyer .quests .title span.necessary {
  margin-left: 10px;
  color: red;
}
.sub_form form .form_main .buyer .quests .title .same {
  width: 14px;
  height: 14px;
  margin: 0 4px;
  font-size: 1rem;
  margin-left: 10px;
}
.sub_form form .form_main .buyer .quests .title .same input {
  font-size: 15px;
  line-height: 19px;
  letter-spacing: 0px;
  color: rgb(0, 0, 0);
  opacity: 1;
  margin-left: 5px;
}
.sub_form form .form_main .buyer .quests .quest legend {
  font-size: 1.2rem;
  font-weight: normal;
}

.check_form {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}
.check_form .kvbg_inner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100vh;
  overflow: hidden;
  top: 0;
}
.check_form .kvbg_inner .kvbg {
  width: 1920px;
  height: 2061px;
}
.check_form .check_content {
  position: absolute;
  width: 960px;
  max-width: 960px;
  height: 90vh;
  overflow-y: scroll;
  top: 50%;
  transform: translateY(-50%);
}
.check_form .check_content .form_header {
  width: 100%;
  padding: 8px 0;
  text-align: center;
  background: rgba(249, 206, 35, 0.9);
}
.check_form .check_content .form_header p {
  color: #000;
  font-size: 1.8rem;
  letter-spacing: 0.5rem;
  margin: 0;
  padding: 0;
}
.check_form .check_content .form_main {
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  padding: 30px 100px 30px 100px;
}
.check_form .check_content .form_main .sec {
  position: relative;
  border-bottom: solid 1px #000;
  padding: 20px 0 10px 0;
}
.check_form .check_content .form_main .sec .topic {
  font-weight: 600;
  font-size: 1.25rem;
  padding-bottom: 5px;
}
.check_form .check_content .form_main .sec .text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.check_form .check_content .form_main .price_area {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  font-size: 1.2rem;
  padding: 5px 0;
  width: 100%;
  border: solid 1px #ff6924;
  border-radius: 5px;
  color: #ff6924;
}
.check_form .check_content .form_main .price_area .price {
  margin-left: 10px;
  color: #ff6924;
}
.check_form .check_content .form_main .submit_btn {
  position: relative;
  width: 200px;
  background: linear-gradient(#FF3930, #FFC72A);
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
  padding: 6px 0;
  margin-top: 20px;
  cursor: pointer;
}
.check_form .check_content .form_main .submit_btn a {
  text-decoration: none;
  text-align: center;
  color: whtie;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  letter-spacing: 0.4rem;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .g_header {
    width: 100%;
    left: 0;
    transform: translateX(0);
    backdrop-filter: none;
    box-shadow: none;
    padding: 0;
    border: none;
    border-radius: 0;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .g_header.is_active {
    background-color: rgba(0, 0, 0, 0.8);
  }
  .g_header .header_cnt {
    display: block;
    padding: 0.5rem 0;
  }
  .g_header .menu_trigger {
    padding: 0 24px;
  }
  .g_header .nav_area .nav_content {
    display: block;
  }
  .g_header .nav_area .nav_content .header_logo {
    display: none;
  }
  .g_header .nav_area .nav_cnt {
    padding: 10px 0;
    display: block;
  }
  .g_header .nav_area .nav_item.is_highlight {
    padding: 0;
  }
  .g_header .nav_area .nav_link {
    border-radius: 0;
    padding: 16px 24px;
  }
  .g_header .menu_btn {
    border: 1px solid #fff;
  }
  .g_header .menu_btn .icon {
    background-color: #fff;
  }
  .g_header .menu_btn .icon::before, .g_header .menu_btn .icon::after {
    background-color: #fff;
  }
  .g_kv {
    position: relative;
    height: 75vh;
  }
  .g_kv .kvbg_inner {
    width: 100%;
    position: relative;
    height: 75vh;
    background: url(img/main_bg.jpg);
    background-size: cover;
    background-position: center center;
  }
  .g_kv .kvbg_inner img {
    display: none;
  }
  .g_kv .logo {
    width: 30%;
    top: 10%;
    left: 2%;
  }
  .g_kv .t1 {
    position: absolute;
    width: 70%;
    left: 50%;
    top: 70%;
    transform: translateX(-52%);
  }
  .g_kv .p1,
  .g_kv .p2 {
    position: absolute;
    width: 20%;
    top: 30%;
  }
  .g_kv .dl_btn {
    padding: 0.3rem 0.8rem;
    width: 60%;
    top: 62%;
    left: 10%;
  }
  .g_kv .dl_btn a {
    font-size: 14px;
  }
  .g_kv .CTA_btn {
    bottom: 60px;
    left: 20px;
    padding: 5px 10px;
    border-radius: 35px;
    font-size: 0.75rem;
  }
  .g_main {
    top: 0;
    position: relative;
  }
  .g_main.plan {
    background-color: #D4DEFB;
  }
  .g_main.plan .plan_bg {
    width: 100%;
    overflow-x: hidden;
  }
  .g_main.plan .plan_bg img {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .g_main.plan .plan_content .breadcrumb {
    margin-top: 80px;
    display: inline-block;
  }
  .g_main.plan .plan_content .plan_intro {
    flex-direction: column;
    margin-top: 5%;
  }
  .g_main.plan .plan_content .plan_intro .pic {
    flex: 0 0 100%;
  }
  .g_main.plan .plan_content .plan_intro .content {
    margin-top: 0%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
  .g_main.plan .plan_content .plan_intro .content .name {
    font-size: 1.4rem;
  }
  .g_main.plan .plan_content .plan_intro .content .price {
    text-align: left;
    font-size: 2.4rem;
    margin-top: 5%;
  }
  .g_main.plan .plan_content .plan_intro .content .price span {
    font-size: 1rem;
  }
  .g_main.plan .plan_content .plan_intro .btn {
    top: 84%;
    right: 0%;
  }
  .g_main.plan .plan_content .plan_info {
    margin-top: 10%;
    padding: 10%;
  }
  .g_main.plan .plan_content .plan_info .switches {
    display: inline-flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
  }
  .g_main.plan .plan_content .plan_info .switches .switch {
    flex: 0 0 45%;
    font-size: 1.2rem;
    padding: 2% 1%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .g_main.plan .plan_content .plan_info .content {
    margin-top: 10%;
  }
  .g_main.plan .plan_content .plan_info .content .title {
    font-size: 1.2rem;
  }
  .g_main.plan .plan_content .plan_info .content .text {
    font-size: 1rem;
  }
  .g_main.plan .plan_content .plan_info .content ul li {
    font-size: 1.2rem;
  }
  .main_sc {
    padding: 40px 0;
  }
  .sc_title {
    font-size: 1.75rem;
  }
  .sc_title .tit {
    line-height: 1.3;
  }
  .sc_intro {
    padding: 3rem 0 6rem 0;
    background: #000;
  }
  .sc_intro .features {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .sc_intro .features .item {
    width: 100%;
  }
  .sc_intro .features .item .wording span {
    font-size: 1.15rem;
  }
  .sc_intro .features .item ul li {
    font-size: 1rem;
  }
  .sc_intro-cnt {
    text-align: left;
    padding: 0;
  }
  .sc_intro-cnt h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    text-align: center;
    display: block;
  }
  .sc_intro-cnt h2 span {
    letter-spacing: 0rem;
  }
  .sc_intro-cnt .text {
    font-size: 0.95rem;
    line-height: 1.75;
    text-align: center;
    padding: 0 0.5rem;
  }
  .sc_intro-cnt .text span {
    font-size: 1.15rem;
  }
  .sc_intro-cnt .topic {
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .sc_intro-cnt .topic .item {
    flex: 0 0 100px;
    height: 100px;
    margin: 0;
  }
  .sc_intro-cnt .topic .item img {
    max-width: 50px;
  }
  .sc_intro-cnt .topic_content {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }
  .sc_intro-cnt .topic_content .topic_text {
    text-align: center;
  }
  .sc_intro h3.subtit {
    width: 100%;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.5;
    margin: 1.5rem 0 2rem 0;
    padding: 0.25rem 0.75rem;
  }
  .sc_intro .cta {
    flex-direction: column;
    text-align: center;
    margin-top: 1.5rem;
  }
  .sc_intro .cta .cta-info {
    margin: 0 0 0.5rem 0;
    text-align: center;
  }
  .sc_intro .cta .cta-info p {
    font-size: 18px;
    letter-spacing: 0.02rem;
  }
  .sc_intro .cta .cta-info .cta-subtit {
    font-size: 20px;
    line-height: 1.5;
  }
  .sc_intro .cta .cta-info .cta-subtit span {
    font-size: 16px;
  }
  .sc_intro .cta .cta-interact {
    margin: 0;
  }
  .sc_intro .cta .cta-interact .cta-bttn {
    padding: 1rem 3rem;
  }
  .sc_intro .cta .cta-interact .cta-bttn p {
    font-size: 1.5rem;
  }
  .sc_intro .btn-shine {
    font-size: 1.25rem;
  }
  .sc_plan {
    padding: 3rem 0 6rem 0;
    margin-top: -10%;
    background: rgb(65, 65, 65);
  }
  .sc_plan-cnt .plans {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    margin-top: 50px;
    gap: 60px;
  }
  .sc_plan-cnt .plans .plan {
    flex: 0 0 300px;
  }
  .sc_plan-cnt .plans .plan img {
    width: 100%;
    height: auto;
  }
  .sc_plan-cnt .plans .plan .content .name {
    font-size: 1.6rem;
    line-height: 2rem;
    letter-spacing: initial;
  }
  .sc_plan-cnt .plans .plan .content .price {
    font-size: 3rem;
  }
  .sc_plan-cnt .plans .plan .content .price span {
    font-size: 2rem;
  }
  .form {
    padding: 0 0 50px 0;
  }
  .form .table_content {
    padding-left: 0;
    padding-right: 0;
  }
  .form .form_wrap .wrap_intro {
    padding: 30px 20px;
    margin: 0 0 30px;
    font-size: 1.125rem;
    letter-spacing: 0;
    text-align: justify;
  }
  .form .form_wrap .wrap_intro .gift {
    flex-direction: column;
  }
  .form .form_wrap .cta .bttn {
    margin: 10px 0;
    padding: 0.9375rem 3.125rem 0.9375rem;
    font-size: 1.5rem;
  }
  .form .dl_text {
    padding: 0 10px;
    font-size: 14px;
    line-height: inherit;
  }
  .form .form_tit {
    flex-wrap: wrap;
  }
  .form .form_tit h2 {
    font-size: 1.25rem;
  }
  .form .form_tit .ps {
    margin: 5px 0 0 45px;
  }
  .form .form_p1,
  .form .form_p2 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .form .policy_wrap {
    padding-left: 15px;
    padding-right: 15px;
  }
  .g_footer {
    padding: 3rem 2rem 2rem 2rem;
  }
  .g_footer .row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .g_footer .row .info {
    margin-top: 50px;
  }
  .g_footer .row .info p {
    font-size: 1rem;
  }
  .sub_form {
    padding: 0;
  }
  .sub_form .kvbg_inner {
    width: 100%;
    background: url("img/kv_bg.jpg");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .sub_form .kvbg_inner .kvbg {
    display: none;
  }
  .sub_form .contain {
    padding: 5px 5px;
  }
  .sub_form form {
    top: 0;
    transform: translateY(0);
    position: relative;
    height: 100vh;
  }
  .sub_form form .form_main {
    padding: 25px;
  }
  .check_form {
    padding: 0;
  }
  .check_form .kvbg_inner {
    width: 100%;
    background: url("img/kv_bg.jpg");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .check_form .kvbg_inner .kvbg {
    display: none;
  }
  .check_form .check_content {
    top: 0;
    transform: translateY(0);
    position: relative;
    height: 100vh;
  }
  .check_form .check_content .form_main {
    padding: 25px;
  }
  .check_form .check_content .form_main .sec .text {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}/*# sourceMappingURL=style.css.map */