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

.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_primary {
  background-color: #fbaa3c;
  color: rgb(30, 30, 30);
  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, 36, 86, 0.8);
}
.g_header .header_cnt {
  position: relative;
  padding: 0.5rem;
  display: flex;
}
.g_header .header_cnt .d-md-block {
  display: inline;
}
.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-end;
}
.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: #fbaa3c;
  color: rgb(30, 30, 30);
}
.g_header .nav_area .nav_link {
  border-radius: 4px;
  display: block;
  padding: 12px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.g_header .nav_area .nav_link:hover {
  color: #1C1366;
  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;
  border-radius: 2em;
  font-size: 1.25em;
  line-height: 1;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  color: #000;
}
.bttn .bttn_inner:hover {
  text-decoration: none;
}
.bttn .xl_size {
  font-size: 2em;
}
.bttn .lg_size {
  font-size: 1.5em;
}
.bttn .sm_size {
  font-size: 1em;
}
.bttn .xs_size {
  padding: 0.35em 1em;
  font-size: 0.95em;
}
.bttn .main_b {
  background-color: #003993;
  color: #fff;
  text-shadow: 0 2px rgba(0, 0, 0, 0.2);
}
.bttn .main_b:hover {
  background-color: #C03461;
}
.bttn .dark_b {
  border-width: 0;
  background-color: #000;
  color: #1C1366;
}
.bttn .dark_b:hover {
  background-color: #160f02;
}
.bttn .sub_b {
  background-color: #fff;
  color: #1C1366;
}
.bttn .sub_b:hover {
  background-color: rgba(92, 19, 202, 0.1);
}

.g_kv {
  position: relative;
  height: 50vw;
  overflow: hidden;
}
.g_kv .bg_inner {
  position: fixed;
  width: 100%;
}
.g_kv .bg_inner .light1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-20%);
  opacity: 0;
  width: 100%;
  z-index: 2;
  animation: light_move1 2.4s linear 0.6s infinite both;
}
@keyframes light_move1 {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-20%);
  }
  20% {
    opacity: 1;
    transform: translateX(-50%) translateY(-80%);
  }
  45% {
    opacity: 0;
    transform: translateX(-50%) translateY(-150%);
  }
  70% {
    opacity: 0;
    transform: translateX(-50%) translateY(-200%);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-20%);
  }
}
.g_kv .bg_inner .light1 img {
  width: 100%;
  max-width: 100%;
}
.g_kv .bg_inner .light2 {
  position: absolute;
  left: 50%;
  transform: translateX(-80%) translateY(10%);
  opacity: 1;
  width: 100%;
  z-index: 2;
  animation: light_move1 2.4s linear 1s infinite both;
}
@keyframes light_move1 {
  0% {
    opacity: 0;
    transform: translateX(-80%) translateY(10%);
  }
  20% {
    opacity: 1;
    transform: translateX(-80%) translateY(-100%);
  }
  45% {
    opacity: 0;
    transform: translateX(-80%) translateY(-180%);
  }
  70% {
    opacity: 0;
    transform: translateX(-80%) translateY(-240%);
  }
  100% {
    opacity: 0;
    transform: translateX(-80%) translateY(10%);
  }
}
.g_kv .bg_inner .light2 img {
  width: 100%;
  max-width: 100%;
}
.g_kv .bg_inner .light2 img {
  width: 100%;
  max-width: 100%;
}
.g_kv .bg_inner .bg2 {
  position: relative;
  z-index: 1;
  margin-top: -3%;
  width: 100%;
  height: 50vw;
}
.g_kv .bg_inner .bg2 .filter_mask {
  position: absolute;
  z-index: 2;
  top: 0;
  width: 100%;
  height: 0vw;
  background: #002456;
  mix-blend-mode: exclusion;
  animation: filter_move 5s linear infinite alternate both;
}
@keyframes filter_move {
  0% {
    height: 0vw;
    transform: translateY(0%) rotate(0deg) scale(1);
  }
  15% {
    height: 15vw;
    transform: translateY(25%) rotate(0deg) scale(1.2);
  }
  30% {
    height: 30vw;
    transform: translateY(50%) rotate(0deg) scale(1.5);
  }
  55% {
    height: 45vw;
    transform: translateY(75%) rotate(0deg) scale(1.2);
  }
  80% {
    height: 55vw;
    transform: translateY(100%) rotate(0deg) scale(1);
  }
  100% {
    height: 55vw;
    transform: translateY(100%) rotate(0deg) scale(1);
  }
}
.g_kv .bg_inner .bg2 img {
  width: 100%;
  max-width: 100%;
}
.g_kv .t1 {
  width: 35%;
  top: -15%;
  left: 44%;
  position: absolute;
}
.g_kv .t1 img {
  width: 100%;
  max-width: 100%;
}
.g_kv .df_logo {
  top: 8%;
  left: 8%;
  width: 25%;
  position: absolute;
}
.g_kv .df_logo img {
  width: 100%;
  max-width: 100%;
}
.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: 44%;
  bottom: 150px;
  color: #fff;
  text-align: center;
  letter-spacing: -4px;
  z-index: 10;
}
.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: #00E0FC;
}
.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";
}

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

