body {
  font-family: "Noto Sans TC", sans-serif;
}

.main_color {
  color: #07226b;
}

.sub_color {
  color: #FDCF5E;
}

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

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

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

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

.g_header .nav_area .dropdown-toggle {
  cursor: pointer;
}

.g_header .nav_area .dropdown-item {
  padding: .5rem 1rem;
  text-align: center;
}

.g_header .nav_area .dropdown-item:hover {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#1B2E81), to(#174AD9));
  background: linear-gradient(90deg, #1B2E81, #174AD9);
}

.g_header .nav_area .dropdown_link {
  display: block;
  padding: .75rem 1rem;
}

.g_header .nav_area .dropdown_link:hover {
  text-decoration: none;
  background-color: #f6f6f6;
}

.g_header.is_active {
  background-color: #343a40;
}

.g_header.is_active .nav_area .nav_link {
  color: #fff;
}

.g_header.is_active .nav_area .nav_link:hover {
  color: #FDBF9B;
}

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

.bttn .bttn_inner {
  cursor: pointer;
  display: block;
  padding: 0.75em 2em;
  border-radius: 2em;
  font-size: 1.25em;
  line-height: 1;
  border: 2px solid #07226b;
  text-align: center;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #000;
}

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

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

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

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

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

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

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

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

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

.bttn .sub_b {
  background-color: #fff;
  color: #07226b;
}

.bttn .sub_b:hover {
  background-color: rgba(160, 230, 255, 0.1);
}

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

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

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

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

.kv_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/kv/kvbg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation: float 20s linear alternate infinite;
          animation: float 20s linear alternate infinite;
}

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

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

.g_kv .kv_logo {
  position: absolute;
  top: 0;
  left: 0;
  margin: 2% 3%;
  width: 17.1875%;
}

.g_kv .kv_logo img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
}

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

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

.g_kv .tit .t1 {
  top: 0;
  position: absolute;
  width: 100%;
  margin-top: 2%;
}

.g_kv .tit .t2 {
  position: absolute;
  margin-top: 33%;
  margin-left: 34%;
  width: 20%;
}

.g_kv .tit .t3 {
  position: absolute;
  margin-top: 32.5%;
  margin-left: 53%;
  width: 8%;
  -webkit-animation-name: notbed;
          animation-name: notbed;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps(40);
          animation-timing-function: steps(40);
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  white-space: nowrap;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

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

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

.g_kv .tit .t3 img {
  mix-blend-mode: multiply;
}

.g_kv .tit .t4 {
  position: absolute;
  margin-top: 33%;
  margin-left: 60%;
  width: 20%;
}



.g_kv .logo {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 21vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 30px;
  background-color: #fff;
}


.g_kv .logo p {
  position: relative;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  font-size: 16px;
  color: #4D4D4D;
}

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

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

.g_kv .logo .logo_ctc {
  height: 60px;
}

.g_kv .logo .logo-L-main img {
  height: 50px;
}

@media (max-width: 1350px) {

  .g_kv .logo img {
    height: 30px;
  }
  .g_kv .logo .logo_ctc {
    height: 45px;
  }
  .g_kv .logo .logo-L-main img {
    height: 50px;
  }

  .g_kv .logo .logo-R .logo_pic {
    display: flex;
    flex-wrap: wrap;
  }
}

.g_kv .date {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 29.6875%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.g_kv .date a {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.g_kv .date a:nth-child(1) {
  margin: 0 25px 0 0;
}

.g_kv .date a:nth-child(2) {
  margin: 0 0 0 25px;
}

.g_kv .date a img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  cursor: pointer;
}

.g_kv .date a:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.g_kv .timer {
  position: absolute;
  left: 9.375%;
  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: #07226b;
}

.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 {
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0);
}

.main_sc {
  padding: 60px 0;
}

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

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

.sc_title .tit.c_main {
  color: #1453DC;
}

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

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


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

.intro_cnt p {
  margin-bottom: 15px;
  padding: 5px 0%;
  line-height: 1.65;
  text-align: left;
  font-size: 20px;
}

.cta_cnt {
  position: relative;
  margin: 50px 0;
  padding-bottom: 20px;
}

.cta_cnt .bttns {
  position: relative;
  width: 100%;
  height: 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: center;
      -ms-flex-align: center;
          align-items: center;
}

.cta_cnt .bttn {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  border: 3px solid #036ED4;
  border-radius: 15px;
  width: calc(50% - 60px);
  height: auto;
  margin: 0 30px;
  cursor: pointer;
  overflow: hidden;
}

.cta_cnt .bttn a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 0 0 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: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 28px;
  text-decoration: none;
  color: #2f74c3;
  background-color: transparent;
  cursor: pointer;
}

