@charset "UTF-8";
body {
  position: relative;
  font-family: Roboto, "Microsoft JhengHei", 微軟正黑, "Noto Sans TC", sans-serif;
  background-color: #020207;
}

.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: 4em;
  height: 4em;
  background-color: #fff;
  font-size: 0.95rem;
  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-image: linear-gradient(120deg, #0066c0, #008aff, #0066c0);
  color: #fff;
  line-height: 1.3;
}
.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;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
  font-size: 0.8125rem;
}
.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;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  z-index: 999;
  transition: all 0.2s ease-out;
}
header.is_active {
  background-color: black;
}
header.is_active .nav_area .logo {
  width: 210px;
}
header.is_active .nav_area ul {
  margin: 0 0 0 0;
  height: 50px;
}
header.is_active .nav_area ul li.r_btn {
  padding: 5px 15px;
  border-radius: 5px;
}
header.is_active .nav_area ul li.r_btn a {
  color: #fff;
}
header.is_active .nav_area ul li.r_btn:hover {
  background-color: transparent;
  border: 1px solid #008aff;
}
header.is_active .nav_area ul li.r_btn:hover a {
  color: #008aff;
}
header.is_active .nav_area ul li a {
  font-size: 1rem;
  color: #fff;
}
header.is_active .nav_area ul li a:hover {
  color: #008aff;
}
header .nav_mobile {
  display: none;
}
header .nav_language {
  position: absolute;
  top: 50%;
  right: 70px;
  cursor: pointer;
  padding: 0 12px;
  text-align: right;
  transform: translateY(-50%);
}
header .nav_language .hover {
  display: inline-block;
  position: relative;
}
header .nav_language .hover img {
  width: 30px;
  line-height: 0;
}
header .nav_language .hover:hover .hover_menu {
  display: flex;
}
header .nav_language .hover_holder {
  cursor: pointer;
}
header .nav_language .hover_menu {
  position: absolute;
  top: auto;
  right: 0;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}
header .nav_language .hover_menu .hover_item {
  cursor: pointer;
  display: block;
  margin-top: 10px;
  text-decoration: none;
}
header .nav_language .hover_menu .hover_item p {
  position: relative;
  box-sizing: border-box;
  padding: 5px 15px;
  width: 100px;
  text-align: center;
  white-space: nowrap;
  font-size: 16px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  color: #00918a;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 0 10px 0 10px;
  transition: all 0.3s ease-in-out;
}
header .nav_language .hover_menu .hover_item p:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
}
header .nav_language .hover_menu .hover_item p span {
  font-size: 12px;
}
header .nav_sns {
  position: absolute;
  top: 50%;
  right: 10px;
  cursor: pointer;
  padding: 0 12px;
  text-align: right;
  transform: translateY(-50%);
}
header .nav_sns .hover {
  display: inline-block;
  position: relative;
}
header .nav_sns .hover img {
  width: 40px;
  line-height: 0;
}
header .nav_sns .hover:hover .hover_menu {
  display: flex;
}
header .nav_sns .hover_holder {
  cursor: pointer;
}
header .nav_sns .hover_holder img {
  position: relative;
  width: 100%;
  max-width: 40px;
  height: auto;
}
header .nav_sns .hover_menu {
  position: absolute;
  right: 0;
  padding: 0.5em 0;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}
