body {
  font-family: "Noto Sans TC", sans-serif;
  background-color: #012964;
}

.main_color {
  color: #0D285F;
}

.sub_color {
  color: #90bff7;
}

.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: linear-gradient(95.08deg, #FCFF52 3.16%, #1EF1FF 90.16%);
  color: #0D285F;
  line-height: 1.3;
  font-weight: bold;
}

.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%;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

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

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

.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;
  width: 100%;
  z-index: 3;
}

.g_header .nav_area .nav_content {
  position: relative;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.g_header .nav_area .nav_cnt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: 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: linear-gradient(95.08deg, #FCFF52 3.16%, #1EF1FF 90.16%);
  color: #0D285F;
}

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

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

.bttn .bttn_inner {
  cursor: pointer;
  display: block;
  padding: 0.75em 2em;
  border-radius: 2em;
  font-size: 1.25em;
  line-height: 1;
  border: 2px solid #0D285F;
  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: #0D285F;
  color: #fff;
  text-shadow: 0 2px rgba(0, 0, 0, 0.2);
}

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

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

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

.bttn .sub_b {
  background-color: #fff;
  color: #0D285F;
}

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

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

.g_kv .desktop {
  position: relative;
  height: 100vh;
  min-height: 800px;
  background-color: #000;
  background-image: url("img/kv_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
}

.g_kv .kv_copy {
  position: absolute;
  top: 25px;
  right: 10%;
  font-size: 16px;
  color: #fff;
}

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

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

.g_kv .tit .t1 img {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: block;
}

.g_kv .cta {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-60%, 0);
          transform: translate(-60%, 0);
  bottom: 8%;
  text-align: center;
}

.g_kv .cta .bttn {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  position: relative;
  display: inline-block;
  border-radius: 5rem;
  height: auto;
  background-color: #fff;
  overflow: hidden;
  border: 3px solid #FFFFFF;
  text-decoration: none;
}

.g_kv .cta .bttn::before {
  -webkit-transition: left 300ms ease-in-out;
  transition: left 300ms ease-in-out;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 5rem;
  background: linear-gradient(95.08deg, #FCFF52 3.16%, #1EF1FF 90.16%);
}

.g_kv .cta .bttn div {
  position: relative;
  display: inline-block;
  z-index: 2;
  padding: 0.9375rem 4.6875rem;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 4.8px;
  color: #0D285F;
  text-shadow: 0 1px 5px rgba(13, 40, 95, 0.3);
  -webkit-transition-property: color, text-shadow;
  transition-property: color, text-shadow;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
}

.g_kv .cta_hand {
  -webkit-transition: all 0.3 ease-in-out;
  transition: all 0.3 ease-in-out;
  position: absolute;
  top: 30px;
  right: 60px;
}

.g_kv .cta_hand img {
  position: absolute;
  display: block;
}

.g_kv .cta_hand .hand {
  top: 0;
  left: 0;
  -webkit-animation: handAni 0.3s ease-out infinite alternate;
          animation: handAni 0.3s ease-out infinite alternate;
}

.g_kv .cta_hand .hand_light {
  top: -40px;
  left: -17px;
  -webkit-animation: handLightAni 0.3s ease-out infinite alternate;
          animation: handLightAni 0.3s ease-out infinite alternate;
}

.g_kv .cta:hover .bttn {
  border: 3px solid #ec00e1;
}

.g_kv .cta:hover .bttn::before {
  left: 100%;
}

.g_kv .cta:hover .bttn div {
  color: #ec00e1;
  text-shadow: 0 1px 5px rgba(236, 0, 225, 0);
}

.g_kv .cta:hover .cta_hand {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.g_kv .cta:hover .cta_hand .hand {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes handLightAni {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0.5;
  }
}

@keyframes handLightAni {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0.5;
  }
}

@-webkit-keyframes handAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@keyframes handAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

.g_main {
  overflow: hidden;
}

.main_sc {
  padding: 60px 0;
}

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

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

.sc_title .tit.c_main {
  color: #0D285F;
}

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

.sc_title .sub {
  position: relative;
  margin: 20px auto 0 auto;
  padding: 0 0 10px 0;
  font-size: 1.3794rem;
  color: #212529;
}

.sc_title .sub::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  height: 2.779998779296875px;
  width: 420px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#24D1FB), to(#28F57E));
  background: linear-gradient(90deg, #24D1FB 0%, #28F57E 100%);
}

.highlight_tit {
  color: #FFEF60;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1;
  text-align: center;
}

.sc_intro {
  position: relative;
  padding: 50px 0;
  background-color: #012964;
}

.intro_cnt {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.5rem;
}

.intro_cnt p {
  margin-bottom: 0.5rem;
  padding: 0.25rem 0;
  line-height: 1.65;
  color: #fff;
  text-align: justify;
}

.intro_cnt p .lightBlue {
  color: #6be5d7;
}

.intro_cnt p .hashtag {
  color: #FFEF60;
}

.intro_cnt .reason_items {
  position: relative;
  margin: 50px 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: center;
      -ms-flex-align: center;
          align-items: center;
}

.intro_cnt .reason_items .item {
  position: relative;
  width: auto;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 20px auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: rgba(112, 82, 219, 0);
  border-radius: 999px;
  border: 2px solid #FFFFFF;
}

.intro_cnt .reason_items .item p {
  position: relative;
  margin: 0 60px 0 30px;
  padding: 0;
  display: block;
  font-size: 1.875rem;
  color: #fff;
}

.intro_cnt .intro_cta {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  padding: 50px 70px;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0.1);
}

.intro_cnt .intro_cta .dbArr {
  position: absolute;
  top: -35px;
  left: 50%;
  margin: 0 0 0 -25px;
}

.intro_cnt .intro_cta-btn {
  -webkit-transition: all 0.3 ease-in-out;
  transition: all 0.3 ease-in-out;
  position: relative;
  width: 100%;
  height: auto;
  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;
  cursor: pointer;
  text-decoration: none;
  font-size: 33px;
  font-weight: bold;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.intro_cnt .intro_cta-btn .t1 {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  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;
}

.intro_cnt .intro_cta-btn .t1 p {
  color: #FFEF60;
  padding: 15px 0;
  z-index: 1;
}

.intro_cnt .intro_cta-btn .t1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 5px solid #FFEF60;
  border-right: 0;
  background-color: transparent;
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
}

.intro_cnt .intro_cta-btn .t2 {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  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;
}

.intro_cnt .intro_cta-btn .t2 p {
  color: #0D285F;
  padding: 15px 0;
  z-index: 1;
}

.intro_cnt .intro_cta-btn .t2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 5px solid #fff;
  background: linear-gradient(94.47deg, #FCFF52 4.18%, #1EF1FF 85.84%);
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
}

.intro_cnt .intro_cta-btn .cta_hand {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 30px;
  right: 60px;
  z-index: 1;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
}

.intro_cnt .intro_cta-btn .cta_hand img {
  position: absolute;
  display: block;
}

.intro_cnt .intro_cta-btn .cta_hand .hand {
  top: 0;
  left: 0;
  -webkit-animation: handAni 0.3s ease-out infinite alternate;
          animation: handAni 0.3s ease-out infinite alternate;
}

.intro_cnt .intro_cta-btn .cta_hand .hand_light {
  top: -40px;
  left: -17px;
  -webkit-animation: handLightAni 0.3s ease-out infinite alternate;
          animation: handLightAni 0.3s ease-out infinite alternate;
}

.intro_cnt .intro_cta-btn:hover .cta_hand {
  -webkit-transform: scale(0.55);
          transform: scale(0.55);
}

.intro_cnt .intro_cta-btn:hover .cta_hand .hand {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.intro_cnt .intro_cta-downloadBtn {
  position: relative;
  width: 100%;
  margin: 20px 0 0 0;
  text-align: center;
  display: block;
  text-decoration: none;
}

.intro_cnt .intro_cta-downloadBtn p {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  font-size: 27px;
  color: #fff;
  margin: 0;
  padding: 8px 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.intro_cnt .intro_cta-downloadBtn p .btn {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 0 15px;
  padding: 5px 15px;
  border-radius: 50px;
  background-color: transparent;
  border: 1px solid #fff;
  font-size: 27px;
  color: #fff;
}

.intro_cnt .intro_cta-downloadBtn .bottomLine {
  position: relative;
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: -webkit-gradient(linear, left top, right top, from(#24D1F8), color-stop(100.99%, #FFEF60));
  background: linear-gradient(90deg, #24D1F8 0%, #FFEF60 100.99%);
}

.intro_cnt .intro_cta-downloadBtn:hover p {
  color: #FFEF60;
}

.intro_cnt .intro_cta-downloadBtn:hover .btn {
  background-color: #fff;
  color: #0D285F;
}

.intro_cnt .intro_ta {
  position: relative;
  width: 100%;
  margin: 150px auto;
  background-color: transparent;
  padding: 50px 80px 20px 80px;
}

.intro_cnt .intro_ta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.intro_cnt .intro_ta-bg .ta_cor_1 {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.intro_cnt .intro_ta-bg .ta_cor_2 {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.intro_cnt .intro_ta-bg .ta_cor_3 {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.intro_cnt .intro_ta-bg .ta_cor_4 {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.intro_cnt .intro_ta .highlight_tit {
  margin: -70px 0 0 0;
}

.intro_cnt .intro_ta-items {
  position: relative;
  width: 100%;
  height: auto;
  margin: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  z-index: 1;
}

.intro_cnt .intro_ta-items .item {
  position: relative;
  margin: 0 15px;
  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: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

.intro_cnt .intro_ta-items .item:nth-child(1) {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

.intro_cnt .intro_ta-items .item img {
  position: relative;
  width: 250px;
  height: auto;
}

.intro_cnt .intro_ta-items .item .tit {
  position: relative;
  text-align: center;
  font-size: 1.6875rem;
  font-weight: bold;
}

.intro_cnt .intro_ta-items .item .tit span {
  font-size: 1.3125rem;
}

.intro_cnt .intro_ta-items .item .detail {
  position: relative;
  font-size: 18px;
  text-align: justify;
}

.intro_cnt .intro_ta-company {
  position: relative;
  text-align: center;
  font-size: 1.25rem;
  color: #fff;
}

.intro_cnt .intro_ta-company span {
  color: #FFEF60;
}

.intro_cnt .intro_five {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 50px 0;
}

.intro_cnt .intro_five .container {
  max-width: 1350px;
}

.intro_cnt .intro_five .five_items {
  position: relative;
  margin: 50px auto 0 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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.intro_cnt .intro_five .five_items .item {
  position: relative;
  margin: 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-self: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

.intro_cnt .intro_five .five_items .item p {
  margin: 0;
  padding: 0;
}

.intro_cnt .intro_five .five_items .item .icon {
  position: relative;
  width: 150px;
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 150px;
          flex: 1 0 150px;
}

.intro_cnt .intro_five .five_items .item .tit {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 20px;
  margin: 0 auto;
  font-size: 1.5rem;
  text-align: center;
}

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

.intro_cnt .intro_five .five_items .item .text span {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2px 15px;
  border: 1px solid #fff;
  border-radius: 25px;
  cursor: pointer;
  background-color: transparent;
  color: #fff;
}

.intro_cnt .intro_five .five_items .item .text span:hover {
  color: #0D285F;
  background-color: #fff;
}

.intro_cnt .intro_five .five_box {
  position: relative;
  width: 100%;
  margin: 40px auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px;
  height: auto;
  border: 1px solid #fff;
}

.intro_cnt .intro_five .five_box ul {
  color: #fff;
}

.normal_cta {
  position: relative;
  display: block;
  margin: 50px auto;
  text-align: center;
}

.normal_cta-btn {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  font-size: 2rem;
  width: auto;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 50px;
  font-weight: bold;
  display: inline-block;
  border-radius: 90px;
  color: #fff;
  background-color: #ec00e1;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ec00e1), to(#a200ae));
  background-image: linear-gradient(180deg, #ec00e1, #a200ae);
  -webkit-box-shadow: 0 -8px 5px rgba(121, 147, 217, 0.1);
          box-shadow: 0 -8px 5px rgba(121, 147, 217, 0.1);
  text-shadow: 0 3px 5px rgba(121, 147, 217, 0.5);
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  cursor: pointer;
}

.normal_cta-btn:hover {
  color: #fff;
  background-color: #fff;
  -webkit-box-shadow: 0 8px 5px rgba(121, 147, 217, 0.1);
          box-shadow: 0 8px 5px rgba(121, 147, 217, 0.1);
  text-shadow: 0 -3px 5px rgba(121, 147, 217, 0.5);
  background-image: -webkit-gradient(linear, left bottom, left top, from(#ec00e1), to(#a200ae));
  background-image: linear-gradient(0deg, #ec00e1, #a200ae);
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

.sc_lesson {
  position: relative;
  padding: 60px 0;
  background-color: #012964;
}

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

.sc_lesson .leoosn_form {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #fff;
  margin: 20px auto;
}

.sc_lesson .tr {
  position: relative;
  width: 100%;
  height: auto;
  padding: 7px 0;
  font-size: 1.25rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: transparent;
  border-radius: 35px;
}

.sc_lesson .tr:nth-child(2n+1) {
  background-color: rgba(11, 149, 180, 0.1);
}

.sc_lesson .tr div {
  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_lesson .tr .num {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 5%;
          flex: 1 0 5%;
}

.sc_lesson .tr .sort {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 10%;
          flex: 1 0 10%;
}

.sc_lesson .tr .tit {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 45%;
          flex: 1 0 45%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.sc_lesson .tr .place {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 10%;
          flex: 1 0 10%;
}

.sc_lesson .tr .startDate {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 10%;
          flex: 1 0 10%;
}

.sc_lesson .tr .ednDate {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 10%;
          flex: 1 0 10%;
}

.sc_lesson .tr .download {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 10%;
          flex: 1 0 10%;
}

.sc_lesson .tr .download a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 5px 0;
  padding: 2px 15px;
  border-radius: 50px;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

.sc_lesson .tr .download:hover a {
  background-color: #fff;
  color: #0D285F;
}

.sc_lesson .tr.sp {
  border-radius: 25px;
  background-color: #0B95B4;
}

.sc_lesson .leoosn_ps {
  position: relative;
  width: 100%;
  font-size: 1.25rem;
  color: #fff;
  text-align: center;
}

.sc_school {
  position: relative;
  padding: 60px 0;
  background-color: #012964;
}

.sc_school .container {
  max-width: 950px;
}

.sc_school .school_form {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0 0 20px 0;
  margin: 20px auto;
}

.sc_school .tr {
  position: relative;
  width: 100%;
  height: auto;
  padding: 7px 0;
  font-size: 1.25rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: transparent;
  border-radius: 135px;
}

.sc_school .tr:nth-child(2n+1) {
  background-color: rgba(184, 167, 13, 0.1);
}

.sc_school .tr div {
  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_school .tr .tit {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

.sc_school .tr .date {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

.sc_school .tr .place {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

.sc_school .tr.sp {
  border-radius: 25px;
  background-color: #B8A70D;
}

.sc_gift {
  background-color: transparent;
}

.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;
  max-width: 250px;
  max-height: 250px;
  background: linear-gradient(95.08deg, #FCFF52 3.16%, #1EF1FF 90.16%);
  padding: 3px;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}

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

.gift_cnt .item .tit {
  border-radius: 2px;
  margin: 0 auto;
  margin-top: -1.5em;
  padding: .5em 1em;
  background: linear-gradient(95.08deg, #FCFF52 3.16%, #1EF1FF 90.16%);
  -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: #000;
  text-shadow: 0 2px rgba(0, 0, 0, 0.2);
}

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

.gift_cnt .item .text {
  color: #90bff7;
  font-size: 1rem;
}

.gift_cnt .item .text span {
  color: #FFEF60;
}

.sc_detail {
  background-color: #012964;
}

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

.sc_detail .highlight_tit {
  text-align: center;
}

.sc_detail .detail_cnt {
  position: relative;
  border: 1px solid #fff;
  border-radius: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 25px;
  margin: 20px 0;
  width: 100%;
  font-size: 1.25rem;
  color: #fff;
}

.sc_logo {
  padding: 50px 0;
  background-color: #012964;
}

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

.sc_logo .logos {
  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: center;
      -ms-flex-align: center;
          align-items: center;
}

.sc_logo .logos .logo {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  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;
  margin: 0 15px;
}

.sc_logo .logos .logo p {
  position: relative;
  color: #fff;
  font-size: 1.25rem;
  margin: 0;
  padding: 0;
}

.sc_logo .logos .logo img {
  position: relative;
  width: auto;
  height: 50px;
}

@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: 70vh;
    min-height: 600px;
  }
  .g_kv .kv_copy {
    top: 75px;
    right: 15px;
    font-size: 12px;
  }
  .g_kv .tit {
    width: 100%;
    -webkit-transform: translate(-50%, -245%);
            transform: translate(-50%, -245%);
  }
  .g_kv .tit .t1 {
    width: 100%;
  }
  .g_kv .cta {
    -webkit-transform: translate(-60%, 0);
            transform: translate(-60%, 0);
    bottom: 30px;
    text-align: center;
  }
  .g_kv .cta .bttn div {
    padding: 0.3125rem 1.875rem;
    font-size: 1.3125rem;
    letter-spacing: 1.5;
  }
  .g_kv .cta_hand {
    top: 15px;
    right: 25px;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
  .g_kv .cta_hand .hand {
    top: 0;
    left: 0;
    -webkit-animation: handAni 0.3s ease-out infinite alternate;
            animation: handAni 0.3s ease-out infinite alternate;
  }
  .g_kv .cta_hand .hand_light {
    top: -40px;
    left: -17px;
    -webkit-animation: handLightAni 0.3s ease-out infinite alternate;
            animation: handLightAni 0.3s ease-out infinite alternate;
  }
  .g_kv .cta:hover .cta_hand {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  .g_kv .cta:hover .cta_hand .hand {
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
  }
  .main_sc {
    padding: 40px 0;
  }
  .sc_title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
  .sc_title .tit {
    font-size: 2rem;
  }
  .sc_title .sub {
    font-size: 1.3794rem;
  }
  .sc_title .sub::after {
    width: 90%;
  }
  .highlight_tit {
    font-size: 1.625rem;
    line-height: 1.3;
  }
  .sc_intro {
    padding: 30px 0 0 0;
  }
  .intro_cnt {
    text-align: justify;
    font-size: 1.125rem;
  }
  .intro_cnt .reason_items {
    margin: 30px auto;
  }
  .intro_cnt .reason_items .item {
    margin: 15px auto;
  }
  .intro_cnt .reason_items .item img {
    height: 35px;
  }
  .intro_cnt .reason_items .item p {
    margin: 0 60px 0 30px;
    padding: 2px 0;
    font-size: 1.125rem;
  }
  .intro_cnt .intro_cta {
    margin: 70px auto 50px auto;
    padding: 35px 35px;
  }
  .intro_cnt .intro_cta .dbArr {
    top: -35px;
    left: 50%;
    margin: 0 0 0 -25px;
  }
  .intro_cnt .intro_cta-btn {
    -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;
    font-size: 1.3125rem;
  }
  .intro_cnt .intro_cta-btn .t1 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
    width: 80%;
  }
  .intro_cnt .intro_cta-btn .t1 p {
    padding: 15px 25px;
  }
  .intro_cnt .intro_cta-btn .t1::before {
    border: 3px solid #FFEF60;
  }
  .intro_cnt .intro_cta-btn .t2 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
    width: 80%;
  }
  .intro_cnt .intro_cta-btn .t2 p {
    padding: 15px 25px;
  }
  .intro_cnt .intro_cta-btn .t2::before {
    border: 3px solid #fff;
  }
  .intro_cnt .intro_cta-btn .cta_hand {
    top: 100px;
    right: 60px;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
  .intro_cnt .intro_cta-btn .cta_hand .hand {
    top: 0;
    left: 0;
  }
  .intro_cnt .intro_cta-btn .cta_hand .hand_light {
    top: -40px;
    left: -17px;
  }
  .intro_cnt .intro_cta-btn:hover .cta_hand {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  .intro_cnt .intro_cta-downloadBtn {
    margin: 20px 0 0 0;
    text-align: center;
  }
  .intro_cnt .intro_cta-downloadBtn p {
    font-size: 1.125rem;
    margin: 0;
    padding: 8px 0;
  }
  .intro_cnt .intro_cta-downloadBtn p .btn {
    margin: 0 0 0 15px;
    padding: 3px 10px;
    font-size: 1.125rem;
  }
  .intro_cnt .intro_cta-downloadBtn:hover p {
    color: #FFEF60;
  }
  .intro_cnt .intro_cta-downloadBtn:hover .btn {
    background-color: #fff;
    color: #0D285F;
  }
  .intro_cnt .intro_ta {
    margin: 50px auto;
    background-color: transparent;
    padding: 50px 15px 50px 15px;
  }
  .intro_cnt .intro_ta .highlight_tit {
    margin: -70px 0 0 0;
  }
  .intro_cnt .intro_ta-items {
    margin: 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .intro_cnt .intro_ta-items .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin: 30px auto;
  }
  .intro_cnt .intro_ta-items .item img {
    width: 50%;
  }
  .intro_cnt .intro_ta-items .item .tit {
    font-size: 1.3125rem;
  }
  .intro_cnt .intro_ta-items .item .tit span {
    font-size: 1.125rem;
  }
  .intro_cnt .intro_ta-items .item .detail {
    font-size: 1rem;
  }
  .intro_cnt .intro_ta-company {
    font-size: 1rem;
  }
  .intro_cnt .intro_five {
    padding: 30px 0;
  }
  .intro_cnt .intro_five .five_items {
    margin: 20px auto 0 auto;
    -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: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .intro_cnt .intro_five .five_items .item {
    margin: 30px auto;
  }
  .intro_cnt .intro_five .five_items .item .tit {
    font-size: 1.3125rem;
  }
  .intro_cnt .intro_five .five_items .item .text {
    font-size: 1rem;
  }
  .intro_cnt .intro_five .five_box {
    margin: 20px auto;
    padding: 20px;
    font-size: 1rem;
  }
  .sc_lesson {
    padding: 30px 0;
  }
  .sc_lesson .leoosn_form {
    padding: 0 0 20px 0;
    margin: 20px auto;
  }
  .sc_lesson .tr {
    padding: 7px 15px;
    font-size: 1rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .sc_lesson .tr:nth-child(2n+1) {
    background-color: rgba(11, 149, 180, 0.1);
  }
  .sc_lesson .tr div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .sc_lesson .tr .num {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
            flex: 0 0 30px;
  }
  .sc_lesson .tr .sort {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50px;
            flex: 0 0 50px;
  }
  .sc_lesson .tr .tit {
    margin: 0 0 0 30px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 30px 0 0;
  }
  .sc_lesson .tr .place {
    margin: 0 0 0 30px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .sc_lesson .tr .startDate {
    margin: 0 0 0 30px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .sc_lesson .tr .ednDate {
    margin: 0 0 0 30px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .sc_lesson .tr .download {
    margin: 0 0 0 30px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .sc_lesson .tr .download a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 5px 0;
    padding: 2px 15px;
    border-radius: 50px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
  }
  .sc_lesson .tr .download:hover a {
    background-color: #fff;
    color: #0D285F;
  }
  .sc_lesson .tr.sp {
    border-radius: 25px 25px 0 0;
    background-color: #0B95B4;
  }
  .sc_lesson .leoosn_ps {
    font-size: 0.875rem;
  }
  .sc_school {
    padding: 40px 0;
  }
  .sc_school .school_form {
    padding: 0 0 20px 0;
    margin: 20px auto;
  }
  .sc_school .tr {
    padding: 7px 0;
    font-size: 1rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .sc_school .tr:nth-child(2n+1) {
    background-color: rgba(184, 167, 13, 0.1);
  }
  .sc_school .tr div {
    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_school .tr .tit {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
  .sc_school .tr .date {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
  .sc_school .tr .place {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
  .sc_school .tr.sp {
    border-radius: 25px 25px 0 0;
    background-color: #B8A70D;
  }
  .gift_cnt .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .sc_detail {
    padding: 40px 0;
  }
  .sc_detail .detail_cnt {
    font-size: 1rem;
  }
  .sc_logo {
    padding: 30px 0;
  }
  .sc_logo .logos {
    -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;
  }
  .sc_logo .logos .logo {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    width: 100%;
    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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 25px auto;
  }
  .sc_logo .logos .logo p {
    font-size: 1rem;
    margin: 0;
    padding: 0;
  }
  .sc_logo .logos .logo img {
    position: relative;
    width: auto;
    height: 50px;
  }
}
/*# sourceMappingURL=style.css.map */