body {
  font-family: "Noto Sans TC", sans-serif;
  background: url("img/kv/kv_bg.jpg") 100% center/cover fixed;
}

.main_color {
  color: #1C1366;
}

.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_calendar {
  background-color: transparent;
  border-radius: 99%;
}
.fix_aside .fx_item.is_primary {
  background-color: #ffd073;
  color: #1d1d1d;
  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;
  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: 100%;
  transition: all 0.3s ease-in-out;
  background-color: rgba(23, 55, 71, 0.2);
}
.g_header.is_active {
  background-color: rgba(23, 55, 71, 0.8);
}
.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: #14369A;
}
.g_header .nav_area {
  position: relative;
  z-index: 3;
}
.g_header .nav_area .act_logo {
  padding: 0 0 0 5%;
}
.g_header .nav_area .act_logo img {
  width: 250px;
}
.g_header .nav_area .nav_content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.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: white;
  transition: all 0.3s ease-in-out;
}
.g_header .nav_area .nav_link:hover {
  color: white;
  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;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.bttn .bttn_inner:hover {
  transform: scale(1.1);
}
.bttn .xl_size {
  font-size: 2em;
}
.bttn .lg_size {
  max-width: 100%;
}
.bttn .sm_size {
  font-size: 1em;
}
.bttn .xs_size {
  padding: 0.35em 1em;
  font-size: 0.95em;
}
.bttn .dark_b {
  border-width: 0;
  background-color: #000;
  color: #1C1366;
}
.bttn .dark_b:hover {
  background-color: #160f02;
}
.bttn .sub_b {
  border: none;
  background-color: transparent;
  color: rgb(98, 207, 251);
  margin: 0.5rem 0;
  border-radius: 5px;
  text-decoration: none;
  border: solid 1px rgb(98, 207, 251);
  padding: 0.2rem 0.5rem;
  font-size: 14px;
}
.bttn .sub_b:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

#galaxy {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
#galaxy .tit {
  position: absolute;
  width: 49.4791666667%;
  margin-top: 3%;
}
#galaxy .tit .tri_top {
  position: absolute;
  width: 24.2105263158%;
  margin-left: 43%;
  animation: road_sale2 2s ease-out infinite alternate both;
}
#galaxy .tit .tri_top img {
  width: 100%;
  max-width: 100%;
}
#galaxy .tit .tri_bottom {
  position: absolute;
  width: 100%;
  margin-top: 50%;
  margin-left: 5%;
  animation: road_sale 2s ease-out infinite alternate both;
}
#galaxy .tit .tri_bottom img {
  width: 100%;
  max-width: 100%;
}
@keyframes road_sale {
  0% {
    transform: scale(1) translateY(0px);
  }
  60% {
    transform: scale(1.05) translateY(40px);
  }
  100% {
    transform: scale(1.05) translateY(40px);
  }
}
@keyframes road_sale2 {
  0% {
    transform: scale(1) translateY(0px);
  }
  60% {
    transform: scale(1.05) translateY(-40px);
  }
  100% {
    transform: scale(1.05) translateY(-40px);
  }
}
#galaxy .tit .car_area {
  position: absolute;
  width: 29.4736842105%;
  margin-top: 49%;
  margin-left: 15%;
}
#galaxy .tit .car_area img {
  position: absolute;
  width: 52%;
  max-width: 100%;
}
#galaxy .tit .car_area img.car_light {
  width: 100%;
  mix-blend-mode: screen;
  filter: brightness(150%);
  animation: car_move 0.1s linear infinite alternate-reverse both, car_light 2.5s ease-out infinite normal both;
}
#galaxy .tit .car_area img.car {
  margin-top: 37%;
  margin-left: 16%;
  animation: car_move 0.1s linear infinite alternate-reverse both;
}
#galaxy .tit .bike_area {
  position: absolute;
  width: 26.3157894737%;
  margin-top: 53%;
  margin-left: 64%;
}
#galaxy .tit .bike_area img {
  position: absolute;
  width: 45%;
  max-width: 100%;
}
#galaxy .tit .bike_area img.bike_light {
  width: 100%;
  mix-blend-mode: screen;
  filter: brightness(200%);
  animation: car_move 0.1s linear infinite 0.5s alternate-reverse both, car_light 2.5s ease-out infinite 1s normal both;
}
#galaxy .tit .bike_area img.bike {
  margin-top: 30%;
  margin-left: 47%;
  animation: car_move 0.1s linear infinite 0.5s alternate-reverse both;
}
@keyframes car_move {
  0% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(-1px);
  }
}
@keyframes car_light {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  51% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  61% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
}
#galaxy .tit2 {
  position: absolute;
  width: 84.5833333333%;
  top: 30%;
  z-index: 1;
  left: 10%;
}
#galaxy .tit2 .t1 {
  position: absolute;
  width: 80.0492610837%;
  margin-left: 0;
  margin-top: 0%;
}
#galaxy .tit2 .t1.en {
  width: 92.3645320197%;
}
#galaxy .tit2 .t1 img {
  width: 100%;
  max-width: 100%;
}
#galaxy .tit2 .t2 {
  position: absolute;
  width: 45.197044335%;
  margin-left: 48%;
  margin-top: 0%;
}
#galaxy .tit2 .t2 img {
  width: 100%;
  max-width: 100%;
}
#galaxy .tit2 .t3 {
  position: absolute;
  margin-top: 30%;
  margin-left: 80%;
  width: 12.315270936%;
}
#galaxy .tit2 .t3 img {
  width: 100%;
  max-width: 100%;
}
#galaxy .tit2 .df_logo {
  position: absolute;
  width: 24.6792913867%;
  right: 0;
}
#galaxy .tit2 .df_logo img {
  width: 100%;
  max-width: 100%;
}
#galaxy .timer {
  color: #fff;
  text-align: center;
  letter-spacing: -4px;
  z-index: 3;
  margin-left: 53%;
  margin-top: 34%;
  display: inline-block;
}
#galaxy .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;
}
#galaxy .timer .tb::after {
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  line-height: 1;
  text-align: center;
  font-weight: 300;
  color: white;
}
#galaxy .timer .tb span {
  position: absolute;
  left: 50%;
  top: calc(50% - 0.5rem);
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
}
#galaxy .timer .d {
  border-radius: 1rem 0 0 1rem;
}
#galaxy .timer .d::after {
  content: "day";
}
#galaxy .timer .h::after {
  content: "hour";
}
#galaxy .timer .m::after {
  content: "min";
}
#galaxy .timer .s {
  border-radius: 0 1rem 1rem 0;
}
#galaxy .timer .s::after {
  content: "sec";
}
#galaxy .date {
  position: absolute;
  left: 9.375%;
  bottom: 170px;
  color: #ffc000;
  display: flex;
  align-items: flex-end;
  font-size: 1.33vw;
  text-shadow: 0 3px 2px rgba(0, 0, 0, 0.33);
  font-weight: 500;
  line-height: 1.2;
}
#galaxy .date .d {
  font-size: 2.5rem;
}
#galaxy .date .l {
  font-size: 1.25rem;
  display: block;
  margin: 0 10px;
}
#galaxy .date .n {
  font-size: 2.5rem;
}
#galaxy .date .time_glow {
  position: absolute;
  bottom: -45px;
  left: -25%;
  width: 150%;
  height: auto;
}

