@charset "UTF-8";
@-webkit-keyframes float {
  0% {
    -webkit-transform: scale(1.2) translateX(20px);
            transform: scale(1.2) translateX(20px);
  }
  50% {
    -webkit-transform: scale(1.1) translate(-15px);
            transform: scale(1.1) translate(-15px);
  }
  100% {
    -webkit-transform: scale(1.2) translate(0);
            transform: scale(1.2) translate(0);
  }
}
@keyframes float {
  0% {
    -webkit-transform: scale(1.2) translateX(20px);
            transform: scale(1.2) translateX(20px);
  }
  50% {
    -webkit-transform: scale(1.1) translate(-15px);
            transform: scale(1.1) translate(-15px);
  }
  100% {
    -webkit-transform: scale(1.2) translate(0);
            transform: scale(1.2) translate(0);
  }
}

html {
  font-size: 20px;
}

body {
  font-family: "Lato", "Noto Sans TC", "Microsoft Jhenghei", "微軟正黑", sans-serif;
  background: url(img/kv_bg.jpg) center/cover no-repeat fixed;
}

a {
  color: inherit;
}

.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: #d500e8;
  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 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 98;
  width: 100%;
}

.g_header.is_active {
  background-color: #1d1d1d;
}

.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: #d500e8;
  color: #000;
}

.g_header .nav_area .nav_item.is_highlight_w {
  padding: 0 6px;
}

.g_header .nav_area .nav_item.is_highlight_w .nav_link {
  background-color: #d500e8;
  color: #fff;
}

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

.g_header .nav_area .nav_link:hover {
  color: #0086f1;
  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;
}

@-webkit-keyframes cir_rotion {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes cir_rotion {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.g_kv {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.g_kv .desktop {
  position: relative;
  height: calc(100vh - 100px);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.g_kv .desktop .kv_bgArea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.g_kv .desktop .kv_bgArea .kv_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/kv_bg.jpg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

.g_kv .desktop .kv_bgArea img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.g_kv .desktop .kv_bgArea .kv_5g {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 31.25%;
  -webkit-transform: translate(-50%, 20%);
          transform: translate(-50%, 20%);
  opacity: 1;
  -webkit-filter: contrast(200%) brightness(200%);
          filter: contrast(200%) brightness(200%);
}

.g_kv .desktop .kv_bgArea .kv_5g_inner {
  position: relative;
  width: 100%;
}

.g_kv .desktop .kv_bgArea .kv_cir_1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7%;
  -webkit-transform: translate(-599%, 0%);
          transform: translate(-599%, 0%);
}

.g_kv .desktop .kv_bgArea .kv_cir_1_inner {
  position: relative;
  width: 100%;
}

.g_kv .desktop .kv_bgArea .kv_cir_1 img {
  animation: cir_rotion 15s linear reverse infinite;
}

.g_kv .desktop .kv_bgArea .kv_cir_2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12%;
  -webkit-transform: translate(-294%, 58%);
          transform: translate(-294%, 58%);
}

.g_kv .desktop .kv_bgArea .kv_cir_2_inner {
  position: relative;
  width: 100%;
}

.g_kv .desktop .kv_bgArea .kv_cir_2 img {
  -webkit-animation: cir_rotion 20s linear normal infinite;
          animation: cir_rotion 20s linear normal infinite;
}

.g_kv .desktop .kv_bgArea .kv_cir_3 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7%;
  -webkit-transform: translate(268%, 170%);
          transform: translate(268%, 170%);
}

.g_kv .desktop .kv_bgArea .kv_cir_3_inner {
  position: relative;
  width: 100%;
}

.g_kv .desktop .kv_bgArea .kv_cir_3 img {
  -webkit-animation: cir_rotion 15s linear normal infinite;
          animation: cir_rotion 15s linear normal infinite;
}

.g_kv .desktop .kv_bgArea .kv_cir_4 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12%;
  -webkit-transform: translate(181%, 28%);
          transform: translate(181%, 28%);
}

.g_kv .desktop .kv_bgArea .kv_cir_4_inner {
  position: relative;
  width: 100%;
}

.g_kv .desktop .kv_bgArea .kv_cir_4 img {
  animation: cir_rotion 20s linear reverse infinite;
}

.g_kv .desktop .kv_bgArea .kv_cir_5 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12%;
  -webkit-transform: translate(224%, 82%);
          transform: translate(224%, 82%);
}

.g_kv .desktop .kv_bgArea .kv_cir_5_inner {
  position: relative;
  width: 100%;
}