header .nav_sns .hover_menu .hover_item {
  position: relative;
  cursor: pointer;
  display: block;
  margin-top: 0.5em;
}
header .nav_area {
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0 70px 0 70px;
  margin: 0 auto;
  height: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .nav_area .logo {
  position: relative;
  width: 275px;
  height: auto;
  margin: 0 auto 0 0;
  display: block;
  transition: all 0.2s ease-out;
}
header .nav_area .logo img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}
header .nav_area ul {
  position: relative;
  width: auto;
  height: 70px;
  margin: 0 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-out;
}
header .nav_area ul li {
  position: relative;
  width: auto;
  height: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  transition: all 0.2s ease-out;
}
header .nav_area ul li.r_btn {
  padding: 8px 15px;
  background-color: #008aff;
  border: 1px solid #008aff;
  border-radius: 10px;
}
header .nav_area ul li.r_btn a {
  color: #fff;
}
header .nav_area ul li.r_btn:hover {
  background-color: transparent;
}
header .nav_area ul li.r_btn:hover a {
  color: #008aff;
}
header .nav_area ul li a {
  position: relative;
  width: auto;
  height: auto;
  box-sizing: border-box;
  padding: 3px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
header .nav_area ul li a:hover {
  color: #008aff;
}
header .nav_area ul li.btn a {
  padding: 8px 25px;
  color: #fff;
  border: 1px solid #15d9fd;
  border-radius: 5px;
}
header .nav_area ul li.btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #00918a, #000);
  z-index: -1;
  transition: all 0.2s ease-out;
}
header .nav_area ul li.btn a:hover {
  color: #00918a;
  border: 1px solid #00918a;
}
header .nav_area ul li.btn a:hover::before {
  left: 100%;
}
header .nav_area ul li.active a {
  color: #00918a;
}

.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: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.g_kv img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.g_kv .logo {
  position: absolute;
  width: 22%;
  top: 70%;
  left: 10%;
}
.g_kv .kvBg {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000;
}
.g_kv .kvBg img {
  animation: foltBg 20s ease-in-out infinite;
}
.g_kv .p1 {
  position: absolute;
  width: 55%;
  top: 10%;
  right: 0;
  animation: float 4s ease-in-out infinite;
}

.kv_cnt {
  position: relative;
  width: 100%;
  height: 100vh;
}
.kv_cnt .t1 {
  position: absolute;
  width: 72%;
  top: 5%;
  left: 5%;
}
.kv_cnt .t1 img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

@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: relative;
  z-index: 1;
  padding: 60px 0 0;
  background: linear-gradient(180deg, #0b1c3f, 80%, rgba(11, 28, 63, 0.8));
  overflow: hidden;
  font-family: "Noto Sans TC", sans-serif;
}
.g_main p {
  position: relative;
  width: 100%;
  max-width: 800px;
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: center;
  color: #fff;
  margin: 0 auto 25px;
}
.g_main .slg {
  position: relative;
  width: 100%;
  margin: 0 0 35px;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 3px;
  line-height: 1.4;
  font-weight: bold;
  color: #4bf0ff;
}
.g_main .slg .sub {
  position: relative;
  margin: 15px 0 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: white;
}
.g_main .CTA_btn {
  position: relative;
  width: 100%;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.g_main .CTA_btn .sub {
  position: relative;
  width: 100%;
  padding: 0 15px;
  max-width: 800px;
  margin: 25px auto;
  text-align: center;
  color: #4bf0ff;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: bold;
}
.g_main .CTA_btn a {
  text-decoration: none;
}
.g_main .CTA_btn_inner {
  position: relative;
  display: inline-block;
  padding: 15px 65px;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.3s ease-out;
}
.g_main .CTA_btn_inner p {
  position: relative;
  margin: 0 !important;
  font-size: 2rem !important;
  font-weight: bold !important;
  letter-spacing: 0.3125rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.46);
  color: #fff;
  z-index: 1;
}
.g_main .CTA_btn_inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  aspect-ratio: 1/1;
  background-image: linear-gradient(120deg, #0066c0, 40%, #4bf0ff, 60%, #0066c0);
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: all 0.4s ease-out;
}
.g_main .CTA_btn_inner:hover {
  transform: scale(1.1);
}
.g_main .CTA_btn_inner:hover::before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.g_main .spotlight {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 30px 0 0;
  border-radius: 0px;
}
.g_main .spotlight .items {
  position: relative;
  width: 100%;
  margin: 30px 0 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}
