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

.main_color {
  color: #010f56;
}

table {
  width: auto !important;
}

.sub_color {
  color: #001d92;
}

.fix_aside {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: 0.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: 0.5em;
  margin: 0.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: #010f56;
  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: 0.6em;
}

.fix_aside .fx_item .in_wrap.ic .ic_top {
  width: 100%;
  padding-top: 100%;
  background: url("img/ui/arrow_top.png") center/contain no-repeat;
}

.g_header {
  -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: #343a40;
}

.g_header .header_cnt {
  position: relative;
  padding: 0.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;
}

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

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

.g_header .nav_area .nav_link:hover {
  color: #00917c;
  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: 0.5em 0;
  display: none;
}

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

.bttn {
  display: inline-block;
  cursor: pointer;
}

.bttn .bttn_inner {
  cursor: pointer;
  display: block;
  padding: 15px 45px;
  border-radius: 2rem;
  font-size: 24px;
  letter-spacing: 3px;
  line-height: 1;
  text-align: center;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.bttn .bttn_inner:hover {
  text-decoration: none;
}

.bttn .xl_size {
  font-size: 2rem;
}

.bttn .lg_size {
  font-size: 1.5rem;
}

.bttn .sm_size {
  font-size: 1rem;
}

.bttn .xs_size {
  padding: 0.35rem 1rem;
  font-size: 0.95rem;
}

.bttn .main_b {
  background-color: #010f56;
  color: #fff;
  text-shadow: 0 2px rgba(0, 0, 0, 0.2);
}

.bttn .main_b:hover {
  background-color: #001d92;
}

.bttn .main_lign {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(97.09deg, #05B8FA 12.83%, #0134CE 87.61%);
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.bttn .main_lign:hover {
  text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

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

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

.bttn .sub_b {
  background-color: #fff;
  color: #010f56;
}

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

.theme_lines {
  position: relative;
  width: 300px;
  margin: 20px auto;
  height: 1em;
  font-size: 12px;
}

.theme_lines span {
  position: absolute;
  top: 0;
  border-radius: .5em;
  height: 1em;
}

.theme_lines .l1 {
  left: 0;
  z-index: 2;
  width: calc(76% + 1em);
  margin-left: -.5em;
  background-color: #00aa83;
  background-image: -webkit-gradient(linear, left top, right top, from(#00a583), color-stop(#00b336), to(#fcee21));
  background-image: linear-gradient(90deg, #00a583, #00b336, #fcee21);
}

.theme_lines .l2 {
  left: 76%;
  z-index: 1;
  width: calc(14% + 1em);
  margin-left: -.5em;
  background-color: #93ea20;
}

.theme_lines .l3 {
  left: 90%;
  z-index: 2;
  width: calc(10% + 1em);
  margin-left: -.5em;
  background-color: #008686;
}

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

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

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

.g_kv .tit .t_bg {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 49.53704%;
  min-height: 420px;
}

.g_kv .tit .t_bg img {
  position: relative;
  width: 100%;
  height: 100%;
}

.g_kv .tit .t1 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-75%, -50%);
          transform: translate(-75%, -50%);
  width: auto;
  height: 29.62963%;
  min-height: 280px;
}

.g_kv .tit .t1 img {
  position: relative;
  width: auto;
  height: 100%;
}

.g_kv .tit .items {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(30%, -50%);
          transform: translate(30%, -50%);
  width: 33.85417%;
}

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

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

.g_kv .timer .tb span {
  position: absolute;
  left: 50%;
  top: calc(50% - 0.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 {
  overflow: hidden;
}

.main_sc {
  padding: 60px 0;
}

.sc_title {
  position: relative;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-shadow: 0 3px 5px rgba(0, 29, 146, 0.5);
}

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

.sc_title .tit.c_main {
  color: #010f56;
}

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

.sc_intro {
  background-color: #fff;
}

.intro_cnt {
  text-align: center;
  font-size: 1.125rem;
}

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

.intro_cnt-items {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 0 25px 0;
  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;
}

.intro_cnt-items .item {
  position: relative;
  width: 100%;
  height: auto;
  margin: 15px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.intro_cnt-items .item_img {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 150px;
          flex: 0 0 150px;
}

.intro_cnt-items .item_img img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.intro_cnt-items .item_cnt {
  position: relative;
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 15px;
  text-align: justify;
}

.intro_cnt-items .item_cnt-tit {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1.3px;
  color: #175ca1;
  border-bottom: 1px solid #175ca1;
}

.intro_cnt-items .item_cnt-text {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0;
  font-size: 1.125rem;
  letter-spacing: 1.2px;
  font-weight: 300;
  color: #175ca1;
}

.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, left top, right top, from(#00cfff), to(#1572ff));
  background: linear-gradient(90deg, #00cfff, #1572ff);
}

.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: #010f56;
  font-size: 1.3125rem;
}

.intro_cnt .combain .highLight {
  font-weight: 700;
  font-size: 1.75rem;
  color: transparent;
  background: -webkit-gradient(linear, right top, left top, from(#00cfff), to(#1572ff));
  background: linear-gradient(-90deg, #00cfff, #1572ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.intro_cnt p {
  position: relative;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0;
  font-size: 1.3125rem;
  line-height: 1.65;
}

.cta_cnt {
  position: relative;
  background-color: #fff;
  padding: 50px 0 70px 0;
}

.cta_cnt .before_cta {
  text-align: center;
  font-weight: 700;
  font-size: 1.25em;
  margin-bottom: 1em;
}

.cta_cnt .bttns {
  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;
}

.cta_cnt-tit {
  position: relative;
  font-size: 2.5rem;
  color: #001d92;
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px 0;
  text-shadow: 0 3px 5px rgba(0, 29, 146, 0.5);
}

.cta_cnt .bttn {
  margin: 0 15px;
}

.sc_logo {
  position: relative;
  background-color: #fff;
}

.sc_logo-tit {
  position: relative;
  font-size: 2.5rem;
  color: #001d92;
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px 0;
  text-shadow: 0 3px 5px rgba(0, 29, 146, 0.5);
}

.sc_logo .logo_items {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.sc_logo .logo_items .item {
  position: relative;
  width: auto;
  padding: 0 15px;
}

.sc_logo .logo_items .item p {
  position: relative;
  width: 100%;
  font-size: 1rem;
  margin: 0 0 25px 0;
  padding: 0;
}

.sc_logo .logo_items .item-logos {
  position: relative;
  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;
}

.sc_logo .logo_items .item-logos a {
  position: relative;
  display: block;
  margin: 20px;
}

.sc_logo .logo_items .item-logos a img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  width: auto;
  height: 100px;
  display: block;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0);
}

.sc_logo .logo_items .item-logos a:hover img {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
}

.sc_agenda {
  position: relative;
  background-color: #f8f8f8;
}

.agd_cnt {
  background-color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #001d92;
}

.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, 29, 146, 0.5);
}

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

.agd_cnt .tr.tr_tit {
  position: relative;
  background-color: #00917c;
  border-bottom: 0;
  padding: 10px 0;
  color: #fff;
  font-weight: bold;
  font-size: 1.125rem;
}

.agd_cnt .tr.tr_tit .tr_tit-text {
  position: relative;
  width: 100%;
  text-align: center;
}

.agd_cnt .tr.tr_tit.norText {
  font-weight: 500;
}

.agd_cnt .tr_head {
  border-radius: 10px 10px 0 0;
  background-color: #00917c;
  color: #fff;
}

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

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

.agd_cnt .td_title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  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 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  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-main {
  position: relative;
  margin: 5px auto;
  font-weight: bold;
  color: #dea81e;
}

.agd_cnt .ag_spk .name {
  margin-top: 0.2rem;
  color: #001d92;
  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: #343a40;
}

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

.agd_split .tr {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.agd_split .td {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.agd_split .topic_toggle {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0px;
          flex: 0 0 0;
  margin: 10px 0;
}

.agd_split .tr_split_tit {
  color: #fff;
}

.agd_split .tr_split_tit .td_split {
  border-radius: 20px 20px 0 0;
}

.agd_split .tr_split_tit .td_split.sp1 {
  background-color: #010f56;
}

.agd_split .tr_split_tit .td_split.sp2 {
  background-color: #001d92;
}

.agd_split .sp1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  border-left: 5px solid #010f56;
}

.agd_split .sp2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  border-left: 5px solid #001d92;
}

.agd_split .ag_spk {
  margin-top: 0.2rem;
  padding: 0.2rem 0;
}

.ag_tip {
  text-align: center;
}

.sc_speaker {
  position: relative;
  background-color: #fff;
}

.sc_speaker .container {
  max-width: 1200px;
}

.speaker_spItems {
  position: relative;
  width: 100%;
  margin: 50px auto 100px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.speaker_spItems .item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 25px 50px;
  margin: 0 25px;
  background-color: #f8f8f8;
  border-radius: 15px;
  overflow: hidden;
  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;
}

.speaker_spItems .item_pd {
  position: relative;
  width: 100%;
  height: auto;
  margin: 15px auto 30px auto;
}

.speaker_spItems .item_pd .img_inner {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  background: -webkit-gradient(linear, right top, left top, from(#00917c), to(#001d92));
  background: linear-gradient(-90deg, #00917c, #001d92);
  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;
}

.speaker_spItems .item_pd .img_inner.HL {
  background: linear-gradient(-15deg, #fc02ff, #00cfff, #1572ff);
}

.speaker_spItems .item_pd img {
  position: relative;
  width: calc(100% - 6px);
  height: auto;
  margin: 3px auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  background-color: #f0eced;
  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;
}

.speaker_spItems .item_pd p {
  position: relative;
  width: 100%;
  font-size: 1.125rem;
  margin: 10px auto;
  text-align: center;
}

.speaker_spItems .item_pd .highLight {
  font-weight: 700;
  color: transparent;
  background: -webkit-gradient(linear, right top, left top, from(#00917c), to(#001d92));
  background: linear-gradient(-90deg, #00917c, #001d92);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.speaker_spItems .item_pd .highLight.HL {
  background: linear-gradient(-15deg, #fc02ff, #00cfff, #1572ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.speaker_spItems .item_cnt {
  position: relative;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.speaker_spItems .item_cnt-img {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px 0 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 40%;
          flex: 1 0 40%;
}

.speaker_spItems .item_cnt-img .img_inner {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  background: -webkit-gradient(linear, right top, left top, from(#00917c), to(#001d92));
  background: linear-gradient(-90deg, #00917c, #001d92);
  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;
}

.speaker_spItems .item_cnt-img .img_inner.HL {
  background: linear-gradient(-15deg, #fc02ff, #00cfff, #1572ff);
}

.speaker_spItems .item_cnt-img img {
  position: relative;
  width: calc(100% - 6px);
  height: auto;
  margin: 3px auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  background-color: #f0eced;
  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;
}

.speaker_spItems .item_cnt-text {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 60%;
          flex: 1 0 60%;
}

.speaker_spItems .item_cnt-text p {
  position: relative;
  margin: 5px auto;
  padding: 0;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.speaker_spItems .item_cnt-text p span {
  position: relative;
  display: block;
}

.speaker_spItems .item_cnt-text p .tit {
  font-weight: bold;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
}

.speaker_spItems .item_cnt-text p:first-child {
  margin: 0 auto;
}

.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 20%;
          flex: 0 0 20%;
  padding: 0 10px;
  text-align: center;
  margin: 0 0 20px 0;
}

.speaker_items .item .pic {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  background: url("img/ui/speech.svg") center/120px no-repeat;
  border-radius: 15px;
  overflow: hidden;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.speaker_items .item .pic .img-box {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 15px;
  background: -webkit-gradient(linear, right top, left top, from(#00917c), to(#001d92));
  background: linear-gradient(-90deg, #00917c, #001d92);
  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;
}

.speaker_items .item .pic img {
  position: relative;
  width: calc(100% - 6px);
  height: auto;
  margin: 3px auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 13px;
  padding: 0;
  background-color: #f0eced;
  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;
}

.speaker_items .item .name {
  margin-bottom: 6px;
  color: #001d92;
  font-size: 1.25em;
  line-height: 1.2;
}

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

.sc_tech {
  background-color: #f8f8f8;
  padding: 40px 0;
}

.sc_tech .tech_cnt {
  position: relative;
  margin: 60px 0 0 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;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.sc_tech .tech_cnt .item {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  max-width: 33%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc(33% - 30px);
          flex: 1 0 calc(33% - 30px);
  margin: 5px;
  padding: 15px;
  border-radius: 5px;
  text-align: left;
  border: 2px solid #00a583;
  background-color: rgba(0, 165, 131, 0.1);
  color: #00a583;
  font-size: 1.125rem;
}

.sc_tech .tech_cnt .item:hover {
  background-color: #00a583;
  color: #fff;
  text-decoration: none;
}

.sc_gift {
  background-color: white;
}

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

.gift_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;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.gift_cnt .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33%;
          flex: 0 0 33%;
  padding: 50px 30px 30px 30px;
  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 {
  border-radius: 15px;
  width: 500px;
  background: linear-gradient(135deg, #010f56, #00917c, #001d92);
  padding: 6px;
  -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 .tit {
  border-radius: 2px;
  margin: 0 auto;
  margin-top: -1.5em;
  padding: .5em 1em;
  background-color: #001d92;
  -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.5em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px rgba(0, 0, 0, 0.2);
}

.gift_cnt .item .sub {
  position: relative;
  margin: 10px auto;
  font-size: 1.25rem;
  color: #010f56;
  text-align: center;
}

.gift_cnt .item .text {
  font-size: 1rem;
}

.sc_location {
  position: relative;
  background-color: rgba(0, 0, 28, 0.9);
}

.location_cnt {
  position: relative;
  width: 100%;
  margin: 100px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.location_cnt-map {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  padding: 0 20px;
}

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

.location_cnt-map .loc_top .loc {
  color: #dea81e;
  font-size: 1.5em;
  margin: 0 0.5em 10px;
}

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

.location_cnt-map iframe {
  position: relative;
  width: 100%;
  height: 550px;
}

.location_cnt-tri {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  padding: 0 20px;
}

.location_cnt-tri h5 {
  color: #dea81e;
  font-size: 1.5em;
}

.location_cnt-tri ul {
  color: #e8e8e8;
}

.sc_detail {
  background-color: #fff;
}

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

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

.sc_detail ul {
  list-style: disc;
}

.sc_detail .ps {
  font-size: 0.75rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px 20px 20px;
}

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

.sc_detail .policy_cnt a {
  position: relative;
  width: 250px;
  display: block;
  margin: 0 15px;
}

@media (max-width: 1450px) {
  .g_kv .tit .t_bg {
    min-height: 320px;
  }
  .g_kv .tit .t1 {
    -webkit-transform: translate(-75%, -50%);
            transform: translate(-75%, -50%);
    min-height: 220px;
  }
}

@media (max-width: 1400px) {
  .g_kv .tit .t_bg {
    min-height: 290px;
  }
  .g_kv .tit .t1 {
    min-height: 190px;
  }
}

@media (max-width: 768px) {
  .g_header {
    background-color: #343a40;
  }
  .g_header .header_cnt {
    display: block;
    padding: 0.5rem 0;
  }
  .g_header .menu_trigger {
    padding: 0 24px;
  }
  .g_header .nav_area .nav_content {
    display: block;
  }
  .g_header .nav_area .nav_cnt {
    padding: 10px 0;
    display: block;
  }
  .g_header .nav_area .nav_item.is_highlight {
    padding: 0;
  }
  .g_header .nav_area .nav_link {
    border-radius: 0;
    padding: 16px 24px;
  }
  .g_kv .desktop {
    height: 550px;
    background-position: 50% 50%;
  }
  .g_kv .tit .t_bg {
    min-height: 200px;
  }
  .g_kv .tit .t1 {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    min-height: 100px;
  }
  .g_kv .tit .items {
    -webkit-transform: translate(-50%, -150%);
            transform: translate(-50%, -150%);
    width: 90%;
  }
  .g_kv .timer {
    right: 25px;
    bottom: 20px;
  }
  .main_sc {
    padding: 40px 0;
  }
  .sc_title {
    font-size: 2rem;
  }
  .sc_title .tit {
    line-height: 1.3;
  }
  .intro_cnt {
    text-align: justify;
  }
  .intro_cnt-items {
    margin: 0 0 15px 0;
    -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;
  }
  .intro_cnt-items .item {
    margin: 15px auto;
    -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;
  }
  .intro_cnt-items .item_img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
    width: 200px;
    margin: 0 0 -60px 0;
  }
  .intro_cnt-items .item_cnt {
    padding: 0 15px;
  }
  .intro_cnt-items .item_cnt-tit {
    font-size: 1.5rem;
  }
  .intro_cnt-items .item_cnt-text {
    font-size: 1rem;
  }
  .intro_cnt .combain .combain_inner {
    padding: 25px;
    text-align: center;
  }
  .intro_cnt .combain .cnt {
    font-size: 1.3125rem;
  }
  .intro_cnt .combain .highLight {
    font-size: 1.5rem;
    color: transparent;
    background: -webkit-gradient(linear, right top, left top, from(#00cfff), to(#1572ff));
    background: linear-gradient(-90deg, #00cfff, #1572ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
  .intro_cnt p {
    font-size: 1rem;
  }
  .cta_cnt-tit {
    font-size: 2rem;
  }
  .cta_cnt .bttn {
    margin-bottom: 20px;
  }
  .cta_cnt .bttn:last-child {
    margin-bottom: 0;
  }
  .cta_cnt .bttn .bttn_inner {
    font-size: 1.5em;
  }
  .sc_logo-tit {
    font-size: 2rem;
  }
  .sc_logo .logo_items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .sc_logo .logo_items .item {
    width: 100%;
    padding: 0;
  }
  .sc_logo .logo_items .item-logos {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sc_logo .logo_items .item-logos a {
    width: calc(50% - 20px);
    margin: 10px;
  }
  .sc_logo .logo_items .item-logos a img {
    width: 100%;
    height: auto;
  }
  .sc_tech {
    padding: 40px 0;
  }
  .sc_tech .tech_cnt {
    margin: 20px 0 0 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;
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
  .sc_tech .tech_cnt .item {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    margin: 5px;
    padding: 15px;
    border-radius: 5px;
    text-align: left;
    border: 2px solid #00a583;
    background-color: rgba(0, 165, 131, 0.1);
    color: #00a583;
    font-size: 1.125rem;
  }
  .sc_tech .tech_cnt .item:hover {
    background-color: #00a583;
    color: #fff;
    text-decoration: none;
  }
  .agd_cnt .tr {
    display: block;
  }
  .agd_cnt .tr_head {
    display: none;
  }
  .agd_cnt .td {
    padding: 0.2em 1em;
  }
  .agd_cnt .td:first-child {
    padding-top: 1em;
  }
  .agd_cnt .td:last-child {
    padding-bottom: 1em;
  }
  .agd_cnt .td_time {
    text-align: left;
  }
  .agd_cnt .td_title {
    display: block;
  }
  .agd_cnt .topic_toggle {
    margin-top: 0.5em;
  }
  .agd_split .td {
    width: 100%;
  }
  .agd_split .tr_split_tit {
    display: none;
  }
  .agd_split .tr_split_tit .td_split {
    -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;
  }
  .agd_split .sp2 {
    border-top: 1px solid;
  }
  .agd_split .td_split.sp1:nth-child(2) {
    padding-bottom: 1em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  }
  .agd_split .td_time.sp2:nth-child(3) {
    padding-top: 1em;
  }
  .sc_speaker .container {
    padding: 50px 0;
  }
  .speaker_spItems {
    margin: 30px auto 50px auto;
    -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: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .speaker_spItems .item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
    padding: 15px 15px;
    margin: 15px;
  }
  .speaker_spItems .item_pd {
    margin: 0 auto 30px auto;
  }
  .speaker_spItems .item_cnt {
    position: relative;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 15px;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .speaker_spItems .item_cnt-img {
    padding: 0 10px 0 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
  }
  .speaker_spItems .item_cnt-text {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
  }
  .speaker_spItems .item_cnt-text p {
    position: relative;
    margin: 5px auto;
    padding: 0;
    font-size: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .speaker_spItems .item_cnt-text p span {
    position: relative;
    display: block;
  }
  .speaker_spItems .item_cnt-text p .tit {
    font-weight: bold;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50px;
            flex: 0 0 50px;
  }
  .speaker_spItems .item_cnt-text p:first-child {
    margin: 0 auto;
  }
  .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: 0.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;
  }
  .gift_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;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .gift_cnt .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 90%;
            flex: 0 0 90%;
    max-width: 90%;
    padding: 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 {
    width: 100%;
  }
  .gift_cnt .item .img img {
    border-radius: 10px;
  }
  .gift_cnt .item .tit {
    border-radius: 2px;
    margin: 0 auto;
    margin-top: -0.9375rem;
    padding: .5em 1em;
    background-color: #001d92;
    -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.125rem;
    line-height: 1;
    color: #fff;
    text-shadow: 0 2px rgba(0, 0, 0, 0.2);
  }
  .gift_cnt .item .sub {
    margin: 10px auto;
    font-size: 1.125rem;
  }
  .gift_cnt .item .text {
    font-size: 1rem;
  }
  .location_cnt {
    position: relative;
    width: 100%;
    margin: 30px auto;
    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: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .location_cnt-map {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
    padding: 0 15px;
  }
  .location_cnt-map .loc_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .location_cnt-map .loc_top .loc {
    color: #dea81e;
    font-size: 1.125rem;
    margin: 0 0 5px 0;
  }
  .location_cnt-map .loc_top .addr {
    font-size: 0.875rem;
    margin: 0 0 15px 0;
    color: #fff;
  }
  .location_cnt-map iframe {
    position: relative;
    width: 100%;
    height: 90vw;
  }
  .location_cnt-tri {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
    padding: 15px;
  }
  .location_cnt-tri h5 {
    color: #dea81e;
    font-size: 1.125rem;
  }
  .location_cnt-tri ul {
    font-size: 0.875rem;
    color: #e8e8e8;
  }
  .sc_detail .policy_cnt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sc_detail .policy_cnt a {
    margin: 5px auto;
  }
}
/*# sourceMappingURL=style.css.map */