@charset "UTF-8";
:root {
  font-size: 18px;
}
@media (max-width: 1600px) {
  :root {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  :root {
    font-size: 14px;
  }
}

@keyframes float {
  0% {
    transform: scale(1) translateY(0px);
  }
  50% {
    transform: scale(1) translateY(-30px);
  }
  100% {
    transform: scale(1) translateY(0px);
  }
}
@keyframes float2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
html {
  font-size: 20px;
}

body {
  font-family: "Inter", "Noto Sans TC", "Microsoft Jhenghei", "微軟正黑", sans-serif;
}

a {
  color: inherit;
}

.g_header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  background-color: #fff;
  transition: all 0.2s ease-out;
}
.g_header.is_active {
  background-color: rgba(255, 255, 255, 0.95);
}
.g_header.is_active .header_wrap {
  padding: 0.5rem;
}
.g_header.is_active .nav_area .logo {
  max-width: 180px;
  padding: 0 30px;
}
.g_header.is_active .nav_cnt .nav_item {
  padding: 0.5rem 0.9375rem;
  font-size: 0.875rem;
}
.g_header.is_active .nav_cnt .nav_link {
  color: #0082ff;
}
.g_header.is_active .nav_cnt .nav_link:hover {
  color: #000;
}
.g_header.is_active .header_sns .hover img {
  width: 30px !important;
}
.g_header .header_wrap {
  position: relative;
  padding: 0.9375rem;
  transition: all 0.2s ease-out;
}
.g_header .header_logo {
  position: absolute;
  top: 50%;
  left: 2rem;
  width: 100px;
  transform: translateY(-50%);
}
.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 .logo {
  position: relative;
  width: 100%;
  max-width: 200px;
  box-sizing: border-box;
  padding: 0 30px;
  transition: all 0.2s ease-out;
}
.g_header .nav_area .logo img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.g_header .nav_cnt {
  position: relative;
  flex: 0 1 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.g_header .nav_cnt .nav_item {
  padding: 0.5rem 0.9375rem;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: normal;
}
.g_header .nav_cnt .nav_item.spBtn {
  display: inline-block;
  background-color: #0082ff;
  border: 1px solid #0082ff;
  border-radius: 10px;
  transition: all 0.2s ease-out;
}
.g_header .nav_cnt .nav_item.spBtn .nav_link {
  color: #fff;
}
.g_header .nav_cnt .nav_item.spBtn:hover {
  background-color: #fff;
}
.g_header .nav_cnt .nav_item.spBtn:hover .nav_link {
  color: #0082ff;
}
.g_header .nav_cnt .nav_link {
  color: #0082ff;
  text-decoration: none;
  transition: all 0.2s ease-out;
}
.g_header .nav_cnt .nav_link:hover {
  color: #000;
}
.g_header .nav_cnt .header_sns {
  flex: 0 1 40px;
  padding: 0 12px;
  text-align: right;
}
.g_header .nav_cnt .header_sns .hover {
  display: inline-block;
  position: relative;
}
.g_header .nav_cnt .header_sns .hover img {
  width: 40px;
  line-height: 0;
  transition: all 0.2s ease-out;
}
.g_header .nav_cnt .header_sns .hover:hover .hover_menu {
  display: block;
}
.g_header .nav_cnt .header_sns .hover_holder {
  cursor: pointer;
}
.g_header .nav_cnt .header_sns .hover_menu {
  position: absolute;
  padding: 0.5em 0;
  display: none;
}
.g_header .nav_cnt .header_sns .hover_menu .hover_item {
  cursor: pointer;
  display: block;
  margin-top: 0.5em;
}

.g_fixed {
  position: fixed;
  z-index: 99;
  right: 1.875rem;
  bottom: 1rem;
  transform: translateX(150%);
  transition: transform 600ms;
}
.g_fixed.is_active {
  transform: translateX(0%);
}
.g_fixed .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 2px 5px 0 rgba(0, 0, 0, 0.2);
  transition: transform 240ms, box-shadow 240ms;
}
.g_fixed .fx_item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
}
.g_fixed .fx_item.is_primary {
  background-color: #0082ff;
  color: #fff;
  line-height: 1.3;
}
.g_fixed .fx_item .in_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.g_fixed .fx_item .in_wrap.txt {
  text-align: center;
  line-height: 1.3;
}
.g_fixed .fx_item .in_wrap.ic {
  width: 100%;
  height: 100%;
  padding: 0.6em;
}
.g_fixed .fx_item .in_wrap .ic_top {
  width: 100%;
  padding-top: 100%;
  background: url("img/ui/arrow_top.png") center/contain no-repeat;
}

