body {
  font-family: "Noto Sans TC", sans-serif;
  background: #151237;
}

hr {
  background-color: rgba(255, 255, 255, 0.5);
}

.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: #1ae1ee;
  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;
}
.g_header.is_active {
  background-color: rgba(0, 0, 0, 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: #fff;
}
.g_header .nav_area {
  position: relative;
  z-index: 3;
}
.g_header .nav_area .nav_content {
  display: flex;
  justify-content: flex-start;
}
.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: #1ae1ee;
  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: #fff;
  color: #1c1366;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}
.bttn .sub_b:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.g_kv {
  height: 50vw;
  position: relative;
  overflow: hidden;
}
.g_kv .kv_inner {
  margin: 0;
  padding: 0;
  width: 100%;
  position: fixed;
}
.g_kv .kv_inner img {
  width: 100%;
  max-width: 100%;
}
.g_kv .tit {
  position: absolute;
  top: 12%;
  width: 81.8229166667%;
}
.g_kv .tit .logo {
  width: 100vw;
  display: flex;
  justify-content: space-between;
  margin-top: -3.75rem;
}
.g_kv .tit .logo_left {
  width: 100%;
  margin-left: 1vw;
}
.g_kv .tit .logo_left-ASUS {
  width: 30%;
}
.g_kv .tit .logo_right {
  display: flex;
  justify-content: flex-end;
  margin-right: 1vw;
}
.g_kv .tit .logo_right-SIEMENS {
  width: 30%;
}
.g_kv .tit .logo_right-NVIDIA {
  width: 30%;
}
.g_kv .tit .logo_bottom {
  position: absolute;
  bottom: 0%;
  right: 0%;
  transform: translate(-1vw, 930%);
  width: 20%;
}
.g_kv .tit .t1 {
  position: absolute;
  margin-top: 10%;
  margin-left: 5vw;
  width: 60%;
}
.g_kv .tit .t1 img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.g_kv .tit .t2 {
  position: absolute;
  margin-top: 27vw;
  margin-left: 5vw;
  width: 50%;
  max-width: 50%;
}
.g_kv .tit .t2 img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
@keyframes galaxy {
  0% {
    transform: scale(1) rotate(0);
  }
  100% {
    transform: scale(1.3) rotate(10deg);
  }
}
@keyframes galaxy3d {
  0% {
    transform: rotate3d(0);
    -webkit-filter: brightness(100%) blur(0px);
    opacity: 1;
  }
  100% {
    transform: rotate3d(2, -1, -1, -0.1turn);
    -webkit-filter: brightness(150%) blur(5px);
    opacity: 0.8;
  }
}
@keyframes shiny {
  0% {
    opacity: 0.2;
  }
  2.5% {
    opacity: 1;
  }
  5% {
    opacity: 0.2;
  }
  7.5% {
    opacity: 0.5;
  }
  10% {
    opacity: 0.5;
  }
  15% {
    opacity: 0.2;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0.2;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
.g_kv .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;
}
.g_kv .date .d {
  font-size: 2.5rem;
}
.g_kv .date .l {
  font-size: 1.25rem;
  display: block;
  margin: 0 10px;
}
.g_kv .date .n {
  font-size: 2.5rem;
}
.g_kv .date .time_glow {
  position: absolute;
  bottom: -45px;
  left: -25%;
  width: 150%;
  height: auto;
}
.g_kv .timer {
  position: absolute;
  left: 5vw;
  bottom: 2vw;
  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: white;
}
.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";
}

.g_main {
  overflow: hidden;
  position: relative;
  background: linear-gradient(90deg, rgba(1, 2, 4, 0.6) 40%, #042850);
}

.main_sc {
  padding: 50px 0;
}

.sc_title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5em;
}
.sc_title .sub_tit {
  color: white;
  font-size: 0.6em;
  margin: 0;
  padding: 0;
}
.sc_title .tit {
  font-weight: 500;
  letter-spacing: 5px;
  color: #4df2ef;
  align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sc_title .tit.sp {
  color: #000;
  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;
}

.sc_intro .tit-ch {
  font-size: 2.25rem;
  padding: 0;
  margin: 0;
  font-weight: 700;
}
.sc_intro .tit-en {
  font-size: 1.35rem;
  margin-bottom: 2rem;
  font-weight: 500;
}
.sc_intro .titleText {
  display: inline-block;
  color: transparent;
  background: linear-gradient(45deg, #fff, #5ffeff, #2573c5);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  letter-spacing: 0.1rem;
  text-align: center;
}

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

.intro_cnt {
  padding: 0 2rem;
  text-align: center;
  font-size: 1.25rem;
}
.intro_cnt .heightlight {
  color: #ffd073;
  font-weight: 500;
}
.intro_cnt .heightlight2 {
  color: #6ee5fc;
  font-weight: 500;
}
.intro_cnt .invite {
  text-align: right;
}
.intro_cnt .bttn-outer {
  perspective: 500px;
  transform: rotatex(10deg);
  animation: rotateAngle 6s linear infinite;
  margin: auto;
  width: auto;
  text-align: center;
}
.intro_cnt .bttn {
  display: inline-block;
  position: relative;
  margin: 0.5em 0;
  padding: 1.25rem 3.5rem;
  border: 1px solid #55ffd2;
  border-radius: 0.4em;
  text-transform: uppercase;
  font-size: 1.25rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  mix-blend-mode: screen;
  perspective: 500px;
  transform-style: preserve-3d;
  text-decoration: none;
  color: #55ffd2;
}
.intro_cnt .bttn:before,
.intro_cnt button:after {
  --z: 0px;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0;
  mix-blend-mode: inherit;
  border-radius: inherit;
  transform-style: preserve-3d;
  transform: translate3d(calc(var(--z) * 0px), calc(var(--z) * 0px), calc(var(--z) * 0px));
}
.intro_cnt .bttn:after {
  background-color: #5d00ff;
}
.intro_cnt .bttn:before {
  background-color: #00a9d0;
}
.intro_cnt .bttn:hover {
  background-color: #fff;
  color: #00154e;
  transition: background 0.3s 0.1s;
}
.intro_cnt .bttn:hover:before {
  --z: 0.04;
  animation: translateWobble 2.2s ease forwards;
}
.intro_cnt .bttn:hover:after {
  --z: -0.06;
  animation: translateWobble 2.2s ease forwards;
}
@keyframes rotateAngle {
  0% {
    transform: rotateY(0deg) rotateX(10deg);
    animation-timing-function: cubic-bezier(0.61, 1, 0.88, 1);
  }
  25% {
    transform: rotateY(20deg) rotateX(10deg);
  }
  50% {
    transform: rotateY(0deg) rotateX(10deg);
    animation-timing-function: cubic-bezier(0.61, 1, 0.88, 1);
  }
  75% {
    transform: rotateY(-20deg) rotateX(10deg);
  }
  100% {
    transform: rotateY(0deg) rotateX(10deg);
  }
}
@keyframes translateWobble {
  0% {
    opacity: 0;
    transform: translate3d(calc(var(--z) * 0px), calc(var(--z) * 0px), calc(var(--z) * 0px));
  }
  16% {
    transform: translate3d(calc(var(--z) * 160px), calc(var(--z) * 160px), calc(var(--z) * 160px));
  }
  28% {
    opacity: 1;
    transform: translate3d(calc(var(--z) * 70px), calc(var(--z) * 70px), calc(var(--z) * 70px));
  }
  44% {
    transform: translate3d(calc(var(--z) * 130px), calc(var(--z) * 130px), calc(var(--z) * 130px));
  }
  59% {
    transform: translate3d(calc(var(--z) * 85px), calc(var(--z) * 85px), calc(var(--z) * 85px));
  }
  73% {
    transform: translate3d(calc(var(--z) * 110px), calc(var(--z) * 110px), calc(var(--z) * 110px));
  }
  88% {
    opacity: 1;
    transform: translate3d(calc(var(--z) * 90px), calc(var(--z) * 90px), calc(var(--z) * 90px));
  }
  100% {
    opacity: 1;
    transform: translate3d(calc(var(--z) * 100px), calc(var(--z) * 100px), calc(var(--z) * 100px));
  }
}
.intro_cnt .intro_part2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.intro_cnt .intro_part2 .title_list {
  border-radius: 15px 15px 0 0;
  color: white;
  font-weight: bold;
}
.intro_cnt .intro_part2 .block_row {
  display: inline-flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  margin: 2% 0 0 8%;
}
.intro_cnt .intro_part2 .block_row .block {
  display: flex;
  flex-wrap: nowrap;
  color: white;
  text-align: left;
  padding: 5% 0;
}
.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: left;
  margin-bottom: 0.5em;
  padding: 0.25em 0;
  line-height: 1.65;
}
.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;
}

.sc_agenda .tit {
  color: #fff;
}
.sc_agenda .sub_tit {
  margin-top: 1em;
}
.sc_agenda .giftTitle {
  font-size: 1.4rem;
  margin-top: 50px;
  color: #ffd073;
}
.sc_agenda .giftTitle span {
  font-size: 1rem;
  color: white;
}

.agd_info {
  color: rgba(26, 225, 238, 0.6);
  font-size: 1rem;
}

.agd_cnt {
  background: rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
  line-height: 1.3;
  padding: 0 20px 0 20px;
  box-sizing: border-box;
  outline-offset: 10px;
  border-radius: 0%;
}
.agd_cnt .speaker_container {
  padding: 0;
  text-align: left;
  margin-left: -8px;
}
.agd_cnt .td_time_title {
  color: white !important;
}
.agd_cnt .tr {
  display: flex;
  align-items: center;
  border-bottom: 0.5px solid white;
  box-sizing: border-box;
  padding: 0;
}
.agd_cnt .tr.tr_light {
  background-color: rgba(26, 225, 238, 0.1);
}
.agd_cnt .tr_head {
  border-radius: 10px 10px 0 0;
  color: white;
}
.agd_cnt .td {
  padding: 0.6em 1em;
}
.agd_cnt .td_time {
  color: #00eaab;
  flex: 0 0 12em;
  text-align: center;
  align-items: center;
}
.agd_cnt .td_title {
  display: inline-flex;
  align-items: top;
  color: white;
}
.agd_cnt .ag_tit {
  flex: 1 1 45%;
  margin-right: 1em;
  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: rgb(255, 255, 255);
}
.agd_cnt .ag_spk .name {
  font-size: 1.2rem;
  margin-top: 0.2rem;
  color: #1ae1ee;
}
.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 0 42%;
}
.agd_normal .td_time2 {
  flex: 0 0 8em;
}
.agd_normal .td_title2 {
  flex: 1 1 100%;
  padding: 0.8rem 0;
  width: 100%;
}
.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 .speaker_container .br_blank {
  display: block;
  content: " ";
  margin-top: 10px;
}
.agd_normal .speaker_container .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;
}

