html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  height: auto;
}

.wrapper {
  overflow: hidden;
}

.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_speaker,
.sc_gift,
.sc_location {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgb(255, 255, 255), rgb(255, 255, 255), rgba(255, 255, 255, 0.5));
}

.fix_aside {
  position: fixed;
  right: 1rem;
  bottom: 0.5rem;
  z-index: 99;
  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:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.19);
}
.fix_aside .fx_item.is_calendar {
  border-radius: 999px;
  background-color: transparent;
  box-shadow: none;
}
.fix_aside .fx_item.is_calendar img {
  display: block;
  width: 100%;
}
.fix_aside .fx_item.is_primary {
  background: radial-gradient(ellipse at right, #0a5c80, transparent), radial-gradient(ellipse at left, #c83f86, transparent);
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
}
.fix_aside .fx_item .in_wrap {
  position: absolute;
  top: 50%;
  left: 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: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
}
.g_header .header_cnt {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.5rem;
}
.g_header .menu_btn {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid #fff;
  border-radius: 6px;
  text-align: center;
}
.g_header .menu_btn .icon {
  position: absolute;
  top: 50%;
  left: 20%;
  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;
  align-items: center;
}
.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: #c83f86;
  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:hover .hover_menu {
  display: block;
}
.g_header .header_sns .hover img {
  width: 40px;
  line-height: 0;
}
.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;
  transform-origin: 0% 50%;
}
.g_kv .kv_track .kv-animation {
  width: 12%;
  position: absolute;
  animation-fill-mode: both;
  will-change: transform, opacity;
}
.g_kv .kv_track .kv-animation img {
  display: block;
  width: 100%;
  animation-fill-mode: both;
  will-change: transform;
}
.g_kv .kv_track .kv-animation.plane {
  top: 24%;
  left: 82%;
  animation: plane-enter 2s ease-out 0s both;
}
.g_kv .kv_track .kv-animation.plane img {
  animation: plane-float 3.5s ease-in-out 2s infinite alternate;
}
.g_kv .kv_track .kv-animation.cart {
  top: 24%;
  left: 61%;
  animation: cart-enter 2s ease-out 0.2s both;
}
.g_kv .kv_track .kv-animation.cart img {
  animation: cart-float 2.8s ease-in-out 2.2s infinite alternate;
}
.g_kv .kv_track .kv-animation.ship {
  width: 18%;
  top: 65%;
  left: 58%;
  animation: ship-enter 2.4s ease-out 0.4s both;
}
.g_kv .kv_track .kv-animation.ship img {
  animation: ship-float 4s ease-in-out 2.8s infinite alternate;
}
@keyframes plane-enter {
  0% {
    opacity: 0;
    transform: translate(-220px, -160px) scale(0.9) rotate(-8deg);
  }
  70% {
    opacity: 1;
    transform: translate(20px, 12px) scale(1.02) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}
@keyframes cart-enter {
  0% {
    opacity: 0;
    transform: translate(220px, -140px) scale(0.9) rotate(8deg);
  }
  70% {
    opacity: 1;
    transform: translate(-16px, 14px) scale(1.02) rotate(-2deg);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}
@keyframes ship-enter {
  0% {
    opacity: 0;
    transform: translate(-260px, -180px) scale(0.92) rotate(-5deg);
  }
  70% {
    opacity: 1;
    transform: translate(18px, 10px) scale(1.01) rotate(1deg);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}
@keyframes plane-float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(10px, 8px) rotate(2deg);
  }
  100% {
    transform: translate(-8px, -6px) rotate(-1deg);
  }
}
@keyframes cart-float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-8px, 6px) rotate(-1deg);
  }
  100% {
    transform: translate(6px, -4px) rotate(1deg);
  }
}
@keyframes ship-float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(8px, 3px) rotate(1.2deg);
  }
  100% {
    transform: translate(-8px, -2px) rotate(-1.2deg);
  }
}
.g_kv .df_logo {
  position: absolute;
  z-index: 10;
  left: 3%;
  width: 10%;
  margin-top: 3%;
}
.g_kv .t1 {
  position: absolute;
  width: 40%;
  margin-top: 16%;
  margin-left: 3%;
}
.g_kv .t2 {
  position: absolute;
  width: 50%;
  margin-top: 33%;
  margin-left: 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(180deg, #004065, #5688db, #70c9c9);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.intro_cnt p {
  margin-bottom: 0.5em;
  padding: 0.25em 0;
  color: #000;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2;
  text-align: center;
}
.intro_cnt .feature {
  width: 100%;
  margin: 3rem 0;
}
.intro_cnt .feature.feature-icons {
  margin-top: 0;
}
.intro_cnt .feature .battle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  padding: 20px 0;
}
.intro_cnt .feature .item {
  display: flex;
  border: solid 2px;
  border-radius: 25px;
  flex-direction: column;
  padding: 40px 30px 30px 30px;
  position: relative;
}
.intro_cnt .feature .item p {
  text-align: left;
}
.intro_cnt .feature .item:nth-child(1) {
  border-color: #005f62;
}
.intro_cnt .feature .item:nth-child(2) {
  border-color: #bd5027;
}
.intro_cnt .feature .item:nth-child(3) {
  border-color: #9c315a;
}
.intro_cnt .feature .image-icon-placeholder {
  position: absolute;
  top: -30px;
  left: -15px;
  width: 60px;
}
.intro_cnt .feature .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 .topic {
  margin-bottom: 0.55rem;
  color: #09597b;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
}
.intro_cnt .feature .des {
  color: #333333;
  font-size: 1rem;
  line-height: 1.85;
}