.g_kv {
  position: relative;
  margin: 70px 0 0;
  width: 100%;
  height: calc(85vh - 70px);
  max-height: 800px;
  overflow: hidden;
  background-color: #0082ff;
}
.g_kv .kv_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.g_kv .kv_bg_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.g_kv .kv_bg_inner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(img/kv_bg.jpg) center/auto 100% no-repeat;
  transform-origin: 100% 50%;
}
.g_kv .kv_tit {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-55%);
}
.g_kv .kv_tit .t1 {
  position: relative;
  width: 62.5%;
  box-sizing: border-box;
  padding: 3% 5% 0;
  font-size: 1.75rem;
  font-weight: normal;
  color: #fff;
}
.g_kv .kv_tit .t1 .H1 {
  font-size: 4.0625rem;
  font-weight: bold;
}
.g_kv .kv_tit .t1 .H2 {
  font-size: 2.125rem;
  font-weight: normal;
}
.g_kv .kv_tit .t1 .H3 {
  font-size: 2.5625rem;
  font-weight: normal;
}
.g_kv .kv_tit .t1 .tit {
  margin: 0 0 5%;
}
.g_kv .kv_tit img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.g_kv .CTA_btn {
  position: relative;
  text-align: left;
}
.g_kv .CTA_btn-inner {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 0;
  box-sizing: border-box;
  padding: 15px 45px;
  border-radius: 50px;
  background-color: #fff;
  border: 2px solid #fff;
  text-decoration: none;
  line-height: 1;
  color: #0082ff;
  font-size: 2.25rem;
  font-weight: bold;
  letter-spacing: 4px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease-out;
}
.g_kv .CTA_btn-inner:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
  background-color: transparent;
  color: #fff;
}
.g_kv .timer {
  position: absolute;
  right: 6%;
  bottom: 25px;
  color: #fff;
  text-align: center;
  letter-spacing: -4px;
}
.g_kv .timer .tb {
  position: relative;
  display: inline-block;
  width: 4rem;
  height: 3.5rem;
  padding-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: #000;
  letter-spacing: normal;
}
.g_kv .timer .tb::after {
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  line-height: 1;
  text-align: center;
  font-weight: 300;
  color: #13f19e;
}
.g_kv .timer .tb span {
  position: absolute;
  left: 50%;
  top: calc(50% - 0.5rem);
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
}
.g_kv .timer .d {
  border-radius: 1rem 0 0 1rem;
}
.g_kv .timer .d::after {
  content: "day";
}
.g_kv .timer .h::after {
  content: "hour";
}
.g_kv .timer .m::after {
  content: "min";
}
.g_kv .timer .s {
  border-radius: 0 1rem 1rem 0;
}
.g_kv .timer .s::after {
  content: "sec";
}

.container {
  padding: 50px 50px;
}

