html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  background: url("img/kv/kv_bg.jpg");
  background-size: cover;
  background-position: bottom center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  overflow-x: hidden;
  animation: bgTrans 5s ease-in-out infinite normal both;
}
@keyframes bgTrans {
  0% {
    background: url("img/kv/kv_bg2.jpg");
    background-size: cover;
    background-position: bottom center;
    background-attachment: fixed;
    background-repeat: no-repeat;
  }
  25% {
    background: url("img/kv/kv_bg3.jpg");
    background-size: cover;
    background-position: bottom center;
    background-attachment: fixed;
    background-repeat: no-repeat;
  }
  50% {
    background: url("img/kv/kv_bg.jpg");
    background-size: cover;
    background-position: bottom center;
    background-attachment: fixed;
    background-repeat: no-repeat;
  }
  90% {
    background: url("img/kv/kv_bg.jpg");
    background-size: cover;
    background-position: bottom center;
    background-attachment: fixed;
    background-repeat: no-repeat;
  }
  100% {
    background: url("img/kv/kv_bg2.jpg");
    background-size: cover;
    background-position: bottom center;
    background-attachment: fixed;
    background-repeat: no-repeat;
  }
}

a {
  color: inherit;
}

.sec_wrap {
  margin: 0 auto;
  padding: 3rem 0;
}