.sc_gift {
  margin: 40px;
}
.sc_gift .gift_cnt {
  margin-top: 20px;
}
.sc_gift .gift_cnt .gift_item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sc_gift .gift_cnt .gift_item .tit {
  color: #fff;
  border-bottom: 1.5px solid #fff;
  display: inline-block;
  padding: 0.5rem 3vw;
  font-size: 1.25rem;
  letter-spacing: 0.1rem;
  margin-bottom: 1.25rem;
}
.sc_gift .gift_cnt .gift_item .pic {
  border-radius: 4px;
  margin-bottom: 10px;
  box-shadow: 0 #ddd;
  max-width: 300px;
}
.sc_gift .gift_cnt .gift_item .pic img {
  display: block;
  margin: 0 auto;
}
.sc_gift .gift_cnt .gift_item .name {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #1ae1ee;
  margin-top: 0.5rem;
  text-align: center;
}
.sc_gift .gift_cnt .gift_item .num {
  color: white;
  margin: 0.5rem 0;
  font-size: 1.25rem;
}

.sc_location {
  margin-bottom: -50px;
  color: #fff;
  text-align: center;
}
.sc_location .location_cnt .loc_top {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: baseline;
}
.sc_location .location_cnt .loc_top .loc {
  color: #1ae1ee;
  font-size: 1.5em;
  margin: 0 0.5em 10px;
}
.sc_location .location_cnt .loc_top .addr {
  margin: 0 0.5em 10px;
  color: #fff;
}
.sc_location p {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.footer {
  text-align: center;
  padding: 2.75rem 0;
}
.footer img {
  width: 15%;
}

@media (max-width: 768px) {
  .g_header {
    background-color: #151237;
  }
  .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: rgb(118, 118, 118);
  }
  .g_kv_fixed {
    display: none;
  }
  .g_kv {
    height: 100vh;
    background: url("img/kv/kv_bg-mobile.jpg");
    background-position: 70% center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .g_kv .kv_inner {
    display: none;
  }
  .g_kv .tit {
    margin: 0;
    width: 100%;
    max-width: 100%;
    padding: 0;
    left: 0;
  }
  .g_kv .tit .t1 {
    margin-left: 5%;
    margin-top: -5%;
    left: 0;
    width: 90%;
    max-width: 90%;
  }
  .g_kv .tit .t2 {
    margin-top: 30%;
    left: 0;
    width: 80%;
    max-width: 80%;
  }
  .g_kv .tit .logo {
    margin-top: -4rem;
  }
  .g_kv .tit .logo_left {
    margin-left: 0rem;
    width: 125%;
  }
  .g_kv .tit .logo_left-ASUS {
    width: 100%;
  }
  .g_kv .tit .logo_right {
    margin-right: 0rem;
  }
  .g_kv .tit .logo_right-SIEMENS {
    width: 35%;
  }
  .g_kv .tit .logo_right-NVIDIA {
    width: 35%;
  }
  .g_kv .tit .logo_bottom {
    transform: translate(-10%, 142vw);
    width: 35%;
  }
  .g_kv .date {
    font-size: 1rem;
    bottom: 110px;
  }
  .g_kv .date .d {
    font-size: 1.875rem;
  }
  .g_kv .date .l {
    font-size: 0.875rem;
  }
  .g_kv .date .n {
    font-size: 1.875rem;
  }
  .g_kv .date .time_glow {
    bottom: -35px;
  }
  .g_kv .timer {
    left: 25%;
    bottom: 1vw;
  }
  .g_kv .timer .tb {
    width: 3rem;
    height: 3rem;
  }
  .main_sc {
    padding: 40px 0;
  }
  .sc_title {
    font-size: 1.75rem;
  }
  .sc_title .tit {
    color: #4ef2ef;
    font-size: 1.6rem;
    letter-spacing: initial;
  }
  .sc_intro .tit-ch {
    font-size: 1.25rem;
  }
  .sc_intro .tit-en {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0rem;
  }
  .intro_cnt2 .intro_part2 {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .intro_cnt2 .intro_part2 .block {
    width: 100%;
    text-align: center;
    margin: 0.5rem 1rem;
    padding: 0.5rem;
  }
  .intro_cnt {
    font-size: 1rem;
    text-align: justify;
    padding: 0;
  }
  .intro_cnt .button-sign {
    margin-left: 50%;
    transform: translate(-50%);
    padding: 5% 10%;
  }
  .intro_cnt .button-sign span:last-child {
    font-size: 1rem;
  }
  .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.4em;
  }
  .intro_cnt p {
    padding: 0.5em 1em;
    line-height: 1.5;
  }
  .intro_cnt .title1 {
    text-align: center;
  }
  .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;
  }
  .sc_gift {
    margin: 20px;
  }
  .sc_gift .gift_cnt .gift_item .pic {
    max-width: 220px;
  }
  .sc_gift .gift_cnt .gift_item .name {
    font-size: 1.25rem;
  }
  .sc_gift .gift_cnt .gift_item .num {
    font-size: 1rem;
  }
  .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;
  }
  .agd_info {
    font-size: 0.8rem;
  }
  .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 .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 {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .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.2em 1.3em 1.5em 1.3em;
  }
  .sort_cnt .sorts .item_link img {
    width: 100%;
  }
  .sponsor_cnt {
    padding: 0;
  }
  .sponsor_cnt .spr_item {
    flex: 0 0 50%;
    padding: 3px;
  }
  .sc_location .location_cnt {
    display: block;
  }
  .sc_location .location_cnt .loc_top {
    flex-direction: column;
    align-items: center;
  }
  .sc_location .location_cnt .loc_top .loc {
    margin-bottom: 0;
  }
  .sc_location .location_cnt .loc_top .addr {
    margin-bottom: 15px;
  }
  .footer img {
    width: 50%;
  }
}/*# sourceMappingURL=style.css.map */