html {
  scroll-behavior: smooth;
}

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

.wrapper {
  overflow: hidden;
}

.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;
  width: 4em;
  height: 4em;
  margin: 0.5em 0;
  border-radius: 0.5em;
  background-color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.19);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.fix_aside .fx_item.is_calendar {
  background-color: transparent;
  border-radius: 99%;
}
.fix_aside .fx_item.is_boothConnect {
  background-color: transparent;
  border-radius: 99%;
  box-shadow: none;
}
.fix_aside .fx_item.is_boothConnect img {
  width: 100%;
}
.fix_aside .fx_item.is_primary {
  background:
    radial-gradient(ellipse at right, #0a244d, transparent),
    radial-gradient(ellipse at left, #3a82e6, transparent);
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
}
.fix_aside .fx_item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 5px 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.txt {
  width: 100%;
  text-align: center;
}
.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("../../assets/images/ui/arrow_top.png") center/contain
    no-repeat;
}

.g_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 98;
  width: 100%;
}
.g_header.is_active {
  background-color: #000;
}
.g_header .header_cnt {
  position: relative;
  display: flex;
  padding: 0.5rem;
}
.g_header .menu_btn {
  position: relative;
  width: 48px;
  height: 48px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 6px;
}
.g_header .menu_btn .icon {
  position: absolute;
  left: 20%;
  top: 50%;
  display: inline-block;
  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 .nav_area {
  position: relative;
  z-index: 3;
}
.g_header .nav_area .nav_content {
  display: flex;
  justify-content: flex-end;
}
.g_header .nav_area .nav_cnt {
  display: inline-flex;
}
.g_header .nav_area .nav_item {
  font-size: 16px;
  line-height: 1;
}
.g_header .nav_area .nav_item.is_highlight {
  padding: 0 6px;
}
.g_header .nav_area .nav_item.is_highlight .nav_link {
  background-color: #3a82e6;
  color: #fff;
  font-weight: 500;
}
.g_header .nav_area .nav_link {
  display: block;
  padding: 12px;
  border-radius: 4px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.g_header .nav_area .nav_link:hover {
  text-decoration: none;
  transform: translateY(-4px);
}
.g_header .header_sns {
  flex: 1 0 auto;
  padding: 0 12px;
  text-align: right;
}
.g_header .header_sns .hover {
  position: relative;
  display: inline-block;
}
.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;
  display: none;
  padding: 0.5em 0;
}
.g_header .header_sns .hover_menu .hover_item {
  display: block;
  margin-top: 0.5em;
  cursor: pointer;
}

.g_kv {
  position: relative;
  width: 100%;
  height: 100vh;
}
.g_kv .kv_track {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: url("../../assets/images/kv/bg.jpg") top center/100% auto
    no-repeat;
  animation: kv-scale 40s ease-in-out 1s infinite alternate both;
  transform-origin: 0% 50%;
}
.g_kv .df_logo {
  position: absolute;
  z-index: 10;
  left: 3%;
  width: 10%;
  margin-top: 3%;
}
.g_kv .df_logo img {
  width: 100%;
  max-width: 100%;
}
.g_kv .t1 {
  position: absolute;
  width: 50%;
  margin-top: 10%;
  margin-left: 3%;
}
.g_kv .t1 img {
  width: 100%;
  max-width: 100%;
}
.g_kv .t2 {
  position: absolute;
  width: 50%;
  margin-top: 33%;
  margin-left: 5%;
}
.g_kv .t2 img {
  width: 100%;
  max-width: 100%;
}

@keyframes kv-scale {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.g_main {
  position: relative;
  z-index: 1;
}

.main_sc {
  padding: 3rem 0;
}

.sc_title {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2.5rem;
}
.sc_title .tit {
  display: inline-block;
  margin: 0 auto 20px;
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
}

.sc_intro,
.sc_gift,
.sc_location,
.sc_detail {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.5),
    rgb(255, 255, 255),
    rgb(255, 255, 255),
    rgba(255, 255, 255, 0.5)
  );
}