.g_main .sc_title {
  text-align: center;
  margin-bottom: 40px;
}
.g_main .sc_title .tit {
  display: inline-block;
  font-size: 28px;
  font-weight: bold;
  color: #0082ff;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.g_main .sc_title .tit span {
  font-size: 1.5rem;
}
.g_main .sc_title .sub {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: normal;
  color: #0082ff;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.g_main .sc_title .sub span {
  font-size: 1.5rem;
}
.g_main .cta_box {
  padding: 20px 0;
  text-align: center;
}
.g_main .cta_box .date_t {
  position: relative;
  margin: 15px auto 20px;
  font-size: 1.625rem;
  font-weight: bold;
  color: #0082ff;
  text-shadow: 0 2px 5px rgba(0, 130, 255, 0.4);
}
.g_main .cta_box .bttn a {
  display: inline-block;
  border-radius: 3rem;
  font-size: 1.875rem;
  letter-spacing: 3px;
  font-weight: bold;
  line-height: 1;
  transition: transform 300ms;
}
.g_main .cta_box .bttn a span {
  display: block;
  border-radius: 3rem;
  padding: 1.5625rem 5rem;
}
.g_main .cta_box .bttn a:hover {
  text-decoration: none;
  transform: scale(1.1);
}
.g_main .cta_box .bttn.main_btn a {
  background: linear-gradient(90deg, rgba(0, 130, 255, 0.8), rgba(0, 130, 255, 0.8)), url(img/kv_bg.jpg) center center/cover no-repeat;
  color: #fff;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.g_main .cta_box .bttn.main_btn a.sp {
  background: linear-gradient(90deg, #0082ff, #0082ff);
}

.sc_intros {
  padding: 40px 0;
}
.sc_intros .sc_title {
  margin: 35px auto 15px;
}
.sc_intros .sc_title .tit {
  font-size: 1.75rem;
}
.sc_intros .container {
  padding: 0 50px;
}

.intro_cnt {
  line-height: 1.5;
}
.intro_cnt .parag {
  position: relative;
  width: 100%;
  max-width: 900px;
  text-align: justify;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1rem;
  color: #333;
}
.intro_cnt .parag img {
  position: relative;
  width: 90%;
  height: auto;
  display: block;
  margin: 15px auto;
}
.intro_cnt .lists {
  position: relative;
  width: 100%;
  padding: 0 0 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}
.intro_cnt .lists .list {
  position: relative;
  flex: 0 1 calc(33% - 10px);
  display: flex;
}
.intro_cnt .lists .list .info {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 15px;
  border: 2px solid #0082ff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: center;
}
.intro_cnt .lists .list .info .ss {
  position: relative;
  flex: 0 1 70px;
  width: 100%;
  box-sizing: border-box;
  padding: 20px 15px;
  text-align: center;
  color: #fff;
  background-color: #0082ff;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
.intro_cnt .lists .list .info .ww {
  position: relative;
  padding: 20px 15px;
  text-align: center;
  color: #0082ff;
  font-size: 0.875rem;
  font-weight: normal;
}
.intro_cnt ul {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.intro_cnt ul li {
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.sc_agenda {
  position: relative;
  padding: 0px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(0, 130, 255, 0.2), rgba(0, 130, 255, 0.2), 95%, rgba(255, 255, 255, 0));
}
.sc_agenda-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.sc_agenda-bg img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  mix-blend-mode: overlay;
}
.sc_agenda .sc_title .tit {
  font-size: 1.75rem;
  letter-spacing: 5px;
  text-align: center;
  color: #0082ff;
}
.sc_agenda .container {
  max-width: 1200px;
}
.sc_agenda .ps {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  color: #050d22;
  margin: 0 0 15px;
}

.agenda_cnt {
  position: relative;
  background-color: #fff;
}
.agenda_cnt .table {
  position: relative;
  margin: 25px auto 5px;
  border: solid rgba(0, 130, 255, 0.5);
  border-width: 1px;
}
.agenda_cnt .table .tr {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0;
  background-color: transparent;
  border: solid rgba(0, 130, 255, 0.5);
  border-width: 1px 0;
}
.agenda_cnt .table .tr.HL {
  background-color: #0082ff;
}
.agenda_cnt .table .tr.HL .infor .td {
  align-items: center;
}
.agenda_cnt .table .tr.HL .time {
  color: #fff;
}
.agenda_cnt .table .tr.HL .topic {
  width: 100%;
  color: #fff;
  text-align: left;
}
.agenda_cnt .table .tr.HL .topic span {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  padding: 5px 20px;
  margin: 10px 0;
  background-color: #0082ff;
  border-radius: 25px;
}
.agenda_cnt .table .tr.sHL {
  background-color: rgba(0, 130, 255, 0.6);
}
.agenda_cnt .table .tr.sHL .time {
  color: #fff;
}
.agenda_cnt .table .tr.sHL .topic {
  width: 100%;
  color: #fff;
  text-align: left;
  font-weight: bold;
}
.agenda_cnt .table .tr .time {
  position: relative;
  padding: 15px 0;
  flex: 0 1 130px;
  line-height: 1.5;
  font-size: 1rem;
  font-weight: bold;
  text-align: left;
  color: #1d1d1d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.agenda_cnt .table .tr .time .ts {
  position: relative;
  flex: 0 1 50%;
  border-bottom: 1px solid rgba(0, 130, 255, 0.5);
  padding: 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.agenda_cnt .table .tr .time .ts:last-child {
  border: 0;
}
.agenda_cnt .table .tr .infor {
  position: relative;
  box-sizing: border-box;
  padding: 0;
  flex: 0 1 calc(100% - 130px);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
.agenda_cnt .table .tr .infor .td {
  position: relative;
  flex: 0 1 100%;
  padding: 0 15px;
  border: 1px solid rgba(0, 130, 255, 0.5);
  border-width: 0 0 0 1px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.agenda_cnt .table .tr .infor .td .up {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
.agenda_cnt .table .tr .infor .td .up .topic {
  position: relative;
  flex: 1 0 60%;
  width: 100%;
  padding: 10px 0;
  font-size: 1.125rem;
  font-weight: normal;
  color: #1d1d1d;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.agenda_cnt .table .tr .infor .td .up .topic span {
  position: relative;
  display: block;
  font-size: 1.25rem;
  font-weight: bold;
  color: #0082ff;
  margin: 0;
  padding: 0 10px 0 0;
}
.agenda_cnt .table .tr .infor .td .up .topic span.bk {
  color: #1d1d1d;
}
.agenda_cnt .table .tr .infor .td .up .topic .topic_btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 5px 15px;
  color: #fff;
  background-color: #0082ff;
  border: 1px solid #0082ff;
  border-radius: 35px;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: all 0.2s ease-out;
  cursor: pointer;
}
.agenda_cnt .table .tr .infor .td .up .topic .topic_btn:hover {
  background-color: transparent;
  color: #0082ff;
}
.agenda_cnt .table .tr .infor .td .up .text {
  position: relative;
  width: 100%;
  line-height: 1.5;
  font-size: 0.9375rem;
  font-weight: 300;
  padding: 10px 0;
  margin: 10px 0 0;
  color: #1d1d1d;
  border: solid rgba(0, 130, 255, 0.1);
  border-width: 1px 0 0;
}
.agenda_cnt .table .tr .infor .td .up ul {
  position: relative;
  width: 100%;
  line-height: 1.5;
  font-size: 1.25rem;
  font-weight: 300;
  padding: 0 0 0 20px;
  color: #1d1d1d;
}
.agenda_cnt .table .tr .infor .td .up.onlyThh .topic {
  padding: 10px 0 0;
}
.agenda_cnt .table .tr .infor .td .up.onlyThh .tit {
  padding: 10px 0 0;
}
.agenda_cnt .table .tr .infor .td .up.realSpk {
  border: 1px dashed rgba(0, 130, 255, 0.5);
  border-width: 1px 0 0;
}
.agenda_cnt .table .tr .infor .td .tit {
  position: relative;
  flex: 0 1 40%;
  box-sizing: border-box;
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.agenda_cnt .table .tr .infor .td .tit .thh {
  position: relative;
  margin: 15px 0 0;
  font-size: 0.875rem;
  font-weight: normal;
  color: #0082ff;
}
.agenda_cnt .table .tr .infor .td .tit .thh:first-child {
  margin: 0;
}
.agenda_cnt .table .tr .infor .td .tit .list {
  position: relative;
  margin: 0 0 10px;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: left;
  color: #1d1d1d;
}
.agenda_cnt .table .tr .infor .td .tit .list:last-child {
  margin: 0;
}
.agenda_cnt .table .tr .infor .td .tit .list span {
  position: relative;
  display: block;
  font-size: 1rem;
  font-weight: 300;
}
.agenda_cnt .table .tr .infor .td .tit .list .en {
  position: relative;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 300;
}
.agenda_cnt .cta_box {
  padding: 20px 0;
  text-align: center;
}

.sc_spk {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0;
}
.sc_spk_cnt {
  position: relative;
  width: 100%;
  padding: 40px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}
.sc_spk_cnt .spk_item {
  position: relative;
  flex: 0 1 calc(25% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: center;
}
.sc_spk_cnt .spk_item .pic {
  position: relative;
  width: 205px;
  height: 205px;
  padding: 5px;
  border-radius: 99%;
  background: linear-gradient(90deg, #0082ff, #0082ff);
  cursor: pointer;
}
.sc_spk_cnt .spk_item .pic img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 99%;
  overflow: hidden;
  border: 5px solid #fff;
  transition: all 0.2s ease-out;
}
.sc_spk_cnt .spk_item .pic:hover img {
  transform: scale(1.05);
}
.sc_spk_cnt .spk_item .label {
  position: relative;
  margin: 10px auto 0;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 25px;
  background: linear-gradient(90deg, #0082ff, #0082ff);
  font-size: 1.25rem;
  font-weight: bold;
  color: #1d1d1d;
}
.sc_spk_cnt .spk_item .n {
  position: relative;
  margin: 10px auto;
  font-size: 1.25rem;
  font-weight: bold;
  color: #1d1d1d;
  text-align: center;
}
.sc_spk_cnt .spk_item .t {
  position: relative;
  margin: 0 auto;
  font-size: 1rem;
  font-weight: 300;
  color: #1d1d1d;
  text-align: center;
  line-height: 1.4;
}

.sc_gift {
  position: relative;
  padding: 60px 0;
}
.sc_gift .sc_title .tit {
  color: #0082ff;
}
.sc_gift .gift_cnt {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 25px auto;
  padding: 25px;
  border-radius: 15px;
  background-color: rgba(0, 130, 255, 0.8);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.sc_gift .gift_cnt .info {
  position: relative;
}
.sc_gift .gift_cnt .info .t {
  position: relative;
  display: inline-block;
  justify-content: center;
  align-items: center;
  background-color: #0082ff;
  color: #fff;
  padding: 5px 15px;
  font-size: 1.125rem;
  font-weight: bold;
  border-radius: 5px;
}
.sc_gift .gift_cnt .info .w {
  position: relative;
  font-size: 1rem;
  margin: 25px 0;
  line-height: 1.4;
  color: #fff;
}
.sc_gift .gift_cnt .info .ps {
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  margin: 0 15px;
  line-height: 1.4;
  color: #666;
}
.sc_gift .gift_cnt .pic {
  position: relative;
  width: 100%;
  max-width: 200px;
  margin: 0 25px;
  border-radius: 10px;
  overflow: hidden;
}
.sc_gift .gift_cnt .pic img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.sc_loc {
  position: relative;
  padding: 60px 0 120px;
}
.sc_loc .sc_title .tit {
  color: #0082ff;
}
.sc_loc .loc_cnt {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sc_loc .w {
  font-size: 1rem;
  color: #333;
  text-align: center;
  margin: 0 0 30px;
}
.sc_loc .w span {
  color: #0082ff;
  font-size: 1.5rem;
  font-weight: bold;
}
.sc_loc .map {
  position: relative;
  width: 100%;
}
.sc_loc .map iframe {
  position: relative;
  width: 100%;
  height: 400px;
  display: block;
}
.sc_loc .tra_info {
  position: relative;
  width: 100%;
  max-width: 900px;
  padding: 30px 15px;
}
.sc_loc .tra_info .t {
  position: relative;
  font-size: 1.375rem;
  color: #0082ff;
}
.sc_loc .tra_info li {
  font-size: 1rem;
  font-weight: 300;
  margin: 5px 0;
}
.sc_loc .cta_box {
  padding: 20px 0;
  text-align: center;
}

.sc_active {
  padding: 0 0 50px;
}
.sc_active .container {
  padding: 0 50px 30px;
}
.sc_active ol {
  font-size: 0.8125rem;
}
.sc_active ol li {
  margin: 5px auto;
}
.sc_active .policy_cnt {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.sc_active .policy_cnt a {
  position: relative;
  width: 250px;
  display: block;
}

.sc_logos {
  position: relative;
  width: 100%;
  padding: 30px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 130, 255, 0), #0082ff);
}
.sc_logos_bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  height: 100%;
  z-index: 0;
  mix-blend-mode: screen;
}
.sc_logos .container {
  position: relative;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.sc_logos .g {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 30px 0;
}
.sc_logos .g .t {
  position: relative;
  flex: 0 0 auto;
  font-size: 1.125rem;
  font-weight: normal;
}
.sc_logos .g .logos {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.sc_logos .g .logo {
  position: relative;
  width: auto;
  max-width: 250px;
  display: block;
  margin: 0;
  box-sizing: border-box;
  padding: 10px 25px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  transition: all 0.2s ease-out;
}
.sc_logos .g .logo img {
  position: relative;
  width: auto;
  height: 100%;
  max-height: 40px;
}
.sc_logos .g .logo:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.modal .modal-dialog {
  max-width: 800px;
}
.modal .modal-content {
  padding: 20px 30px;
  border-radius: 20px;
}
.modal .modal-header {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: 1px solid #0082ff;
}
.modal .modal-header .modal-title {
  font-size: 24px;
  font-weight: bold;
  display: block;
}
.modal .modal-header .sub {
  position: relative;
  margin: 5px 0 0 0;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 300;
  color: #1d1d1d;
  display: block;
}
.modal .modal-header .close {
  position: absolute;
  top: 25px;
  right: 30px;
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.modal .modal-header .close:hover {
  transform: rotate(180deg);
}
.modal .modal-body {
  font-size: 20px;
  font-weight: 300;
  color: #1d1d1d;
  line-height: 1.6;
}
.modal .modal-body span {
  font-weight: bold;
}
.modal .modal-body .cnt {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 0;
  margin: 10px 0;
  font-size: 18px;
  border: dashed rgba(0, 130, 255, 0.3);
  border-width: 1px 0 1px 0;
}
.modal .modal-body .t {
  color: #0082ff;
  display: block;
  cursor: pointer;
}
.modal .modal-body ol {
  list-style: decimal;
  padding: 0 0 0 20px;
}
.modal .modal-body ul {
  font-size: 18px;
  list-style: disc;
  padding: 0 0 0 20px;
}
.modal .modal-body .logo {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0 25px;
  text-decoration: none;
}
.modal .modal-body .logo img {
  position: relative;
  width: 100%;
  max-width: 250px;
  height: auto;
  box-sizing: border-box;
  padding: 25px 45px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease-out;
}
.modal .modal-body .logo img:hover {
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}
.modal .modal-footer {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 0;
}
.modal .modal-footer .ps {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin: 0 0 20px 0;
}
.modal .modal-footer .btn {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  padding: 17px 40px;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 10px;
  color: #fff;
  background-color: #0082ff;
  border: 1px solid #0082ff;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.modal .modal-footer .btn:hover {
  color: #0082ff;
  background-color: #fff;
}

.popupLive {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}
.popupLive-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.popupLive-cnt {
  position: relative;
  box-sizing: content-box;
  padding: 10px 30px 30px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.popupLive-cnt .popupLive-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 25px;
  height: 25px;
  display: block;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.popupLive-cnt .popupLive-close:hover {
  transform: rotate(180deg);
}
.popupLive-cnt-t {
  position: relative;
  width: 350px;
  display: block;
  margin: 0 0 35px;
  padding: 10px 5px;
  border-bottom: 1px solid #0082ff;
  text-align: center;
  font-size: 1.375rem;
  font-weight: bold;
}
.popupLive-cnt-w {
  position: relative;
  border-radius: 15px;
  background-color: #fff;
  text-align: center;
  font-size: 1.375rem;
  font-weight: bold;
}
.popupLive-cnt-w a {
  color: #0082ff;
  text-decoration: underline;
}

@media (max-width: 1550px) {
  .g_kv .kv_tit {
    transform: translateY(-50%);
  }
  .g_kv .kv_tit .t1 {
    padding: 0 5%;
    font-size: 1.75rem;
  }
  .g_kv .kv_tit .t1 .H1 {
    font-size: 3.125rem;
  }
  .g_kv .kv_tit .t1 .H2 {
    font-size: 1.75rem;
  }
  .g_kv .CTA_btn-inner {
    margin: 20px 0 0;
    padding: 15px 45px;
    font-size: 2rem;
    letter-spacing: 4px;
  }
}
@media (max-width: 1440px) {
  .g_header.is_active .nav_item {
    padding: 4px 0.625rem;
    font-size: 0.75rem;
  }
  .g_kv .kv_tit {
    transform: translateY(-50%);
  }
  .g_kv .kv_tit .t1 {
    padding: 0 5%;
    font-size: 1.75rem;
  }
  .g_kv .kv_tit .t1 .H1 {
    font-size: 2.875rem;
  }
  .g_kv .kv_tit .t1 .H2 {
    font-size: 1.25rem;
  }
  .g_kv .CTA_btn-inner {
    margin: 20px 0 0;
    padding: 15px 45px;
    font-size: 1.75rem;
    letter-spacing: 4px;
  }
  .g_main .container {
    max-width: 1000px;
  }
  .g_main .sc_title {
    margin-bottom: 1.25rem;
  }
  .g_main .sc_title .tit {
    font-size: 1.5rem;
    padding: 0 0.5rem;
  }
  .g_main .sc_title .tit span {
    font-size: 1.25rem;
  }
  .g_main .cta_box {
    padding: 1.25rem 0;
    text-align: center;
  }
  .g_main .cta_box .bttn a {
    font-size: 1.75rem;
  }
  .g_main .cta_box .bttn a span {
    padding: 1.5625rem 5rem;
  }
  .sc_intros .sc_title {
    margin: 0.9375rem auto 0.9375rem;
  }
  .intro_cnt {
    line-height: 1.5;
  }
  .intro_cnt .parag {
    font-size: 0.875rem;
  }
  .intro_cnt .parag img {
    margin: 0.9375rem auto;
  }
  .intro_cnt .parag .lists .list img {
    max-width: 30px;
    padding: 0 15px;
  }
  .intro_cnt .parag .lists .list p {
    font-size: 0.9375rem;
  }
  .sc_agenda {
    padding: 0px 0;
  }
  .sc_agenda .tit {
    font-size: 1.75rem;
  }
  .sc_agenda .container {
    max-width: 1000px;
  }
  .agenda_cnt .table {
    margin: 25px auto 5px;
  }
  .agenda_cnt .table .tr .time {
    font-size: 1rem;
    padding: 15px 0;
  }
  .agenda_cnt .table .tr .infor {
    flex: 1 0 60%;
  }
  .agenda_cnt .table .tr .topic {
    font-size: 1.25rem;
  }
  .agenda_cnt .table .tr .tit {
    padding: 0 0 1rem;
    font-size: 1.125rem;
  }
  .agenda_cnt .table .tr .text {
    font-size: 0.8125rem;
  }
  .agenda_cnt .cta_box {
    padding: 20px 0;
    text-align: center;
  }
  .sc_spk {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0;
  }
  .sc_spk_cnt {
    padding: 40px 0;
    gap: 20px;
  }
  .sc_spk_cnt .spk_item .pic {
    width: 170px;
    height: 170px;
  }
  .sc_logos .container {
    max-width: 1050px;
  }
}
@media (max-width: 768px) {
  .g_header {
    display: none;
  }
  .main_bg .kv_bg_inner-bg {
    background: url(img/kv_bg.jpg) center left/100% auto no-repeat;
  }
  .main_bg .kv_bg_inner-ball {
    background: url(img/kv_ball.png) center right/100% auto no-repeat;
  }
  .g_kv {
    margin: 0;
    height: 90vw;
  }
  .g_kv .kv_bg_inner-bg {
    background: url(img/kv_bg.jpg) top center/cover no-repeat;
    transform-origin: 100% 50%;
  }
  .g_kv .kv_tit {
    transform: translateY(-58%);
  }
  .g_kv .kv_tit .t1 {
    width: calc(100% - 30px);
    padding: 0 15px;
    font-size: 1rem;
  }
  .g_kv .kv_tit .t1 .H1 {
    font-size: 2rem;
  }
  .g_kv .kv_tit .t1 .H2 {
    font-size: 1rem;
  }
  .g_kv .CTA_btn-inner {
    margin: 20px 0 0;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1.375rem;
    letter-spacing: 4px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  }
  .g_kv .timer {
    right: 6%;
    bottom: 5px;
  }
  .container {
    padding: 20px 20px;
  }
  .g_main .sc_title {
    margin-bottom: 1.25rem;
  }
  .g_main .sc_title .tit {
    font-size: 1.5rem;
    padding: 0;
  }
  .g_main .sc_title .tit span {
    font-size: 1.5rem;
  }
  .g_main .cta_box {
    padding: 20px 0;
  }
  .g_main .cta_box .bttn a span {
    border-radius: 3rem;
    padding: 1.5625rem 5rem;
  }
  .sc_intros .sc_title {
    margin: 0 auto 0.9375rem;
  }
  .sc_intros .container {
    padding: 0 30px;
  }
  .intro_cnt .parag {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  .intro_cnt .lists {
    flex-direction: column;
    gap: 20px;
  }
  .intro_cnt .lists .list .info .ss {
    flex: 0 1 auto;
    width: 100%;
    padding: 10px 15px;
    font-size: 1rem;
  }
  .sc_agenda {
    padding: 0 0;
  }
  .sc_agenda .tit {
    font-size: 1.75rem;
  }
  .agenda_cnt .table {
    margin: 25px auto;
  }
  .agenda_cnt .table .tr {
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    padding: 0;
  }
  .agenda_cnt .table .tr.HL .time {
    position: relative;
    flex: 0 0 0px;
    padding: 0;
    width: 100%;
  }
  .agenda_cnt .table .tr .time {
    padding: 15px;
    flex: 0 1 auto;
    font-size: 1.25rem;
    align-items: flex-start;
  }
  .agenda_cnt .table .tr .time .ts {
    width: 90%;
  }
  .agenda_cnt .table .tr .infor {
    padding: 0;
    flex: 0 1 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
  }
  .agenda_cnt .table .tr .infor .td {
    flex: 0 1 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: flex-start;
    border: 1px solid rgba(0, 130, 255, 0.1);
    border-width: 1px 0 0 0;
  }
  .agenda_cnt .table .tr .infor .td .up {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: flex-start;
  }
  .agenda_cnt .table .tr .infor .td .up .topic {
    position: relative;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0082ff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .agenda_cnt .table .tr .infor .td .up .topic span {
    padding: 0 0 10px;
  }
  .agenda_cnt .table .tr .infor .td .tit {
    position: relative;
    box-sizing: border-box;
    padding: 0.5rem 0 1rem;
    font-size: 1.125rem;
    font-weight: bold;
    text-align: left;
    color: #1d1d1d;
  }
  .agenda_cnt .table .tr .infor .td .tit span {
    position: relative;
    display: block;
    font-size: 1rem;
    font-weight: 300;
  }
  .agenda_cnt .cta_box {
    padding: 20px 0;
    text-align: center;
  }
  .sc_spk {
    padding: 30px 0;
  }
  .sc_spk_cnt {
    padding: 20px 0;
    gap: 15px;
  }
  .sc_spk_cnt .spk_item {
    flex: 0 1 calc(50% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
  }
  .sc_spk_cnt .spk_item .pic {
    width: 160px;
    height: 160px;
    padding: 5px;
  }
  .sc_spk_cnt .spk_item .label {
    margin: 10px auto 0;
    padding: 5px 15px;
    font-size: 1.25rem;
  }
  .sc_spk_cnt .spk_item .n {
    margin: 10px auto;
    font-size: 1.25rem;
  }
  .sc_spk_cnt .spk_item .t {
    margin: 0 auto;
    font-size: 1rem;
  }
  .sc_gift {
    padding: 40px 0 40px;
  }
  .sc_gift .gift_cnt {
    width: 90%;
    margin: 15px auto;
    padding: 25px 25px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .sc_gift .gift_cnt .info {
    position: relative;
  }
  .sc_gift .gift_cnt .info .t {
    position: relative;
    display: inline-block;
    justify-content: center;
    align-items: center;
    background-color: #0082ff;
    color: #fff;
    padding: 5px 15px;
    font-size: 1.125rem;
    font-weight: bold;
    border-radius: 5px;
  }
  .sc_gift .gift_cnt .info .w {
    position: relative;
    font-size: 1rem;
    margin: 25px 0;
    line-height: 1.4;
    color: #fff;
  }
  .sc_gift .gift_cnt .info .ps {
    position: relative;
    display: inline-block;
    font-size: 0.875rem;
    margin: 0 15px;
    line-height: 1.4;
    color: #666;
  }
  .sc_gift .gift_cnt .pic {
    position: relative;
    width: 100%;
    max-width: 200px;
    margin: 0 25px;
    border-radius: 10px;
    overflow: hidden;
  }
  .sc_gift .gift_cnt .pic img {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }
  .sc_loc {
    padding: 2.5rem 0;
  }
  .sc_active .container {
    padding: 0 20px 30px;
  }
  .sc_active ol {
    font-size: 0.8125rem;
    padding: 0 0 0 10px;
  }
  .sc_active ol li {
    margin: 5px auto;
  }
  .sc_logos {
    padding: 10px 20px 30px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .sc_logos .g {
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .sc_logos .g .t {
    font-size: 1.125rem;
  }
  .sc_logos .g .logos {
    flex-direction: column;
    align-items: flex-start;
  }
  .sc_logos .g .logo {
    margin: 15px 0;
  }
  .modal .modal-dialog {
    max-width: 800px;
  }
  .modal .modal-content {
    margin: 50px auto;
    padding: 10px 20px;
  }
  .modal .modal-header .modal-title {
    font-size: 24px;
  }
  .modal .modal-header .sub {
    font-size: 16px;
  }
  .modal .modal-body {
    font-size: 16px;
    line-height: 1.3;
  }
  .modal .modal-footer .ps {
    font-size: 18px;
    margin: 0 0 20px 0;
    line-height: 1.3;
  }
  .modal .modal-footer .btn {
    padding: 17px 40px;
    font-size: 24px;
  }
}/*# sourceMappingURL=style.css.map */