.g_kv .desktop .kv_bgArea .kv_cir_5 img {
  -webkit-animation: cir_rotion 20s linear normal infinite;
          animation: cir_rotion 20s linear normal infinite;
}

.g_kv .desktop .kv_bgArea .kv_cir_6 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6%;
  -webkit-transform: translate(609%, 6%);
          transform: translate(609%, 6%);
}

.g_kv .desktop .kv_bgArea .kv_cir_6_inner {
  position: relative;
  width: 100%;
}

.g_kv .desktop .kv_bgArea .kv_cir_6 img {
  animation: cir_rotion 15s linear reverse infinite;
}

.g_kv .kv_logo {
  position: absolute;
  top: 0;
  left: 0;
  margin: 3% 5%;
  width: 13.54167%;
  height: auto;
}

.g_kv .kv_logo img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.g_kv .kv_tit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68.22917%;
  -webkit-transform: translate(-50%, -115%);
          transform: translate(-50%, -115%);
}

.g_kv .kv_tit img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.g_kv .timer {
  position: absolute;
  left: 5%;
  bottom: calc(3% + 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: #01ffff;
}

.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_kv .logo {
  position: relative;
  width: 100%;
  height: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 30px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.g_kv .logo p {
  position: relative;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  font-size: 21px;
  font-weight: 500;
  color: #0086f1;
}

.g_kv .logo img {
  position: relative;
  width: auto;
  height: 80px;
  display: block;
  margin: 0 10px;
}

.g_kv .logo_inner {
  position: relative;
  margin: 0 0 0 30px;
}

.g_kv .logo div {
  position: relative;
  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;
}

@media (max-height: 600px) {
  .g_kv .desktop {
    position: relative;
    height: calc(100vh - 50px);
  }
  .g_kv .logo {
    height: 50px;
  }
  .g_kv .logo p {
    font-size: 14px;
  }
  .g_kv .logo img {
    position: relative;
    width: auto;
    height: 45px;
    display: block;
    margin: 0 10px;
  }
  .g_kv .logo_inner {
    position: relative;
    margin: 0 0 0 30px;
  }
  .g_kv .logo div {
    position: relative;
    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;
  }
}

.container {
  padding: 50px 120px;
}

.sc_company .container,
.sc_wording .container {
  padding-left: 0;
  padding-right: 0;
}

.g_main {
  overflow: hidden;
}

.g_main .sc_title {
  text-align: center;
  margin-bottom: 40px;
}

.g_main .sc_title .tit {
  display: inline-block;
  font-size: 42px;
  font-weight: bold;
  color: #0086f1;
  padding-left: .5rem;
  padding-right: .5rem;
}

.g_main .sc_title .tit span {
  font-size: 28px;
}

.g_main .sc_title .tit::after {
  content: '';
  position: absolute;
}

.g_main .sc_title .tit.LB {
  color: #01ffff;
}

.g_main .sc_title .tit.LW {
  color: #fff;
}

.g_main .sc_title .tip {
  font-size: .8rem;
  margin-top: 6px;
  color: #999;
}

.g_main .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, #d500e8, #0086f1, 80%, #01ffff, 80%, #01ffff);
}

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

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

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

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

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

.g_main .cta_box .cta .bttn {
  position: relative;
  display: inline-block;
  border-radius: 2.5rem;
  height: 5rem;
  background-color: #01ffff;
  overflow: hidden;
}

.g_main .cta_box .cta .bttn::before {
  -webkit-transition: left 300ms ease-in-out;
  transition: left 300ms ease-in-out;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.5rem;
  background: linear-gradient(120deg, #0086f1, 70%, #01ffff, 70%, #01ffff);
}

.g_main .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: #fff;
  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%);
}

.g_main .cta_box .cta .bttn:hover {
  text-decoration: none;
}

.g_main .cta_box .cta .bttn:hover::before {
  left: -100%;
}

.g_main .cta_box .cta .bttn:hover div {
  color: #0086f1;
  text-shadow: 0 1px 5px rgba(3, 0, 115, 0);
}

.sc_intros {
  position: relative;
  width: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(rgba(255, 255, 255, 0.9)));
  background-image: linear-gradient(180deg, white, rgba(255, 255, 255, 0.9));
}

.sc_intros .container {
  padding: 50px 100px;
}

.intro_cnt {
  line-height: 1.5;
}

.intro_cnt .parag {
  text-align: justify;
  margin-bottom: 1rem;
}

.intro_cnt .parag img {
  position: relative;
  width: 90%;
  height: auto;
  display: block;
  margin: 15px auto;
}

.intro_cnt .parag p {
  text-align: center;
}