.g_main .spotlight .items .item {
  position: relative;
  flex: 0 1 calc(33% - 20px);
  box-sizing: border-box;
  padding: 15px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.6), 20%, white, 70%, rgba(255, 255, 255, 0.6));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.g_main .spotlight .items .item .t {
  position: relative;
  font-size: 1.125rem;
  font-weight: bold;
  color: black;
  margin: 15px auto;
  line-height: 1.5;
  font-weight: 500;
}

.sc_gift {
  position: relative;
  padding: 40px 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), 10%, rgba(255, 255, 255, 0.95), 90%, rgba(255, 255, 255, 0));
}
.sc_gift .container {
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.sc_gift .container .pic {
  position: relative;
  width: 100%;
  max-width: 250px;
  border-radius: 20px;
  overflow: hidden;
}
.sc_gift .container .pic img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.sc_gift .container .t {
  position: relative;
  font-size: 1.125rem;
  font-weight: bold;
}
.sc_gift .container .t span {
  font-size: 1rem;
  font-weight: 300;
}

.comp {
  position: relative;
  width: 100%;
  padding: 30px 0;
  background-color: #020207;
  border-bottom: 15px solid #0066c0;
}
.comp .logo {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 250px;
}
.comp .logo img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.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;
}

.form {
  position: relative;
  background: transparent;
  padding: 0 0 60px;
}
.form .main {
  position: relative;
  width: 100%;
}
.form .main_wrap {
  border-radius: 0;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}
