body {
  font-family: 'Noto Sans TC', sans-serif;
  background: url("img/kv_bg.jpg") center/cover fixed;
}

.main_color {
  color: #0f39c1;
}

.sub_color {
  color: #084b70;
}

.fix_aside {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: .5rem;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  -webkit-transition: -webkit-transform 600ms;
  transition: -webkit-transform 600ms;
  transition: transform 600ms;
  transition: transform 600ms, -webkit-transform 600ms;
}

.fix_aside.is_active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.fix_aside .fx_item {
  position: relative;
  display: block;
  border-radius: .5em;
  margin: .5em 0;
  width: 4em;
  height: 4em;
  background-color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
  -webkit-transition: -webkit-transform 240ms, -webkit-box-shadow 240ms;
  transition: -webkit-transform 240ms, -webkit-box-shadow 240ms;
  transition: transform 240ms, box-shadow 240ms;
  transition: transform 240ms, box-shadow 240ms, -webkit-transform 240ms, -webkit-box-shadow 240ms;
}

.fix_aside .fx_item.is_primary {
  background-color: #0f39c1;
  color: #fff;
  line-height: 1.3;
}

.fix_aside .fx_item:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
}

.fix_aside .fx_item .in_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.fix_aside .fx_item .in_wrap.ic {
  width: 100%;
  height: 100%;
  padding: .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%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.g_header.is_active {
  background-image: -webkit-gradient(linear, right top, left top, from(#0f39c1), color-stop(50%), to(#a9e9ff));
  background-image: linear-gradient(-90deg, #0f39c1, 50%, #a9e9ff);
}

.g_header .header_cnt {
  position: relative;
  padding: .5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.g_header .nav_area .nav_cnt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  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: #00C7FD;
  color: #fff;
}

.g_header .nav_area .nav_link {
  border-radius: 4px;
  display: block;
  padding: 12px;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.g_header .nav_area .nav_link:hover {
  color: #00C7FD;
  text-decoration: none;
}

.g_header .header_sns {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          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: .5em 0;
  display: none;
}

.g_header .header_sns .hover_menu .hover_item {
  cursor: pointer;
  display: block;
  margin-top: .5em;
}

.bttn {
  display: inline-block;
}

.bttn .bttn_inner {
  cursor: pointer;
  display: block;
  padding: .75em 2em;
  border-radius: 2em;
  font-size: 1.25em;
  line-height: 1;
  border: 2px solid #0f39c1;
  text-align: center;
  font-weight: 500;
  -webkit-transition-property: background, color;
  transition-property: background, color;
  -webkit-transition-duration: 300ms;
          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: .35em 1em;
  font-size: .95em;
}

.bttn .main_b {
  border: 2px solid #0f39c1;
  color: #0f39c1;
  background-color: transparent;
  text-shadow: 0 2px rgba(0, 0, 0, 0.2);
}

.bttn .main_b:hover {
  background-color: #0f39c1;
  color: #fff;
}

.bttn .dark_b {
  border-width: 0;
  background-color: #000;
  color: #0f39c1;
}

.bttn .dark_b:hover {
  background-color: #160f02;
}

.bttn .sub_b {
  background-color: #fff;
  color: #0f39c1;
}

.bttn .sub_b:hover {
  background-color: #ffecca;
}

@-webkit-keyframes notbed {
  0% {
    opacity: 0.4;
  }
  2.5% {
    opacity: 1;
  }
  5% {
    opacity: 0.4;
  }
  7.5% {
    opacity: 0.8;
  }
  10% {
    opacity: 0.8;
  }
  15% {
    opacity: 0.4;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0.4;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0.8;
  }
}

@keyframes notbed {
  0% {
    opacity: 0.4;
  }
  2.5% {
    opacity: 1;
  }
  5% {
    opacity: 0.4;
  }
  7.5% {
    opacity: 0.8;
  }
  10% {
    opacity: 0.8;
  }
  15% {
    opacity: 0.4;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0.4;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0.8;
  }
}

@-webkit-keyframes yearMove {
  0% {
    opacity: 0.4;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-60px);
            transform: translateY(-60px);
  }
}

@keyframes yearMove {
  0% {
    opacity: 0.4;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-60px);
            transform: translateY(-60px);
  }
}

.g_kv {
  position: relative;
  overflow: hidden;
  background-color: #0f39c1;
}

.g_kv .desktop {
  position: relative;
  height: 100vh;
  background-image: url("img/kv_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.g_kv .kv_cloud {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 36.45833%;
  -webkit-transform: translate(20%, -40%);
          transform: translate(20%, -40%);
}

.g_kv .kv_cloud .kv_cloud_inner {
  position: relative;
  width: 100%;
  height: auto;
}

.g_kv .kv_cloud img {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: block;
}

.g_kv .tit {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 40%;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
}

.g_kv .tit img {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: block;
}

.g_kv .tit .df_logo {
  position: relative;
  margin: 0 auto;
  width: 74.17582%;
}

.g_kv .tit .t1 {
  position: relative;
  margin: -5% auto 10% auto;
  width: 100%;
}

.g_kv .tit .t2 {
  position: relative;
  margin: 0 auto;
  width: 72.52747%;
}

.g_kv .kv_sponsor {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 66.14583%;
}

.g_kv .timer {
  position: absolute;
  right: 5%;
  bottom: 60px;
  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: #00C7FD;
}

.g_kv .timer .tb span {
  position: absolute;
  left: 50%;
  top: calc(50% - .5rem);
  -webkit-transform: translate(-50%, -50%);
          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 {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.main_sc {
  padding: 60px 0;
}

.sc_title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.sc_title .tit {
  color: #0f39c1;
  font-weight: 700;
  line-height: 1;
}

.sc_title .tit.c_main {
  color: #0f39c1;
}

.sc_title .tit.c_white {
  color: #fff;
}

.sc_title .tit.c_green {
  line-height: 1.5;
  color: #0a9100;
}

.sc_title .tit.c_blue {
  line-height: 1.5;
  color: #204597;
}

.sc_title .tit.c_light {
  line-height: 1.5;
  color: #00C7FD;
}

.sc_intro {
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(70%), to(rgba(255, 255, 255, 0.9)));
  background-image: linear-gradient(180deg, white, 70%, rgba(255, 255, 255, 0.9));
  padding: 60px 0 60px 0;
}

.intro_cnt {
  text-align: center;
  font-size: 21px;
}

.intro_cnt .highlight_tit {
  color: #0f39c1;
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 1em;
  line-height: 1;
}

.intro_cnt p {
  position: relative;
  margin-bottom: 15px;
  padding: 5px 0;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.65;
  color: #080505;
  max-width: 1000px;
  margin: 15px auto;
}

.intro_cnt p span {
  color: #0f39c1;
}

.intro_cnt .combain {
  position: relative;
  width: 640px;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 15px auto;
  padding: 5px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  background: -webkit-gradient(linear, right top, left top, from(#019fdb), color-stop(#204597), color-stop(#0e366e), to(#019fdb));
  background: linear-gradient(-90deg, #019fdb, #204597, #0e366e, #019fdb);
}

.intro_cnt .combain .combain_inner {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  box-sizing: border-box;
  padding: 25px 0;
  border-radius: 15px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.intro_cnt .combain .cnt {
  position: relative;
  width: 100%;
  display: block;
  color: #0a9100;
  font-size: 1.5rem;
  font-weight: bold;
}

.intro_cnt .combain .normal {
  display: inline-block;
  font-weight: 700;
  font-size: 1.75rem;
  color: #0a9100;
}

.intro_cnt .combain .highLight {
  display: inline-block;
  font-weight: 700;
  font-size: 1.75rem;
  color: transparent;
  background: -webkit-gradient(linear, right top, left top, from(#019fdb), color-stop(#204597), color-stop(#0e366e), to(#019fdb));
  background: linear-gradient(-90deg, #019fdb, #204597, #0e366e, #019fdb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.intro_cnt .videoReview {
  display: block;
  margin: 5px auto;
  font-weight: 700;
  font-size: 32px;
  color: transparent;
  background: -webkit-gradient(linear, right top, left top, from(#00C7FD), color-stop(#0f39c1), to(#00C7FD));
  background: linear-gradient(-90deg, #00C7FD, #0f39c1, #00C7FD);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.combain {
  position: relative;
  width: 640px;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 50px auto;
  padding: 5px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  background: linear-gradient(120deg, #00C7FD, #0f39c1, 80%, #00C7FD, 80%, #00C7FD);
}

.combain .combain_inner {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  box-sizing: border-box;
  padding: 25px 0;
  border-radius: 15px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.combain .cnt {
  position: relative;
  width: 100%;
  display: block;
  text-align: center;
  color: #0f39c1;
  font-weight: bold;
  font-size: 1.5rem;
}

.combain .highLight {
  display: inline-block;
  font-weight: 700;
  font-size: 1.75rem;
  color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#0f39c1), color-stop(#00C7FD), to(#0f39c1));
  background: linear-gradient(90deg, #0f39c1, #00C7FD, #0f39c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.cta_box {
  padding: 20px 0;
  text-align: center;
}

.cta_box .cta {
  text-align: center;
}

.cta_box .cta .bttn {
  position: relative;
  display: inline-block;
  border-radius: 0;
  height: 5rem;
  overflow: hidden;
  border: 2px solid #0f39c1;
  -webkit-transform: skewX(-10deg);
          transform: skewX(-10deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  cursor: pointer;
}

.cta_box .cta .bttn::before {
  -webkit-transition: left 300ms ease-in-out;
  transition: left 300ms ease-in-out;
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#0f39c1), color-stop(80%), color-stop(#0f39c1), color-stop(80%), to(#0f39c1));
  background: linear-gradient(90deg, #0f39c1, 80%, #0f39c1, 80%, #0f39c1);
}

.cta_box .cta .bttn div {
  position: relative;
  top: 50%;
  z-index: 2;
  padding: 0 5.625rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: #0f39c1;
  text-shadow: 0 1px 5px rgba(255, 255, 255, 0.3);
  -webkit-transition-property: color, text-shadow;
  transition-property: color, text-shadow;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cta_box .cta .bttn:hover {
  -webkit-transform: skewX(0deg);
          transform: skewX(0deg);
  border-radius: 15px;
}

.cta_box .cta .bttn:hover::before {
  left: 0;
}

.cta_box .cta .bttn:hover div {
  color: #fff;
  text-shadow: 0 1px 5px rgba(15, 57, 193, 0);
}

.gift_cnt {
  position: relative;
  padding: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-color: white;
}

.gift_cnt .tatolTit {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #0f39c1;
}

.gift_cnt .tatolTit span {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 25px;
  background-color: #0f39c1;
  font-size: 18px;
  color: #fff;
}

.gift_cnt .tatolTit span::after {
  content: '';
  position: absolute;
  top: 0;
  right: -20px;
  width: 20px;
  height: 100%;
  background-color: #0f39c1;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

.gift_cnt .gift_item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding: 15px 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gift_cnt .gift_item:nth-child(1) {
  border: 0 solid rgba(0, 0, 0, 0.1);
  border-right-width: 1px;
}

.gift_cnt .gift_item .pic {
  border-radius: 4px;
  margin-bottom: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 220px;
          flex: 0 0 220px;
  border: 1px solid #0f39c1;
}

.gift_cnt .gift_item .pic img {
  display: block;
  margin: 0 auto;
  width: 220px;
}

.gift_cnt .gift_item .wording {
  position: relative;
  padding: 0 0 0 30px;
}

.gift_cnt .gift_item .tit {
  color: #0f39c1;
  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 .name span {
  position: relative;
  display: inline-block;
  margin: 5px auto;
  border-radius: 25px;
  border: 2px solid #00C7FD;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 15px;
  background-color: #00C7FD;
  color: #ffffff;
}

.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;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin: 30px auto;
  padding: 20px 0 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gift_cnt .gift_item.sp .wording {
  position: relative;
  padding: 0;
}

.gift_cnt .gift_item.sp .tit {
  position: absolute;
  top: -20px;
  left: 50%;
  font-size: 24px;
  font-weight: bold;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  color: #fff;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 15px;
  background-color: #0f39c1;
  -webkit-box-shadow: 0 3px 5px rgba(15, 57, 193, 0.3);
          box-shadow: 0 3px 5px rgba(15, 57, 193, 0.3);
}

.gift_cnt .gift_item.sp .sp_item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-self: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}

.gift_cnt .gift_item.sp .alone_item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-self: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.gift_cnt .gift_item.sp .alone_item .tit {
  position: relative;
  margin: 30px auto;
}

.gift_cnt .gift_item.al {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-right-width: 0;
}

.gift_cnt .gift_item.al .wording {
  position: relative;
  padding: 0;
}

.gift_cnt .gift_item.al .tit {
  position: relative;
  margin: 30px auto;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 15px;
  background-color: #0f39c1;
  -webkit-box-shadow: 0 3px 5px rgba(15, 57, 193, 0.3);
          box-shadow: 0 3px 5px rgba(15, 57, 193, 0.3);
}

.gift_cnt .gift_item.al .alone_item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-self: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.gift_cnt .gift_item.al .alone_item .pic {
  border-radius: 15px;
  overflow: hidden;
}

.gift_cnt .gift_item.al .alone_item.rowItem {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gift_cnt .gift_item.al .alone_item.rowItem .wording {
  margin: 0 25px;
}

.gift_cnt .gift_item.al .alone_item.rowItem .name {
  text-align: left;
}

.sc_agenda {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(15, 57, 193, 0.9)), color-stop(70%), to(rgba(255, 255, 255, 0.9)));
  background-image: linear-gradient(0deg, rgba(15, 57, 193, 0.9), 70%, rgba(255, 255, 255, 0.9));
}

.agd_main {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 10px rgba(15, 57, 193, 0.3);
          box-shadow: 0 3px 10px rgba(15, 57, 193, 0.3);
  margin: 0 0 20px 0;
}

.agd_cnt {
  position: relative;
  background-color: #fff;
  line-height: 1.3;
  color: #0f39c1;
}

.agd_cnt .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(0, 199, 253, 0.5);
}

.agd_cnt .tr:last-child {
  border-bottom: 0;
}

.agd_cnt .tr.tr_light {
  background-color: rgba(0, 199, 253, 0.1);
}

.agd_cnt .tr_head {
  background-color: #00C7FD;
  color: #fff;
}

.agd_cnt .td {
  padding: 0.6em 1.2em;
}

.agd_cnt .td_time {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8em;
          flex: 0 0 8em;
  text-align: center;
}

.agd_cnt .td_title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.agd_cnt .ag_tit {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-right: 1em;
  font-weight: 700;
  font-size: 1.125em;
}

.agd_cnt .topic_toggle {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          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: #0f39c1;
  font-weight: bold;
}

.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: #00C7FD;
}

.agd_normal .td_title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 60%;
          flex: 0 1 60%;
}

.agd_normal .td_speaker {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40%;
          flex: 0 1 40%;
}

.ag_tip {
  text-align: center;
  color: #ffffff;
}

.sc_speaker {
  background-color: #fff;
}

.speaker_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.speaker_items .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          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%;
  margin: 0 0 15px 0;
  border-radius: 20px;
  -webkit-box-shadow: 0 3px 10px rgba(15, 57, 193, 0.6);
          box-shadow: 0 3px 10px rgba(15, 57, 193, 0.6);
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.speaker_items .item .pic img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.speaker_items .item .pic:hover {
  -webkit-box-shadow: 0 0 0 rgba(15, 57, 193, 0.6);
          box-shadow: 0 0 0 rgba(15, 57, 193, 0.6);
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.speaker_items .item .picForNone {
  position: relative;
  width: 100%;
  margin: 0 0 15px 0;
  border-radius: 20px;
  -webkit-box-shadow: 0 3px 10px rgba(15, 57, 193, 0.6);
          box-shadow: 0 3px 10px rgba(15, 57, 193, 0.6);
  overflow: hidden;
}

.speaker_items .item .picForNone img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.speaker_items .item .name {
  margin-bottom: 6px;
  color: #084b70;
  font-size: 24px;
  line-height: 1.2;
  font-weight: bold;
}

.speaker_items .item .name span {
  display: inline-block;
}

.speaker_items .item .tit {
  font-size: 21px;
}

.sc_sponsor {
  background-color: #f8f8f8;
}

.sc_sponsor .container-fluid {
  max-width: 1440px;
}

.sort_cnt .sorts {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sort_cnt .sorts .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 5px;
}

.sort_cnt .sorts .item_link {
  display: block;
  border-radius: 8px;
  padding: .75em 1.5em;
  background-color: #084b70;
  font-size: 1em;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  -webkit-transition: background 250ms;
  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: #0f39c1;
}

.sponsor_cnt {
  padding: 20px 0;
}

.sponsor_cnt .sponsors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sponsor_cnt .spr_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  padding: 10px;
}

.sponsor_cnt .spr_item .for_test {
  display: none;
}

.sponsor_cnt .spr_item .link {
  display: block;
  border-radius: 10px;
  background-color: #fff;
}

.sc_location {
  background-color: rgba(0, 0, 28, 0.8);
}

.location_cnt .loc_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.location_cnt .loc_top .loc {
  color: #00C7FD;
  font-size: 28px;
  margin: 0 0.5em 10px;
}

.location_cnt .loc_top .addr {
  font-size: 21px;
  margin: 0 0.5em 10px;
  color: #ffffff;
}

.location_cnt .loc_traffic {
  position: relative;
  margin: 1.875rem 0;
  font-size: 21px;
  color: #ffffff;
}

.location_cnt .loc_traffic span {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: .3125rem .9375rem;
  border-radius: .3125rem;
  background-color: #0f39c1;
  margin: 15px 0;
  color: #fff;
}

.location_cnt .loc_map {
  position: relative;
  width: 100%;
  height: 500px;
  border: 1px solid #0f39c1;
  border-radius: 15px;
  overflow: hidden;
}

.location_cnt .loc_map iframe {
  position: relative;
  width: 100%;
  height: 500px;
  border: 0;
}

.sc_detail {
  background-color: #fff;
}

.sc_detail .list {
  padding-left: 1.5em;
}

.sc_detail .list li {
  padding: .25em 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .g_header {
    background-color: #343a40;
  }
  .g_header .header_cnt {
    display: block;
    padding: .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 .desktop {
    height: 130vw;
  }
  .g_kv .kv_cloud {
    width: 80%;
    -webkit-transform: translate(-5%, -40%);
            transform: translate(-5%, -40%);
  }
  .g_kv .tit {
    width: 90%;
    -webkit-transform: translateY(-75%);
            transform: translateY(-75%);
  }
  .g_kv .kv_sponsor {
    bottom: 18%;
    left: 2%;
    width: 96%;
  }
  .g_kv .timer {
    padding: 14px 0 10px;
    position: static;
    background-color: transparent;
  }
  .main_sc {
    padding: 40px 0;
  }
  .sc_title {
    font-size: 1.75rem;
  }
  .sc_title .tit {
    line-height: 1.3;
  }
  .sc_intro {
    padding: 30px 0;
  }
  .intro_cnt {
    font-size: 16px;
  }
  .intro_cnt p {
    font-size: 16px;
    padding: .5em 1.5em;
    line-height: 1.5;
    text-align: justify;
  }
  .intro_cnt .videoReview {
    margin: 5px auto;
    font-size: 24px;
  }
  .combain .cnt {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 15px;
    font-size: 1rem;
  }
  .combain .highLight {
    font-size: 1.3125rem;
  }
  .cta_box {
    padding-bottom: 20px;
  }
  .cta_box .cta .bttn div {
    position: relative;
    top: 50%;
    z-index: 2;
    padding: 0 60px;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    color: #0f39c1;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.3);
    -webkit-transition-property: color, text-shadow;
    transition-property: color, text-shadow;
    -webkit-transition-duration: 300ms;
            transition-duration: 300ms;
    -webkit-transition-delay: 100ms;
            transition-delay: 100ms;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .cta_box .cta .bttn:hover {
    text-decoration: none;
  }
  .cta_box .cta .bttn:hover::before {
    left: -100%;
  }
  .cta_box .cta .bttn:hover div {
    color: #fff;
    text-shadow: 0 1px 5px rgba(15, 57, 193, 0);
  }
  .gift_cnt {
    display: block;
    padding: 20px 0;
  }
  .gift_cnt .gift_item {
    padding: 0 15px;
    margin-bottom: 15px;
    display: block;
  }
  .gift_cnt .gift_item:nth-child(1) {
    padding-bottom: 15px;
    border: 0 solid rgba(0, 0, 0, 0.1);
    border-width: 0 0 1px 0;
  }
  .gift_cnt .gift_item:nth-child(2) {
    padding-bottom: 15px;
    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;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 30px auto;
    padding: 20px 30px 50px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .gift_cnt .gift_item.sp .tit {
    position: relative;
    top: auto;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .gift_cnt .gift_item.sp .sp_item {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    justify-self: stretch;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
  }
  .gift_cnt .gift_item.al {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 30px auto;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .gift_cnt .gift_item.al .wording {
    position: relative;
    padding: 0;
  }
  .gift_cnt .gift_item.al .tit {
    position: relative;
    margin: 30px auto;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 15px;
    background-color: #0f39c1;
    -webkit-box-shadow: 0 3px 5px rgba(15, 57, 193, 0.3);
            box-shadow: 0 3px 5px rgba(15, 57, 193, 0.3);
  }
  .gift_cnt .gift_item.al .alone_item {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 5px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    justify-self: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .gift_cnt .gift_item.al .alone_item .pic {
    border-radius: 15px;
    overflow: hidden;
  }
  .gift_cnt .gift_item.al .alone_item.rowItem {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .gift_cnt .gift_item.al .alone_item.rowItem .wording {
    margin: 0 25px;
  }
  .gift_cnt .gift_item.al .alone_item.rowItem .name {
    text-align: center;
  }
  .agd_cnt .tr {
    display: block;
  }
  .agd_cnt .tr_head {
    display: none;
  }
  .agd_cnt .td {
    padding: .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: .5em;
  }
  .agd_split .tr_split_tit {
    display: none;
  }
  .agd_split .tr_split_tit .td_split {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    text-align: center;
  }
  .agd_split .tr_split_tit .td_time {
    display: none;
  }
  .sc_speaker .container {
    padding: 0;
  }
  .speaker_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .speaker_items .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .sort_cnt .sorts {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sort_cnt .sorts .item {
    margin: 0;
    padding: 3px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33%;
            flex: 0 0 33.33%;
  }
  .sort_cnt .sorts .item_link {
    text-align: center;
    padding: .65em 1.3em;
  }
  .sponsor_cnt {
    padding: 0;
  }
  .sponsor_cnt .spr_item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding: 3px;
  }
  .location_cnt .loc_top {
    display: block;
  }
  .location_cnt .loc_top .loc {
    margin-bottom: 0;
    font-size: 21px;
  }
  .location_cnt .loc_top .addr {
    margin-bottom: 15px;
    font-size: 16px;
  }
  .location_cnt .loc_traffic {
    font-size: 16px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 0 0 15px;
  }
  .location_cnt .loc_traffic span {
    padding: 5px 15px;
    margin: 0 0 0 -15px;
  }
  .location_cnt .loc_map {
    height: 300px;
  }
  .location_cnt .loc_map iframe {
    height: 300px;
  }
}
/*# sourceMappingURL=style.css.map */