.xxxxxxx {
  color: rgba(0, 0, 0, 0);
}
.g_main {
  overflow: hidden;
}

.main_sc {
  padding: 30px 0 20px 0;
}

.sc_title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1em;
}
.sc_title.en .tit {
  letter-spacing: 0;
}
.sc_title .sub_tit {
  color: #FFE700;
  color: 0.6em;
  letter-spacing: 5px;
}
.sc_title .tit {
  font-weight: bold;
  letter-spacing: 5px;
  color: white;
  align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sc_title .tit.sp {
  color: white;
  font-weight: 550;
}
.sc_title .tit span {
  font-size: 1.4rem;
  letter-spacing: initial;
}
.sc_title .tit.c_main {
  color: #ff8c00;
}
.sc_title .tit.c_white {
  color: #fff;
}

.intro_cnt2 {
  margin: 2.5rem 0 3em 0;
}

.event_row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 !important;
  margin-top: 10%;
}
.event_row .event {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 50px;
  background: url("img/circle.png");
  width: 300px;
  background-position: center center;
  background-size: cover;
  height: 300px;
  border-radius: 50%;
  box-shadow: 3px 8px 25px rgba(0, 0, 0, 0.4);
}
.event_row .event .title {
  color: #005088;
  font-size: 24px;
  font-weight: bold;
  line-height: 3rem;
}
.event_row .event .content {
  color: #14629a;
  font-size: 20px;
  font-weight: bold;
}