.main_sc {
  padding: 60px 0;
}

.sc_title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
}
.sc_title .tit {
  color: white;
  font-weight: 700;
  line-height: 1;
}
.sc_title .tit.agd {
  color: #00419B;
}
.sc_title .tit.c_main {
  color: #1C1366;
}
.sc_title .tit.c_white {
  color: #fff;
}
.sc_title .tit.loc {
  color: white;
}

.sc_intro {
  position: relative;
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0.6), white, rgba(255, 255, 255, 0.8));
  border-radius: 0 50px 0 0;
}

.combain2 {
  display: inline-block;
  overflow: hidden;
  max-width: 100%;
  line-height: 1.2;
  font-size: 1.4rem;
  padding: 1em 0.5em;
}
.combain2 .line {
  font-size: 1.6rem;
  font-weight: 600;
  color: #0070a0;
  line-height: 2;
}
.combain2 .line1 {
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.8;
  color: #00419c;
}

.combain3 {
  display: inline-block;
  overflow: hidden;
  box-shadow: 5px 10px 20px rgba(91, 68, 49, 0.4);
  width: 320px;
  max-width: 100%;
  line-height: 1;
  font-size: 1.25em;
  background: linear-gradient(45deg, #FBAA3B, #ff9721);
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  text-shadow: 1px 0px 3px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  padding: 0.8em 0.2em;
  position: relative;
  border-radius: 20px;
}
.combain3:hover .line1 {
  letter-spacing: 0.2rem;
  transition: all 0.4s;
  font-size: 2em;
  line-height: 1.6;
}
.combain3 .line1 {
  text-align: center;
  font-size: 1.8em;
  font-weight: 600;
  line-height: 1.8;
  color: white;
  border-radius: 20px;
  transition: all 0.4s;
}

.intro_cnt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  font-size: 0.9rem;
}
.intro_cnt .highlight_tit {
  color: #1C1366;
  font-size: 1.65em;
  font-weight: 700;
  margin-bottom: 1em;
  line-height: 1;
}
.intro_cnt p {
  margin-bottom: 0.5em;
  padding: 0.25em 0;
  line-height: 1.65;
  color: #002456;
}
.intro_cnt .combain {
  display: inline-block;
  margin: 0.625rem auto 3rem auto;
  max-width: 100%;
  line-height: 1.2;
  font-size: 1.2em;
  color: rgb(55, 55, 55);
  text-align: center;
}
.intro_cnt .combain .line {
  text-align: left;
  margin: 25px 0;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.6;
  vertical-align: middle;
}
.intro_cnt .combain .line1 {
  margin-top: 0;
}

.cta_cnt {
  margin: 10px 0 90px 0;
  padding-bottom: 20px;
}
.cta_cnt .before_cta {
  text-align: center;
  font-weight: 700;
  font-size: 1.25em;
  margin-bottom: 1em;
}
.cta_cnt .bttns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cta_cnt .bttn {
  flex: 0 0 300px;
  margin: 0 0.5em;
}

.gift_cnt {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.gift_cnt .gift_item {
  flex: 0 0 30%;
  border-width: 0 1px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.gift_cnt .gift_item:nth-child(1) {
  border-left: 0;
}
.gift_cnt .gift_item .pic {
  border-radius: 4px;
  margin-bottom: 10px;
  width: 80%;
}
.gift_cnt .gift_item .pic img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
.gift_cnt .gift_item .tit {
  color: #C91A79;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.4rem;
}
.gift_cnt .gift_item .name {
  font-weight: 600;
  font-size: 1.2em;
  line-height: 1.4;
  color: rgb(0, 127, 217);
}
.gift_cnt .gift_item .text {
  font-size: 14px;
  margin-top: 12px;
  color: rgb(58, 58, 58);
}
.gift_cnt .gift_item .stext {
  font-size: 10px;
  margin-top: 5px;
  color: rgb(144, 144, 144);
}

.sc_agenda {
  position: relative;
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0.6), white, rgba(255, 255, 255, 0.8));
}