.sc_intro {
  position: relative;
}
.sc_intro .sc_title .tit,
.sc_intro .sc_title .titleText {
  display: inline-block;
  margin: 0 auto;
  font-weight: 600;
  line-height: 1.3;
  color: transparent;
  background: linear-gradient(160deg, #0a244d, #3a82e6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.intro_cnt p {
  color: #000;
  margin-bottom: 0.5em;
  padding: 0.25em 0;
  line-height: 2;
  font-size: 1.125rem;
  font-weight: 400;
  text-align: center;
}
.intro_cnt .feature {
  width: 100%;
  margin-top: 5rem;
}
.intro_cnt .feature .title {
  margin-bottom: 1rem;
  color: #3a82e6;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.intro_cnt .feature > .topic {
  margin: 1.2rem 0 0;
  color: #3a82e6;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}
.intro_cnt .feature .battle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 20px;
  align-items: start;
}
.intro_cnt .feature .battle .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.intro_cnt .feature .battle .topic {
  margin-bottom: 0.5rem;
  color: #3a82e6;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
}
.intro_cnt .feature .battle .des {
  font-size: 1rem;
  line-height: 1.75;
}
.intro_cnt > .feature:first-of-type::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin: 0 auto 2rem;
  background: linear-gradient(
    90deg,
    rgba(58, 130, 230, 0),
    rgba(58, 130, 230, 0.85),
    rgba(58, 130, 230, 0)
  );
}
.intro_cnt > .feature:first-of-type .battle .image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(207, 220, 236, 0.55);
}
.intro_cnt > .feature:first-of-type .battle .image-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.intro_cnt
  > .feature:first-of-type
  .battle
  .item:nth-child(1)
  .image-placeholder
  img,
.intro_cnt
  > .feature:first-of-type
  .battle
  .item:nth-child(2)
  .image-placeholder
  img,
.intro_cnt
  > .feature:first-of-type
  .battle
  .item:nth-child(3)
  .image-placeholder
  img,
.intro_cnt
  > .feature:first-of-type
  .battle
  .item:nth-child(4)
  .image-placeholder
  img {
  transform: none;
}
.intro_cnt > .feature:nth-of-type(2) {
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.intro_cnt > .feature:nth-of-type(2)::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin: 0 auto 2rem;
  background: linear-gradient(
    90deg,
    rgba(58, 130, 230, 0),
    rgba(58, 130, 230, 0.85),
    rgba(58, 130, 230, 0)
  );
}
.intro_cnt > .feature:nth-of-type(2) > .title {
  margin-bottom: 1.4rem;
  font-size: 2rem;
  line-height: 1.45;
}
.intro_cnt > .feature:nth-of-type(2) > p:not(.topic) {
  margin-left: auto;
  margin-right: auto;
  line-height: 2;
}
.intro_cnt > .feature:nth-of-type(2) > .topic {
  margin-top: 1.8rem;
  margin-bottom: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: #3a82e6;
}
.intro_cnt > .feature:nth-of-type(2) > .feature.feature-icons {
  margin-top: 2.75rem;
}
.intro_cnt > .feature:nth-of-type(2) > .feature.feature-icons .battle {
  gap: 28px 24px;
  padding: 0;
}
.intro_cnt > .feature:nth-of-type(2) > .feature.feature-icons .item {
  align-items: center;
  text-align: center;
}
.intro_cnt
  > .feature:nth-of-type(2)
  > .feature.feature-icons
  .image-icon-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: transparent;
  border-radius: 0;
}
.intro_cnt
  > .feature:nth-of-type(2)
  > .feature.feature-icons
  .image-icon-placeholder
  img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 140px;
  max-height: 140px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.intro_cnt > .feature:nth-of-type(2) > .feature.feature-icons .topic {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
  line-height: 1.45;
}
.intro_cnt > .feature:nth-of-type(2) > .feature.feature-icons .des {
  font-size: 1rem;
  line-height: 1.85;
}

.sc_sponsor {
  position: relative;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.2),
    rgb(0, 0, 0),
    rgb(0, 0, 0),
    rgba(0, 0, 0, 0.2)
  );
}
.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: #0a244d;
  font-size: 1em;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  transition: background 250ms;
}
.sort_cnt .sorts .item_link:hover {
  text-decoration: none;
  background-color: rgba(10, 36, 77, 0.6);
}
.sort_cnt .sorts .item_link.is_active {
  background-color: #3a82e6;
}