.intro_cnt {
  padding: 2rem 2rem 0 2rem;
  text-align: center;
  font-size: 1.1rem;
}
.intro_cnt.en {
  text-align: left;
}
.intro_cnt.en p {
  text-align: left;
}
.intro_cnt .info {
  margin: 5% 0 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.intro_cnt .info .deco {
  width: 100%;
  margin-top: 3%;
}
.intro_cnt .info .deco img {
  width: 100%;
  max-width: 100%;
}
.intro_cnt .info .deco.deco1 {
  transform: rotate(180deg);
  margin-bottom: 3%;
}
.intro_cnt .info .date {
  background: -webkit-linear-gradient(#ffffff 30%, #00ff9d 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 32px;
}
.intro_cnt .info .location {
  color: #a4ffdc;
  margin: 0.5rem 0;
  letter-spacing: 0.2rem;
  font-weight: normal;
  font-size: 20px;
}
.intro_cnt .info .location.en {
  font-size: 18px;
}
.intro_cnt .info .sign_btn {
  background: #fdcf5e;
  padding: 6px 50px;
  border-radius: 25px;
  margin-top: 3%;
  transition: all 0.6s;
  border: solid 2px #fdcf5e;
}
.intro_cnt .info .sign_btn a {
  font-size: 24px;
  letter-spacing: 0.2rem;
  font-weight: bold;
  color: #173746;
  text-decoration: none;
}
.intro_cnt .info .sign_btn:hover {
  background: #173746;
  transition: all 0.6s;
}
.intro_cnt .info .sign_btn:hover a {
  color: #fdcf5e;
}
.intro_cnt .heightlight {
  color: #fff7aa;
  font-weight: bold;
  line-height: 40px;
  font-size: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.2rem;
}
.intro_cnt .heightlight2 {
  font-size: 1.35rem;
  color: #EB8D00;
  font-weight: bold;
}
.intro_cnt .invite {
  text-align: right;
}
.intro_cnt .intro_part2 {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
  padding: 0 15%;
}
.intro_cnt .intro_part2 .title_list {
  padding: 3% 0;
  border-radius: 15px 15px 0 0;
  margin: 3% 0 0 0;
  color: #004B8F;
  font-weight: 600 !important;
}
.intro_cnt .intro_part2 .block {
  color: white;
  padding: 3% 0;
}
.intro_cnt .intro_part2 .block1 {
  border-radius: 15px 15px 0 0;
  background: linear-gradient(-90deg, #2136ed, rgba(33, 54, 237, 0.5));
}
.intro_cnt .intro_part2 .block2 {
  background: linear-gradient(90deg, #d47afb, rgba(212, 122, 251, 0.5));
}
.intro_cnt .intro_part2 .block3 {
  background: linear-gradient(90deg, #d43b30, rgba(212, 59, 48, 0.5));
}
.intro_cnt .intro_part2 .block4 {
  border-radius: 0 0 15px 15px;
  background: linear-gradient(-90deg, #00b643, rgba(0, 182, 67, 0.5));
}
.intro_cnt .title1 {
  color: #4EF2EF;
  font-weight: 500 !important;
  text-align: left;
}
.intro_cnt .title2 {
  margin-top: 3vw;
}
.intro_cnt .highlight_tit {
  color: #1C1366;
  font-size: 1.65em;
  font-weight: 700;
  margin-bottom: 1em;
  line-height: 1;
}
.intro_cnt p {
  color: white;
  text-align: center;
  margin-bottom: 0.5em;
  padding: 0.25em 0;
  line-height: 1.65;
}
.intro_cnt p span {
  color: #4cff9a;
  font-weight: 500;
}
.intro_cnt p span.span2 {
  color: #7dfffb;
}
.intro_cnt p span.span3 {
  color: #ffe600;
}
.intro_cnt .combain {
  display: inline-block;
  margin: 3rem -20em 5rem -20em;
  padding: 1.5em 1.5em;
  max-width: 100%;
  line-height: 1.2;
  font-size: 1.25em;
  color: white;
  text-align: center;
  background: linear-gradient(90deg, #002A46, #00416C 80%);
  border-radius: 50px 10px 50px 10px;
  box-shadow: 5px 10px 30px rgba(0, 42, 70, 0.6);
}
.intro_cnt .combain p {
  font-size: 1.6rem;
  text-align: center;
  margin: 0;
  line-height: 1.2;
}
.intro_cnt .combain .line1 {
  font-weight: 700;
  font-size: 1.4em;
  margin-left: 0.25em;
  margin-right: 0.25em;
  margin-top: 1em;
  vertical-align: middle;
  color: #FDCF5E;
}
.intro_cnt .combain .line2 {
  display: inline-block;
  vertical-align: middle;
  font-size: 1em;
  margin-bottom: 0.8em;
}

.cta_cnt {
  margin: 10px 0 30px 0;
  padding-bottom: 20px;
}
.cta_cnt .bttns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gift_cnt {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.gift_cnt .gift_item {
  flex: 0 0 35%;
  padding: 15px 30px;
  border-left: solid rgba(0, 0, 0, 0.1);
  border-width: 0 1px;
  text-align: center;
}
.gift_cnt .gift_item:nth-child(1) {
  border-left: 0;
}
.gift_cnt .gift_item .pic {
  border-radius: 4px;
  margin-bottom: 10px;
  box-shadow: 0 #ddd;
}
.gift_cnt .gift_item .pic img {
  display: block;
  margin: 0 auto;
  width: 60%;
}
.gift_cnt .gift_item .tit {
  color: #00FE9C;
  margin-bottom: 4px;
  font-size: 22px;
}
.gift_cnt .gift_item .name {
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1.2;
  color: #FDCF5E;
}
.gift_cnt .gift_item .text {
  color: white;
  margin-top: 4px;
}

.sc_agenda .tit {
  color: white;
}
.sc_agenda .sub_tit {
  margin-top: 1em;
}

.agd_cnt {
  background-color: transparent;
  margin-bottom: 20px;
  line-height: 1.3;
  padding: 0 0 0 20px;
  box-sizing: border-box;
  outline-offset: 10px;
  border-radius: 0%;
}
.agd_cnt .speaker_container {
  padding: 0;
  text-align: left;
  margin-left: -14px;
}
.agd_cnt .td_time_title {
  color: #ffffff !important;
  font-size: initial;
  font-weight: 400 !important;
}
.agd_cnt .tr {
  display: flex;
  align-items: center;
  border-bottom: 0.5px solid #87f1ff;
  box-sizing: border-box;
  padding: 0;
}
.agd_cnt .tr.tr_light {
  background-color: rgba(21, 47, 59, 0.5);
}
.agd_cnt .tr_head {
  border-radius: 10px 10px 0 0;
  color: white;
}
.agd_cnt .td {
  padding: 0.6em 0.8em;
}
.agd_cnt .td_time {
  color: white;
  flex: 0 0 15%;
  font-size: 1.1rem;
  font-weight: 550;
  text-align: center;
}
.agd_cnt .td_title {
  display: inline-flex;
  align-items: top;
  color: white;
}
.agd_cnt .ag_tit {
  flex: 1 1 auto;
  margin-right: 0.5em;
  font-size: 1.125em;
}
.agd_cnt .topic_toggle {
  flex: 0 0 100px;
}
.agd_cnt .ag_spk {
  line-height: 1.35;
}
.agd_cnt .ag_spk img {
  width: 150px;
}
.agd_cnt .ag_spk + .ag_spk_tit {
  margin-top: 15px;
}
.agd_cnt .ag_spk + .ag_spk {
  margin-top: 6px;
}
.agd_cnt .ag_spk .job {
  color: #b4fff9;
}
.agd_cnt .ag_spk .name {
  font-size: 1.2rem;
  margin-top: 0.2rem;
  color: #28ABE2;
  font-weight: 550;
}
.agd_cnt .ag_spk_tit {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  margin-bottom: 0.4em;
  padding-bottom: 0.2em;
  font-size: 0.875em;
  color: #343a40;
}

.agd_normal .td_title {
  flex: 0 1 50%;
  padding: 0.8rem 3rem;
}
.agd_normal .td_time2 {
  flex: 0 0 15%;
}
.agd_normal .td_title2 {
  flex: 1 1 40%;
  padding: 0.8rem 3rem;
  width: 100%;
}
.agd_normal .td_title2 .track_title {
  display: none;
}
.agd_normal .td_title2 .span1 {
  color: #FF12FB;
  display: none;
}
.agd_normal .td_title2 .span2 {
  color: #ffe700;
  font-size: 1rem;
}
.agd_normal .td_title2 .span3 {
  color: #15d9fd;
}
.agd_normal .time_title_sp {
  font-size: 1.4rem;
  font-weight: bold !important;
  color: rgb(230, 165, 15) !important;
}
.agd_normal .td_title2_sp {
  display: inline-block;
  text-align: left;
  font-size: 1.4rem;
  font-weight: bold;
  color: white;
  background-color: #005BAA;
}
.agd_normal .td_title2_sp2 {
  display: inline-block;
  text-align: left;
  font-size: 1.4rem;
  font-weight: bold;
  color: white;
  background-color: #009040;
}
.agd_normal .td_speaker {
  flex: 0 1 35%;
}
.agd_normal .td_speaker .br_blank {
  display: block;
  content: " ";
  margin-top: 10px;
}
.agd_normal .td_speaker .header {
  color: #F5B317;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.agd_split .tr {
  align-items: stretch;
}
.agd_split .td {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.agd_split .topic_toggle {
  flex: 0 0 0;
  margin: 10px 0;
}
.agd_split .tr_split_tit {
  color: #fff;
}
.agd_split .tr_split_tit .td_split {
  border-radius: 20px 20px 0 0;
}
.agd_split .tr_split_tit .td_split.sp1 {
  background-color: #1C1366;
}
.agd_split .tr_split_tit .td_split.sp2 {
  background-color: #FDCF5E;
}
.agd_split .sp1 {
  flex: 0 1 50%;
  border-left: 5px solid #1C1366;
}
.agd_split .sp2 {
  flex: 0 1 50%;
  border-left: 5px solid #FDCF5E;
}
.agd_split .ag_spk {
  margin-top: 0.2rem;
  padding: 0.2rem 0;
}

.ag_tip {
  text-align: center;
  color: white;
}

.button-sign {
  left: 50%;
  transform: translateX(-50%);
  margin-top: 5%;
  position: relative;
  overflow: hidden;
  border: 2px solid #FDCF5E;
  border-radius: 10px;
  color: #FDCF5E;
  display: inline-block;
  font-size: 24px;
  line-height: 15px;
  padding: 2% 8%;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  font-weight: 550;
  letter-spacing: 0.2rem;
  transition: all 0.6s;
  transform-origin: 0% 50%;
}
.button-sign:hover {
  transform: scale(1.1) translateX(-50%);
  color: #FDCF5E;
  text-decoration: none;
}

.sc_speaker .tit {
  margin-top: 3%;
  color: white;
  font-weight: 600;
}

.speaker_items0 .item {
  flex: 0 0 25% !important;
}
.speaker_items0 .item .pic {
  max-width: 80% !important;
  border-radius: 100%;
}

.speaker_items2 {
  margin-top: 30px;
  justify-content: center !important;
}

.speaker_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.speaker_items .item {
  flex: 0 0 20%;
  padding: 0 10px;
  text-align: center;
  margin-bottom: 50px;
}
.speaker_items .item .pic {
  position: relative;
  max-width: 100%;
  margin-bottom: 10px;
  cursor: pointer;
  overflow: hidden;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
  border: 2mm ridge rgba(183, 250, 255, 0.6);
  box-shadow: 1px 5px 30px rgba(12, 17, 22, 0.3);
}
.speaker_items .item .pic img {
  position: relative;
  display: block;
  border-radius: 10px;
  height: auto;
}
.speaker_items .item .pic:hover {
  transform: scale(0.95);
}
.speaker_items .item .job {
  color: white;
  font-weight: 400;
}
.speaker_items .item .name {
  margin-bottom: 6px;
  color: #00FF9D;
  font-size: 1.25em;
  line-height: 1.2;
  margin-top: 10px;
  font-weight: 550;
}
.speaker_items .item .name span {
  display: inline-block;
}

.sc_sponsor .container-fluid {
  max-width: 1440px;
}

.sort_cnt .sorts {
  padding: 20px 0;
  display: flex;
  justify-content: center;
}
.sort_cnt .sorts .item {
  flex: 0 0 auto;
  margin: 0 5px;
}
.sort_cnt .sorts .item_link {
  display: block;
  border-radius: 8px;
  padding: 0.75em 1.5em;
  background-color: rgb(255, 230, 100);
  font-size: 1em;
  line-height: 1;
  color: #005088;
  cursor: pointer;
  transition: all 250ms;
}
.sort_cnt .sorts .item_link:hover {
  text-decoration: none;
  background-color: #005088;
}
.sort_cnt .sorts .item_link.is_active {
  background-color: #005088;
  color: white;
}

.sponsor_cnt {
  padding: 20px 0;
}
.sponsor_cnt .sponsors {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}
.sponsor_cnt .sp_row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.sponsor_cnt .sp_row .spr_item {
  flex: 0 0 25%;
  padding: 10px;
}
.sponsor_cnt .sp_row .spr_item .for_test {
  display: none;
}
.sponsor_cnt .sp_row .spr_item .link {
  display: block;
  border-radius: 10px;
  background-color: #fff;
}

.sc_gift {
  margin: 3rem 0;
}
.sc_gift .container-fluid {
  max-width: 1280px;
}

.gift_cnt .items {
  display: flex;
}
.gift_cnt .item {
  flex: 0 0 25%;
  padding: 0 10px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.gift_cnt .item .tit {
  border-radius: 2px;
  margin: 0 auto;
  margin-top: -1.5em;
  padding: 0.5em 1em;
  background-color: #5C13CA;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  font-size: 1.5em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px rgba(0, 0, 0, 0.2);
}
.gift_cnt .item .img {
  border-radius: 50%;
  max-width: 250px;
  background: linear-gradient(135deg, #1C1366, #242AE6, #5C13CA);
  padding: 6px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}
.gift_cnt .item .img img {
  border-radius: 50%;
  max-width: 100%;
  display: block;
  background-color: #fff;
}
.gift_cnt .item .text {
  margin-top: 20px;
}

.sc_exhibition .exhibition_cnt .pic_area {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sc_exhibition .exhibition_cnt .pic_area .picA, .sc_exhibition .exhibition_cnt .pic_area .picB {
  padding: 20px;
}
.sc_exhibition .exhibition_cnt .pic_area .picA img, .sc_exhibition .exhibition_cnt .pic_area .picB img {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: rgba(46, 175, 240, 0.4) 0px 5px, rgba(46, 166, 240, 0.3) 0px 10px, rgba(46, 149, 240, 0.2) 0px 15px, rgba(46, 120, 240, 0.1) 0px 20px, rgba(46, 124, 240, 0.05) 0px 25px;
}
.sc_exhibition .exhibition_cnt .content_area {
  color: white;
  padding: 20px;
}
.sc_exhibition .exhibition_cnt .content_area span a {
  color: #fdcf5e;
  text-decoration: underline;
}

.slick_area {
  padding: 3% 0;
  background-color: rgba(0, 54, 83, 0.6);
}
.slick_area img {
  max-width: 100%;
}
.slick_area .slick-prev {
  left: 200px;
  z-index: 1;
}
.slick_area .slick-prev:before {
  font-size: 32px;
}
.slick_area .slick-next {
  right: 200px;
}
.slick_area .slick-next:before {
  font-size: 32px;
}
.slick_area .title {
  font-weight: 500;
  letter-spacing: 5px;
  color: #4df2ef;
  align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}
.slick_area .slider {
  margin-top: 2%;
}
.slick_area .slider .slick-dots li button:before {
  color: white;
}
.slick_area .slider .slide {
  margin: 0 3%;
}
.slick_area .slider .slide a {
  max-width: 100%;
}
.slick_area .slider .slide a img {
  width: 100%;
  max-width: 100%;
}
.slick_area .slider .slide .slide_text {
  color: #FFE700;
  margin-top: 2%;
}

.location_cnt .loc_map {
  margin-top: 1%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.location_cnt .loc_map .loc_top {
  display: flex;
  text-align: center;
  justify-content: center;
  flex-direction: column;
}
.location_cnt .loc_map .loc_top .loc {
  color: #223F47;
  font-size: 1.5em;
  margin: 0 0.5em 10px;
  background-color: rgb(255, 230, 100);
  border-radius: 6px;
  font-weight: bold;
}
.location_cnt .loc_map .loc_top .loc.en {
  font-size: 18px;
  padding: 0.5rem 1rem;
  text-align: left;
}
.location_cnt .loc_map .loc_top .addr {
  margin: 0 0.5em 10px;
  color: #fff;
}
.location_cnt .loc_map .loc_top .addr.en {
  font-size: 14px;
  text-align: left;
  padding: 0 1rem;
}
.location_cnt .loc_map .transportation {
  padding-left: 25px;
  flex: 0 0 40%;
  color: white;
}
.location_cnt .loc_map .transportation.en {
  flex: 0 0 50%;
}
.location_cnt .loc_map .transportation.en li {
  list-style: none;
}
.location_cnt .loc_map .transportation.en li i {
  font-size: 24px;
  color: #FFE664;
}
.location_cnt .loc_map .transportation span {
  font-size: 20px;
  letter-spacing: 0.4rem;
}
.location_cnt .loc_map .transportation span.en {
  letter-spacing: 0rem;
  color: #FFE664;
  font-weight: bold;
}
.location_cnt .loc_map .transportation li {
  margin: 20px 0;
}
.location_cnt .loc_map .transportation li a {
  text-decoration: underline;
  color: #FDCF5E;
}

.sc_detail {
  color: white;
}
.sc_detail .policy_cnt {
  text-align: center;
}
.sc_detail .list {
  padding-left: 1.5em;
}
.sc_detail .list li {
  padding: 0.25em 0;
  line-height: 1.4;
}
.sc_detail .ps {
  font-size: 0.75rem;
  box-sizing: border-box;
  padding: 0 20px 20px 20px;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.footer p {
  color: white;
  margin: 0;
  padding: 0;
}
.footer a img {
  width: 150px;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
  }
  .g_header {
    background-color: #0E1F26;
  }
  .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_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;
    color: white;
  }
  .g_kv_fixed {
    display: none;
  }
  #galaxy {
    height: 60vh;
    background: url("img/kv/kv_bg.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  #galaxy .tit {
    margin-top: 10%;
    width: 100%;
    margin-left: 0;
    margin-top: 15%;
  }
  #galaxy .tit .tri_top {
    animation: none;
    margin-top: 5%;
  }
  #galaxy .tit .tri_bottom {
    animation: none;
    margin-top: 60%;
  }
  #galaxy .tit .t3 {
    width: 100%;
    margin-top: 42%;
  }
  #galaxy .tit .car_area, #galaxy .tit .bike_area {
    margin-top: 58%;
  }
  #galaxy .tit2 {
    width: 80%;
    margin-top: 8%;
  }
  #galaxy .tit2 .t1 {
    width: 100%;
    margin-top: 6%;
  }
  #galaxy .tit2 .t2 {
    width: 50%;
    margin: 4% 0 0 60%;
  }
  #galaxy .tit2 .t3 {
    width: 30%;
    margin-left: 0;
    margin-top: 25%;
  }
  #galaxy .timer {
    margin-left: 0;
    margin-top: 70%;
    display: none;
  }
  .main_sc {
    padding: 40px 0;
  }
  .sc_title {
    font-size: 1.75rem;
  }
  .sc_title .tit {
    color: white;
    font-size: 1.6rem;
    letter-spacing: initial;
    font-weight: 600;
  }
  .intro_cnt2 .intro_part2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10%;
  }
  .intro_cnt2 .intro_part2 .block {
    width: 100%;
    text-align: center;
    margin: 0rem;
    padding: 0.5rem;
  }
  .intro_cnt {
    font-size: 1.125rem;
    text-align: justify;
    padding: 0;
  }
  .intro_cnt .info .date {
    font-size: 22px;
    text-align: center;
  }
  .intro_cnt .info .location {
    text-align: center;
    font-size: 20px;
  }
  .intro_cnt .combain {
    display: inline-block;
    margin: 0;
    padding: 1em 0;
    width: 100%;
    max-width: 100%;
    line-height: 1.2;
    font-size: 1.2em;
    color: white;
    text-align: center;
    background: linear-gradient(90deg, #002A46, #00416C 80%);
    border-radius: 50px 10px 50px 10px;
    box-shadow: 5px 10px 30px rgba(0, 42, 70, 0.6);
  }
  .intro_cnt .combain p, .intro_cnt .combain .line1 {
    font-size: 0.8em;
  }
  .intro_cnt p {
    padding: 0.5em 1em;
    line-height: 1.5;
  }
  .intro_cnt .title1 {
    text-align: center;
  }
  .event_row {
    flex-direction: column;
  }
  .event_row .event {
    margin: 20px 0;
  }
  .cta_cnt {
    padding: 0;
    margin: 20px 0 0 0;
  }
  .cta_cnt .bttn {
    margin-bottom: 20px;
  }
  .cta_cnt .bttn:last-child {
    margin-bottom: 0;
  }
  .cta_cnt .bttn .bttn_inner {
    font-size: 1.5em;
  }
  .gift_cnt {
    display: block;
    margin-top: 20px;
  }
  .gift_cnt .gift_item {
    padding: 20px 30px;
    border-top: solid rgba(0, 0, 0, 0.1);
    border-left: 0;
    border-width: 1px 0;
  }
  .gift_cnt .gift_item .tit {
    margin-bottom: 6px;
  }
  .gift_cnt .gift_item .name {
    min-height: auto;
  }
  .slick_area {
    margin-top: 0;
  }
  .slick_area .slick-prev {
    left: 30px;
    z-index: 1;
  }
  .slick_area .slick-prev:before {
    font-size: 20px;
  }
  .slick_area .slick-next {
    right: 30px;
  }
  .slick_area .slick-next:before {
    font-size: 20px;
  }
  .sc_agenda .giftItem {
    max-width: 50%;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .sc_agenda .gift {
    margin-top: 10%;
  }
  .sc_agenda .button-sign {
    margin-top: 10%;
    transform: translate(-50%);
    padding: 5% 5%;
  }
  .agd_cnt .speaker_container {
    padding: 0;
    text-align: left;
    margin-left: 0px;
  }
  .agd_cnt .tr {
    display: block;
  }
  .agd_cnt .tr_head {
    display: none;
  }
  .agd_cnt .td {
    padding: 0.2em 1em;
  }
  .agd_cnt .td:first-child {
    padding-top: 1em;
  }
  .agd_cnt .td:last-child {
    padding-bottom: 1em;
  }
  .agd_cnt .td_time {
    text-align: left;
  }
  .agd_cnt .td_title {
    display: block;
  }
  .agd_cnt .td_title .track_title {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 1rem;
  }
  .agd_cnt .td_title .track_title1 {
    margin: 5px 0 5px 0;
    background-color: #7D3A92;
    color: white;
    font-weight: bold;
  }
  .agd_cnt .td_title .track_title2 {
    margin: 20px 0 5px 0;
    background-color: #5D4A9C;
    color: white;
    font-weight: bold;
  }
  .agd_cnt .topic_toggle {
    margin-top: 0.5em;
  }
  .agd_split .td {
    width: 100%;
  }
  .agd_split .tr_split_tit {
    display: none;
  }
  .agd_split .tr_split_tit .td_split {
    flex: 0 0 50%;
    text-align: center;
  }
  .agd_split .tr_split_tit .td_time {
    display: none;
  }
  .agd_split .sp2 {
    border-top: 1px solid;
  }
  .agd_split .td_split.sp1:nth-child(2) {
    padding-bottom: 1em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  }
  .agd_split .td_time.sp2:nth-child(3) {
    padding-top: 1em;
  }
  .sc_speaker .giftItem {
    max-width: 90%;
    margin: 0 0 0 50% !important;
    padding: 0 !important;
  }
  .sc_speaker .sub_tit {
    letter-spacing: initial;
    margin-top: 0.5rem;
  }
  .sc_speaker .container {
    padding: 0;
  }
  .speaker_items2 img {
    width: 250px;
  }
  .speaker_items {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .speaker_items img {
    width: 250px;
  }
  .speaker_items .item {
    flex: 0 0 50%;
    padding: 20px 30px;
  }
  .sort_cnt .sorts {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .sort_cnt .sorts .tit {
    margin: 1.5em 0;
  }
  .sort_cnt .sorts .item {
    margin: 0;
    padding: 3px;
    flex: 0 0 33.33%;
  }
  .sort_cnt .sorts .item_link {
    text-align: center;
    padding: 0.65em 1.3em;
  }
  .sort_cnt .sorts .item_link img {
    width: 100%;
  }
  .sponsor_cnt {
    padding: 0;
  }
  .sponsor_cnt .spr_item {
    flex: 0 0 50%;
    padding: 3px;
  }
  .sponsor_cnt .sp_row {
    flex-direction: column;
  }
  .sc_exhibition .exhibition_cnt {
    flex-direction: column;
  }
  .sc_exhibition .exhibition_cnt .pic_area {
    flex-direction: column;
  }
  .location_cnt .loc_map {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  .location_cnt .loc_map .transportation {
    padding: 0;
  }
}/*# sourceMappingURL=style.css.map */