.agd_cnt {
  background-color: #002456;
  margin-bottom: 20px;
  line-height: 1.3;
  color: white;
}
.agd_cnt .tr {
  display: flex;
  align-items: center;
  border-bottom: 1px solid white;
}
.agd_cnt .tr.tr_light {
  background-color: #647ea3;
}
.agd_cnt .tr_head {
  background-color: #fbaa3c;
  color: #fff;
}
.agd_cnt .td {
  padding: 0.6em 1.2em;
}
.agd_cnt .td_time {
  flex: 0 0 8em;
  text-align: center;
}
.agd_cnt .td_title {
  display: inline-flex;
  align-items: center;
}
.agd_cnt .ag_tit {
  flex: 1 1 auto;
  font-weight: 400;
  font-size: 1.125em;
}
.agd_cnt .topic_toggle {
  flex: 0 0 100px;
}
.agd_cnt .ag_spk {
  margin-left: 1rem;
  line-height: 1.35;
  margin: 1rem 0;
}
.agd_cnt .ag_spk + .ag_spk_tit {
  margin-top: 15px;
}
.agd_cnt .ag_spk + .ag_spk {
  margin-top: 10px;
}
.agd_cnt .ag_spk .title {
  font-size: 1rem;
  padding: 3px 5px 3px 5px;
  margin-top: 5px;
  border-radius: 2px;
  color: rgb(16, 16, 16);
  font-weight: 600;
  background-color: #FBAA3B;
  display: inline-block;
}
.agd_cnt .ag_spk .name {
  margin-top: 0.2rem;
  color: #bad9ff;
  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 60%;
}
.agd_normal .td_speaker {
  flex: 0 1 40%;
}

.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 {
  color: #23406D;
  text-align: center;
}
.ag_tip.tip2 {
  margin-top: 3%;
  color: white;
}

.sc_speaker {
  position: relative;
  background: linear-gradient(-90deg, rgba(0, 36, 86, 0.2) 10%, rgba(0, 36, 86, 0.9));
}
.speaker_items .slick-prev:before, .speaker_items .slick-next:before {
  font-size: 28px;
}
.speaker_items .item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 25%;
  padding: 0 10px 10px 10px;
  text-align: center;
  margin: 25px;
  border-bottom: solid 1px #647EA3;
}
.speaker_items .item .pic {
  border-radius: 10px;
  flex: 0 0 30%;
  transition: all 0.6s;
  box-shadow: 5px 10px 30px rgba(0, 4, 38, 0.5);
}
.speaker_items .item .pic img {
  border-radius: 10px;
  width: 100%;
  max-width: 100%;
}
.speaker_items .item .content {
  flex: 0 0 70%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.speaker_items .item .content .name {
  margin-bottom: 6px;
  color: #bad9ff;
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.4);
  font-weight: 600;
  font-size: 2em;
  line-height: 1.2;
  margin: 25px 0;
}
.speaker_items .item .content .name span {
  display: inline-block;
}
.speaker_items .item .content .title {
  color: white;
  font-size: 1.2rem;
}
.speaker_items .item .content .des {
  font-size: 1rem;
  color: white;
  font-weight: 300;
  text-align: left;
  margin: 0 10% 0 0;
  padding-bottom: 10px;
}

.slider-nav .pic {
  border-radius: 10px;
  padding: 0 50px;
}
.slider-nav .pic img {
  border-radius: 10px;
  width: 100%;
  max-width: 100%;
}

.sc_sponsor {
  position: relative;
  background: linear-gradient(-90deg, rgba(0, 36, 86, 0.2) 10%, rgba(0, 36, 86, 0.9));
}
.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: #647EA3;
  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(100, 126, 163, 0.6);
}
.sort_cnt .sorts .item_link.is_active {
  background-color: #EB9C26;
}

.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;
  border-radius: 10px;
}
.sponsor_cnt .spr_item .link {
  display: block;
  border-radius: 10px;
  background-color: #fff;
}
.sponsor_cnt .spr_item .link img {
  border-radius: 10px;
}