.form .table_content {
  padding: 0 30px 40px;
}
.form .form_wrap {
  border-radius: 0;
  padding-top: 0;
  padding-bottom: 60px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
.form .form_wrap .wrap_intro {
  position: relative;
  padding: 50px 50px 30px 50px;
  margin: 0 auto 30px 0;
  font-size: 1rem;
  color: #000;
  background-color: #fff;
}
.form .form_wrap .wrap_intro p {
  text-align: left;
  font-size: 16px;
}
.form .form_wrap .wrap_intro p.title {
  font-size: 28px;
  font-weight: bold;
}
.form .form_wrap .wrap_intro .gift {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}
.form .form_wrap .wrap_intro .gift img {
  width: 200px;
}
.form .form_wrap .wrap_intro .gift p {
  text-align: center;
  font-size: 18px;
}
.form .form_wrap .wrap_intro .tit_line {
  display: flex;
  justify-content: flex-start;
  padding: 0.12rem 0;
  margin: 15px auto 15px 0;
}
.form .form_wrap .wrap_intro .tit_line span {
  display: block;
  border-radius: 2.72727rem;
  background: #CBCBCB;
  width: 0.27273rem;
  height: 0.27273rem;
}
.form .form_wrap .wrap_intro .tit_line span:nth-child(1) {
  width: 1.25rem;
}
.form .form_wrap .wrap_intro .tit_line span ~ span {
  margin-left: 0.27rem;
}
.form .form_wrap .g {
  padding-left: 1.2rem;
}
.form .form_wrap .btn {
  background-color: transparent;
}
.form .form_wrap legend {
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.form .form_wrap legend span {
  color: #D71921;
  font-size: 0.75rem;
}
.form .form_wrap legend + div {
  padding-left: 1.2rem;
}
.form .form_wrap label {
  color: #000;
}
.form .form-check input {
  margin-top: 8px;
  display: block;
}
.form .form_wrap .form-check-inline {
  margin-right: 1em;
  margin-bottom: 0.25em;
}
.form .form_wrap .form-check-inline input {
  margin-top: 0px;
  display: block;
}
.form .form_wrap .form-check-label {
  flex: 1 0 auto;
  font-size: 0.9375rem;
}
.form .form_wrap .form-check-label ul {
  list-style-type: "-  ";
  padding: 0 0 0 0.8125rem;
  font-size: 0.875rem;
  color: #5b5b5b;
}
.form .form_wrap .form-check-input {
  accent-color: #D71921;
}
.form .form_wrap .form-check-input ~ .input_text {
  margin-left: 0.25rem;
  width: 110px;
  display: none;
}
.form .form_wrap .form-check-input ~ .input_text,
.form .form_wrap .other_text {
  margin-left: 0.25rem;
}
.form .form_wrap .form-check-input ~ .input_text {
  width: 110px;
  display: none;
}
.form .form_wrap .form-check-input:checked ~ .input_text {
  display: inline;
}
.form .form_wrap .form-group {
  margin-bottom: 1rem;
  font-size: 1rem;
}
.form .form_wrap .form-group .stxt {
  font-size: 0.875rem;
}
.form .form_wrap .cta .bttn {
  transform-origin: 50% 50%;
  transition: all 0.3s;
}
.form .form_wrap .cta .bttn img {
  width: 350px;
  max-width: 100%;
}
.form .form_wrap .cta .bttn:hover {
  transform: scale(1.05);
  transition: all 0.3s;
}
.form .form_tit {
  position: relative;
  width: 100%;
  text-align: left;
  padding: 0 50px;
  margin: 0 0 25px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
}
.form .form_tit h2 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 0;
  color: #000;
}
.form .form_tit .ps {
  position: relative;
  margin: 0;
  font-size: 0.75rem;
  color: #D71921;
}
.form .form_tit .tit_line {
  display: flex;
  justify-content: center;
  padding: 0.12rem 0;
  margin: 0 0.625rem 0 0;
}
.form .form_tit .tit_line span {
  display: block;
  border-radius: 2.72727rem;
  background: #CBCBCB;
  width: 0.27273rem;
  height: 0.27273rem;
}
.form .form_tit .tit_line span:nth-child(1) {
  width: 1.25rem;
}
.form .form_tit .tit_line span ~ span {
  margin-left: 0.27rem;
}
.form .form_p1,
.form .form_p2 {
  padding-left: 4rem;
  padding-right: 4rem;
}
.form .form_p1 {
  padding-bottom: 30px;
}
.form .dl_text {
  text-align: center;
  font-size: 18px;
  line-height: 1.8rem;
}
.form .form_p2 {
  border-top: 6px solid #fff;
  padding-top: 60px;
}
.form .policy_wrap {
  margin-top: 30px;
}
.form .policy_tip,
.form .policy_after {
  padding-left: 20px;
  padding-right: 20px;
  overflow: auto;
  font-size: 14px;
}
.form .policy_tip {
  padding-bottom: 6px;
}
.form .policy_after {
  margin-top: 6px;
}
.form .pt_left {
  float: left;
  text-align: center;
}
.form .pt_right {
  float: right;
}
.form .pt_right a {
  color: #00b388;
}
.form .pt_right a:hover {
  color: #1789bd;
}
.form .policy_box {
  clear: both;
  border-radius: 12px;
  border: 1px solid #00b388;
  padding: 10px;
  height: 150px;
  overflow: hidden;
  background-color: #fcfff8;
}
.form .pb_tit {
  padding: 10px 10px 5px;
  text-align: center;
}
.form .pb_text {
  padding: 5px 10px 20px;
  font-size: 12px;
  line-height: 21px;
  overflow: auto;
  height: calc(100% - 40px);
}
.form .pb_text p {
  margin-bottom: 1em;
}
.form .pb_text ol {
  padding-left: 1em;
  list-style: none;
  margin-bottom: 0;
}
.form .pb_text ol li {
  margin-top: 9px;
}
.form #fancybox-outer {
  width: 104% !important;
}

.g_footer {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 0.625rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: #fff;
  background-color: #000;
}
.g_footer a {
  color: #343434;
}