.sponsor_cnt {
  padding: 20px 0;
}
.sponsor_cnt .sponsors {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.sponsor_cnt .spr_item {
  flex: 0 0 20%;
  padding: 10px;
}
.sponsor_cnt .spr_item .for_test {
  display: none;
}
.sponsor_cnt .spr_item .link {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}
.sponsor_cnt .spr_item img {
  border-radius: 8px;
}

@media (max-width: 768px) {
  .intro_cnt p {
    color: #000;
    margin-bottom: 0.5em;
    padding: 0.25em 0;
    line-height: 2;
    font-size: 1.125rem;
    font-weight: 400;
    text-align: center;
  }
  .intro_cnt .feature {
    margin-top: 2.5rem;
  }
  .intro_cnt .feature .battle {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px 0;
  }
  .intro_cnt > .feature:nth-of-type(2) {
    margin-top: 3.5rem;
    padding-top: 2.25rem;
  }
  .intro_cnt > .feature:nth-of-type(2)::before {
    margin-bottom: 1.5rem;
  }
  .intro_cnt > .feature:nth-of-type(2) > .title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .intro_cnt > .feature:nth-of-type(2) > p:not(.topic) {
    max-width: 100%;
  }
  .intro_cnt > .feature:nth-of-type(2) > .topic {
    margin-top: 1.25rem;
    font-size: 1.15rem;
  }
  .intro_cnt > .feature:nth-of-type(2) > .feature.feature-icons {
    margin-top: 2rem;
    padding-top: 2rem;
  }
  .intro_cnt > .feature:nth-of-type(2) > .feature.feature-icons .battle {
    gap: 20px;
  }
  .intro_cnt
    > .feature:nth-of-type(2)
    > .feature.feature-icons
    .image-icon-placeholder {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }
  .intro_cnt
    > .feature:nth-of-type(2)
    > .feature.feature-icons
    .image-icon-placeholder
    img {
    max-width: 118px;
    max-height: 118px;
  }
  .intro_cnt > .feature:nth-of-type(2) > .feature.feature-icons .topic {
    font-size: 1.1rem;
  }
  .intro_cnt > .feature:nth-of-type(2) > .feature.feature-icons .des {
    font-size: 0.98rem;
    line-height: 1.75;
  }
}
.cta .btn-shine {
  display: inline-block;
  margin-bottom: 0.25rem;
  padding: 0 48px;
  text-align: center;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.5;
  white-space: nowrap;
  text-decoration: none;
  color: transparent;
  background-image:
    linear-gradient(
      100deg,
      rgba(255, 247, 184, 0) 0%,
      rgba(255, 241, 163, 0) 42%,
      rgba(255, 253, 240, 0.95) 49%,
      rgb(255, 241, 163) 50%,
      rgba(255, 253, 240, 0.95) 51%,
      rgba(255, 241, 163, 0) 58%,
      rgba(255, 247, 184, 0) 100%
    ),
    linear-gradient(
      100deg,
      #5eb6b7 0%,
      #4fb8c3 22%,
      #3a82e6 50%,
      #4fb8c3 78%,
      #5eb6b7 100%
    );
  background-size:
    220% 100%,
    100% 100%;
  background-repeat: no-repeat, no-repeat;
  background-position:
    120% 0,
    0 0;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 6.5s linear infinite;
  -webkit-text-size-adjust: none;
}
.cta .cta-time {
  margin: 0.35rem 0 1.5rem !important;
  color: #24364d;
  font-size: 1.35rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08rem !important;
  line-height: 1.6;
  text-align: center;
}
.cta .cta-time span {
  color: #24364d;
  font-weight: 600;
}
.cta .cta-bttn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95em 2.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #4d8df0 0%, #2f73db 100%);
  color: #fff;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(58, 130, 230, 0.22);
  transition: all 0.3s ease;
}
.cta .cta-bttn img {
  width: 16px;
  margin-left: 0.6rem;
  animation: arrow-ani 1.25s ease-in-out infinite;
}
.cta .cta-bttn:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(58, 130, 230, 0.28);
}

@keyframes shine {
  0% {
    background-position:
      120% 0,
      0 0;
  }
  100% {
    background-position:
      -120% 0,
      0 0;
  }
}
.bttn {
  display: inline-block;
}
.bttn .bttn_inner {
  display: block;
  padding: 0.75em 2em;
  border-radius: 5px;
  text-align: center;
  font-size: 1.25em;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.3s;
}
.bttn .bttn_inner:hover {
  text-decoration: none;
}
.bttn .xs_size {
  padding: 0.35em 1em;
  font-size: 0.95em;
}
.bttn .main_b {
  border: 1px solid #3a82e6;
  color: #3a82e6;
  font-weight: 700;
}
.bttn .main_b:hover {
  transform: translateX(10px);
}