.intro_cnt ul {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.intro_cnt ul li {
  margin-bottom: .75rem;
  line-height: 1.3;
}

.intro_cnt .highLight {
  position: relative;
  margin: 35px auto 0 auto;
  display: block;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#d500e8), color-stop(#0086f1), to(#d500e8));
  background: linear-gradient(90deg, #d500e8, #0086f1, #d500e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.intro_cnt .highLight.sub {
  margin: 5px auto;
  font-weight: 500;
  font-size: 26px;
}

.intro_cnt .highLight.text {
  margin: 5px auto;
  font-weight: 500;
  font-size: 21px;
}

.sc_gift {
  position: relative;
  width: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.9)), color-stop(80%), to(rgba(255, 255, 255, 0.9)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.9), 80%, rgba(255, 255, 255, 0.9));
  padding: 50px 0;
}

.sc_gift .container {
  max-width: 1200px;
  padding: 50px 0;
}

.gift_cnt .items {
  position: relative;
  width: 100%;
  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;
}

.gift_cnt .item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33%;
          flex: 0 0 33%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 30px;
  margin: 0 0 50px 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gift_cnt .item .img {
  position: relative;
  z-index: 0;
}

.gift_cnt .item .gift_num {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-size: 21px;
  font-weight: bold;
  display: inline-block;
  padding: 10px;
  background-color: #01ffff;
  border-radius: 999%;
  overflow: hidden;
  color: #fff;
  z-index: 1;
}

.gift_cnt .item .tit {
  position: relative;
  border-radius: 15px;
  margin: 15px auto;
  padding: 15px 25px;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px rgba(0, 0, 0, 0.2);
  background-color: #0086f1;
  z-index: 1;
}

.gift_cnt .item .text {
  font-size: 28px;
  text-align: center;
}

.gift_cnt .item .text span {
  color: #0086f1;
  font-weight: bold;
}

.gift_cnt .item .info {
  font-size: 18px;
  text-align: center;
  color: #787878;
}

.gift_cnt .item .info span {
  color: #0086f1;
  font-weight: bold;
}

.gift_cnt .item .img {
  border-radius: 20px;
  max-width: 250px;
  background: linear-gradient(130deg, #0086f1, #d500e8);
  padding: 3px;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}

.gift_cnt .item .img img {
  border-radius: 15px;
  max-width: 100%;
  display: block;
  background-color: #fff;
}

.gift_cnt .item .text {
  margin-top: 20px;
}

.sc_agenda {
  position: relative;
  width: 100%;
  background: linear-gradient(130deg, #0086f1, #030073, #030073, #d500e8);
  padding: 0 0 50px 0;
}

.sc_agenda .container {
  padding: 50px 15px;
}

.agd_main {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 24px #0086f1;
          box-shadow: 0 0 24px #0086f1;
  margin: 0 0 20px 0;
}

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

.agd_cnt .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-bottom: 1px solid rgba(3, 0, 115, 0.2);
}

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

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

.agd_cnt .tr.tr_noBorder {
  border-bottom: 0;
}

.agd_cnt .tr_head {
  background-color: #0086f1;
  color: #fff;
}

.agd_cnt .tr_head .td_time {
  color: #fff;
}

.agd_cnt .tr_head .td_title {
  color: #fff;
}

.agd_cnt .td {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 20px;
}

.agd_cnt .td.widthBorder {
  border-bottom: 1px solid rgba(3, 0, 115, 0.5);
  border-right: 1px solid rgba(3, 0, 115, 0.5);
}

.agd_cnt .td.width_R_Border {
  border-right: 1px solid rgba(3, 0, 115, 0.5);
}

.agd_cnt .td_time {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 17%;
          flex: 0 0 17%;
  text-align: center;
  color: #0086f1;
}

.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;
  color: rgba(29, 29, 29, 0.7);
}

.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 .job {
  color: rgba(29, 29, 29, 0.7);
  font-weight: 300;
}

.agd_cnt .ag_spk .name {
  margin-top: 0.2rem;
  color: #0086f1;
  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: #030073;
}

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

.sc_speaker {
  position: relative;
  width: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(rgba(255, 255, 255, 0.9)));
  background-image: linear-gradient(180deg, white, rgba(255, 255, 255, 0.9));
}

.speaker_cnt .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;
  border-radius: 20px;
  overflow: hidden;
}

.speaker_cnt .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 400px;
  position: relative;
  cursor: pointer;
}

.speaker_cnt .item .pic {
  overflow: hidden;
}

.speaker_cnt .item .pic img {
  width: 100%;
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}

.speaker_cnt .item .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 2rem 20px 20px;
  background: -webkit-gradient(linear, left bottom, left top, from(black), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, black, rgba(0, 0, 0, 0));
  color: #fff;
  line-height: 1.1;
}