.sc_gift .container-fluid {
  max-width: 1280px;
}

.gift_cnt .items {
  display: flex;
}
.gift_cnt .item {
  flex: 0 0 25%;
  padding: 0 15px;
  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_location {
  position: relative;
  background: linear-gradient(-90deg, rgba(0, 36, 86, 0.2) 10%, rgb(0, 36, 86));
}

.location_cnt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
  margin-top: 60px;
  padding: 0 20%;
}
.location_cnt .loc_top {
  flex: 0 0 60%;
  margin-left: 12%;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.location_cnt .loc_top .time {
  width: 100%;
  position: relative;
  color: white;
  font-size: 24px;
  margin: 4% 0;
  text-align: left;
}
.location_cnt .loc_top .time span {
  font-size: 18px;
}
.location_cnt .loc_top .time::before {
  position: absolute;
  left: -80px;
  top: 5px;
  content: "";
  background: url("img/ui/date.svg");
  width: 50px;
  height: 50px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.location_cnt .loc_top .loc {
  width: 100%;
  position: relative;
  color: white;
  font-size: 24px;
  margin: 4% 0;
  text-align: left;
}
.location_cnt .loc_top .loc::before {
  position: absolute;
  left: -80px;
  top: 5px;
  content: "";
  background: url("img/ui/loc.svg");
  width: 50px;
  height: 50px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.location_cnt .loc_top .loc span {
  font-size: 18px;
}
.location_cnt .loc_top .contact {
  width: 100%;
  position: relative;
  color: white;
  font-size: 24px;
  margin: 4% 0;
  text-align: left;
}
.location_cnt .loc_top .contact::before {
  position: absolute;
  left: -80px;
  top: 5px;
  content: "";
  background: url("img/ui/contact.svg");
  width: 50px;
  height: 50px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.location_cnt .loc_top .contact span {
  font-size: 18px;
}
.location_cnt .loc_top .addr {
  margin: 0 0.5em 10px;
  color: #fff;
}
.location_cnt .loc_map {
  flex: 0 0 40%;
}

.sc_detail {
  position: relative;
  background: white;
}
.sc_detail .list {
  color: rgb(58, 58, 58);
  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;
}

.g_footer .sc_company {
  position: relative;
  background: linear-gradient(90deg, rgba(0, 36, 86, 0.5) 80%, rgba(0, 36, 86, 0.8));
  padding: 60px 0;
  overflow: hidden;
}
.g_footer .sc_company .container {
  position: relative;
  padding-left: 7%;
  padding-right: 7%;
}
.g_footer .sc_company .container .parag_wrap {
  position: relative;
  border-radius: 20px;
  border: 1px solid #fff;
  padding: 45px 60px;
  background: #002456;
  color: white;
}
.g_footer .sc_company .container .parag_wrap .company_tit {
  position: absolute;
  left: 50%;
  top: 4px;
  z-index: 3;
  padding: 0 10px;
  transform: translate(-50%, -50%);
  background-color: #002456;
}
.g_footer .sc_company .container .parag_wrap .company_tit .ti {
  border-radius: 20px;
  padding: 4px 12px;
  border: 1px solid white;
  color: white;
}
.g_footer .sc_company .container .parag_wrap .nam {
  margin-left: 6px;
  width: 200px;
}

@media (max-width: 768px) {
  body {
    background-color: #002456;
  }
  .g_header {
    background-color: #002456;
    position: fixed;
  }
  .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;
  }
  .g_kv {
    height: 48vh;
  }
  .g_kv .bg_inner {
    position: relative;
  }
  .g_kv .bg_inner .light1 {
    width: 120%;
    top: 0;
    left: 50%;
    transform: initial;
  }
  .g_kv .bg_inner .light2 {
    width: 120%;
    top: 0;
    left: 50%;
    transform: initial;
  }
  .g_kv .bg_inner .bg2 {
    margin-top: 30%;
    width: 100%;
    height: auto;
  }
  .g_kv .bg_inner .bg2 img {
    width: 100%;
  }
  .g_kv .bg_inner .bg2 .filter_mask {
    display: none;
  }
  .g_kv .t1 {
    width: 50%;
    top: 15%;
  }
  .g_kv .df_logo {
    top: 25%;
    width: 50%;
    left: 12%;
  }
  .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 {
    display: none;
  }
  .g_main {
    position: relative;
    background-color: #fff;
  }
  .g_main .videoReview {
    font-size: 1.4rem;
    text-align: center;
  }
  .g_main .combain {
    font-size: 1rem;
  }
  .main_sc {
    padding: 40px 0;
  }
  .sc_title {
    font-size: 1.75rem;
  }
  .sc_title .tit {
    line-height: 1.3;
    color: white;
  }
  .intro_cnt {
    font-size: 1.125rem;
    text-align: justify;
  }
  .intro_cnt .combain .line {
    margin: 0;
  }
  .intro_cnt .combain2 .line {
    font-size: 1rem;
    text-align: center;
  }
  .intro_cnt .combain2 .line1 {
    font-size: 1.2rem;
    text-align: center;
  }
  .intro_cnt p {
    padding: 0.5em 1em;
    line-height: 1.5;
  }
  .intro_cnt .br {
    display: none;
  }
  .cta_cnt .bttn {
    margin-bottom: 20px;
  }
  .cta_cnt .bttn:last-child {
    margin-bottom: 0;
  }
  .cta_cnt .bttn .main_b {
    font-size: 1.5em;
  }
  .gift_cnt {
    display: block;
  }
  .gift_cnt .gift_item {
    padding: 0 10px 80px 15px;
    border-left: 0;
    border-width: 1px 0;
  }
  .gift_cnt .gift_item .tit {
    margin-bottom: 6px;
  }
  .gift_cnt .gift_item .name {
    min-height: auto;
  }
  .sc_sponsor {
    background: #002456;
  }
  .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 {
    background: #002456;
  }
  .sc_speaker .container {
    padding: 0;
  }
  .speaker_items {
    padding: 0 15px;
  }
  .speaker_items .slick-prev {
    top: 0;
    left: 40%;
  }
  .speaker_items .slick-prev:before {
    font-size: 24px;
  }
  .speaker_items .slick-next {
    top: 0;
    right: 40%;
  }
  .speaker_items .slick-next:before {
    font-size: 24px;
  }
  .speaker_items .item {
    margin: 25px 10px;
    flex: 100%;
    flex-direction: column-reverse;
  }
  .speaker_items .item .content .title {
    text-align: left;
  }
  .speaker_items .item .content .des {
    margin: 0;
  }
  .speaker_items .item .content .name {
    font-size: 1.8rem;
  }
  .sort_cnt .sorts {
    flex-wrap: wrap;
  }
  .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;
  }
  .sponsor_cnt {
    padding: 0;
  }
  .sponsor_cnt .spr_item {
    flex: 0 0 50%;
    padding: 3px;
  }
  .sc_location {
    background: #002456;
  }
  .sc_location .location_cnt {
    width: 100%;
    margin: 0;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
  }
  .sc_location .location_cnt .loc_map {
    width: 100%;
    padding: 0;
  }
  .sc_location .location_cnt .loc_map iframe {
    width: 100%;
  }
  .sc_location .location_cnt .loc_top {
    margin-left: 80px;
  }
  .sc_location .location_cnt .loc_top .time, .sc_location .location_cnt .loc_top .loc, .sc_location .location_cnt .loc_top .contact {
    font-size: 20px;
    margin: 7.5% 0 7.5% 0;
  }
  .sc_location .location_cnt .loc_top .time::before, .sc_location .location_cnt .loc_top .loc::before, .sc_location .location_cnt .loc_top .contact::before {
    width: 40px;
    height: 40px;
    left: -60px;
  }
  .location_cnt .loc_top {
    display: block;
  }
  .location_cnt .loc_top .loc {
    margin-bottom: 0;
  }
  .location_cnt .loc_top .addr {
    margin-bottom: 15px;
  }
}
.g_footer {
  background: linear-gradient(90deg, rgba(0, 36, 86, 0.5), rgba(0, 36, 86, 0.8));
}
.g_footer .sc_company {
  background: #002456;
  padding: 60px 0 20px 0;
}
.g_footer .sc_company .container .parag_wrap {
  padding: 45px 20px;
}
.g_footer .sc_company .container .parag_wrap .company_tit {
  padding: 0;
  border-radius: 35%;
}

.videoReview {
  margin: 20px auto;
  font-weight: 700;
  font-size: 1.75rem;
  color: transparent;
  background: linear-gradient(#C03461 30%, #000025);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}/*# sourceMappingURL=style.css.map */