@keyframes arrow-ani {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
  100% {
    transform: translateX(0);
  }
}
.sc_agenda {
  position: relative;
  background: transparent;
}
.sc_agenda .container {
  max-width: 1140px;
}
.sc_agenda .sc_title {
  margin-bottom: 1.75rem;
}
.sc_agenda .sc_title .tit {
  color: #fff;
}

.agd_cnt {
  background: transparent;
  border-radius: 0;
  margin-bottom: 20px;
  line-height: 1.45;
  overflow: visible;
}
.agd_cnt .tr {
  display: flex;
  align-items: stretch;
  margin-bottom: 12px;
  border: 0;
  background: #ececec;
  box-shadow: none;
}
.agd_cnt .tr.tr_light {
  align-items: center;
  min-height: 62px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #4d57b8 0%, #5e8fda 62%, #87dddd 100%);
  color: #fff;
}
.agd_cnt .tr.tr_light .td {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.agd_cnt .tr.tr_light .td_time,
.agd_cnt .tr.tr_light .ag_tit,
.agd_cnt .tr.tr_light .ag_spk,
.agd_cnt .tr.tr_light .name,
.agd_cnt .tr.tr_light .job {
  color: #fff;
}
.agd_cnt .td {
  display: flex;
  align-items: center;
  padding: 1.15rem 1.35rem;
  color: #4a4a4a;
  border-right: 0;
}
.agd_cnt .td_time {
  flex: 0 0 150px;
  justify-content: center;
  color: #525252;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}
.agd_cnt .td_title {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
.agd_cnt .ag_tit {
  flex: 1 1 auto;
  margin-right: 0;
  color: #4c4c4c;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.01em;
}
.agd_cnt .topic_toggle {
  flex: 0 0 auto;
  margin-left: auto;
}
.agd_cnt .topic_toggle .bttn {
  display: inline-flex;
  align-items: center;
}
.agd_cnt .topic_toggle .bttn_inner.main_b.xs_size {
  min-width: 104px;
  padding: 0.45rem 1rem;
  border: 1.5px solid #4d57b8;
  border-radius: 999px;
  background: transparent;
  color: #4d57b8;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.agd_cnt .topic_toggle .bttn_inner.main_b.xs_size:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.75);
  color: rgb(68.6048192771, 78.2674698795, 171.9951807229);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(77, 87, 184, 0.12);
}
.agd_cnt .td_speaker {
  flex: 0 0 305px;
  align-items: center;
  border-left: 0;
}
.agd_cnt .ag_spk {
  width: 100%;
  color: #525252;
  line-height: 1.55;
  font-size: 1rem;
}
.agd_cnt .ag_spk + .ag_spk {
  margin-top: 0;
}
.agd_cnt .ag_spk .job,
.agd_cnt .ag_spk .name {
  display: block;
  color: inherit;
}
.agd_cnt .ag_spk .name {
  font-weight: 500;
}
.agd_cnt .ag_spk_tit {
  display: none;
}

.agd_normal .td_title {
  flex: 1 1 auto;
}
.agd_normal .td_speaker {
  flex: 0 0 305px;
}

.ag_tip {
  margin-top: 0.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.sc_gift {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
}
.sc_gift .tit {
  margin-bottom: 3rem;
  color: #000;
}
.sc_gift-cnt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.sc_gift-cnt .gift-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 22.5%;
  padding: 0 0.5rem;
}
.sc_gift-cnt .gift-list:nth-child(3) {
  width: 45%;
}
.sc_gift-cnt .gift-list .gift-type {
  display: block;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0;
  border-radius: 0.25rem;
  background: linear-gradient(90deg, #0a244d, #1e5ea8, #0a244d);
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.012rem;
}
.sc_gift-cnt .gift-list .gift-items {
  display: flex;
  justify-content: space-around;
}
.sc_gift-cnt .gift-list .gift-item {
  text-align: center;
}
.sc_gift-cnt .gift-list .gift-item img {
  max-width: 220px;
  margin: 0.5rem auto;
  border-radius: 0.25rem;
}
.sc_gift-cnt .gift-list .gift-item .gift-name {
  margin-bottom: 0.25rem;
  color: #1e5ea8;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}
.sc_gift-cnt .gift-list .gift-text {
  line-height: 1.5;
}

.sc_boothConnect {
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.4)
  );
  position: relative;
  z-index: 1;
  padding: 4.25rem 0;
}
.sc_boothConnect .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.75rem;
}
.sc_boothConnect .bg_inner {
  position: absolute;
  z-index: -1;
  width: 1000px;
  height: 100%;
}
.sc_boothConnect .bg_inner .circle {
  position: absolute;
  z-index: 2;
  top: 25%;
  left: 75%;
  width: 220px;
  height: 220px;
  border-radius: 100%;
  background: #f1f1f1;
  box-shadow: -35px 40px 40px -25px rgba(0, 0, 0, 0.1);
}
.sc_boothConnect .bg_inner .circle.circle2 {
  box-shadow: 35px -30px 20px -28px white;
}
.sc_boothConnect .bg_inner .circle.purple,
.sc_boothConnect .bg_inner .circle.blue,
.sc_boothConnect .bg_inner .circle.blue2,
.sc_boothConnect .bg_inner .circle.sky {
  filter: blur(40px);
  mix-blend-mode: multiply;
}
.sc_boothConnect .bg_inner .circle.purple {
  background: #ea95fe;
  animation: rotate-reverse 1.8s linear infinite;
  transform-origin: 44% 44%;
}
.sc_boothConnect .bg_inner .circle.blue {
  background: #adc0ff;
  animation: rotate 1.8s linear infinite;
  transform-origin: 56% 44%;
}
.sc_boothConnect .bg_inner .circle.blue2 {
  background: #adc0ff;
  animation: rotate 1.8s linear infinite;
  transform-origin: 44% 56%;
}
.sc_boothConnect .bg_inner .circle.sky {
  background: #a7faff;
  animation: rotate 1.8s linear infinite;
  transform-origin: 56% 56%;
}
.sc_boothConnect-cnt {
  width: 65%;
}
.sc_boothConnect .tit {
  position: relative;
  margin-bottom: 1.75rem;
  color: #01208d;
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
}
.sc_boothConnect .tit span {
  position: absolute;
  top: 50%;
  left: 82%;
  transform: translateY(-40%);
  font-size: 1rem;
  font-weight: 300;
}
.sc_boothConnect .tit span.zh {
  animation: shine-ani 1s steps(1) infinite;
}
.sc_boothConnect .text {
  margin-bottom: 1rem;
}
.sc_boothConnect .text p {
  text-align: justify;
}
.sc_boothConnect .text p:first-child {
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.sc_boothConnect .bttn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  background-color: #01208d;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 3px;
  transition: all 0.3s ease-in-out;
}
.sc_boothConnect .bttn img {
  width: 8%;
  margin: 0.2rem 0 0 0.5rem;
  animation: arrow-ani 1.25s ease-in-out infinite;
}
.sc_boothConnect .bttn:hover {
  text-decoration: none;
  box-shadow: 0 0 8px 4px rgba(30, 94, 168, 0.25);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate-reverse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes shine-ani {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.sc_location .sc_title .tit {
  color: #000;
}

.location_cnt .loc_top {
  display: flex;
  justify-content: center;
  align-items: baseline;
  text-align: center;
}
.location_cnt .loc_top .loc {
  margin: 0 0.5em 10px;
  color: #3a82e6;
  font-size: 1.5em;
}
.location_cnt .loc_top .addr {
  margin: 0 0.5em 10px;
  color: #000;
}

.sc_detail .sc_title .tit {
  color: #333333;
}
.sc_detail .list {
  padding-left: 1.5em;
}
.sc_detail .list li {
  padding: 0.25em 0;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .agd_cnt .td_time {
    flex-basis: 120px;
    font-size: 0.95rem;
  }
  .agd_cnt .td_speaker {
    flex-basis: 250px;
  }
  .agd_cnt .ag_tit {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .g_header {
    background-color: #2c2c2c;
  }
  .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 {
    display: block;
    padding: 10px 0;
  }
  .g_header .nav_area .nav_item.is_highlight {
    padding: 0;
  }
  .g_header .nav_area .nav_link {
    padding: 16px 24px;
    border-radius: 0;
    color: #fff;
  }
  .g_kv {
    position: relative;
    height: 35vh;
    margin-top: 15%;
    overflow: hidden;
    background-position: top center;
  }
  .g_kv .kv_track {
    position: absolute;
    height: 35vh;
    background: url("../../assets/images/kv/bg.jpg") center/cover no-repeat;
    animation: none;
  }
  .g_kv .t1 {
    left: 0;
    z-index: 1;
    width: 60%;
    margin-top: 10%;
    margin-left: 8%;
  }
  .g_kv .t2 {
    z-index: 1;
    width: 50%;
    margin-top: 40%;
    margin-left: 5%;
  }
  .g_kv .df_logo {
    width: 18%;
    margin-top: 5%;
    margin-left: 5%;
  }
  .main_sc {
    padding: 40px 16px;
  }
  .sc_title {
    font-size: 1.75rem;
  }
  .sc_title .tit {
    line-height: 1.3;
  }
  .sc_intro,
  .sc_gift,
  .sc_location,
  .sc_detail {
    background: #fff;
  }
  .sc_agenda {
    background: transparent;
  }
  .intro_cnt {
    font-size: 1.125rem;
    text-align: left;
  }
  .intro_cnt p {
    color: #000;
    margin-bottom: 0.5em;
    padding: 0.25em 0;
    line-height: 2;
    font-size: 1.125rem;
    font-weight: 400;
    text-align: center;
  }
  .intro_cnt .feature {
    margin: 16px 0 30px;
  }
  .intro_cnt .feature .title {
    text-align: center;
  }
  .intro_cnt .feature .battle {
    grid-template-columns: 1fr;
    padding: 16px 0;
    gap: 20px;
  }
  .intro_cnt .titleText {
    font-size: 1.25rem;
    background: linear-gradient(180deg, #3a82e6, #3a82e6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
  }
  .cta .btn-shine {
    padding: 0;
    white-space: normal;
    font-size: 1.2rem;
    line-height: 1.6;
  }
  .cta .cta-time {
    font-size: 1.1rem !important;
    line-height: 1.55;
    margin: 0.25rem 0 1.2rem !important;
  }
  .cta .cta-bttn {
    font-size: 1.2rem;
    padding: 0.9em 2rem;
  }
  .agd_cnt .tr {
    display: block;
    margin-bottom: 10px;
  }
  .agd_cnt .tr.tr_light {
    min-height: 0;
  }
  .agd_cnt .td {
    display: block;
    padding: 0.7rem 1rem;
  }
  .agd_cnt .td_time {
    padding-bottom: 0.2rem;
    text-align: left;
    font-size: 0.95rem;
  }
  .agd_cnt .td_title {
    display: block;
  }
  .agd_cnt .ag_tit {
    margin-bottom: 0.7rem;
    font-size: 1rem;
    line-height: 1.5;
  }
  .agd_cnt .topic_toggle {
    margin-left: 0;
    margin-top: 0.2rem;
  }
  .agd_cnt .td_speaker {
    padding-top: 0.1rem;
  }
  .agd_cnt .ag_spk {
    font-size: 0.96rem;
    line-height: 1.5;
  }
  .ag_tip {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .sc_gift {
    padding: 30px 10px;
  }
  .sc_gift .tit {
    margin-bottom: 1.5rem;
  }
  .sc_gift-cnt .gift-list {
    width: 50%;
    margin-bottom: 1rem;
  }
  .sc_gift-cnt .gift-list:nth-child(1) {
    width: 100%;
  }
  .sc_gift-cnt .gift-list:nth-child(3) {
    width: 100%;
  }
  .sc_gift-cnt .gift-list .gift-type {
    font-size: 1.125rem;
  }
  .sc_gift-cnt .gift-list .gift-item {
    margin-bottom: 0.75rem;
  }
  .sc_gift-cnt .gift-list .gift-item img {
    max-width: 80%;
    margin: 0.5rem auto;
  }
  .sc_gift-cnt .gift-list .gift-item .gift-name {
    font-size: 1.125rem;
    line-height: 1.5;
  }
  .sc_boothConnect {
    padding: 3rem 0;
  }
  .sc_boothConnect .container {
    flex-direction: column;
    padding: 0 1rem;
  }
  .sc_boothConnect .bg_inner {
    width: 100%;
  }
  .sc_boothConnect .bg_inner .circle {
    left: auto;
    right: -40px;
    width: 160px;
    height: 160px;
  }
  .sc_boothConnect-cnt {
    width: 100%;
  }
  .sc_boothConnect .tit {
    font-size: 1.5rem;
    text-align: center;
  }
  .sc_boothConnect .tit span {
    position: static;
    display: inline-block;
    transform: none;
    margin-left: 0.25rem;
  }
  .sc_boothConnect .text p {
    text-align: justify;
  }
  .sc_boothConnect .boothConnect-cta {
    text-align: center;
  }
  .location_cnt .loc_top {
    display: block;
  }
  .location_cnt .loc_top .loc {
    margin-bottom: 0;
  }
  .location_cnt .loc_top .addr {
    margin-bottom: 15px;
  }
} /*# sourceMappingURL=style.css.map */