.cta .cta-info .pc-cta {
  display: block;
  transform: scale(1);
  transition: transform 3s ease;
}
.cta .cta-info .pc-cta:hover {
  transform: scale(1.15);
}
.cta .cta-info .mb-cta {
  display: none;
}
.cta .cta-info a {
  display: inline-block;
}
.cta .cta_img_wrapper {
  max-width: 80%;
  margin: auto;
}
.cta .cta_img_wrapper img {
  display: block;
  max-width: 100%;
}

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

.agenda_wrapper_taipei .agenda_title {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}

.agd_cnt {
  margin-bottom: 20px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  line-height: 1.45;
}
.agd_cnt .tr {
  display: flex;
  align-items: stretch;
  background: #eef7f8;
  box-shadow: none;
  border-bottom: solid 1px #a1d7e0;
}
.agd_cnt .tr.tr_light {
  align-items: center;
  min-height: 62px;
  background-color: #70c9c9;
  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_tit_eng,
.agd_cnt .tr.tr_light .ag_spk,
.agd_cnt .tr.tr_light .ag_spk_eng,
.agd_cnt .tr.tr_light .spk_tag {
  color: #fff;
}
.agd_cnt .tr:first-child {
  border-radius: 25px 25px 0 0;
}
.agd_cnt .tr:last-child {
  border-radius: 0 0 25px 25px;
  border-bottom: 0;
}
.agd_cnt .td {
  display: flex;
  align-items: center;
  padding: 1.15rem 1.35rem;
  color: #315062;
}
.agd_cnt .td_time {
  flex: 0 0 150px;
  justify-content: center;
  color: #525252;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}
.agd_cnt .td_title {
  flex: 1 1 auto;
  display: block;
  min-width: 0;
  margin-top: auto;
  margin-bottom: auto;
}
.agd_cnt .td_speaker {
  flex: 0 0 320px;
  display: block;
}
.agd_cnt .ag_tit {
  color: #4c4c4c;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.01em;
}
.agd_cnt .ag_tit_eng {
  margin-top: 0.35rem;
  color: rgb(40.5, 66.1224489796, 81);
  font-size: 0.96rem;
  line-height: 1.6;
}
.agd_cnt .ag_spk,
.agd_cnt .ag_spk_eng {
  width: 100%;
  color: #0a5c80;
  font-size: 1rem;
  line-height: 1.55;
}
.agd_cnt .ag_spk + .ag_spk, .agd_cnt .ag_spk + .ag_spk_eng, .agd_cnt .ag_spk + .spk_group,
.agd_cnt .ag_spk_eng + .ag_spk,
.agd_cnt .ag_spk_eng + .ag_spk_eng,
.agd_cnt .ag_spk_eng + .spk_group {
  margin-top: 0.75rem;
}
.agd_cnt .ag_spk span,
.agd_cnt .ag_spk_eng span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.92rem;
  line-height: 1.5;
}
.agd_cnt .spk_group + .spk_group {
  margin-top: 1rem;
}
.agd_cnt .spk_tag {
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-block;
  padding: 8px;
  border-radius: 25px;
  background-color: #70c9c9;
}

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

.sc_speaker .sc_title .tit {
  color: #000;
}

.speaker_items {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
}

.speaker_items .item {
  width: calc(33.333% - 16px);
  text-align: center;
}
.speaker_items .item .pic {
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  background: #a8dde3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 100%;
}
.speaker_items .item .pic img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.speaker_items .item .for_test {
  display: none;
}
.speaker_items .item .wording .name {
  margin-bottom: 0.4rem;
  color: #0a5c80;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}
.speaker_items .item .wording p {
  margin-bottom: 0.2rem;
  color: #333333;
  line-height: 1.6;
}

.sc_gift {
  position: relative;
  z-index: 1;
}
.sc_gift .tit {
  margin-bottom: 2rem;
  color: #000;
}
.sc_gift-cnt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.sc_gift .gift-list {
  width: 260px;
}
.sc_gift .gift-item {
  height: 100%;
  padding: 1.25rem 1rem 1.5rem;
  text-align: center;
}
.sc_gift .gift-item .gift-image_wrapper {
  border-radius: 100%;
  border: solid 5px #a8dde3;
  overflow: hidden;
  padding: 20px;
  margin-bottom: 24px;
}
.sc_gift .gift-item .gift-image_wrapper img {
  width: 100%;
  max-width: 220px;
  border-radius: 12px;
  display: block;
}
.sc_gift .gift-name {
  margin-bottom: 0.25rem;
  color: #09597b;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.5;
}
.sc_gift .gift-text {
  color: #333333;
  line-height: 1.6;
}
.sc_gift .gift-num {
  margin-top: 0.35rem;
  margin-bottom: 0;
  font-weight: 700;
}

.sc_location .sc_title .tit {
  color: #000;
}

.location_cnt .loc_top {
  display: flex;
  justify-content: center;
  align-items: baseline;
  text-align: center;
  flex-wrap: wrap;
}
.location_cnt .loc_top .loc {
  margin: 0 0.5em 10px;
  color: #c83f86;
  font-size: 1.5em;
  font-weight: 700;
}
.location_cnt .loc_top .addr {
  margin: 0 0.5em 10px;
  color: #000;
}
.location_cnt .loc_map {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.location_cnt .loc_map iframe {
  display: block;
}

@media (max-width: 991px) {
  .g_kv .kv_track .kv-animation {
    width: 12%;
    position: absolute;
    animation-fill-mode: both;
    will-change: transform, opacity;
  }
  .g_kv .kv_track .kv-animation img {
    display: block;
    width: 100%;
    animation-fill-mode: both;
    will-change: transform;
  }
  .g_kv .kv_track .kv-animation.plane {
    top: 12%;
    left: 80%;
    animation: plane-enter-991 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0s both;
  }
  .g_kv .kv_track .kv-animation.plane img {
    animation: plane-float-991 7s ease-in-out 1.45s infinite alternate;
  }
  .g_kv .kv_track .kv-animation.cart {
    top: 13%;
    left: 61%;
    animation: cart-enter-991 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
  }
  .g_kv .kv_track .kv-animation.cart img {
    animation: cart-float-991 7.5s ease-in-out 1.55s infinite alternate;
  }
  .g_kv .kv_track .kv-animation.ship {
    width: 18%;
    top: 36%;
    left: 60%;
    animation: ship-enter-991 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
  }
  .g_kv .kv_track .kv-animation.ship img {
    animation: ship-float-991 8.5s ease-in-out 1.95s infinite alternate;
  }
  @keyframes plane-enter-991 {
    0% {
      opacity: 0;
      transform: translate(-110px, -85px) scale(0.96) rotate(-4deg);
    }
    100% {
      opacity: 1;
      transform: translate(0, 0) scale(1) rotate(0deg);
    }
  }
  @keyframes cart-enter-991 {
    0% {
      opacity: 0;
      transform: translate(110px, -85px) scale(0.96) rotate(4deg);
    }
    100% {
      opacity: 1;
      transform: translate(0, 0) scale(1) rotate(0deg);
    }
  }
  @keyframes ship-enter-991 {
    0% {
      opacity: 0;
      transform: translate(-130px, -95px) scale(0.97) rotate(-2deg);
    }
    100% {
      opacity: 1;
      transform: translate(0, 0) scale(1) rotate(0deg);
    }
  }
  @keyframes plane-float-991 {
    0% {
      transform: translate(0, 0) rotate(0deg);
    }
    50% {
      transform: translate(2px, 1px) rotate(0.25deg);
    }
    100% {
      transform: translate(-2px, -1px) rotate(-0.25deg);
    }
  }
  @keyframes cart-float-991 {
    0% {
      transform: translate(0, 0) rotate(0deg);
    }
    50% {
      transform: translate(-1px, 1px) rotate(-0.2deg);
    }
    100% {
      transform: translate(1px, -1px) rotate(0.2deg);
    }
  }
  @keyframes ship-float-991 {
    0% {
      transform: translate(0, 0) rotate(0deg);
    }
    50% {
      transform: translate(2px, 1px) rotate(0.2deg);
    }
    100% {
      transform: translate(-2px, -1px) rotate(-0.2deg);
    }
  }
  .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;
  }
  .speaker_items .item {
    width: calc(50% - 12px);
  }
}
@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: 26vh;
    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;
  }
  .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;
    transform-origin: 0% 50%;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .g_kv .kv_track .kv-animation {
    width: 12%;
    position: absolute;
    animation-fill-mode: both;
    will-change: transform, opacity;
  }
  .g_kv .kv_track .kv-animation img {
    display: block;
    width: 100%;
    animation-fill-mode: both;
    will-change: transform;
  }
  .g_kv .kv_track .kv-animation.plane {
    top: 5%;
    left: 80%;
    animation: plane-enter-m 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0s both;
  }
  .g_kv .kv_track .kv-animation.plane img {
    animation: plane-float-m 6.5s ease-in-out 1.6s infinite alternate;
  }
  .g_kv .kv_track .kv-animation.cart {
    top: 5%;
    left: 61%;
    animation: cart-enter-m 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
  }
  .g_kv .kv_track .kv-animation.cart img {
    animation: cart-float-m 7s ease-in-out 1.75s infinite alternate;
  }
  .g_kv .kv_track .kv-animation.ship {
    width: 18%;
    top: 15%;
    left: 60%;
    animation: ship-enter-m 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
  }
  .g_kv .kv_track .kv-animation.ship img {
    animation: ship-float-m 8s ease-in-out 2.1s infinite alternate;
  }
  @keyframes plane-enter-m {
    0% {
      opacity: 0;
      transform: translate(-90px, -70px) scale(0.96) rotate(-4deg);
    }
    100% {
      opacity: 1;
      transform: translate(0, 0) scale(1) rotate(0deg);
    }
  }
  @keyframes cart-enter-m {
    0% {
      opacity: 0;
      transform: translate(90px, -70px) scale(0.96) rotate(4deg);
    }
    100% {
      opacity: 1;
      transform: translate(0, 0) scale(1) rotate(0deg);
    }
  }
  @keyframes ship-enter-m {
    0% {
      opacity: 0;
      transform: translate(-110px, -80px) scale(0.97) rotate(-2deg);
    }
    100% {
      opacity: 1;
      transform: translate(0, 0) scale(1) rotate(0deg);
    }
  }
  @keyframes plane-float-m {
    0% {
      transform: translate(0, 0) rotate(0deg);
    }
    50% {
      transform: translate(2px, 1px) rotate(0.3deg);
    }
    100% {
      transform: translate(-2px, -1px) rotate(-0.3deg);
    }
  }
  @keyframes cart-float-m {
    0% {
      transform: translate(0, 0) rotate(0deg);
    }
    50% {
      transform: translate(-1px, 1px) rotate(-0.2deg);
    }
    100% {
      transform: translate(1px, -1px) rotate(0.2deg);
    }
  }
  @keyframes ship-float-m {
    0% {
      transform: translate(0, 0) rotate(0deg);
    }
    50% {
      transform: translate(2px, 1px) rotate(0.25deg);
    }
    100% {
      transform: translate(-2px, -1px) rotate(-0.25deg);
    }
  }
}
@media (max-width: 768px) {
  .g_kv .df_logo {
    width: 18%;
    margin-top: 5%;
    margin-left: 5%;
  }
  .g_kv .t1 {
    left: 0;
    z-index: 1;
    width: 50%;
    margin-top: 20%;
    margin-left: 8%;
  }
  .main_sc {
    padding: 40px 16px;
  }
  .sc_title {
    font-size: 1.75rem;
  }
  .sc_title .tit {
    line-height: 1.3;
  }
  .sc_intro,
  .sc_speaker,
  .sc_gift,
  .sc_location {
    background: #fff;
  }
  .sc_agenda {
    background: linear-gradient(180deg, #abecec, #e0e9f7, #abecec);
  }
  .intro_cnt {
    font-size: 1.125rem;
    text-align: left;
  }
  .intro_cnt p {
    margin-bottom: 0.5em;
    padding: 0.25em 0;
    color: #000;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 2;
    text-align: center;
  }
  .intro_cnt .feature {
    margin: 16px 0 30px;
  }
  .intro_cnt .feature .battle {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 16px 0;
  }
  .intro_cnt .titleText {
    font-size: 1.25rem;
    background: linear-gradient(180deg, #004065, #5688db, #70c9c9);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
  }
  .cta-info .pc-cta {
    display: none !important;
  }
  .cta-info .mb-cta {
    display: block !important;
    transform: scale(1);
    transition: transform 3s ease;
  }
  .cta-info .mb-cta .titleText {
    font-size: 2rem;
    text-align: center;
    background: linear-gradient(180deg, #004065, #5688db, #70c9c9);
    display: inline-block;
    margin: 0 auto 40px auto;
    width: 100%;
    font-weight: 600;
    line-height: 1.8;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
  .cta-info .mb-cta {
    transform: scale(1.15);
  }
  .agd_cnt .tr {
    display: block;
    border-bottom: solid 1px #a1d7e0;
  }
  .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 .td_speaker {
    padding-top: 0.1rem;
  }
  .agd_cnt .ag_tit {
    margin-bottom: 0.45rem;
    font-size: 1rem;
    line-height: 1.5;
  }
  .agd_cnt .ag_tit_eng {
    font-size: 0.92rem;
    line-height: 1.55;
  }
  .agd_cnt .ag_spk,
  .agd_cnt .ag_spk_eng {
    font-size: 0.96rem;
    line-height: 1.5;
  }
  .agd_cnt .spk_tag {
    display: inline-block;
    margin-top: 0.6rem;
    padding: 8px;
    border-radius: 25px;
    background-color: #a8dde3;
  }
  .ag_tip {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .speaker_items {
    gap: 24px;
  }
  .speaker_items .item {
    width: 100%;
  }
  .sc_gift {
    padding: 30px 10px;
  }
  .sc_gift .tit {
    margin-bottom: 1.5rem;
  }
  .sc_gift-cnt {
    gap: 16px;
  }
  .sc_gift .gift-list {
    width: 100%;
    max-width: 320px;
  }
  .sc_gift .gift-item img {
    max-width: 80%;
  }
  .sc_gift .gift-name {
    font-size: 1.125rem;
    line-height: 1.5;
  }
  .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 */