.speaker_cnt .item .text .n {
  color: #01ffff;
  color: #01ffff;
  font-weight: 700;
}

.speaker_cnt .item .text .t {
  margin-top: 4px;
  font-size: .75em;
  line-height: 1.2;
}

.speaker_cnt .item .text .c {
  margin-top: 4px;
  font-size: .75em;
}

.speaker_cnt .item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.sc_logo {
  position: relative;
  width: 100%;
  padding: 50px 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(3, 0, 115, 0.9)), to(rgba(3, 0, 115, 0.5)));
  background-image: linear-gradient(180deg, rgba(3, 0, 115, 0.9), rgba(3, 0, 115, 0.5));
}

.sc_logo .container {
  max-width: 1000px;
  padding: 50px 100px;
  border-radius: 25px;
  -webkit-box-shadow: 0 3px 15px #01ffff;
          box-shadow: 0 3px 15px #01ffff;
  background: -webkit-gradient(linear, left bottom, left top, from(white), color-stop(80%), to(white));
  background: linear-gradient(0deg, white, 80%, white);
}

.sc_logo .logo_gs {
  position: relative;
  width: 100%;
  margin: 15px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.sc_logo .logo_gs .logo_g {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 25px;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.sc_logo .logo_gs .logo_g.big {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.sc_logo .logo_gs .logo_g .tit {
  position: relative;
  text-align: center;
  font-size: 24px;
  color: #0086f1;
  font-weight: 300;
  margin: 0;
}

.sc_logo .logo_gs .logo_g .tit span {
  font-size: 16px;
}

.sc_logo .logo_gs .logo_g .items {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sc_logo .logo_gs .logo_g .items .item {
  position: relative;
}

.sc_logo .logo_gs .logo_g .items .item img {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 170px;
  padding: 15px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 0 rgba(29, 29, 29, 0.3);
          box-shadow: 0 0 0 rgba(29, 29, 29, 0.3);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  z-index: 1;
}

.sc_logo .logo_gs .logo_g .items .item:hover img {
  -webkit-box-shadow: 0 0 15px rgba(29, 29, 29, 0.3);
          box-shadow: 0 0 15px rgba(29, 29, 29, 0.3);
  z-index: 2;
}

.sc_logo .logo_gs .logo_g .items.sp {
  width: 100%;
}

.sc_logo .logo_gs .logo_g .items.sp .item {
  position: relative;
  width: auto;
}

.sc_logo .logo_gs .logo_g .items.sp .item img {
  width: auto;
  max-width: auto;
  height: 130px;
  margin: 0 25px 0 0;
}

.sc_location {
  position: relative;
  width: 100%;
  padding: 50px 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(3, 0, 115, 0.5)), color-stop(15%), to(#030073));
  background-image: linear-gradient(180deg, rgba(3, 0, 115, 0.5), 15%, #030073);
}

.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: #01ffff;
  font-size: 28px;
  font-weight: bold;
  margin: 0 10px 10px;
}

.location_cnt .loc_top .addr {
  margin: 0 0.5em 10px;
  color: #fff;
}

.location_cnt .loc_map iframe {
  position: relative;
  width: 100%;
  height: 500px;
  border: 2px solid #01ffff;
  -webkit-box-shadow: 0 0 15px rgba(1, 255, 255, 0.5);
          box-shadow: 0 0 15px rgba(1, 255, 255, 0.5);
}

.sc_detail {
  position: relative;
  width: 100%;
  background-color: #fff;
}

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

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

@media (max-width: 767px) {
  .g_header {
    display: none;
  }
  .g_kv .desktop {
    position: relative;
    height: 90vw;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
  }
  .g_kv .kv_logo {
    margin: 6% 8%;
    width: 40%;
  }
  .g_kv .kv_tit {
    width: 90%;
    -webkit-transform: translate(-50%, -350%);
            transform: translate(-50%, -350%);
  }
  .g_kv .timer {
    padding: 14px 0 10px;
    position: static;
    background-color: #fff;
  }
  .g_kv .logo {
    position: relative;
    width: 100%;
    height: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 15px;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .g_kv .logo p {
    position: relative;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    font-size: 16px;
    font-weight: 500;
    color: #0086f1;
  }
  .g_kv .logo img {
    position: relative;
    width: auto;
    height: 60px;
    display: block;
    margin: 0 10px;
  }
  .g_kv .logo_inner {
    position: relative;
    margin: 10px 0 0 0;
  }
  .g_kv .logo div {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .container {
    padding: 30px 20px 30px;
  }
  .sc_company .container,
  .sc_wording .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .g_main .sc_title {
    margin-bottom: 20px;
  }
  .g_main .sc_title .tit {
    font-size: 32px;
    line-height: 1.3;
  }
  .g_main .sc_title .tit span {
    font-size: 1.3125rem;
  }
  .g_main .cta_box {
    padding-bottom: 20px;
  }
  .g_main .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: #fff;
    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%);
  }
  .g_main .cta_box .cta .bttn:hover {
    text-decoration: none;
  }
  .g_main .cta_box .cta .bttn:hover::before {
    left: -100%;
  }
  .g_main .cta_box .cta .bttn:hover div {
    color: #fff;
    text-shadow: 0 1px 5px rgba(3, 0, 115, 0);
  }
  .sc_intros .container {
    padding: 30px 15px;
  }
  .sc_intros .intro_cnt p {
    font-size: .9rem;
    text-align: justify;
  }
  .sc_intros .intro_cnt ul {
    padding-right: 0;
  }
  .sc_intros .combain .cnt {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 15px;
    font-size: 1rem;
  }
  .sc_intros .combain .highLight {
    font-size: 1.3125rem;
  }
  .agd_cnt .tr {
    display: block;
  }
  .agd_cnt .tr.tr_noBorder {
    border-bottom: 1px solid rgba(3, 0, 115, 0.5);
  }
  .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.widthBorder {
    border: 0;
  }
  .agd_cnt .td.width_R_Border {
    border: 0;
  }
  .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;
  }
  .speaker_cnt .items {
    display: block;
    border-radius: 0;
  }
  .speaker_cnt .item .text {
    font-size: 1.2rem;
  }
  .gift_cnt .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .gift_cnt .items .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding: 0 10px;
    margin: 0 0 20px 0;
  }
  .gift_cnt .items .item .tit {
    border-radius: 10px;
    margin: 5px auto;
    padding: 10px 15px;
    font-size: 16px;
  }
  .gift_cnt .items .item .text {
    font-size: 18px;
  }
  .gift_cnt .items .item .info {
    font-size: 14px;
  }
  .gift_cnt .items .item .img {
    border-radius: 20px;
    max-width: 250px;
    background: linear-gradient(130deg, #0086f1, #d500e8);
    padding: 3px;
    -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  }
  .gift_cnt .items .item .img img {
    border-radius: 15px;
    max-width: 100%;
    display: block;
    background-color: #fff;
  }
  .gift_cnt .items .item .text {
    margin-top: 20px;
  }
  .gift_cnt .gift_item {
    margin-bottom: 30px;
  }
  .gift_cnt .gift_item .name {
    font-size: 1.25rem;
  }
  .sc_logo .container {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 25px 15px;
    max-width: 90%;
  }
  .sc_logo .logo_gs {
    margin: 20px auto;
    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;
  }
  .sc_logo .logo_gs .logo_g {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 25px 0;
  }
  .sc_logo .logo_gs .logo_g.big {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .sc_logo .logo_gs .logo_g .tit {
    font-size: 18px;
    margin: 0 0 15px 0;
  }
  .sc_logo .logo_gs .logo_g .tit span {
    font-size: 14px;
  }
  .sc_logo .logo_gs .logo_g .items {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sc_logo .logo_gs .logo_g .items .item {
    position: relative;
  }
  .sc_logo .logo_gs .logo_g .items .item img {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 15px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 0 rgba(29, 29, 29, 0.3);
            box-shadow: 0 0 0 rgba(29, 29, 29, 0.3);
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    z-index: 1;
  }
  .sc_logo .logo_gs .logo_g .items .item:hover img {
    -webkit-box-shadow: 0 0 15px rgba(29, 29, 29, 0.3);
            box-shadow: 0 0 15px rgba(29, 29, 29, 0.3);
    z-index: 2;
  }
  .sc_logo .logo_gs .logo_g .items.sp .item {
    position: relative;
    width: 50%;
  }
  .sc_logo .logo_gs .logo_g .items.sp .item img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 25px 25px 0;
  }
  .location_cnt .loc_top {
    display: block;
  }
  .location_cnt .loc_top .loc {
    margin-bottom: 0;
  }
  .location_cnt .loc_top .addr {
    margin-bottom: 15px;
  }
  .location_cnt .loc_map iframe {
    height: 300px;
  }
  .sc_detail .list {
    padding-left: 20px;
  }
  .sc_detail .list li {
    padding: 5px 0;
    line-height: 1.4;
    font-size: 14px;
  }
}
/*# sourceMappingURL=style.css.map */