@charset "UTF-8";
html {
  font-size: 16px;
}

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

a {
  color: inherit;
}

.cv_responsive,
.vd_responsive {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  padding-top: 56.25%;
}
.cv_responsive .cv,
.cv_responsive .vd,
.vd_responsive .cv,
.vd_responsive .vd {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.cv_responsive::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: background 300ms;
  transition: background 300ms;
}
.cv_responsive::after {
  content: "";
  position: absolute;
  left: calc(50% - 30px);
  top: calc(50% - 30px);
  z-index: 2;
  width: 60px;
  height: 60px;
  background: url("img/ui/ic_play.svg") center;
  opacity: 0.8;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}
.cv_responsive:hover::before {
  background-color: rgba(0, 0, 0, 0.3);
}
.cv_responsive:hover::after {
  opacity: 1;
}

@-webkit-keyframes bttnArr {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  75% {
    opacity: 0;
    -webkit-transform: translateX(75%);
            transform: translateX(75%);
  }
  76% {
    opacity: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes bttnArr {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  75% {
    opacity: 0;
    -webkit-transform: translateX(75%);
            transform: translateX(75%);
  }
  76% {
    opacity: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes returnArr {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  75% {
    opacity: 0;
    -webkit-transform: translateX(-75%);
            transform: translateX(-75%);
  }
  76% {
    opacity: 0;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes returnArr {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  75% {
    opacity: 0;
    -webkit-transform: translateX(-75%);
            transform: translateX(-75%);
  }
  76% {
    opacity: 0;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.bttn {
  position: relative;
  display: inline-block;
  padding: 0.65em 1.5em;
  padding-right: 3.5em;
  border-radius: 3em;
  line-height: 1;
  font-size: 1em;
  background: -webkit-gradient(linear, left top, right top, from(#15b3e7), to(#004298)) 0 0/200%;
  background: linear-gradient(90deg, #15b3e7, #004298) 0 0/200%;
  color: #fff;
  text-align: center;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.bttn .arr {
  position: absolute;
  right: 1.5em;
  top: calc(50% - .4em);
  width: 0.8em;
  height: 0.8em;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.bttn .arr::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.bttn .arr::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  width: 70%;
  height: 70%;
  border: 1px solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-color: #fff #fff transparent transparent;
}
.bttn:hover {
  text-decoration: none;
  background-position-x: 100%;
  color: #fff;
}
.bttn:hover .arr {
  -webkit-animation: bttnArr 1200ms infinite;
          animation: bttnArr 1200ms infinite;
}
.bttn.sty_outline {
  border: 1px solid currentColor;
  color: #004298;
  padding-right: 1.5em;
  background: #fff;
  font-size: 0.8em;
}
.bttn.sty_outline:hover {
  background: rgba(21, 179, 231, 0.2);
}

.fix_aside {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: 1rem;
  -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;
  width: 4em;
  height: 4em;
  background: #fff linear-gradient(120deg, #fff, #ddd);
  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: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.txt {
  text-align: center;
  line-height: 1.3;
}
.fix_aside .fx_item .in_wrap.ic {
  width: 100%;
  height: 100%;
  padding: 0.6em;
}
.fix_aside .fx_item .in_wrap .ic_top {
  width: 100%;
  padding-top: 100%;
  background: url("img/ui/arrow_top.png") center/contain no-repeat;
}

.g_header .header_wrap {
  position: relative;
  padding: 0.5rem;
}
.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_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.g_header .header_logo {
  padding: 0 1rem;
}
.g_header .header_logo img {
  width: 250px;
}
.g_header .nav_cnt {
  padding: 0 1rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.g_header .nav_item {
  padding: 0.75rem 1rem;
  font-size: 1.125em;
  line-height: 1;
  font-weight: normal;
}
.g_header .nav_link {
  color: #fff;
}
.g_header .nav_link:hover {
  color: #faab63;
  text-decoration: none;
}

.g_kv {
  position: relative;
}
.g_kv .desktop {
  position: relative;
  height: 90vh;
}
.g_kv .desktop .kv_logo {
  position: absolute;
  left: 3vw;
  top: 3vw;
  width: 25%;
  max-width: 345px;
}
.g_kv .desktop .kv_tit {
  position: absolute;
  left: 0;
  top: 47%;
}
.g_kv .desktop .kv_tit img {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.g_kv .kv_date {
  position: absolute;
  left: 14%;
  top: 72%;
  z-index: 3;
  color: #fff;
  font-size: 2.5em;
  text-shadow: 3px 3px 0 #151c7e;
  font-family: "Inter", sans-serif;
  line-height: 1;
}
.g_kv .kv_date .y {
  display: inline-block;
}
.g_kv .kv_date .d {
  display: block;
  font-size: 2em;
  letter-spacing: 2px;
  color: #5ad6ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.g_kv .kv_date .d i {
  width: 1em;
  height: 1px;
  -webkit-box-shadow: 3px 3px 0 #151c7e;
          box-shadow: 3px 3px 0 #151c7e;
  background-color: #fff;
}

.g_main {
  position: relative;
  z-index: 2;
}

.main_sc {
  padding: 40px 0;
}

.intro_cnt {
  background-color: #fff;
}
.intro_cnt .tit {
  font-size: 2em;
  margin-bottom: 0.5em;
  font-weight: 700;
  text-align: center;
  color: #004298;
}
.intro_cnt .parag {
  margin: 0 auto;
  max-width: 50em;
  line-height: 1.8;
  font-size: 1.25em;
}
.intro_cnt .point {
  margin: 20px 0;
}
.intro_cnt .point .items {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.intro_cnt .point .pt_item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33%;
          flex: 0 0 33%;
  text-align: center;
}
.intro_cnt .point .pt_item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  height: 100%;
  width: 1px;
  background-color: #a41386;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
.intro_cnt .point .pt_item:last-child::after {
  display: none;
}
.intro_cnt .point .pt_item .strong {
  position: relative;
}
.intro_cnt .point .pt_item .strong::after {
  content: "";
  position: absolute;
  left: calc(50% - 3em);
  top: calc(50% - 3em);
  width: 6em;
  height: 6em;
  border-radius: 3em;
  background-color: #ecf9fd;
}
.intro_cnt .point .pt_item .strong > * {
  position: relative;
  z-index: 2;
}
.intro_cnt .point .pt_item strong {
  vertical-align: middle;
  font-size: 5em;
  font-weight: 700;
  color: #004298;
}
.intro_cnt .point .pt_item .strong_sub {
  margin-top: 0.2em;
  vertical-align: middle;
  margin-left: 4px;
  font-size: 2.5em;
  color: #15b3e7;
}
.intro_cnt .point .pt_item span {
  font-size: 1.25em;
  display: inline-block;
  color: #151c7e;
}
.intro_cnt .point .pt_item span + span {
  margin-left: 0.25em;
}

.video_cnt {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(rgba(236, 249, 253, 0.9)));
  background: linear-gradient(#fff, rgba(236, 249, 253, 0.9));
  padding-top: 0;
}
.video_cnt .flex_row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.video_cnt .word_wrap,
.video_cnt .video_wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.video_cnt .word_wrap {
  padding: 30px;
}
.video_cnt .word_wrap .tit {
  margin-bottom: 1em;
  font-size: 2em;
  line-height: 1;
}
.video_cnt .word_wrap .tit .l1 {
  font-size: 1.4em;
  font-weight: 700;
  color: #004298;
}
.video_cnt .word_wrap .tit .l2 {
  margin-top: 0.25em;
  color: #151c7e;
}
.video_cnt .word_wrap .spk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.video_cnt .word_wrap .pic img {
  width: 140px;
  border-radius: 50%;
}
.video_cnt .word_wrap .word {
  padding-left: 0.875em;
  font-size: 1.125em;
}
.video_cnt .word_wrap .name {
  font-size: 1.5em;
  color: #661b87;
}
.video_cnt .video_wrap {
  border-radius: 2px;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.speaker_cnt {
  background-color: #ecf9fd;
}
.speaker_cnt .items {
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1440px;
}
.speaker_cnt .spk_item {
  padding: 0 6px;
}
.speaker_cnt .spk_item .pic {
  margin: 0 auto;
  width: calc(100% - 60px);
  position: relative;
  border-radius: 50%;
  padding-top: calc(100% - 60px);
  background: url("img/spk/speaker.jpg") center/contain no-repeat;
  overflow: hidden;
}
.speaker_cnt .spk_item .pic img {
  position: absolute;
  left: 0;
  top: 0;
}
.speaker_cnt .spk_item .wording {
  margin-top: 0.75em;
  text-align: center;
  font-size: 1.125em;
}
.speaker_cnt .spk_item .wording .name {
  font-size: 1.2em;
  color: #661b87;
}
.speaker_cnt .spk_item .wording .job {
  font-size: 0.875em;
}
.speaker_cnt .spk_item .wording .job span {
  display: inline-block;
  margin: 0.1em 0;
  padding: 0 0.1em;
  line-height: 1;
}
.speaker_cnt .spk_item .wording .job span:last-child {
  color: #151c7e;
}
.speaker_cnt .controls {
  margin-top: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.speaker_cnt .sd_arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 32px;
  height: 32px;
  background: center/contain no-repeat;
  cursor: pointer;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: -webkit-filter 300ms;
  transition: -webkit-filter 300ms;
  transition: filter 300ms;
  transition: filter 300ms, -webkit-filter 300ms;
}
.speaker_cnt .sd_arrow:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
.speaker_cnt .arr_prev {
  left: 0;
  background-image: url("img/ui/arr_prev.png");
}
.speaker_cnt .arr_next {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  right: 0;
  background-image: url("img/ui/arr_next.png");
}
.speaker_cnt .sd_dots {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 6px;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.speaker_cnt .sd_dots li {
  margin: 0 6px;
  background-color: #bbb;
  line-height: 0;
  border-radius: 8px;
  height: 12px;
  width: 12px;
  overflow: hidden;
  -webkit-transition: background 300ms, width 300ms;
  transition: background 300ms, width 300ms;
}
.speaker_cnt .sd_dots li:hover {
  background-color: rgba(21, 179, 231, 0.6);
}
.speaker_cnt .sd_dots li.slick-active {
  background-color: #15b3e7;
  width: 24px;
}
.speaker_cnt .sd_dots button {
  font-size: 0;
  opacity: 0;
}

.sc_intro .kv {
  width: 100%;
  height: 100%;
}

.sc_primary {
  padding-top: 30px;
  background-color: #fff;
}
.sc_primary .sticky-top {
  padding: 5px;
  background-color: #ecf9fd;
}

.pry_tabs {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ecf9fd;
  border-radius: 3em;
  max-width: 1110px;
  margin: 0 auto;
}
.pry_tabs::after {
  content: "";
  position: absolute;
  left: 0.2%;
  top: 0;
  width: 16.6%;
  height: 100%;
  border-radius: 3em;
  background-color: #151c7e;
  -webkit-transition: left 400ms;
  transition: left 400ms;
}
.pry_tabs.now_cnt_a::after {
  left: 0.2%;
}
.pry_tabs.now_cnt_b::after {
  left: 16.8%;
}
.pry_tabs.now_cnt_c::after {
  left: 33.4%;
}
.pry_tabs.now_cnt_d::after {
  left: 50%;
}
.pry_tabs.now_cnt_e::after {
  left: 66.6%;
}
.pry_tabs.now_cnt_f::after {
  left: 83.2%;
}

.pry_tab {
  position: relative;
  z-index: 3;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.6%;
          flex: 0 0 16.6%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 1em;
  line-height: 1.3;
  text-align: center;
  -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;
  cursor: pointer;
  color: #004298;
  -webkit-transition: color 200ms 200ms;
  transition: color 200ms 200ms;
}
.pry_tab.is_active {
  color: #fff;
}

.pry_cnt {
  display: none;
}
.pry_cnt.is_active {
  display: block;
}
.pry_cnt .sec_tit {
  margin-top: 50px;
  font-size: 1.5em;
  line-height: 1;
  text-align: center;
  color: #004298;
}
.pry_cnt .sec_tit div {
  position: relative;
  display: inline-block;
  padding-bottom: 0.25em;
  border-bottom: 1px solid currentColor;
}
.pry_cnt .sec_tit div::after {
  content: "";
  position: absolute;
  right: calc(50% - 1.5em);
  bottom: -1.5em;
  width: 3em;
  height: 3em;
  background-color: rgba(90, 214, 255, 0.1);
  border-radius: 2em;
}
.pry_cnt .c_sec {
  position: relative;
  z-index: 3;
  border-radius: 4px;
  padding: 20px;
  background: #ecf9fd;
}
.pry_cnt .vd_wrap .cv_responsive {
  cursor: pointer;
}
.pry_cnt .vd_wrap .vd_responsive {
  display: none;
}
.pry_cnt .item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 20%;
          flex: 1 0 20%;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}
.pry_cnt .item .vd_wrap {
  border: 0 solid rgba(0, 0, 0, 0.1);
  border-width: 0 0 1px 0;
}
.pry_cnt .item .wd_wrap {
  padding: 20px;
}
.pry_cnt .item .name,
.pry_cnt .item .job {
  display: inline-block;
  font-size: 1em;
}
.pry_cnt .item .tit {
  margin-bottom: 0.2em;
  font-size: 1.25em;
  color: #151c7e;
}
.pry_cnt .item .name {
  color: #661b87;
}
.pry_cnt .item .job {
  margin-left: 0.5em;
  color: #000;
}
.pry_cnt .item ul {
  padding-left: 1.65em;
  margin: 0;
  margin-top: 10px;
}
.pry_cnt .intro {
  padding: 50px 0 30px;
}
.pry_cnt .intro p {
  margin: 0 auto;
  max-width: 50em;
  line-height: 1.8;
  font-size: 1.25em;
}
.pry_cnt .topic {
  border-radius: 10px;
}
.pry_cnt .topic .items {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.pry_cnt .topic_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 10px);
          flex: 0 0 calc(50% - 10px);
}
.pry_cnt .project {
  border-radius: 10px;
}
.pry_cnt .col_full,
.pry_cnt .project_item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.pry_cnt .col_full .vd_wrap,
.pry_cnt .col_full .wd_wrap,
.pry_cnt .project_item .vd_wrap,
.pry_cnt .project_item .wd_wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
}
.pry_cnt .col_full .vd_wrap,
.pry_cnt .project_item .vd_wrap {
  border-width: 0 1px 0 0;
}
.pry_cnt .col_full .wd_wrap,
.pry_cnt .project_item .wd_wrap {
  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;
  font-size: 1.25em;
}
.pry_cnt .col_full .job,
.pry_cnt .project_item .job {
  margin-left: 0;
}
.pry_cnt .course {
  border-radius: 10px;
}
.pry_cnt .course .items {
  margin: 0 -10px;
}
.pry_cnt .course_item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 25%;
          flex: 1 0 25%;
  padding: 0 10px;
}
.pry_cnt .course_item .vd_wrap {
  border-radius: 10px;
  overflow: hidden;
}
.pry_cnt .course_item .tit {
  padding: 5px 10px 10px;
  color: #151c7e;
}
.pry_cnt .calltoact {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pry_cnt .calltoact .bttn {
  font-size: 1.5em;
}
.pry_cnt .calltoact .sty_outline {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sc_line {
  background-color: rgba(21, 28, 126, 0.8);
}
.sc_line .container {
  padding: 0 50px;
}
.sc_line .col_box {
  padding: 0 10px;
}
.sc_line .line_cnt,
.sc_line .edm_cnt,
.sc_line .cta_cnt {
  height: 100%;
  border-radius: 10px;
  padding: 30px;
  background-color: #fff;
}
.sc_line .line_cnt .tit,
.sc_line .edm_cnt .tit,
.sc_line .cta_cnt .tit {
  margin-bottom: 0.5em;
  line-height: 1;
  font-size: 1.5em;
  font-weight: 700;
  color: #004298;
}
.sc_line .line_cnt .tit .line,
.sc_line .edm_cnt .tit .line,
.sc_line .cta_cnt .tit .line {
  margin: 0 0.2em;
  color: #06c755;
}
.sc_line .line_cnt .parag,
.sc_line .edm_cnt .parag,
.sc_line .cta_cnt .parag {
  font-size: 1.125em;
}
.sc_line .line_cnt .list,
.sc_line .edm_cnt .list,
.sc_line .cta_cnt .list {
  margin: 0;
  padding-left: 1.65em;
}
.sc_line .line_cnt {
  margin: 0 10px;
  margin-bottom: 20px;
}
.sc_line .line_cnt .cta {
  margin-top: calc(-2.25em - 10px);
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.sc_line .line_cnt .cta a {
  margin: -10px 0;
  display: block;
  text-align: center;
  opacity: 1;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.sc_line .line_cnt .cta a:hover {
  text-decoration: none;
  opacity: 0.65;
}
.sc_line .line_cnt .cta span {
  position: relative;
  display: block;
  padding-top: 0.15em;
  padding-bottom: 0.4em;
  background-color: #06c755;
  color: #fff;
}
.sc_line .edm_cnt,
.sc_line .cta_cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sc_line .edm_cnt .parag,
.sc_line .cta_cnt .parag {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  padding-bottom: 0.75em;
}

.g_footer {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #fff;
}
.g_footer .container-fluid {
  padding-left: 10px;
  padding-right: 100px;
}
.g_footer .items {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.g_footer .k {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-left: 30px;
  padding-right: 10px;
}
.g_footer .k div {
  color: #151c7e;
  padding: 12px 0 4px;
  border-bottom: 1px solid currentColor;
}
.g_footer .v {
  padding-left: 10px;
  padding-right: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}
.g_footer .v img {
  max-width: 100%;
  max-height: 50px;
}

.g_complete {
  background-color: #f8f8f8;
}
.g_complete .sc_menu {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  max-width: 18%;
}
.g_complete .sc_menu .items {
  padding: 20px 0;
  display: block;
}
.g_complete .sc_menu .item {
  display: block;
  padding: 1em;
  border: 0 solid #eee;
  border-bottom-width: 1px;
  background-color: #fff;
  color: #004298;
}
.g_complete .sc_menu .item:first-child {
  border-top-width: 1px;
}
.g_complete .sc_menu .item:hover {
  background-color: #fafafa;
  text-decoration: none;
  color: #15b3e7;
}
.g_complete .sc_menu .return {
  margin-top: 1.5em;
}
.g_complete .sc_menu .return a {
  position: relative;
  padding-left: 3em;
}
.g_complete .sc_menu .return a .arr {
  position: absolute;
  left: 1.5em;
  top: calc(50% - .4em);
  width: 0.8em;
  height: 0.8em;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.g_complete .sc_menu .return a .arr::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: #004298;
}
.g_complete .sc_menu .return a .arr::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(15% + 1px);
  width: 70%;
  height: 70%;
  border: 1px solid;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-color: #004298 transparent transparent #004298;
}
.g_complete .sc_menu .return a:hover {
  text-decoration: none;
  background-position-x: 100%;
  color: #15b3e7;
}
.g_complete .sc_menu .return a:hover .arr {
  -webkit-animation: returnArr 1200ms infinite;
          animation: returnArr 1200ms infinite;
}
.g_complete .sc_menu .return a:hover .arr::before {
  background-color: #15b3e7;
}
.g_complete .sc_menu .return a:hover .arr::after {
  border-color: #15b3e7 transparent transparent #15b3e7;
}
.g_complete .sc_list {
  border-left: 1px solid #eee;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.25em;
  background-color: #fff;
}
.g_complete .sc_list .lv0_cnt {
  padding: 30px;
  border-bottom: 1px solid #eee;
}
.g_complete .sc_list .lv0_tit {
  line-height: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.g_complete .sc_list .lv0_tit .tit {
  font-size: 1.5em;
  font-weight: 700;
  color: #151c7e;
}
.g_complete .sc_list .lv0_tit .noti {
  font-size: 1rem;
}
.g_complete .sc_list .lv0_tit .noti .bttn {
  padding-left: 1.25em;
  padding-right: 3em;
}
.g_complete .sc_list .lv0_tit .noti .bttn .arr {
  right: 1.25em;
}
.g_complete .sc_list .lv1_cnt {
  padding: 20px 3px;
}
.g_complete .sc_list .lv1_cnt + .lv1_cnt {
  padding-top: 10px;
}
.g_complete .sc_list .lv1_cnt:last-child {
  padding-bottom: 10px;
}
.g_complete .sc_list .lv1_tit {
  font-size: 0.875em;
  color: #15b3e7;
  line-height: 1;
  padding-bottom: 10px;
}
.g_complete .sc_list .lv2_item {
  margin-left: 0.25em;
  border-left: 1px solid #15b3e7;
}
.g_complete .sc_list .topic {
  font-size: 1em;
}
.g_complete .sc_list .topic a,
.g_complete .sc_list .topic div {
  padding: 10px 1em;
}
.g_complete .sc_list .topic a {
  display: block;
  color: #004298;
}
.g_complete .sc_list .topic a:hover {
  color: #a41386;
  text-decoration: underline;
}
.g_complete .sc_list .topic div {
  color: #999;
}

@media (max-width: 767px) {
  .g_kv .kv_date {
    font-size: 1.25rem;
  }

  .intro_cnt .tit {
    font-size: 1.5em;
  }
  .intro_cnt .parag {
    padding: 0 15px;
    line-height: 1.5;
    font-size: 1.125em;
  }
  .intro_cnt .point .pt_item {
    margin: 15px 0;
    font-size: 0.875em;
  }
  .intro_cnt .point .pt_item::after {
    display: none;
  }
  .intro_cnt .point .pt_item .strong {
    font-size: 0.9em;
  }

  .video_cnt .word_wrap {
    padding: 20px 10px;
  }
  .video_cnt .word_wrap .tit {
    font-size: 1.5em;
    text-align: center;
  }
  .video_cnt .word_wrap .job {
    line-height: 1.3;
  }

  .speaker_cnt .spk_item .pic {
    width: calc(100% - 80px);
    padding-top: calc(100% - 80px);
  }

  .sc_primary {
    padding-top: 15px;
  }
  .sc_primary .sticky-top {
    padding: 20px 30px;
  }

  .pry_tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .pry_tabs::after {
    display: none;
  }
  .pry_tabs.show_tab .pry_tab {
    display: block;
  }

  .pry_tab {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 0.75em;
    display: none;
    border-radius: 23px;
  }
  .pry_tab.is_active {
    display: block;
    background-color: #151c7e;
  }
  .pry_tab .arr {
    position: absolute;
    right: 1.5em;
    top: calc(50% - .4em);
    width: 0.8em;
    height: 0.8em;
    -webkit-transition: all 300ms;
    transition: all 300ms;
  }
  .pry_tab .arr::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    background-color: #fff;
  }
  .pry_tab .arr::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    width: 70%;
    height: 70%;
    border: 1px solid;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    border-color: transparent #fff #fff transparent;
  }

  .pry_cnt .intro {
    padding: 20px;
  }
  .pry_cnt .intro p {
    line-height: 1.5;
    font-size: 1.125em;
  }
  .pry_cnt .sec_tit {
    margin-top: 20px;
  }
  .pry_cnt .item {
    margin-bottom: 20px;
  }
  .pry_cnt .item:last-child {
    margin-bottom: 0;
  }
  .pry_cnt .item .tit {
    line-height: 1.3;
  }
  .pry_cnt .col_full,
.pry_cnt .project_item {
    display: block;
  }
  .pry_cnt .col_full .vd_wrap,
.pry_cnt .project_item .vd_wrap {
    border-width: 0 0 1px 0;
  }
  .pry_cnt .col_full .wd_wrap,
.pry_cnt .project_item .wd_wrap {
    font-size: 1rem;
  }
  .pry_cnt .course_item {
    margin-bottom: 20px;
  }
  .pry_cnt .course_item:last-child {
    margin-bottom: 0;
  }

  .sc_line .container {
    padding: 0 5px;
  }
  .sc_line .line_cnt {
    margin-bottom: 0;
  }
  .sc_line .line_cnt .cta {
    margin-top: 1em;
  }
  .sc_line .col_box {
    margin-top: 20px;
  }

  .g_footer .k,
.g_footer .v {
    padding-left: 20px;
  }
  .g_footer .v {
    margin-bottom: 15px;
  }
  .g_footer .v img {
    width: auto;
    height: 80px;
  }

  .g_complete .sc_menu {
    max-width: 100%;
  }
  .g_complete .sc_menu .item.js_page_scroll {
    display: none;
  }
  .g_complete .sc_menu .return {
    margin-top: 0;
  }
  .g_complete .sc_list {
    font-size: 1.125em;
  }
  .g_complete .sc_list .lv0_cnt {
    padding: 30px 20px;
  }
  .g_complete .sc_list .lv1_cnt {
    padding-left: 0;
    padding-right: 0;
  }
  .g_complete .sc_list .topic {
    line-height: 1.2;
  }
  .g_complete .sc_list .topic a,
.g_complete .sc_list .topic div {
    padding-left: 0.75em;
  }
}