@media (max-width: 508px) {
  body {
    background-color: #11294E;
  }
  header {
    height: 35px;
    background-color: transparent;
  }
  header .nav_mobile {
    position: relative;
    display: block;
  }
  header .nav_mobile-btn {
    position: absolute;
    top: 5px;
    right: 15px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header .nav_mobile-btn-line {
    position: relative;
    display: block;
    width: 25px;
    height: 2px;
    background: #00918a;
    border-radius: 4px;
    margin: 2.5px 0;
  }
  header .nav_language {
    position: absolute;
    top: 110px;
    right: 5px;
    cursor: pointer;
    padding: 0 12px;
    text-align: right;
    transform: translateY(0);
  }
  header .nav_sns {
    position: absolute;
    top: 50px;
    right: 0;
    cursor: pointer;
    padding: 0 12px;
    text-align: right;
    transform: translateY(0);
  }
  header .nav_sns .hover_holder img {
    max-width: 40px;
  }
  header .nav_area {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    padding: 50px 0;
    background-color: #000;
    flex-direction: column;
    justify-content: flex-start;
  }
  header .nav_area .logo {
    width: 200px;
    margin: 20px auto;
  }
  header .nav_area ul {
    position: relative;
    width: auto;
    height: auto;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  header .nav_area ul li {
    position: relative;
    width: 100%;
    height: auto;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header .nav_area ul li a {
    position: relative;
    width: auto;
    height: auto;
    box-sizing: border-box;
    padding: 3px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  header .nav_area ul li a:hover {
    color: #abcd03;
  }
  header .nav_area ul li.btn a {
    padding: 12px 35px;
    color: #fff;
    background-color: #abcd03;
    border: 1px solid #abcd03;
    border-radius: 5px;
  }
  header .nav_area ul li.btn a:hover {
    color: #abcd03;
    background-color: #fff;
  }
  header .nav_area ul li.active a {
    color: #abcd03;
  }
  .g_kv {
    height: 120vw;
  }
  .g_kv .logo {
    width: 40%;
    top: auto;
    bottom: 20px;
    left: 10%;
  }
  .g_kv .kvBg {
    position: relative;
    width: auto;
    height: 100vh;
    background-color: #020207;
  }
  .g_kv .kvBg img {
    position: relative;
    width: auto;
    height: 100vh;
  }
  .g_kv .p1 {
    position: absolute;
    top: 40%;
    width: 50%;
    right: 0;
    animation-play-state: paused;
  }
  .kv_cnt {
    height: 120vw;
  }
  .kv_cnt .t1 {
    position: absolute;
    width: 100%;
    top: 10%;
    left: 0;
  }
  .g_main {
    margin-top: 0;
    background: #11294E;
    padding-top: 20px;
  }
  .g_main p {
    font-size: 1.125rem;
    margin: 0 0 25px 0;
  }
  .g_main .slg {
    font-size: 1.5rem;
  }
  .g_main .CTA_btn {
    position: relative;
    width: 100%;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .g_main .CTA_btn .sub {
    position: relative;
    width: 100%;
    padding: 0 15px;
    max-width: 800px;
    margin: 25px auto;
    text-align: center;
    color: #4bf0ff;
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: bold;
  }
  .g_main .CTA_btn a {
    text-decoration: none;
  }
  .g_main .CTA_btn_inner p {
    font-size: 1.75rem !important;
  }
  .g_main .spotlight {
    margin: 20px 0 0;
    width: 100%;
  }
  .g_main .spotlight .items {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
  }
  .g_main .spotlight .items .item {
    position: relative;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
    text-align: justify;
  }
  .g_main .spotlight .items .item .box {
    padding: 3px 20px;
    font-size: 1.125rem;
  }
  .g_main .spotlight .items .item .t {
    font-size: 1.25rem;
    margin: 20px 0 10px;
  }
  .sc_gift {
    padding: 30px 0;
  }
  .sc_gift .container {
    gap: 20px;
  }
  .sc_gift .container .t {
    font-size: 1rem;
  }
  .sc_gift .container .t span {
    font-size: 0.875rem;
    font-weight: 300;
  }
  .main_sc {
    padding: 40px 0;
  }
  .sc_title {
    font-size: 1.75rem;
  }
  .sc_title .tit {
    line-height: 1.3;
  }
  .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: 10px 15px;
    font-size: 0.75rem;
  }
}/*# sourceMappingURL=style.css.map */