.cta_cnt .bttn span {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 25px 0;
  margin: 15px 0 0 0;
  font-size: 26px;
  color: #fff;
  background-color: #036ED4;
}

.cta_cnt .bttn2 {
  border-color: #4a07a9;
}
.cta_cnt .bttn2 a {
  color: #7218f1;
}

.cta_cnt .bttn2 span {
  background-color: #4a07a9;
}

.cta_cnt .bttn:hover {
  border: 3px solid #a0e6ff;
}

.cta_cnt .bttn:hover span {
  color: #2f74c3;
  border-top: 1px solid #a0e6ff;
  background-color: #a0e6ff;
}

.cta_cnt .bttn2:hover {
  border: 3px solid #dea0ff;
}

.cta_cnt .bttn2:hover span {
  color: #7218f1;
  border-top: 1px solid #dea0ff;
  background-color: #dea0ff;
}

.sc_gift {
  background-color: #fff;
}

.sc_gift .sub {
  position: relative;
  margin: 50px auto 20px auto;
  color: #2f74c3;
  font-weight: 500;
  line-height: 1.5;
  font-size: 1.625rem;
  text-align: center;
}

.sc_gift .giftBtn {
  position: relative;
  width: 100%;
  height: auto;
  text-align: center;
}

.sc_gift .giftBtn-btn {
  position: relative;
  display: inline-block;
  padding: 10px 35px;
  font-size: 32px;
  letter-spacing: 1.5px;
  color: #fff;
  font-weight: bold;
  border: 1px solid #07226b;
  border-radius: 50px;
  background-color: #07226b;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.sc_gift .giftBtn-btn span {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  position: relative;
  margin: 0 0 0 10px;
}

.sc_gift .giftBtn-btn:hover {
  text-decoration: none;
  background-color: #fff;
  color: #07226b;
}

.sc_gift .giftBtn-btn:hover span {
  margin: 0 0 0 25px;
}

.gift_cnt {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gift_cnt .gift_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 28%;
          flex: 0 0 28%;
  padding: 15px 30px;
  border-width: 0 1px;
  text-align: center;
}

.gift_cnt .gift_item .pic {
  border-radius: 4px;
  margin-bottom: 10px;
  -webkit-box-shadow: 0 #ddd;
          box-shadow: 0 #ddd;
}

.gift_cnt .gift_item .pic img {
  display: block;
  margin: 0 auto;
  width: 80%;
}

.gift_cnt .gift_item .tit {
  color: #07226b;
  margin-bottom: 4px;
}

.gift_cnt .gift_item .name {
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1.2;
  color: #1453DC;
}

.gift_cnt .gift_item .text {
  margin-top: 4px;
}

.sc_agenda {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#f8f8f8), color-stop(60%), to(rgba(248, 248, 248, 0.8)));
  background-image: linear-gradient(0deg, #f8f8f8, 60%, rgba(248, 248, 248, 0.8));
}

.agd_cnt {
  background-color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #07226b;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(47, 116, 195, 0.5);
          box-shadow: 0 5px 15px rgba(47, 116, 195, 0.5);
}

.agd_cnt .tr {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(47, 116, 195, 0.5);
}

.agd_cnt .tr.tr_light {
  background-color: rgba(47, 116, 195, 0.1);
}

.agd_cnt .tr.noSpk {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 0;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  background-color: #2D2E83;
}

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

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

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

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

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

.agd_cnt .topic_toggle {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
}

.agd_cnt .spk_tit {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  color: #07226b;
  margin: 15px 0 5px 0;
}

.agd_cnt .ag_spk {
  line-height: 1.35;
}

.agd_cnt .ag_spk + .ag_spk_tit {
  margin-top: 15px;
}

.agd_cnt .ag_spk + .ag_spk {
  margin-top: 6px;
}

.agd_cnt .ag_spk .name {
  margin-top: 0.2rem;
  font-weight: 400;
  color: #1453DC;
}

/* .agd_cnt .ag_spk .name span {
  font-weight: 300;
} */

.agd_cnt .ag_spk .pls {
  font-size: 14px;
  margin-top: 2px;
  color: #07226b;
}

.agd_cnt .ag_spk .pls.p2 {
  color: #f32087;
}

.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 70%;
          flex: 0 1 70%;
}

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

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

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

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

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

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

.ag_tip {
  text-align: center;
}

.sc_speaker {
  background-color: #fff;
}

.sc_speaker .container {
  position: relative;
  width: 100%;
  max-width: 1200px;
}

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

.speaker_items .item {
  position: relative;
  width: calc(100% / 3);
  max-width: 250px;
  height: auto;
  padding: 0 10px;
  text-align: center;
  margin: 0 0 20px 0;
}

