@charset "UTF-8";
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: #00a6c1;
  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: #00a6c1;
  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: #00a6c1;
  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: #005bb6;
  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 float {
  0% {
    -webkit-transform: scale(1.1) translateX(20px);
            transform: scale(1.1) translateX(20px);
  }
  50% {
    -webkit-transform: scale(0.95) translate(40px);
            transform: scale(0.95) translate(40px);
  }
  100% {
    -webkit-transform: scale(1) translate(0);
            transform: scale(1) translate(0);
  }
}

@keyframes float {
  0% {
    -webkit-transform: scale(1.1) translateX(20px);
            transform: scale(1.1) translateX(20px);
  }
  50% {
    -webkit-transform: scale(0.95) translate(40px);
            transform: scale(0.95) translate(40px);
  }
  100% {
    -webkit-transform: scale(1) translate(0);
            transform: scale(1) translate(0);
  }
}

@-webkit-keyframes train_ani {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  88% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  90% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
  93% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  95% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
  97% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes train_ani {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  88% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  90% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
  93% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  95% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
  97% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes train_bg_ani {
  0% {
    -webkit-filter: contrast(100%) brightness(50%);
            filter: contrast(100%) brightness(50%);
  }
  50% {
    -webkit-filter: contrast(200%) brightness(200%);
            filter: contrast(200%) brightness(200%);
  }
  100% {
    -webkit-filter: contrast(100%) brightness(50%);
            filter: contrast(100%) brightness(50%);
  }
}

@keyframes train_bg_ani {
  0% {
    -webkit-filter: contrast(100%) brightness(50%);
            filter: contrast(100%) brightness(50%);
  }
  50% {
    -webkit-filter: contrast(200%) brightness(200%);
            filter: contrast(200%) brightness(200%);
  }
  100% {
    -webkit-filter: contrast(100%) brightness(50%);
            filter: contrast(100%) brightness(50%);
  }
}

@-webkit-keyframes city_move_ani {
  0% {
    -webkit-filter: blur(15px);
            filter: blur(15px);
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes city_move_ani {
  0% {
    -webkit-filter: blur(15px);
            filter: blur(15px);
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

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

.g_kv .desktop {
  position: relative;
  height: calc(100vh - 100px);
  background-image: url("img/kv_bg_color.jpg");
  background-repeat: no-repeat;
  background-position: top 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_color.jpg");
  background-position: top 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_train_all {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: float 10s linear alternate infinite;
          animation: float 10s linear alternate infinite;
}

.g_kv .desktop .kv_bgArea .kv_train {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 117.70833%;
  -webkit-transform: translate(-37%, -40%);
          transform: translate(-37%, -40%);
}

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

.g_kv .desktop .kv_bgArea .kv_train img {
  -webkit-animation: train_ani 3s linear alternate infinite;
          animation: train_ani 3s linear alternate infinite;
}

.g_kv .desktop .kv_bgArea .kv_train_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 117.70833%;
  -webkit-transform: translate(-37%, -40%);
          transform: translate(-37%, -40%);
}

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

.g_kv .desktop .kv_bgArea .kv_train_bg img {
  -webkit-animation: train_bg_ani 3s linear alternate infinite;
          animation: train_bg_ani 3s linear alternate infinite;
}

.g_kv .desktop .kv_bgArea .kv_city {
  position: absolute;
  top: 50%;
  right: 0;
  width: 28.64583%;
  -webkit-transform: translateY(-70%);
          transform: translateY(-70%);
}

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

.g_kv .desktop .kv_bgArea .kv_city img {
  -webkit-animation: city_move_ani 0.5s linear normal infinite;
          animation: city_move_ani 0.5s linear normal infinite;
}

.g_kv .desktop .kv_bgArea .kv_icons {
  position: absolute;
  top: 50%;
  right: 0;
  width: 28.64583%;
  -webkit-transform: translateY(-70%);
          transform: translateY(-70%);
}

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

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

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

.g_kv .timer {
  position: absolute;
  right: 5%;
  bottom: calc(5% + 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: #74bb21;
}

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

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

.container {
  padding: 50px 120px;
}

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

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

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

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

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

.sc_title .tit.LB {
  color: #74bb21;
}

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

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

.g_main {
  position: relative;
  overflow: hidden;
}

.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, #00a6c1, #005bb6, 80%, #74bb21, 80%, #74bb21);
}

.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: #00a6c1;
  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(#00a6c1), color-stop(#005bb6), to(#00a6c1));
  background: linear-gradient(90deg, #00a6c1, #005bb6, #00a6c1);
  -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: #74bb21;
  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, #005bb6, 70%, #74bb21, 70%, #74bb21);
}

.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: #005bb6;
  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;
  display: block;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#00a6c1), color-stop(#005bb6), to(#00a6c1));
  background: linear-gradient(90deg, #00a6c1, #005bb6, #00a6c1);
  -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: #74bb21;
  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: #005bb6;
  z-index: 1;
}

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

.gift_cnt .item .text span {
  color: #005bb6;
  font-weight: bold;
}

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

.gift_cnt .item .info span {
  color: #005bb6;
  font-weight: bold;
}

.gift_cnt .item .img {
  border-radius: 20px;
  max-width: 250px;
  background: linear-gradient(130deg, #005bb6, #00a6c1);
  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, #005bb6, #030073, #030073, #00a6c1);
}

.agenda_cnt .table {
  border-radius: 15px;
  border: 3px solid #74bb21;
  -webkit-box-shadow: 0 0 15px rgba(116, 187, 33, 0.6);
          box-shadow: 0 0 15px rgba(116, 187, 33, 0.6);
  overflow: hidden;
}

.agenda_cnt .table .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 0;
  font-size: .8rem;
  background-color: #fff;
}

.agenda_cnt .table .tr:nth-child(2n) {
  background-color: #f8f8f8;
}

.agenda_cnt .table .tr.sp {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.3125rem;
  color: #fff;
  font-weight: bold;
  background-color: #030073;
}

.agenda_cnt .table .tr.top {
  padding: 0.3125rem 0;
  background-color: #005bb6;
}

.agenda_cnt .table .tr.bkt {
  padding: 0.3125rem 0;
  background-color: #030073;
}

.agenda_cnt .table .tr.bkt .time {
  color: #fff;
}

.agenda_cnt .table .tr.bkt .infor {
  color: #fff;
}

.agenda_cnt .table .tr.noSpk .time {
  color: #fff;
}

.agenda_cnt .table .tr.noSpk .infor {
  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;
  font-size: 21px;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  padding: 0 0 0 12%;
}

.agenda_cnt .table .tr .time {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 13%;
          flex: 0 0 13%;
  line-height: 1.5;
  padding-left: 1rem;
  padding-top: .3em;
  color: #030073;
  font-size: 18px;
  text-align: center;
}

.agenda_cnt .table .tr .infor {
  position: relative;
  padding-left: 16px;
  padding-right: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 60%;
          flex: 1 0 60%;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.agenda_cnt .table .tr .infor span {
  color: #005bb6;
}

.agenda_cnt .table .tr .topicBtn {
  position: relative;
  font-size: 18px;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 25px;
  border-radius: 25px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  margin: 15px 0 15px 15px;
  background-color: #030073;
  color: #fff;
  border: 1px solid #030073;
}

.agenda_cnt .table .tr .topicBtn:hover {
  background-color: #fff;
  color: #030073;
}

.agenda_cnt .table .tr .topicCnt {
  display: none;
}

.agenda_cnt .table .tr .tit {
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.4;
}

.agenda_cnt .table .tr .left_line {
  margin-top: 6px;
  margin-left: 2px;
  padding-left: 14px;
  border-left: 1px solid #030073;
}

.agenda_cnt .table .tr .text {
  line-height: 1.4;
  font-size: .85rem;
}

.agenda_cnt .table .tr .text p {
  margin-bottom: 0;
}

.agenda_cnt .table .tr .text p + p {
  margin-top: .5rem;
}

.agenda_cnt .table .tr .list {
  padding-left: 24px;
  margin-bottom: 0;
}

.agenda_cnt .table .tr .list li {
  line-height: 1.4;
  margin-top: 4px;
}

.agenda_cnt .table .tr .right {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25.8%;
          flex: 0 0 25.8%;
  padding-right: 1rem;
  padding-top: .1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.agenda_cnt .table .tr .spk {
  line-height: 1.3;
}

.agenda_cnt .table .tr .spk .spk_g_list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.agenda_cnt .table .tr .spk .spk_g_list .spk_it {
  position: relative;
  width: 300px;
}

.agenda_cnt .table .tr .spk .spk_it {
  margin-bottom: .75rem;
}

.agenda_cnt .table .tr .spk .s {
  font-size: 16px;
  color: #515151;
  font-weight: bold;
}

.agenda_cnt .table .tr .spk .markit {
  position: relative;
  margin: 15px 0;
  width: 100%;
  font-size: 16px;
  color: #515151;
  font-weight: bold;
}

.agenda_cnt .table .tr .spk .n {
  margin-bottom: 4px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: bold;
  color: #030073;
}

.agenda_cnt .table .tr .spk .t,
.agenda_cnt .table .tr .spk .c {
  font-size: .75rem;
  color: #888;
}

.ps {
  position: relative;
  margin: 5px auto 50px auto;
  font-size: 16px;
  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));
}

.sc_speaker .container {
  padding: 50px 0;
  max-width: 1400px;
}

.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 20%;
          flex: 0 0 20%;
  max-width: 400px;
  position: relative;
}

.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), color-stop(60%), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, black, 60%, rgba(0, 0, 0, 0));
  color: #fff;
  line-height: 1.1;
}

.speaker_cnt .item .text .n {
  color: #74bb21;
  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;
}

.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 {
  border-radius: 25px;
  -webkit-box-shadow: 0 3px 15px #74bb21;
          box-shadow: 0 3px 15px #74bb21;
  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: 50px 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 {
  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: 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: #005bb6;
  font-weight: 300;
  margin: 0 0 15px 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: 120px;
  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: 50%;
}

.sc_logo .logo_gs .logo_g .items.sp .item img {
  width: auto;
  max-width: auto;
  height: 80px;
  margin: 0 25px 25px 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: #74bb21;
  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 #74bb21;
  -webkit-box-shadow: 0 0 15px rgba(116, 187, 33, 0.5);
          box-shadow: 0 0 15px rgba(116, 187, 33, 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 {
    opacity: 0;
  }
  .g_header.is_active {
    opacity: 1;
  }
  .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: #fff;
  }
  .g_kv .desktop {
    position: relative;
    height: 70vw;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
  }
  .g_kv .kv_tit {
    width: 90%;
    -webkit-transform: translate(-50%, -105%);
            transform: translate(-50%, -105%);
  }
  .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: #005bb6;
  }
  .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;
  }
  .sc_title {
    margin-bottom: 20px;
  }
  .sc_title .tit {
    font-size: 32px;
    line-height: 1.3;
  }
  .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;
  }
  .agenda_cnt .table .tr {
    display: block;
  }
  .agenda_cnt .table .tr.noSpk .infor {
    padding: 0;
  }
  .agenda_cnt .table .tr .time {
    margin-bottom: 10px;
    padding: 0;
  }
  .agenda_cnt .table .tr .text {
    font-size: .8rem;
  }
  .agenda_cnt .table .tr .right {
    margin-top: 10px;
    padding-left: 1rem;
  }
  .sc_speaker .container {
    padding: 30px 15px;
  }
  .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, #005bb6, #00a6c1);
    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 .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 */