@media screen and (min-width: 1440px) {
  .sec_wrap {
    max-width: 1440px;
  }
}
.fix_aside {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: 0.5rem;
  transform: translateX(150%);
  transition: transform 600ms;
}
.fix_aside.is_active {
  transform: translateX(0%);
}
.fix_aside .fx_item {
  position: relative;
  display: block;
  border-radius: 0.5em;
  margin: 0.5em 0;
  width: 4em;
  height: 4em;
  background: #fff linear-gradient(120deg, #fff, #ddd);
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
  transition: transform 240ms, box-shadow 240ms;
}
.fix_aside .fx_item.is_calendar {
  background-color: transparent;
  border-radius: 99%;
}
.fix_aside .fx_item.is_primary {
  background-image: linear-gradient(45deg, #0289B0, #62B480);
  color: #fff;
}
.fix_aside .fx_item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
}
.fix_aside .fx_item .in_wrap {
  position: absolute;
  left: 50%;
  top: 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 {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 98;
  width: 100%;
}
.g_header.is_active {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 10%), linear-gradient(160deg, #13a060 10%, #13a060 90%);
}
.g_header.is_active .nav_link {
  color: #fff;
}
.g_header.is_active .nav_link:hover {
  color: #13a060;
}
.g_header .header_wrap {
  position: relative;
  padding: 0.5rem;
  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_content {
  display: flex;
  justify-content: center;
}
.g_header .header_logo {
  padding: 0 1rem;
}
.g_header .header_logo img {
  width: 250px;
}
.g_header .nav_cnt {
  position: relative;
  box-sizing: border-box;
  margin: 0 0 0 62px;
  padding: 0 1rem;
  display: inline-flex;
}
.g_header .nav_item {
  padding: 0.75rem 1rem;
  font-size: 1.125em;
  line-height: 1;
  font-weight: normal;
}
.g_header .nav_item.is_highlight .nav_link {
  position: relative;
  background-color: #13a060;
  color: #fff;
  text-shadow: 0 2px 3px rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  padding: 5px 15px;
  overflow: hidden;
  transition: all 0.2s ease-out;
  border: solid 1px white;
}
.g_header .nav_item.is_highlight .nav_link:hover {
  background-color: #fef8b2;
  color: #000;
}
.g_header .nav_link {
  color: #000;
  transition: all 0.3s ease-in-out;
}
.g_header .nav_link:hover {
  color: #fef8b2;
  text-decoration: none;
}
.g_header .header_sns {
  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;
}

@keyframes float {
  0% {
    transform: scale(1.2) translateY(-25px);
  }
  50% {
    transform: scale(1) translateY(0);
  }
  100% {
    transform: scale(1.2) translateY(-15px);
  }
}
@keyframes headFlow {
  0% {
    transform: scale(1.2) translateY(25px);
  }
  50% {
    transform: scale(1) translateY(0);
  }
  100% {
    transform: scale(1.2) translateY(15px);
  }
}
@keyframes headRota {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes headGlow {
  0% {
    filter: brightness(100%);
  }
  50% {
    filter: brightness(150%);
  }
  100% {
    filter: brightness(100%);
  }
}
@keyframes glowDNA {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.g_kv {
  position: relative;
  overflow: hidden;
  height: 100vh;
}
.g_kv .tit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52.1875%;
  transform: translate(-50%, -90%);
  pointer-events: none;
}
.g_kv .tit img {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: block;
}
.g_kv .tit .t1 {
  position: relative;
  width: 99.7005988024%;
}
.g_kv .tit .t2 {
  position: relative;
  width: 99.4011976048%;
  margin-top: 4%;
}
.g_kv .tit .t3 {
  position: relative;
  width: 98.7025948104%;
  margin-top: 3%;
}
.g_kv .tit2 {
  position: absolute;
  width: 82.2916666667%;
  left: 50%;
  transform: translateX(-50%);
}
.g_kv .tit2 img {
  width: 100%;
  max-width: 100%;
}
.g_kv .tit2 .p1 {
  position: absolute;
  width: 81.0126582278%;
  top: 8%;
  left: 8%;
  animation: float 2s ease-in-out 1s infinite alternate both;
}
.g_kv .tit2 .p2 {
  position: relative;
  width: 100%;
  margin-top: 34%;
  animation: float 2s ease-in-out infinite alternate both;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(30px);
  }
}
.g_kv .timer {
  position: absolute;
  right: 20%;
  bottom: 120px;
  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: white;
}
.g_kv .timer .tb span {
  position: absolute;
  left: 50%;
  top: calc(50% - 0.5rem);
  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;
}
.g_main .sec_cnts {
  padding: 20px 0;
}
.g_main .sc_title {
  position: relative;
  z-index: 2;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.g_main .sc_title .tit {
  margin-left: 0.5rem;
  display: inline-block;
  padding-left: 0.875rem;
  font-size: 2rem;
  font-weight: 400;
  color: #62B480;
}
.g_main .sc_title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.5rem;
  height: 100%;
  background-color: #62B480;
  background: linear-gradient(0deg, #91b558, #13a060);
}
.g_main .soft_bg {
  background-color: rgba(151, 204, 37, 0.06);
}

.sc_intro {
  background-color: #fff;
  padding-top: 20px;
}
.sc_intro .sec_cnts {
  max-width: 960px;
  margin: 0 auto;
  font-size: 1.125rem;
}
.sc_intro .parag {
  text-align: justify;
}
.sc_intro .parag span {
  color: #009547;
  font-weight: bold;
}
.sc_intro .part {
  margin-top: 30px;
}
.sc_intro .part .p_tit {
  margin-bottom: 12px;
  text-align: center;
}
.sc_intro .part .p_tit span {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid currentColor;
  font-size: 1.375em;
  font-weight: 400;
  line-height: 1;
  color: #62B480;
}
.sc_intro .part .p_text {
  text-align: justify;
}
.sc_intro .part .p_subt {
  padding: 10px 20px 4px;
  font-size: 1em;
  color: #c543a4;
}
.sc_intro .part .p_list {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
  font-size: 1em;
}
.sc_intro .part .p_list li {
  flex: 0 0 calc(50% - 5px);
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid #62B480;
}

.combain {
  position: relative;
  width: 640px;
  max-width: 100%;
  box-sizing: border-box;
  margin: 50px auto;
  padding: 5px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(120deg, #13a060, #97cc25, 80%, #62B480, 80%, #62B480);
}
.combain .combain_inner {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  box-sizing: border-box;
  padding: 25px 0;
  border-radius: 15px;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.combain .cnt {
  position: relative;
  width: 100%;
  display: block;
  text-align: center;
  color: #62B480;
  font-weight: bold;
  font-size: 1.5rem;
}
.combain .highLight {
  display: inline-block;
  font-weight: 700;
  font-size: 1.75rem;
  color: transparent;
  background: linear-gradient(90deg, #13a060, #97cc25, #62B480);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.cta_box {
  padding: 20px 0;
  text-align: center;
}
.cta_box .cta {
  text-align: center;
}
.cta_box .cta .bttn {
  position: relative;
  display: inline-block;
  border-radius: 2.5rem;
  height: 5rem;
  background-color: #97cc25;
  overflow: hidden;
  border: 0 solid #97cc25;
}
.cta_box .cta .bttn::before {
  transition: left 300ms ease-in-out;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.5rem;
  background: linear-gradient(120deg, #62B480, 70%, #97cc25, 70%, #97cc25);
}
.cta_box .cta .bttn div {
  position: relative;
  top: 50%;
  z-index: 2;
  padding: 0 5.625rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 5px rgba(255, 255, 255, 0.3);
  transition-property: color, text-shadow;
  transition-duration: 300ms;
  transition-delay: 100ms;
  transform: translateY(-50%);
}
.cta_box .cta .bttn:hover {
  text-decoration: none;
}
.cta_box .cta .bttn:hover::before {
  left: -100%;
}
.cta_box .cta .bttn:hover div {
  color: #fff;
  text-shadow: 0 1px 5px rgba(151, 204, 37, 0);
}

.sc_agenda {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 50px 0;
}
.sc_agenda .agd_outer {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 6px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(120deg, #13a060, #97cc25, 80%, #62B480, 80%, #62B480);
}
.sc_agenda .sec_cnts {
  position: relative;
  width: 100%;
  border-radius: 15px;
  padding: 0;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.9);
}
.sc_agenda .ps {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #000;
}

.ag_table_before {
  flex: 1 1 25%;
  line-height: 1;
}
.ag_table_before .item {
  padding: 1rem 0;
}
.ag_table_before .key {
  color: #13a060;
  margin-bottom: 8px;
}
.ag_table_before .val {
  font-size: 1.25em;
}

.ag_table {
  position: relative;
  flex: 1 1 50%;
  font-size: 1.25em;
}
.ag_table .tr {
  position: relative;
  display: flex;
  border: 1px solid rgba(98, 180, 128, 0.5);
  border-width: 0 0 1px 0;
  padding: 0.75rem 1.75rem;
  background-color: white;
}
.ag_table .tr:nth-child(2n+1) {
  background-color: rgba(255, 255, 255, 0.5);
}
.ag_table .tr.sp {
  position: relative;
  background-color: rgba(151, 204, 37, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.ag_table .tr.sp .time {
  flex: 0 0 140px;
  color: #fff;
}
.ag_table .tr.sp:first-child {
  background-color: #62b480;
}
.ag_table .tr .time {
  flex: 0 0 140px;
  color: #62B480;
}
.ag_table .tr .tit {
  position: relative;
  flex: 0 1 60%;
  box-sizing: border-box;
  padding: 0 25px;
}
.ag_table .tr .tit span:last-child {
  margin-left: 0.5rem;
  font-size: 0.875em;
  color: rgba(0, 0, 0, 0.6);
}
.ag_table .tr .spk {
  position: relative;
  flex: 0 1 40%;
  color: #0289B0;
}
.ag_table .tr .spk span {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
}
.ag_table .tr .topic {
  position: relative;
  display: inline-block;
  margin: 0 0 0 15px;
  flex: 0 1 150px;
}
.ag_table .tr .topic .topicBtn {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  padding: 5px 15px;
  border-radius: 25px;
  font-size: 16px;
  border: 1px solid #13a060;
  color: #13a060;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.ag_table .tr .topic .topicBtn:hover {
  color: #fff;
  background-color: #13a060;
}
.ag_table .tr:last-child {
  border-bottom-width: 0;
}

.sc_spk {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 50px 0;
}
.sc_spk .spk_cnt {
  position: relative;
  width: 80%;
  height: auto;
  margin: 30px auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.sc_spk .spk_cnt .spk_info {
  position: relative;
}
.sc_spk .spk_cnt .spkImg {
  position: relative;
  width: 100%;
  max-width: 350px;
  border-radius: 15px;
  box-sizing: border-box;
  padding: 0;
  border: 2px solid #97cc25;
  background: #97cc25;
  overflow: hidden;
}
.sc_spk .spk_cnt .spkImg img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.sc_spk .spk_cnt .name {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  color: #13a060;
  margin: 10px 0 0 0;
}
.sc_spk .spk_cnt .name span {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  padding: 3px 10px;
  font-size: 16px;
  color: #62B480;
  background-color: #fff;
  border: 1px #62B480 solid;
  border-radius: 25px;
  margin: 0 0 0 15px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.sc_spk .spk_cnt .name span:hover {
  color: #fff;
  background-color: #62B480;
}
.sc_spk .spk_cnt .tit {
  position: relative;
  margin: 5px auto;
  font-size: 18px;
  font-weight: 500;
  color: #62B480;
}
.sc_spk .spk_cnt .pro {
  position: relative;
  font-size: 16px;
  font-weight: 300;
  color: #000;
}
.sc_spk .spk_cnt .spk_topic {
  position: relative;
  width: 100%;
  margin: 0 0 0 25px;
  box-sizing: border-box;
  padding: 15px 0;
  text-align: justify;
}
.sc_spk .spk_cnt .spk_topic .topic {
  position: relative;
  font-size: 21px;
  font-weight: 500;
  color: #000;
}
.sc_spk .spk_cnt .spk_topic .topic span {
  font-weight: bold;
  color: #62B480;
}
.sc_spk .spk_cnt .spk_topic .topic ol {
  padding: 0 0 0 25px;
}
.sc_spk .spk_cnt .spk_topic .topic ol li {
  margin: 5px 0;
}
.sc_spk .spk_cnt .spk_topic .topic ul {
  padding: 0 0 0 25px;
}
.sc_spk .spk_cnt .spk_topic .topic ul li {
  margin: 5px 0;
  font-size: 18px;
  font-weight: 300;
}

.sc_company .sec_cnts {
  background: center bottom/cover;
  padding-top: 40px;
  padding-bottom: 40px;
}
.sc_company .sec_cnts .cmy_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.sc_company .sec_cnts .cmy_title .tit {
  margin-bottom: 15px;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
  letter-spacing: 1rem;
}
.sc_company .sec_cnts .cmy_title .sub {
  margin-bottom: 30px;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 500;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
  letter-spacing: 1px;
}
.sc_company .sec_cnts.cnt_a {
  background-image: linear-gradient(rgba(98, 180, 128, 0.9), rgba(145, 181, 88, 0.9));
}
.sc_company .sec_cnts.cnt_b {
  background-image: linear-gradient(rgba(145, 181, 88, 0.9), rgba(151, 204, 37, 0.9));
}
.sc_company .sec_cnts.cnt_b .cmy_item {
  padding: 1rem 1.5rem;
}

.cmy_g {
  position: relative;
  width: 100%;
  max-width: 1600px;
  box-sizing: border-box;
  padding: 10px;
  margin: 0 auto 35px auto;
  border-radius: 15px;
  overflow: hidden;
}
.cmy_g-tit {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: #fef8b2;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  letter-spacing: 5px;
}

.cmy_items {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 0 0 15px 15px;
  display: flex;
  flex-wrap: wrap;
}
.cmy_items.setCenter {
  justify-content: center;
}

.item_wrap {
  flex: 0 0 25%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.cmy_item {
  position: relative;
  padding: 1rem 1.5rem 40px;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  background-color: #fff;
  transition: box-shadow 240ms;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: flex-start;
}
.cmy_item .name {
  position: relative;
  width: 100%;
  line-height: 1.2;
  flex: 1;
}
.cmy_item .zh {
  position: relative;
  width: 100%;
  font-size: 1.375rem;
  font-weight: 500;
  margin: 0 0 5px 0;
}
.cmy_item .master {
  position: relative;
  width: 100%;
  color: #62B480;
  font-size: 24px;
}
.cmy_item .master .n {
  font-weight: bold;
}
.cmy_item .master .t {
  font-size: 18px;
}
.cmy_item .product {
  position: relative;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #91b558;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.2;
}
.cmy_item .needs {
  position: relative;
  width: 100%;
  border-top: 1px #62B480 dashed;
  padding: 15px 0;
  margin-top: 15px;
}
.cmy_item .needs .n {
  position: relative;
  line-height: 1;
  border-radius: 4px;
  font-size: 18px;
  color: #97cc25;
  font-weight: bold;
}
.cmy_item .needs .w {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 5px 0 0 0;
}
.cmy_item .needs .w span {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  padding: 5px 10px;
  margin: 5px;
  border-radius: 15px;
  background-color: #13a060;
  color: #fff;
  font-size: 14px;
}
.cmy_item .more {
  cursor: pointer;
  position: absolute;
  right: 0;
  bottom: 0;
}
.cmy_item .more div {
  border-radius: 10px 2px 10px 2px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  padding: 4px 16px 5px;
  background-color: #91b558;
  color: #fff;
  transition: background 300ms;
  font-size: 23px;
}
.cmy_item .more div:hover {
  background-color: #97cc25;
}
.cmy_item .more.off {
  cursor: auto;
}
.cmy_item .more.off div {
  background-color: rgba(98, 180, 128, 0.3);
  color: rgba(255, 255, 255, 0.7);
}

.sc_location {
  background-color: #fff;
  padding-top: 20px;
  padding-bottom: 50px;
}
.sc_location .sec_cnts {
  display: flex;
  flex-direction: column-reverse;
}
.sc_location .loc_left {
  padding: 20px 0 20px 30px;
}
.sc_location .loc_left .val {
  line-height: 1.1;
}
.sc_location .loc_left .val .tit {
  font-size: 1.25rem;
  font-weight: 700;
  color: #97cc25;
  text-align: center;
}
.sc_location .loc_left .val span {
  display: inline-block;
  font-weight: normal;
  font-size: 1rem;
  margin-top: 6px;
  padding-bottom: 20px;
  color: #62B480;
}
.sc_location .loc_left .way .tit {
  font-weight: 700;
}
.sc_location .loc_left .way ul,
.sc_location .loc_left .way ol {
  padding-left: 20px;
  margin-bottom: 0;
}
.sc_location .loc_left .way li {
  padding-top: 4px;
  padding-bottom: 4px;
  line-height: 1.3;
}
.sc_location .loc_left .way li a {
  color: #0289B0;
  text-decoration: underline;
}
.sc_location .loc_left .way li a:hover {
  color: #13a060;
}
.sc_location .loc_left .way li span {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}
.sc_location .loc_right {
  flex: 0 0 67%;
}
.sc_location .loc_right .map_wrap {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 100%;
  margin: 0 auto;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
}
.sc_location .loc_right .map_wrap iframe {
  position: relative;
  width: 100%;
  height: 400px;
}

.sc_detail {
  background-color: #fff;
  padding-top: 50px;
  padding-bottom: 30px;
}
.sc_detail .sec_cnts .list {
  padding-left: 1.5rem;
  padding-right: 40px;
  margin-top: -4px;
  margin-bottom: 0;
}
.sc_detail .sec_cnts .list li {
  padding: 8px 0;
  line-height: 1.3;
}
.sc_detail .sec_cnts .list a {
  color: #0289B0;
  text-decoration: underline;
}
.sc_detail .sec_cnts .list a:hover {
  color: #13a060;
}

.modal-content {
  border-width: 0;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.19);
}

.modal-header {
  padding: 2rem 1.5rem 0 2rem;
  border-bottom-width: 0;
}
.modal-header .modal_t {
  position: relative;
}
.modal-header .modal_t .name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.modal-header .modal_t .zh {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
}
.modal-header .modal_t .en {
  margin: 5px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
}
.modal-header .modal_t .web_link {
  margin-left: 1rem;
}
.modal-header .modal_t .web_link a {
  display: block;
  border-radius: 4px;
  padding: 6px 8px 8px;
  background-color: #62B480;
  font-size: 0.875em;
  color: #fff;
  transition: color 240ms;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}
.modal-header .modal_t .web_link a:hover {
  background-color: #91b558;
  text-decoration: none;
}
.modal-header button.close {
  font-size: 2rem;
  line-height: 1;
  color: #000;
  opacity: 1;
}

.modal-body {
  padding: 0 2rem 2rem;
  font-size: 1.125rem;
}
.modal-body .sub_tit {
  padding-bottom: 10px;
  padding-top: 20px;
  font-size: 1rem;
  color: #13a060;
  line-height: 1;
}
.modal-body .master {
  position: relative;
  font-size: 1rem;
  color: #13a060;
  margin-bottom: 4px;
}
.modal-body .master .n {
  font-size: 1.625rem;
  font-weight: 500;
  color: #97cc25;
}
.modal-body .master .t {
  margin-bottom: 4px;
  font-size: 21px;
  font-weight: 300;
  color: #97cc25;
}
.modal-body .int_cnt {
  position: relative;
  font-size: 18px;
}
.modal-body .int_cnt ul {
  position: relative;
  padding: 0 0 0 20px;
}
.modal-body .int_cnt ul li {
  position: relative;
  margin: 5px 0;
}
.modal-body .int_cnt ol {
  position: relative;
  padding: 0 0 0 20px;
}
.modal-body .int_cnt ol li {
  position: relative;
  margin: 5px 0;
}
.modal-body .images {
  display: flex;
  margin-top: 20px;
}
.modal-body .images a {
  display: block;
  overflow: hidden;
}
.modal-body .images a:hover img {
  transform: scale(0.95);
}
.modal-body .images img {
  flex: 0 1 auto;
  transition: transform 300ms;
}
.modal-body .condition {
  position: relative;
  margin: 25px 0 0 0;
  border-top: 1px #62B480 dashed;
}
.modal-body .condition .sub_tit {
  position: relative;
  font-size: 21px;
  font-weight: bold;
  color: #97cc25;
}
.modal-body .condition .way span {
  display: inline-block;
  border-radius: 15px;
  margin: 5px;
  padding: 8px 12px 10px;
  background-color: #13a060;
  line-height: 1.4;
  color: #fff;
  font-size: 1rem;
}
.modal-body .table {
  margin-top: 20px;
  margin-bottom: 0;
  border: 1px solid #13a060;
}
.modal-body .table .tr {
  display: flex;
  border-bottom: 1px solid #13a060;
}
.modal-body .table .tr:last-child {
  border-bottom-width: 0;
}
.modal-body .table .tr .col1 {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 10%), linear-gradient(160deg, #62B480 50%, #91b558);
  flex: 0 0 20%;
  text-align: center;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
}
.modal-body .table .tr .col2 {
  flex: 1 0 80%;
}
.modal-body .table .tr .col2 div {
  padding: 4px 0;
  line-height: 1.3;
}
.modal-body .table .tr .col2 ul {
  position: relative;
  padding: 0 0 0 20px;
  margin: 0;
}
.modal-body .table .tr .td {
  padding: 0.5rem 1.25rem;
  border-right: 1px solid #13a060;
  line-height: 1.5;
}
.modal-body .table .tr .td:last-child {
  border-right-width: 0;
}

.sc_logo {
  padding: 50px 0;
  background-color: #fff;
}
.sc_logo .container {
  max-width: 1400px;
}
.sc_logo .container img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.sc_logo .logos {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.sc_logo .logos .logo {
  position: relative;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 20px;
}
.sc_logo .logos .logo p {
  position: relative;
  color: #000;
  font-size: 18px;
  margin: 0;
  padding: 0;
}
.sc_logo .logos .logo img {
  position: relative;
  width: auto;
  height: 60px;
  margin: 0 15px;
}
.sc_logo .logos .logo.higher img {
  height: 80px;
}

.sc_footer {
  padding: 1rem 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 10%), linear-gradient(160deg, #91b558 10%, #97cc25 90%);
  color: #fff;
}

@media (max-width: 768px) {
  body {
    background: none;
  }
  .g_header {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 10%), linear-gradient(160deg, #13a060 10%, #97cc25 90%);
  }
  .g_header .nav_content {
    display: block;
  }
  .g_header .header_logo {
    display: block;
    padding: 1rem;
  }
  .g_header .nav_cnt {
    padding: 0;
    flex-direction: column;
    align-items: center;
  }
  .g_header .nav_item {
    padding: 1rem 2rem;
  }
  .g_header .nav_link {
    color: #fff;
  }
  .g_kv {
    background: url("img/kv/kv_bg.jpg");
    height: 50vh;
    background-size: auto 120%;
    background-position: center top;
  }
  .g_kv .tit {
    width: 85%;
    margin-top: 10%;
  }
  .g_kv .tit2 {
    width: 100%;
    margin-top: 20%;
    margin-left: 10%;
  }
  .g_kv .timer {
    bottom: 30px;
  }
  .sc_intro {
    padding: 0 1rem;
  }
  .sc_intro .parag {
    text-align: left;
  }
  .sc_intro .part .p_list {
    display: block;
  }
  .sc_intro .part .p_list li {
    margin-right: 0;
  }
  .combain .cnt {
    box-sizing: border-box;
    padding: 0 15px;
    font-size: 1rem;
  }
  .combain .highLight {
    font-size: 1.3125rem;
  }
  .cta_box {
    padding-bottom: 20px;
  }
  .cta_box .cta .bttn div {
    position: relative;
    top: 50%;
    z-index: 2;
    padding: 0 60px;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.3);
    transition-property: color, text-shadow;
    transition-duration: 300ms;
    transition-delay: 100ms;
    transform: translateY(-50%);
  }
  .cta_box .cta .bttn:hover {
    text-decoration: none;
  }
  .cta_box .cta .bttn:hover::before {
    left: -100%;
  }
  .cta_box .cta .bttn:hover div {
    color: #fff;
    text-shadow: 0 1px 5px rgba(151, 204, 37, 0);
  }
  .sc_agenda .sec_cnts {
    display: block;
  }
  .sc_spk {
    padding: 20px 0;
  }
  .sc_spk .spk_cnt {
    width: 100%;
    margin: 10px auto;
    flex-direction: column;
  }
  .sc_spk .spk_cnt .spkImg {
    max-width: 300px;
  }
  .sc_spk .spk_cnt .spk_info {
    margin: 0;
    padding: 15px;
  }
  .sc_spk .spk_cnt .spk_topic {
    margin: 0;
    padding: 0 20px;
  }
  .sc_spk .spk_cnt .spk_topic .topic {
    font-size: 16px;
  }
  .sc_spk .spk_cnt .spk_topic .topic ol {
    padding: 0 0 0 25px;
  }
  .sc_spk .spk_cnt .spk_topic .topic ol li {
    margin: 5px 0;
  }
  .ag_table {
    margin-top: 1rem;
  }
  .ag_table .tr {
    display: block;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .ag_table .tr.sp {
    display: block;
  }
  .ag_table .tr.sp .spk {
    display: none;
  }
  .sc_company .sec_cnts {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .sc_company .sec_cnts .cmy_title .tit {
    font-size: 38px;
  }
  .sc_company .sec_cnts .cmy_title .sub {
    font-size: 18px;
    letter-spacing: 0;
    padding: 0 20px;
  }
  .cmy_g-tit {
    font-size: 28px;
  }
  .cmy_items {
    display: block;
  }
  .sc_location {
    padding-bottom: 100px;
  }
  .sc_location .loc_left {
    padding: 20px 10px 0;
  }
  .sc_detail {
    padding-bottom: 20px;
  }
  .sc_detail .sec_cnts {
    display: block;
  }
  .sc_detail .sec_cnts .list {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .sc_footer {
    padding: 2rem 0;
  }
  .modal-header {
    padding-left: 1.5rem;
  }
  .modal-header .modal_t .name {
    display: block;
  }
  .modal-header .modal_t .web_link {
    margin-left: 0;
    margin-top: 10px;
  }
  .modal-header .modal_t .web_link a {
    display: inline-block;
  }
  .modal-body {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .modal-body .intro {
    text-align: left;
  }
  .modal-body .table .tr {
    padding: 0.5rem 1rem;
    display: block;
  }
  .modal-body .table .tr .td {
    display: inline-block;
    border-right-width: 0;
    padding: 1px 0;
  }
  .modal-body .table .tr .col1 {
    position: relative;
    background-image: none;
    color: #62B480;
    text-align: left;
    font-weight: 500;
  }
  .sc_logo {
    padding: 30px 0;
  }
  .sc_logo .logos {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .sc_logo .logos .logo {
    position: relative;
    flex: 1 0 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 25px auto;
  }
  .sc_logo .logos .logo p {
    font-size: 1rem;
    margin: 15px 0;
    padding: 0;
  }
  .sc_logo .logos .logo img {
    position: relative;
    width: auto;
    height: 50px;
    margin: 15px 0;
  }
  .sc_logo .logos .logo.higher {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}/*# sourceMappingURL=style.css.map */