.speaker_items .item:nth-child(1) {
  margin: 0 0 20px 100px;
}

.speaker_items .item:nth-child(3) {
  margin: 0 100px 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 {
  position: relative;
  display: block;
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.speaker_items .item .name {
  margin-bottom: 6px;
  color: #2f74c3;
  font-size: 1.25em;
  line-height: 1.2;
  font-weight: bold;
}

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

.sc_sponsor {
  background-color: #f8f8f8;
}

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

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

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

.sort_cnt .sorts .item_link {
  display: block;
  border-radius: 8px;
  padding: 0.75em 1.5em;
  background-color: #FDCF5E;
  font-size: 1em;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  -webkit-transition: background 250ms;
  transition: background 250ms;
}

.sort_cnt .sorts .item_link:hover {
  text-decoration: none;
  background-color: rgba(253, 207, 94, 0.6);
}

.sort_cnt .sorts .item_link.is_active {
  background-color: #a0e6ff;
}

.sponsor_cnt {
  padding: 20px 0;
}

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

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

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

.sc_location {
  background-color: transparent;
}

.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: #07226b;
  font-size: 1.5em;
  margin: 0 0.5em 10px;
}

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

.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 .ps {
  font-size: 0.75rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px 20px 20px;
}

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

  .kv_bg {
    display: none;
  }

  .g_kv {
    margin: 64px 0 0 0;
  }
  .g_kv .desktop {
    height: 110vw;
    background-image: url("img/kv/kvbg.jpg");
    /* background-color: #0d9de3; */
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: auto 100%;
  }
  .g_kv .kv_logo {
    margin: 2% 3%;
    width: 50%;
  }
  .g_kv .tit {
    -webkit-transform: translate(-50%, -125%);
            transform: translate(-50%, -125%);
    width: 100%;
  }
  .g_kv .logo {
    height: auto;
    padding: 15px;
    -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;
  }

  .g_kv .logo .logo-L-main {
    display: flex;
    flex-direction: column;
  }

  .g_kv .logo p {
    position: relative;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    font-size: 12px;
    color: #4D4D4D;
  }
  .g_kv .logo img {
    position: relative;
    width: auto;
    height: 20px;
    display: block;
    margin: 0 2px;
  }
  .g_kv .logo div {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .g_kv .logo .logo_ctc {
    height: 35px;
  }

  .g_kv .date {
    width: 90%;
    -webkit-transform: translate(-50%, -150%);
            transform: translate(-50%, -150%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .g_kv .date a {
    position: relative;
    width: 46.49123%;
    max-width: 46.49123%;
    height: auto;
    display: block;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .g_kv .date a:nth-child(1) {
    margin: 0 25px 0 0;
  }
  .g_kv .date a:nth-child(2) {
    margin: 0 0 0 25px;
  }
  .g_kv .date a img {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .g_kv .timer {
    left: 9%;
    bottom: 20px;
  }
  .main_sc {
    padding: 40px 0;
  }
  .sc_title {
    font-size: 1.75rem;
  }
  .sc_title .tit {
    line-height: 1.3;
  }
  .sc_title .sub {
    font-size: 1.3125rem;
    line-height: 1.3;
  }
  .intro_cnt {
    font-size: 1.125rem;
    text-align: justify;
  }
  .intro_cnt .highLight {
    margin: 0 auto 35px auto;
    font-weight: bold;
    font-size: 26px;
  }
  .intro_cnt p {
    padding: 0.5em 1em;
    line-height: 1.5;
  }
  .cta_cnt {
    margin: 50px 0;
    padding-bottom: 20px;
  }
  .cta_cnt .bttns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -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;
  }
  .cta_cnt .bttn {
    width: calc(100% - 60px);
    height: auto;
    margin: 15px 0;
  }
  .gift_cnt {
    display: block;
    margin-top: 20px;
  }
  .gift_cnt .gift_item {
    padding: 20px 30px;
    border-top: solid rgba(0, 0, 0, 0.1);
    border-left: 0;
    border-width: 1px 0;
  }
  .gift_cnt .gift_item .tit {
    margin-bottom: 6px;
  }
  .gift_cnt .gift_item .name {
    min-height: auto;
  }
  .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: 0;
  }
  .speaker_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .speaker_items .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .speaker_items .item:nth-child(1) {
    margin: 0 0 20px 0;
  }
  .speaker_items .item:nth-child(3) {
    margin: 0 0 20px 0;
  }
  .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;
  }
  .location_cnt .loc_top {
    display: block;
  }
  .location_cnt .loc_top .loc {
    margin-bottom: 0;
  }
  .location_cnt .loc_top .addr {
    margin-bottom: 15px;
  }
}
/*# sourceMappingURL=style.css.map */