@charset "UTF-8";
body {
  background: url("img/kv/bg.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: "Noto Sans TC", sans-serif;
}
body .container {
  padding: 0 !important;
}

.main_color {
  color: #f49c00;
}

.sub_color {
  color: #084b70;
}

.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: #B945E5;
  color: white;
  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%;
}
.g_header.is_active {
  background: rgba(64, 4, 102, 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-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: #B945E5;
  color: white;
}
.g_header .nav_area .nav_link {
  border-radius: 4px;
  display: block;
  padding: 12px;
  color: white;
}
.g_header .nav_area .nav_link:hover {
  color: #f49c00;
  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;
  border: 2px solid #19244E;
  text-align: center;
  font-weight: 500;
  transition-duration: 300ms;
}
.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: #EA9A01;
  color: #fff;
  text-shadow: 0 2px rgba(10, 60, 7, 0.2);
}
.bttn .main_b:hover {
  background-color: #000929;
}
.bttn .dark_b {
  border-width: 0;
  background-color: #000;
  color: #f49c00;
}
.bttn .dark_b:hover {
  background-color: #160f02;
}
.bttn .sub_b {
  background-color: #fff;
  color: #19244E;
}
.bttn .sub_b:hover {
  background-color: #becbff;
}

.g_kv {
  background: url("img/kv/bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  height: 50vw;
}
.g_kv .mask {
  position: relative;
  width: 58%;
  left: 0;
}
.g_kv .mask img {
  width: 100%;
  max-width: 100%;
}
.g_kv .df_logo {
  position: absolute;
  width: 12%;
  left: 85%;
  top: 90%;
}
.g_kv .df_logo img {
  width: 100%;
  max-width: 100%;
}
.g_kv .pic {
  position: absolute;
  z-index: 1;
  width: 42%;
  top: 5%;
  left: 55%;
}
.g_kv .pic img {
  width: 100%;
  max-width: 100%;
}
.g_kv .tit {
  position: absolute;
  left: 50%;
  top: 8%;
  transform: translateX(-50%);
  width: 97.1875%;
  text-align: center;
  mix-blend-mode: screen;
}
.g_kv .tit .t0 {
  position: absolute;
  width: 53.59056806%;
  margin-top: 1%;
  left: 6%;
}
.g_kv .tit .t0 img {
  width: 100%;
  max-width: 100%;
}
.g_kv .tit .t1 {
  position: absolute;
  width: 50.911039657%;
  left: 5%;
  margin-top: 3%;
}
.g_kv .tit .t1 img {
  width: 100%;
  max-width: 100%;
}
.g_kv .tit .t2 {
  position: absolute;
  width: 25.9914255091%;
  left: 6%;
  margin-top: 25%;
}
.g_kv .tit .t2 img {
  width: 100%;
  max-width: 100%;
}
.g_kv .tit .t3 {
  position: absolute;
  width: 25.5091103966%;
  left: 6%;
  margin-top: 36%;
}
.g_kv .tit .t3 img {
  width: 100%;
  max-width: 100%;
}
.g_kv .tit .p1 {
  position: absolute;
  width: 36.1736334405%;
  left: 60%;
  margin-top: 3%;
  transform: initial;
  animation: tit_float1 3s linear infinite alternate both;
}
.g_kv .tit .p1 img {
  width: 100%;
  max-width: 100%;
}
@keyframes tit_float1 {
  0% {
    transform: translateY(-15px) scale(1);
  }
  50% {
    transform: translateY(0px) scale(1);
  }
  100% {
    transform: translateY(15px) scale(1);
  }
}
.g_kv .tit .p2 {
  position: absolute;
  width: 32.154340836%;
  left: 61.5%;
  margin-top: 0%;
  animation: tit_float2 4.5s linear infinite alternate both;
}
.g_kv .tit .p2 img {
  width: 100%;
  max-width: 100%;
}
@keyframes tit_float2 {
  0% {
    transform: translateY(10px) scale(1);
  }
  50% {
    transform: translateY(0px) scale(1);
  }
  100% {
    transform: translateY(-10px) scale(1);
  }
}
.g_kv .tit a {
  display: inline-block;
  opacity: 1;
  transition: all 300ms;
}
.g_kv .tit a img {
  width: 100%;
}
.g_kv .tit a:hover {
  opacity: 0.6;
  transform: translateY(-5px);
}
.g_kv .timer {
  position: absolute;
  left: 35%;
  bottom: 100px;
  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: #f49c00;
}
.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 {
  background: linear-gradient(90deg, rgba(14, 14, 14, 0.5), #0e0e0e);
}

.main_sc {
  padding: 60px 0;
}

.sc_title_list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.sc_title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
}
.sc_title .tit {
  font-weight: 700;
  line-height: 1;
  color: #ebc87e;
}
.sc_title .tit.c_main {
  color: #ebc87e;
}
.sc_title .tit.c_white {
  color: #ebc87e;
}
.sc_title .tit.c_green {
  line-height: 1.5;
  color: rgb(10, 145, 0);
}
.sc_title .tit.c_brw {
  line-height: 1.5;
  color: #d1933e;
}

.sc_intro {
  background: transparent;
}

.intro_cnt {
  text-align: center;
  font-size: 1.125rem;
}
.intro_cnt .sub_title {
  color: #022A01;
  font-weight: bold;
  font-size: 1.6rem;
}
.intro_cnt .btn_list {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}
.intro_cnt .btn_list .sbtn {
  flex: 0 0 1;
  padding: 10px 30px;
  width: 300px;
  background: #34375A;
  border: solid 2px #EA9B00;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
}
.intro_cnt .btn_list .sbtn a {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-decoration: none;
  color: #F4E1A8;
  font-weight: 600;
  font-size: 24px;
}
.intro_cnt .btn_list .sbtn a span {
  color: white;
  background-color: #EA9C00;
  font-size: 18px;
  letter-spacing: 0.1rem;
  margin: 10px 0;
  padding: 2% 5%;
  border-radius: 5px;
  display: block;
  transition: all 0.6s;
}
.intro_cnt .btn_list .sbtn a span:hover {
  background-color: #EA9C00;
  color: #34375A;
  transition: all 0.6s;
}
.intro_cnt .main_btn {
  margin-top: 2%;
  transition: all 0.6s;
}
.intro_cnt .main_btn img {
  width: 60%;
  max-width: 60%;
}
.intro_cnt .main_btn:hover {
  transition: all 0.6s;
  transform: scale(1.05);
}
.intro_cnt .highlight_tit {
  color: #f49c00;
  font-size: 1.65em;
  font-weight: 700;
  margin-bottom: 1em;
  line-height: 1;
}
.intro_cnt p {
  margin-bottom: 0.5em;
  padding: 0.25em 10%;
  line-height: 1.65;
  text-align: left;
  color: white;
}
.intro_cnt .features {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: nowrap;
  height: 380px;
}
.intro_cnt .features .feature {
  width: 270px;
  height: 250px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-clip-path: polygon(50% 0%, 90.18% 19.72%, 100% 64.22%, 72.32% 100%, 27.68% 100%, 0% 64.22%, 10.09% 19.72%);
  transition: all 0.3s;
  box-sizing: border-box;
  border: solid 2px transparent;
  transform: skew(0deg, 0deg);
}
.intro_cnt .features .feature:hover {
  -webkit-clip-path: polygon(50% 0%, 100% 0%, 100% 50%, 100% 100%, 0% 100%, 0% 50%, 0% 0%);
  transition: all 0.3s;
  height: 250px;
  border: solid 2px #F4D97D;
  transform: skew(-5deg, 0deg);
}
.intro_cnt .features .feature:hover .title {
  font-size: 0px;
  opacity: 0;
}
.intro_cnt .features .feature:hover .detail {
  padding: 0;
  margin: 0;
  opacity: 1;
  font-size: 15px;
  transition: all 0.3s;
  text-shadow: 0px 0px 2px black;
}
.intro_cnt .features .feature:hover .detail p.sub_title {
  color: white;
  line-height: 1.4rem;
  font-size: 16px;
  transition: all 0.3s;
  letter-spacing: 0.1rem;
}
.intro_cnt .features .feature .title {
  position: absolute;
  color: white;
  font-size: 28px;
  opacity: 1;
  font-weight: bold;
  letter-spacing: 0.2rem;
  margin: 0;
  text-shadow: 1px 3px 8px rgba(72, 72, 72, 0.6);
  transition: all 0.3s;
}
.intro_cnt .features .feature .detail {
  color: #303030;
  opacity: 0;
  font-size: 14px;
  transition: all 0.3s;
  text-align: left;
  padding: 0;
}
.intro_cnt .features .feature .detail p {
  padding: 0;
}
.intro_cnt .features .feature .detail p.sub_title {
  line-height: 1.4rem;
  color: white;
  font-weight: bold;
  letter-spacing: 0.1rem;
  font-size: 16px;
  transition: all 0.3s;
}
.intro_cnt .features .feature.feature1 {
  background: linear-gradient(45deg, #3a1910, #e1c082, #c59152);
}
.intro_cnt .features .feature.feature2 {
  background: linear-gradient(45deg, #353535, #a6a6a6, #7c7c7c);
}
.intro_cnt .features .feature.feature3 {
  background: linear-gradient(45deg, #3a1910, #e1c082, #c59152);
}
.intro_cnt .features .feature.feature4 {
  background: linear-gradient(45deg, #353535, #a6a6a6, #7c7c7c);
}
.intro_cnt .combain_outter {
  margin-top: 60px;
  display: inline-block;
  background: linear-gradient(105deg, #ffe48b, #C39E4E, #7d6725 10%, #ffe386, #C39E4E, #D3BC70, #B87360, #7d6725, #D3BC70);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.4%;
  border-radius: 5px;
}
.intro_cnt .combain_outter .combain {
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
  width: 640px;
  max-width: 100%;
  line-height: 1.2;
  font-size: 1.25em;
  padding: 35px 0 35px 0;
  border-radius: 5px;
  margin: 0;
  background: linear-gradient(95deg, #350443, #ac3be9, #7e1e9f);
  color: white;
}
.intro_cnt .combain_outter .combain .line1 {
  font-weight: 700;
  font-size: 32px;
  background: -webkit-linear-gradient(180deg, #ffe48b, #ebc87e, #ffe386, #ffdf9b, #D3BC70, #fff0c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.intro_cnt .combain_outter .combain .line2 {
  font-size: 20px;
  font-weight: 500;
  margin: 1.2rem 0;
  line-height: 1.8em;
  letter-spacing: 0.1rem;
}
.intro_cnt .combain_outter .combain .line3 {
  display: inline-block;
  background: -webkit-linear-gradient(45deg, rgb(204, 171, 62), #ebc87e, rgb(204, 171, 62), #ebc87e);
  font-size: 30px;
  padding: 20px 100px;
  border-radius: 10px;
  font-weight: bold;
  color: white;
  text-shadow: 1px 1px 3px rgba(47, 34, 0, 0.4);
  box-shadow: 3px 5px 20px rgba(62, 56, 0, 0.4);
  transition: all 0.6s;
}
.intro_cnt .combain_outter .combain .line3:hover {
  transform: scale(1.05);
  transition: all 0.6s;
  letter-spacing: 0.15rem;
}
.intro_cnt .videoReview {
  display: inline-block;
  margin: 30px auto;
  font-weight: 700;
  font-size: 1.75rem;
  color: transparent;
  background: linear-gradient(90deg, #6b4ea8, #ef5a6e, #1b3bdb);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.intro_cnt .titleText {
  display: inline-block;
  margin: 15px auto;
  font-weight: 700;
  line-height: 1.3;
  color: transparent;
  background: linear-gradient(45deg, #ea9c01, #df7b39, #dba009, #ea8101);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  text-shadow: 0 3px 15px rgba(165, 98, 14, 0.3);
}

.cta_cnt {
  margin-top: 30px;
  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;
  gap: 50px;
}
.cta_cnt .bttn {
  flex: 0 0 300px;
  margin: 0 0.5em;
}

.gift_cnt {
  position: relative;
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.gift_cnt .gift_item {
  position: relative;
  flex: 0 0 40%;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.gift_cnt .gift_item .pic {
  margin-bottom: 10px;
}
.gift_cnt .gift_item .pic img {
  border-radius: 15px;
  display: block;
  margin: 0 auto;
  width: 300px;
}
.gift_cnt .gift_item .wording {
  text-align: center;
  position: relative;
}
.gift_cnt .gift_item .tit {
  position: relative;
  box-sizing: border-box;
  font-size: 24px;
  font-weight: bold;
  color: #f49c00;
  margin-bottom: 4px;
}
.gift_cnt .gift_item .name {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.2;
  min-height: 1.6rem;
  color: #084b70;
}
.gift_cnt .gift_item .text {
  margin-top: 4px;
}
.gift_cnt .gift_item .text span {
  color: rgba(8, 75, 112, 0.6);
}
.gift_cnt .gift_item.sp {
  position: relative;
  flex: 0 0 100%;
  margin: 30px auto;
  padding: 20px 0 50px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.gift_cnt .gift_item.sp .wording {
  position: relative;
  padding: 0;
}
.gift_cnt .gift_item.sp .tit {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.gift_cnt .gift_item.sp .sp_item {
  position: relative;
  flex: 0 0 30%;
  box-sizing: border-box;
  padding: 15px 30px;
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  justify-self: stretch;
  align-items: center;
  text-align: left;
}

.sc_agenda .gift_cnt {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.sc_agenda .gift_cnt .gift_item {
  position: relative;
  flex: 0 0 25%;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.sc_agenda .gift_cnt .gift_item .pic {
  margin-bottom: 10px;
}
.sc_agenda .gift_cnt .gift_item .pic img {
  border-radius: 15px;
  display: block;
  margin: 0 auto;
  width: 300px;
}
.sc_agenda .gift_cnt .gift_item .wording {
  text-align: center;
  position: relative;
}
.sc_agenda .gift_cnt .gift_item .tit {
  position: relative;
  box-sizing: border-box;
  font-size: 24px;
  font-weight: bold;
  color: #f49c00;
  margin-bottom: 4px;
}
.sc_agenda .gift_cnt .gift_item .name {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.2;
  min-height: 1.6rem;
  color: #084b70;
}
.sc_agenda .gift_cnt .gift_item .text {
  margin-top: 4px;
}
.sc_agenda .gift_cnt .gift_item .text span {
  color: rgba(8, 75, 112, 0.6);
}
.sc_agenda .gift_cnt .gift_item.sp {
  position: relative;
  flex: 0 0 100%;
  margin: 30px auto;
  padding: 20px 0 50px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.sc_agenda .gift_cnt .gift_item.sp .wording {
  position: relative;
  padding: 0;
}
.sc_agenda .gift_cnt .gift_item.sp .tit {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.sc_agenda .gift_cnt .gift_item.sp .sp_item {
  position: relative;
  flex: 0 0 30%;
  box-sizing: border-box;
  padding: 15px 30px;
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  justify-self: stretch;
  align-items: center;
  text-align: left;
}

.agd_cnt {
  margin-bottom: 20px;
  line-height: 1.3;
  color: white;
  border-radius: 10px 10px 0 0;
}
.agd_cnt .tr {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.agd_cnt .tr.tr_light {
  background-color: rgba(164, 59, 220, 0.5);
}
.agd_cnt .tr_head {
  border-radius: 10px 10px 0 0;
  background-color: #B845E4;
  color: #fff;
}
.agd_cnt .td {
  padding: 0.6em;
}
.agd_cnt .td_time {
  flex: 0 0 4em;
  text-align: center;
}
.agd_cnt .td_title {
  display: inline-flex;
  align-items: center;
}
.agd_cnt .ag_tit {
  font-weight: 700;
  font-size: 1em;
  color: #ffe4ae;
}
.agd_cnt .ag_tit .track_div {
  font-size: 18px;
  margin: 2% 0;
  color: #ffefd6;
  font-weight: 550;
  display: none;
}
.agd_cnt .topic_toggle {
  flex: 0 0 100px;
}
.agd_cnt .ag_spk {
  line-height: 1.35;
}
.agd_cnt .ag_spk + .ag_spk_tit {
  margin-top: 15px;
}
.agd_cnt .ag_spk + .ag_spk {
  margin-top: 6px;
}
.agd_cnt .ag_spk .name {
  margin-top: 0.2rem;
  color: #084b70;
}
.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: flex-start;
}
.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 {
  text-align: center;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.agd_split .tr_split_tit .td_split.sp1 {
  background-color: #A43BDC;
}
.agd_split .tr_split_tit .td_split.sp2 {
  background-color: #DA2FEC;
}
.agd_split .tr_split_tit .td_split.sp3 {
  background-color: #705aff;
}
.agd_split .tr_split_tit .td_split.sp2_1 {
  background-color: rgb(22, 202, 2);
}
.agd_split .tr_split_tit .td_split.sp2_2 {
  background-color: #15b2e7;
}
.agd_split .tr_split_tit .td_split.sp2_3 {
  background-color: #f0d801;
  color: #222222;
}
.agd_split .sp1 {
  flex: 0 1 33%;
  border-left: 5px solid #A43BDC;
}
.agd_split .sp2_1 {
  flex: 0 1 33%;
  border-left: 5px solid rgb(22, 202, 2);
}
.agd_split .sp2 {
  flex: 0 1 32%;
  border-left: 5px solid #DA2FEC;
}
.agd_split .sp2_2 {
  flex: 0 1 32%;
  border-left: 5px solid #15b2e7;
}
.agd_split .sp3 {
  flex: 0 1 33%;
  border-left: 5px solid #705aff;
}
.agd_split .sp2_3 {
  flex: 0 1 33%;
  border-left: 5px solid #f0d801;
}
.agd_split .ag_spk {
  margin-top: 0.2rem;
  padding: 0.2rem 0;
}

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

.sc_speaker {
  background-color: transparent;
}

.speaker_items {
  display: flex;
  flex-wrap: wrap;
}
.speaker_items .item {
  flex: 0 0 25%;
  padding: 0 10px;
  text-align: center;
  margin-bottom: 20px;
}
.speaker_items .item .for_test {
  display: none;
}
.speaker_items .item .pic {
  position: relative;
  width: 100%;
  padding-top: 100%;
  margin-bottom: 10px;
  background: url("img/ui/speech.svg") center/120px no-repeat;
  cursor: pointer;
}
.speaker_items .item .pic img {
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: transform 300ms;
}
.speaker_items .item .pic:hover img {
  transform: scale(0.95);
}
.speaker_items .item .name {
  margin-bottom: 6px;
  color: #084b70;
  font-size: 1.25em;
  line-height: 1.2;
}
.speaker_items .item .name span {
  display: inline-block;
}

.sc_sponsor {
  background-color: transparent;
}
.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: #084b70;
  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(8, 75, 112, 0.6);
}
.sort_cnt .sorts .item_link.is_active {
  background-color: #FF8200;
}

.sponsor_cnt {
  padding: 20px 0;
}
.sponsor_cnt .stitle {
  font-size: 22px;
  color: #ebc87e;
  margin-left: 15px;
}
.sponsor_cnt .sponsors {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.sponsor_cnt .spr_item {
  position: relative;
  flex: 0 0 20%;
  padding: 10px;
}
.sponsor_cnt .spr_item:after {
  position: absolute;
  content: "▶ 暸解更多";
  top: 10px;
  right: 10px;
  z-index: 1;
  background-color: #B845E4;
  color: white;
  padding: 1% 3%;
  font-size: 14px;
  border-radius: 0 0 0 5px;
}
.sponsor_cnt .spr_item .name {
  background: -webkit-linear-gradient(180deg, rgb(204, 171, 62), #ebc87e, rgb(204, 171, 62), #ebc87e);
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  text-align: center;
  font-weight: 550;
  font-size: 18px;
  padding: 2px 0;
  letter-spacing: 0.1rem;
}
.sponsor_cnt .spr_item .for_test {
  display: none;
}
.sponsor_cnt .spr_item .link {
  display: block;
  border-radius: 10px;
  background-color: #fff;
}

.sc_location {
  background: transparent;
}

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

.sc_detail {
  background: transparent;
}
.sc_detail .list {
  color: white;
  padding-left: 1.5em;
}
.sc_detail .list li {
  padding: 0.25em 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  body {
    background: #32013B;
  }
  .g_header {
    background-color: #343a40;
  }
  .g_header .header_cnt {
    display: block;
    padding: 0.5rem 0;
  }
  .g_header .menu_trigger {
    padding: 0 24px;
  }
  .g_header .nav_area .nav_content {
    display: block;
  }
  .g_header .nav_area .nav_cnt {
    padding: 10px 0;
    display: block;
  }
  .g_header .nav_area .nav_item.is_highlight {
    padding: 0;
  }
  .g_header .nav_area .nav_link {
    border-radius: 0;
    padding: 16px 24px;
    color: white;
  }
  .g_kv {
    background: url(img/kv/bg.jpg);
    background-position: 100% 100%;
    background-size: cover;
    background-repeat: no-repeat;
    height: 120vw;
  }
  .g_kv .df_logo {
    top: 92%;
    width: 30%;
    left: 65%;
  }
  .g_kv .tit {
    margin-top: 15%;
    width: 100%;
    max-width: 100%;
    z-index: 2;
    left: 50%;
  }
  .g_kv .tit .t0 {
    margin-top: 0;
    width: 90%;
  }
  .g_kv .tit .t1 {
    margin-top: 4%;
    width: 85%;
  }
  .g_kv .tit .t2 {
    margin-top: 40%;
    width: 60%;
  }
  .g_kv .tit .t3 {
    margin-top: 65%;
    width: 60%;
  }
  .g_kv .tit .p1 {
    display: none;
  }
  .g_kv .tit .p2 {
    display: none;
  }
  .g_kv .timer {
    top: -18%;
    position: relative;
    left: 0%;
    transform: translateX(-60%);
  }
  .sc_intro {
    background: transparent;
  }
  .main_sc {
    padding: 40px 0;
  }
  .sc_title {
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
  }
  .sc_title .tit {
    line-height: 1.3;
  }
  .intro_cnt {
    font-size: 1.125rem;
  }
  .intro_cnt .btn_list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }
  .intro_cnt .btn_list .sbtn {
    box-shadow: none;
  }
  .intro_cnt .combain_outter {
    width: 100%;
    padding: 2%;
  }
  .intro_cnt .combain_outter .combain {
    width: 100%;
    box-shadow: none;
    padding: 25px 15px;
    left: 50%;
  }
  .intro_cnt .combain_outter .combain .line1 {
    font-size: 18px;
  }
  .intro_cnt .combain_outter .combain .line2 {
    font-size: 14px;
    letter-spacing: initial;
  }
  .intro_cnt .combain_outter .combain .line3 {
    padding: 20px;
    font-size: 24px;
  }
  .intro_cnt .features {
    flex-direction: column;
    height: auto;
    margin-top: 80px;
    gap: 50px;
  }
  .intro_cnt .features .feature {
    height: 250px;
    transform: initial;
  }
  .intro_cnt .features .feature:hover {
    transform: initial;
  }
  .intro_cnt p {
    padding: 0.5em 1em;
    line-height: 1.5;
  }
  .intro_cnt .btn_list {
    flex-direction: column;
  }
  .intro_cnt .main_btn img {
    width: 100%;
    max-width: 100%;
  }
  .cta_cnt .bttn {
    margin-bottom: 20px;
  }
  .cta_cnt .bttn:last-child {
    margin-bottom: 0;
  }
  .cta_cnt .bttn .bttn_inner {
    font-size: 1.5em;
  }
  .gift_cnt {
    display: block;
    flex-direction: column;
  }
  .gift_cnt .gift_item {
    padding: 0 30px;
    margin-bottom: 30px;
    display: block;
  }
  .gift_cnt .gift_item:nth-child(1) {
    padding-bottom: 30px;
    border: 0 solid rgba(0, 0, 0, 0.1);
    border-width: 0 0 1px 0;
  }
  .gift_cnt .gift_item:nth-child(2) {
    padding-bottom: 30px;
    border: 0 solid rgba(0, 0, 0, 0.1);
    border-width: 0 0 1px 0;
  }
  .gift_cnt .gift_item .wording {
    padding: 0;
  }
  .gift_cnt .gift_item .name {
    min-height: auto;
  }
  .gift_cnt .gift_item.sp {
    position: relative;
    flex: 0 0 100%;
    margin: 30px auto;
    padding: 20px 30px 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .gift_cnt .gift_item.sp .tit {
    position: relative;
    top: auto;
    left: auto;
    transform: translate(0, 0);
  }
  .gift_cnt .gift_item.sp .sp_item {
    position: relative;
    flex: 0 0 30%;
    box-sizing: border-box;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    justify-self: stretch;
    align-items: center;
    text-align: left;
  }
  .sc_agenda .ag_tip {
    color: white;
    padding: 0 2%;
    font-size: 12px;
  }
  .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 .ag_tit .track_div {
    font-size: 18px;
    margin: 2% 0;
    color: #F7E4C6;
    font-weight: 550;
    display: block;
  }
  .agd_cnt .topic_toggle {
    margin-top: 0.5em;
  }
  .agd_split .sp1 {
    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 .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 .container {
    padding: 0;
  }
  .speaker_items {
    display: flex;
    flex-wrap: wrap;
  }
  .speaker_items .item {
    flex: 0 0 50%;
  }
  .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 .stitle {
    text-align: center;
    margin: 50px 0 10px 0;
  }
  .sponsor_cnt .sponsors {
    justify-content: flex-start;
  }
  .sponsor_cnt .spr_item {
    flex: 0 0 50%;
    padding: 3px;
  }
  .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 */