html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  font-family: 'Noto San', 'Noto San TC', '微軟正黑體', Arial, sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container-fluid {
  flex: 1;
}

footer {
  margin-top: auto;
}

.container-fluid a {
  text-decoration: none;
}

.ys_nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: all .3s ease;
  overflow: visible;
}

.nav_area {
  width: 100%;
  max-width: 1480px;
  margin: auto;
  background-color: transparent !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  position: relative;
}

.ys_nav.nav-scrolled {
  background-color: #fff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.navbar-brand {
  display: block;
  width: 100%;
  max-width: 300px;
}

.nav-link {
  position: relative;
  font-size: 18px;
  color: #222222;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.nav-link:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #a9ce50;
}

.nav-link:hover {
  color: #222222;
}

.nav_right {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 999;
  max-width: 280px;
  padding-left: 50px;
  align-self: stretch;
}

.nav_right p {
  display: flex;
  white-space: nowrap;
}

.nav_right img {
  width: 30px;
  height: 30px;
  display: inline-block;
}

.tel_block {
  display: flex;
  align-items: center;
  color: #fff;
  margin-right: 10%;
  position: relative;
}


.nav_right::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: -50vw;
  background: linear-gradient(to right,
      #a9ce50 0px, #a9ce50 170px,
      #cae288 170px, #cae288 335px,
      #e3efc4 335px, #e3efc4 100%);
  opacity: 0;
  transform: skewX(-45deg);
  transform-origin: bottom right;
  z-index: -1;
  transition: all .3s ease;
}

.is-scrolled.nav_right::before {
  opacity: 0.9;
  visibility: visible;
}

.search_block {
  margin-left: 10px;
  position: relative;
}

.navbar-collapse {
  max-width: 800px;
  width: 100%;
  justify-content: center;
}

.nav-item:hover .dropdown-menu {
  display: block;
}


.ys_nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: none;
}

.ys_nav .dropdown-menu a {
  transition: all 0.3s ease;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: #e3efc4;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #222222;
}

.btn-check:focus+.btn,
.btn:focus {
  box-shadow: 0 0 0 0.25rem rgba(171, 209, 89, 0.5);
}

.nav_right .dropdown-menu.show,
.ys_nav .dropdown-menu.show {
  display: block !important;
}

.nav_right .search_dropmenu {
  position: absolute;
  background-color: #e3efc4;
  border: none;
  border-radius: 0px;
  left: -50%;
  transform: translateX(-70%);
  padding: 12px;
  width: 280px;
}

.nav_right .drop_search_btn {
  background-color: #e3efc4;
}


.navbar-nav button {
  border: none;
  background-color: transparent;
}


.nav_right .tel_block img {
  margin-right: 5px;
}

.form-control:focus {
  border-color: none;
  box-shadow: none;
}

@media (max-width: 1499px) {
  .navbar-brand {
    max-width: 250px;
  }
}


@media (max-width: 1299px) {
  .navbar-brand {
    max-width: 200px;
  }

  .nav-link {
    font-size: 16px;
    flex-wrap: nowrap;
  }

  .nav_right img {
    width: 25px;
    height: 25px;
    margin: 5px 0;
  }
}

@media (max-width: 991px) {
  .navbar-toggler {
    position: absolute;
    top: 3px;
    right: 12px;
    border-radius: 100%;
    border: none;
    height: 40px;
    width: 50px;
    cursor: pointer;
    box-shadow: none !important;
    padding: 0px 12px;
    z-index: 1000;
  }

  .navbar-toggler .hamburguer_btn {
    width: 90%;
    height: 2px;
    background: #222222;
    margin: 5px auto;
    transition: all 0.3s ease;
    backface-visibility: hidden;
  }

  .nav_right {
    position: absolute;
    right: 50px;
    top: 0;
  }

  .ys_nav .dropdown-menu {
    position: static !important;
    width: 100%;
    border: none;
    background-color: rgba(227, 239, 196, 0.5);
    margin-top: 5px;
    box-shadow: none;
  }

  .ys_nav .nav_right .dropdown-menu {
    position: absolute !important;
    transform: translateX(-70px);
  }

  .nav-item:hover .dropdown-menu {
    display: none;
  }

  .ys_nav .nav-item.show .dropdown-menu {
    display: block !important;
  }

  .nav-link:hover::after {
    width: 0%;
  }

  .nav_right img {
    width: 20px;
    height: 20px;
  }

  .nav_right::before {
    bottom: -5px;
    opacity: 0.9;
  }

  .ys_nav {
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

}

@media (max-width: 575px) {
  .navbar-brand {
    max-width: 150px;
    padding: 8px 0;
  }

  .nav_right::before {
    right: -18vw;
    bottom: -5px;
    background: linear-gradient(to right,
        transparent 0%, transparent 50%,
        #e3efc4 50px, #e3efc4 180px,
        #a9ce50 180px, #a9ce50 260px,
        #cae288 260px, #cae288 100%);
  }

  .nav_right .tel_block {
    opacity: 0;
  }

  .search_block {
    margin-left: 50px;
  }
}

@media(max-width:390px) {
  .nav_right::before {
    right: -22vw;
  }
}

/*index bn*/
.index_bn_area {
  width: 100%;
  position: relative;
}

.bn_block {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
}

.banner {
  position: relative;
}

.bn_block::before,
.bn_block::after {
  content: "";
  display: block;
  height: auto;
  position: absolute;
  pointer-events: none;
}

.bn_block::before {
  width: 100%;
  height: 990px;
  top: 0;
  left: 0;
  background-image: url('../image/index/bntop.png');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}

.b_t_block {
  margin-left: 0;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 3;
}

.bn_tblock img {
  display: block;
  width: 30%;
  max-width: 150px;
  margin-right: 5%;
}

.bn_tblock {
  display: flex;
  align-items: center;
  max-width: 1480px;
  width: 100%;
  margin: auto;
}

.bn_tbox {
  display: flex;
  flex-direction: column;
  text-align: left;
}

/* .bn_block::after{
  top: 50%;
  bottom: 0;
  left: 0;
  width: 30%;
  background-image: url('../image/index/bnpdc.png');
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 3;
} */

/* 
.bn_block::before {
  width: 45%;
  top: 0;
  bottom: 0;
  right: -5%;
  background: linear-gradient(to right, 
  #a9ce50 0px, #a9ce50 185px, 
  #cae288 185px, #cae288 275px, 
  #e3efc4 275px,  #e3efc4 450px, 
  transparent 450px, transparent 100%);
  opacity: 0.9;
  transform: skewX(-30deg);
  transform-origin: bottom right;
  z-index: 1;
}

.bn_block::after {
  top: 0;
  bottom: 0;
  left: 0;
  width: 60%;
  background: linear-gradient(to bottom, 
  #fff 0px,  transparent 100%);
  transform: skewX(-30deg);
  transform-origin: bottom left;
  z-index: 2;
} */

.bn_block img {
  display: block;
  width: 100%;
  position: relative;
  z-index: 0;
  object-fit: contain;
  object-position: center;
}

.banner_tblock {
  width: 100%;
  display: inline-block;
}

.bn_tbox a,
.btn_lg {
  display: block;
  padding: 10px 20px;
  background-color: #a7cd39;
  color: #fff;
  text-decoration: none;
  border: 1px solid #a7cd39;
  border-radius: 0;
  min-width: 50px;
  max-width: 180px;
  width: 100%;
  text-align: center;
  font-size: 18px;
  border: 1px solid transparent;
  transition: all .3s ease;
}

.btn_lg:hover {
  color: #a7cd39;
  background-color: #fff;
  border: 1px solid #a7cd39;
}

.bn_txtlg {
  font-size: 48px;
  font-weight: 700;
  color: #222222;
}

.bn_txtsm {
  font-size: 22px;
  font-weight: 500;
  color: #222222;
}

.banner_slick {
  overflow: hidden;
}


.index_bn_area .slick-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
  width: 100%;
  display: flex !important;
  gap: 20px;
  margin: auto;
  padding: 0;
  list-style: none;
  z-index: 10;
  max-width: 1480px;
}


.index_bn_area .slick-dots li {
  width: 50px;
  height: 8px;
  margin: 0;
  /* 移除預設 margin */
  display: flex;
  align-items: center;
  justify-content: center;
}


.index_bn_area .slick-dots li button {
  width: 50px;
  height: 8px;
  padding: 0;
  background: #676767;
  opacity: 1;
}


.index_bn_area .slick-dots li button:before {
  content: '';
  display: none;
}


.index_bn_area .slick-dots li.slick-active button {
  background-color: #7bac56;
}

.slick-dotted.slick-slider {
  margin: 0 !important;
}

@media(max-width:1499px) {
  .bn_tblock img {
    margin-left: 12px;
  }

  .index_bn_area .slick-dots {
    left: 12px;
  }
}

@media(max-width:1199px) {
  .bn_tblock img {
    max-width: 120px;
    margin-right: 3%;
  }

  .bn_txtlg {
    font-size: 40px;
  }

  .bn_txtsm {
    font-size: 20px;
  }
}

@media(max-width:991px) {
  .bn_tblock img {
    max-width: 100px;
    margin-right: 2%;
  }

  .bn_txtlg {
    font-size: 36px;
    margin: 0;
  }

  .bn_txtsm {
    font-size: 20px;
  }

  .index_bn_area .slick-dots {
    gap: 10px;
  }

  .index_bn_area .slick-dots li button {
    width: 40px;
  }
}

@media(max-width:767px) {

  .bn_tbox a,
  .btn_lg {
    max-width: 150px;
    padding: 5px 10px;
    font-size: 14px;
  }

  .bn_tblock img {
    max-width: 70px;
  }

  .bn_txtlg {
    font-size: 28px;
  }

  .bn_txtsm {
    font-size: 18px;
  }

  .index_bn_area .slick-dots {
    gap: 2px;
    bottom: 25px;
  }

  .index_bn_area .slick-dots li {
    width: 40px;
  }

  .index_bn_area .slick-dots li button {
    width: 30px;
  }
}

@media(max-width:575px) {

  .bn_tbox a,
  .btn_lg {
    max-width: 110px;
    font-size: 14px;
  }

  .bn_tblock img {
    max-width: 45px;
  }

  .bn_txtlg {
    font-size: 22px;
  }

  .bn_txtsm {
    font-size: 14px;
  }

  .index_bn_area .slick-dots li {
    width: 30px;
  }

  .index_bn_area .slick-dots li button {
    width: 20px;
    height: 4px;
  }
}

@media(max-width:390px) {

  .bn_tbox a,
  .btn_lg {
    font-size: 12px;
  }

  .bn_tblock img {
    display: none !important;
  }

  .bn_tbox {
    padding-left: 12px;
    padding-top: 10px;
  }

  .bn_txtlg {
    font-size: 18px;
  }

  .bn_txtsm {
    margin-bottom: 5px;
  }
}

/*index_about*/
.index_ab_area {
  background: url('../image/index/abbg.png');
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -5px
}

.index_ab_block {
  max-width: 1480px;
  width: 100%;
  margin: auto;
  padding: 150px 0;
  overflow: hidden;
}

.ab_img img {
  display: block;
  width: 100%;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 3/4;
  z-index: 2;
  position: relative;
}

.ab_img_block .ab_img::before {
  content: "";
  display: block;
  /* width: 100%;
  height: 280px; */
  background-image: url('../image/index/abbgtop.png');
  /* margin-bottom: -220px;
  margin-left: 350px; */
  background-repeat: no-repeat;
  background-size: contain;
  object-fit: contain;
  position: absolute;
  top: -50px;
  right: -15%;
  width: 40%;
  aspect-ratio: 3/4;
  z-index: 1;
}

.nb_born {
  color: #a7cd39 !important;
}

.index_ab_area .nb_txt span {
  padding-left: 5px;
}

.about_spc_block {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.ab_txt_block {
  display: flex;
  flex-direction: column;
  padding-top: 2%;
  margin-right: 7%;
}

.ab_txt_block .txt_md,
.about_spc_block {
  padding-top: 110px;
}

.ab_img_block {
  display: flex;
}

.ab_img {
  position: relative;
  width: 100%;
}

.btn_lg span {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn_lg span::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url('../image/icon/btn_lg.svg');
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 5px;
  transition: all .3s ease;
}

.btn_lg:hover span::after {
  background-image: url('../image/icon/btn_lg_h.svg');
}


@media(max-width:1499px) {
  .index_ab_block {
    padding: 130px 0;
  }

}

@media(max-width:1299px) {
  .index_ab_block {
    padding: 100px 0;
  }

  .ab_txt_block .txt_md,
  .about_spc_block {
    padding-top: 80px;
  }
}

@media(max-width:1199px) {
  .index_ab_block {
    padding: 80px 0;
  }

  .ab_txt_block .txt_md,
  .about_spc_block {
    padding-top: 60px;
  }
}

@media(max-width:1099px) {
  .index_ab_block {
    padding: 80px 0 65px 0;
  }
}

@media(max-width:991px) {
  .index_ab_block {
    padding: 65px 0 50px 0;
  }

  .ab_txt_block .txt_md,
  .about_spc_block {
    padding-top: 50px;
  }
}

@media(max-width:767px) {
  .ab_txt_block {
    order: 2;
    padding-top: 15px;
  }

  .ab_img_block {
    order: 1;
    width: 100%;
  }

  .ab_img_block .ab_img::before {
    top: -25px;
  }

  .ab_txt_block .txt_md {
    padding-top: 15px;
  }

  .btn_lg span::after {
    width: 10px;
    height: 10px;
  }
}


/*application*/
.index_ap_area {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.index_ap_block {
  width: 100%;
  margin: auto;
}

.card-bga {
  width: 50%;
  background-image: url('../image/index/app01.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.ys_accordion {
  display: flex;
  width: 100%;
  height: 945px;
}

.acc_panel {
  position: relative;
  flex: 1;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.acc_panel.active {
  flex: 3;
  cursor: default;
}

.blue_overlay {
  position: absolute;
  inset: 0;
  /* 等同於 top, bottom, left, right 皆為 0 */
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.5s ease;
}

.acc_panel.active .blue_overlay {
  opacity: 0;
}

.acc_default_title {
  position: absolute;
  bottom: 30px;
  left: 20px;
  transition: opacity 0.3s ease;
}

.acc_default_title .nb_txt {
  display: block;
  margin-bottom: 5px;
  color: #fff;
}

.acc_default_title .txt_xl {
  color: #fff;
  font-weight: 500;
}

.ys_accordion .txt_xl::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #fff;
  background-repeat: no-repeat;
  transition: all .3s ease;
  margin: 10px 0;
}

.acc_panel.active .acc_default_title {
  opacity: 0;
  pointer-events: none;
}

.acc_active_content {
  position: absolute;
  bottom: -20px;
  left: auto;
  right: 0;
  width: 80%;
  background-color: #a9ce50;
  padding: 50px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.acc_active_content span {
  position: absolute;
  right: 10px;
  bottom: -75px;
  font-size: 10vw;
  color: #fff;
  opacity: 0.3;
}

.acc_active_content .txt_md {
  margin-top: 2%;
  color: #fff;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.acc_active_content .txt_xl {
  color: #fff;
  font-weight: 500;
}

.acc_panel.active .acc_active_content {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

.acc_panel {
  position: relative;
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* .acc_panel.panel_01 {
  background-image: url('../image/index/app01.png');
}

.acc_panel.panel_02 {
  background-image: url('../image/index/app02.png');
}

.acc_panel.panel_03 {
  background-image: url('../image/index/app03.png');
}

.acc_panel.panel_04 {
  background-image: url('../image/index/app04.png');
} */


@media (max-width: 1599px) {
  .acc_active_content span {
    bottom: -60px;
  }
}

/* @media (max-width: 1499px) {
  .ys_accordion {
    padding-bottom: 130px;
  }
} */

@media (max-width: 1299px) {
  /* .ys_accordion {
    padding-bottom: 100px;
  } */

  .acc_active_content span {
    bottom: -50px;
  }
}

/* @media (max-width: 1199px) {
  .ys_accordion {
    padding-bottom: 80px;
  }
} */

@media (max-width: 1099px) {
  /* .ys_accordion {
    padding-bottom: 65px;
  } */

  .acc_active_content span {
    bottom: -40px;
  }
}

@media (max-width: 991px) {
  /* .ys_accordion {
    padding-bottom: 50px;
  } */

  .acc_active_content span {
    bottom: -20px;
  }
}

@media (max-width: 767px) {
  .ys_accordion {
    flex-direction: column;
    height: 100vh;
    min-height: 500px;
  }

  .acc_default_title {
    bottom: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .acc_active_content span {
    bottom: -10px;
    font-size: 50px;
  }
}

/*index_pdc*/
.index_pdc_area {
  width: 100%;
  background: url('../image/index/pdcbg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.index_pdc_block {
  max-width: 1480px;
  width: 100%;
  margin: auto;
  padding: 150px 0;
  position: relative;
}

.index_pdc_block {
  background: url('../image/index/pdcbg2.png');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 50vw;
}

.index_pdc_title {
  padding-bottom: 80px;
}

.index_pdc_inter_block {
  margin-bottom: 80px;
}

.pdc_card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.index_pdc_info h3,
.pdc_item h3 {
  margin-top: 20px;
  transition: all .3s ease;
  background-color: transparent;
}

/* .index_pdc_area a:hover h3::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 5px;
  background-image: url('../image/icon/btn_lg.svg');
  background-repeat: no-repeat;
  background-size: contain;
} */

.index_pdc_area a:hover h3,
.app_pdc_section a:hover h3,
.cp_pdc_block a:hover h3 {
  color: #fff;
  margin-top: 8px;
}

.pdc_name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  margin-top: 20px;
  background-color: transparent;
  transition: all .3s ease;
}

.index_pdc_info .pdc_name {
  min-width: 180px;
}

.cpb_pdc_block .pdc_name {
  margin-top: 0;
}

.index_pdc_area a:hover .pdc_name,
.app_pdc_section a:hover .pdc_name,
.cp_pdc_block a:hover .pdc_name {
  background-color: #a7cd39;
}

.pdc_name img {
  display: block;
  width: 15px;
  height: 15px;
  margin-left: 10px;
  opacity: 0;
  transition: all .3s ease;
}

.index_pdc_area a:hover .pdc_name img,
.app_pdc_section a:hover .pdc_name img,
.cp_pdc_block a:hover .pdc_name img {
  opacity: 1;
}

.card {
  width: 100%;
  display: flex;
  align-items: center;
  transition: all .3s ease;
}

.index_pdc_area a:hover .card,
.dt_app_pdc_block a:hover .card,
.cp_pdc_block a:hover .card {
  border: 1px solid #a7cd39;
}

.index_pdc_info_block .slick-prev,
.index_pdc_info_block .slick-next {
  width: 50px;
  height: 50px;
  margin: 0;
  z-index: 1;
}

.slick-prev::before,
.slick-next::before {
  content: "" !important;
  width: 100%;
  height: 100%;
  display: block;
  background-image: url('../image/icon/btn_md.svg');
  background-repeat: no-repeat;
  background-size: contain;
  font-size: none;
  color: transparent;
  transition: all .3s ease;
}

.index_pdc_info_block .slick-next {
  transform: rotate(180deg);
  right: -80px;
  transform: translateY(-50%) rotate(180deg);
}

.index_pdc_info_block .slick-prev {
  left: -80px;
  transform: translateY(-50%);
}

.index_pdc_info_block {
  margin: 0 -6px;
}

.index_pdc_info {
  padding: 0 6px;
  box-sizing: border-box;
}

.pdc_card .card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 3/4;
  max-width: 345px;
}

.pdcbgb {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 50px;
}

.btn_lg {
  z-index: 2;
}

/* .pdcbgb img {
  display: block;
  width: 100%;
  max-width: 810px;
  height: auto;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
} */

@media(max-width:1699px) {
  .index_pdc_info_block .slick-next {
    right: -50px;
  }

  .index_pdc_info_block .slick-prev {
    left: -50px;
  }
}

@media(max-width:1599px) {
  .index_pdc_info_block .slick-next {
    right: -10px;
  }

  .index_pdc_info_block .slick-prev {
    left: -10px;
  }

}


@media(max-width:1499px) {

  .pdc_name,
  .pdc_namea {
    margin-top: 12px;
  }

  .index_pdc_area h3 {
    margin-top: 0;
  }

  .index_pdc_block {
    padding: 130px 0;
  }
}

@media(max-width:1299px) {
  .index_pdc_block {
    padding: 100px 0;
  }
}

@media(max-width:1199px) {
  .index_pdc_title {
    padding-bottom: 60px;
  }

  .index_pdc_inter_block {
    margin-bottom: 60px;
  }

  .index_pdc_block {
    padding: 80px 0;
  }
}

@media(max-width:1099px) {
  .index_pdc_block {
    padding: 65px 0;
  }
}

@media(max-width:991px) {

  .index_pdc_info_block .slick-prev,
  .index_pdc_info_block .slick-next {
    width: 45px;
    height: 45px;
  }

  .index_pdc_title {
    padding-bottom: 50px;
  }

  .index_pdc_inter_block {
    margin-bottom: 50px;
  }

  .index_pdc_block {
    padding: 50px 0;
  }

  .pdcbgb {
    bottom: 25px;
  }

  .index_pdc_info .pdc_name {
    min-width: 50px;
    padding: 5px 10px;
  }
}


@media(max-width:575px) {
  .index_pdc_block {
    background: none;
  }

  .index_pdc_title {
    padding-bottom: 30px;
  }

  .pdc_name img {
    width: 10px;
    height: 10px;
  }
}

/*news*/
.index_news_area {
  width: 100%;
  margin: auto;
  padding-top: 150px;
}

.index_news_title {
  max-width: 1480px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.index_news_t .index_news_card {
  display: flex !important;
  flex-wrap: wrap;
}

.index_news_t {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 0;
  width: 100%;
}

.index_news_t .index_news_card {
  height: auto;
  display: flex;
  justify-content: center;
}

.index_news_card {
  display: flex !important;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: transparent;
  transition: all .3s ease;
  padding: 40px;
  margin: 0;
  cursor: pointer;
  border: none;
}

.index_news_info {
  margin-top: 80px;
}

.index_news_info .row {
  display: flex;
  align-items: stretch;
}


.index_news_card:hover .index_news_txt {
  background-color: #a7cd39;
}

.index_news_card:hover .index_news_txt h3,
.index_news_card:hover .index_news_txt p {
  color: #fff;
}

.index_news_txt h3 {
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.index_news_card .txt_sm {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}


.index_news_txt {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  border: none;
  background-color: transparent;
  transition: all .3s ease;
  padding: 36px;
  cursor: pointer;
}

.index_news_txt .date {
  padding-top: 50px;
}

.index_news_card span {
  display: flex;
  align-items: center;
}

.index_news_card span::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url('../image/icon/date.svg');
  background-size: contain;
  background-repeat: no-repeat;
  object-fit: contain;
  margin-right: 10px;
}

.index_news_card.is-active span::before {
  background-image: url('../image/icon/date_h.svg');
}

.index_news_i img {
  width: 100% !important;
  display: block;
  margin: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
}

@media(max-width:1699px) {
  .index_news_txt .date {
    padding-top: 8px;
  }
}

@media(max-width:1599px) {
  .index_news_txt {
    padding: 20px;
  }

  .index_news_card .txt_sm {
    -webkit-line-clamp: 2;
  }
}

@media(max-width:1499px) {
  .index_news_area {
    padding-top: 130px;
  }

  .index_news_txt .date {
    padding-top: 0px;
  }

  .index_news_txt {
    padding: 10px 20px;
  }

  .index_news_txt h3 {
    -webkit-line-clamp: 3;
  }
}

@media(max-width:1299px) {
  .index_news_area {
    padding-top: 100px;
  }

  .index_news_txt {
    padding: 5px 20px;
  }
}

@media(max-width:1199px) {
  .index_news_area {
    padding-top: 80px;
  }

  .index_news_info {
    margin-top: 60px;
  }

  .index_news_txt {
    padding: 20px;
  }

  .index_news_card .txt_sm {
    -webkit-line-clamp: 1;
  }
}

@media(max-width:1099px) {
  .index_news_area {
    padding-top: 65px;
  }

  .index_news_card .txt_lg {
    margin: 15px 0;
  }

  .index_news_card .txt_sm {
    margin-bottom: 5px;
  }
}

@media(max-width:991px) {
  .index_news_area {
    padding-top: 50px;
  }

  .index_news_info {
    margin-top: 50px;
  }
}

@media(max-width:575px) {
  .index_news_t {
    grid-template-columns: repeat(1, 1fr);
  }

  .index_news_info {
    margin-top: 30px;
  }
}

@media(max-width:390px) {
  .index_news_card .info_t {
    display: none;
  }
}

/*footer*/
.ys_footer {
  position: relative;
}

.footer_area::before {
  content: '';
  display: block;
  background-color: #a7cd39;
  width: 100%;
  height: 10px;
  background-repeat: no-repeat;
}

.footer_area {
  width: 100%;
  /* height: 500px; */
  background-color: #f5f5f5;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.footer_block {
  max-width: 1480px;
  width: 100%;
  margin: auto;
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
}

.footer_logo {
  margin-bottom: 48px;
  max-width: 300px;
}


.footer_l .txt_md a {
  color: #222222;
}

.media_block {
  display: flex;
  align-items: center;
}

.socail-media {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.socail-media li {
  display: inline-flex;
  margin: 5px;
}

.ys_footer .socail-media li a i {
  color: #bcbcbc;
}

.ys_footer .socail-media li a i:hover {
  color: #a7cd39;
}

.bi::before {
  font-weight: normal;
  font-size: 1.3em;
  font-family: "bootstrap-icons" !important;
  transition: all .3s ease;
}

.bi-facebook::before {
  content: "\f344";
}

.bi-youtube::before {
  content: "\f62b";
}

.bi-line::before {
  content: "\f660";
}

.bi-instagram::before {
  content: "\f437";
}

.bi-whatsapp::before {
  content: "\f618";
}

.bi-linkedin::before {
  content: "\f472";
}

.bi-wechat::before {
  content: "\f829";
}

.bi-tencent-qq::before {
  content: "\f8cb";
}

.bi-tiktok::before {
  content: "\f6cc";
}

.bi-threads::before {
  content: "\f8d9";
}


.media_block {
  margin-top: 48px;
}

.content_block ul li {
  list-style: none;
}

.content_block .footer_list a {
  color: #222222;
  transition: all .3s ease;
}

.content_block .footer_list a:hover {
  color: #a7cd39;
}

.footer_ti {
  margin-bottom: 20px;
  font-weight: 500 !important;
}

.content_info {
  display: flex;
  justify-content: space-around;
}

.footer_list li {
  padding: 2.5px 0;
}

.scroll-up {
  width: 50px;
  height: 50px;
  background-color: #a7cd39;
  position: absolute;
  top: 0;
  right: 25px;
  z-index: 999;
  border: none;
  display: flex;
  margin-top: -100px;
  opacity: .8;
}

.scroll-up::before {
  content: "\F286";
  display: flex;
  font-size: 1.5em;
  font-weight: 700 !important;
  font-family: "Bootstrap-icons", "poppins";
  font-weight: normal;
  color: #fff;
  text-align: center;
  align-items: center;
}

.copyright {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 0;
  padding-top: 70px;
  width: 100%;
  max-width: 1480px;
  margin: auto;
  padding-left: 12px;
  padding-right: 12px;
}

.copyright a {
  color: #222222;
}

@media (min-width: 992px) {
  .ys_footer .socail-media li a i {
    font-size: 1.5em;
  }
}

@media (max-width: 991px) {
  .footer_l {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .content_block {
    order: 1;
  }

  .footer_logo {
    margin-bottom: 12px;
    max-width: 200px;
  }

  .media_block {
    margin-top: 12px;
  }

  .copyright {
    justify-content: center;
  }

  .footer_block .txt_md {
    margin: 0;
  }

  .copyright {
    padding-top: 5px;
    text-align: center;
  }

  .scroll-up {
    margin-top: -60px;
  }

}

@media (max-width: 767px) {
  /* .footer_area {
    height: 220px;
  } */

  .footer_block {
    padding-top: 20px;
  }

  .content_block {
    display: none;
  }

  .footer_l,
  .copyright {
    padding-left: 24px;
    padding-right: 24px;
  }

  .socail-media {
    justify-content: center;
  }

  .scroll-up {
    width: 40px;
    height: 40px;
    margin-top: 15px;
    right: 20px;
  }

  .scroll-up::before {
    font-size: 1em;
  }
}

@media(max-width:575px) {
  /* .footer_area {
    height: 230px;
  } */
}

@media(max-width:390px) {
  /* .footer_area {
    height: 250px;
  } */
}

/*txt*/
.txt_xxl {
  font-size: 38px;
  font-weight: 700;
  color: #222222;
}

.txt_xl {
  font-size: 28px;
  font-weight: 700;
  color: #222222;
}

.txt_lg {
  font-size: 24px;
  font-weight: 500;
  color: #222222;
}

.txt_md {
  font-size: 18px;
  font-weight: 400;
  color: #222222;
}

.txt_sm {
  font-size: 16px;
  font-weight: 400;
  color: #222222;
}


.nb_txt {
  font-size: 55px;
  font-weight: 700;
  color: #4b4b49;
  display: flex;
  margin: 0;
}

.ch_txt {
  font-size: 18px;
  font-weight: 400;
  color: #6d6d6d;
}



@media(max-width:1299px) {
  .txt_xxl {
    font-size: 32px;
  }

  .txt_xl {
    font-size: 26px;
  }

  .txt_lg {
    font-size: 20px;
  }

  .nb_txt {
    font-size: 48px;
  }
}


@media(max-width:1099px) {
  .txt_xxl {
    font-size: 30px;
  }

  .txt_xl {
    font-size: 22px;
  }

  .txt_lg {
    font-size: 18px;
  }

  .txt_md {
    font-size: 16px;
  }

  .txt_sm {
    font-size: 14px;
  }

  .nb_txt {
    font-size: 40px;
  }

  .ch_txt {
    font-size: 16px;
  }

  .btn_lg {
    font-size: 16px;
  }
}

@media(max-width:991px) {
  .txt_xxl {
    font-size: 26px;
  }

  .txt_xl {
    font-size: 20px;
  }

  .txt_lg {
    font-size: 16px;
  }

  .txt_md {
    font-size: 14px;
  }

  .nb_txt {
    font-size: 36px;
  }

  .ch_txt {
    font-size: 14px;
  }

  .btn_lg {
    font-size: 14px;
  }
}

@media(max-width:575px) {
  .txt_xxl {
    font-size: 20px;
  }

  .txt_xl {
    font-size: 18px;
  }

  .nb_txt {
    font-size: 28px;
  }

  .btn_lg {
    font-size: 12px;
  }
}

@media(max-width:390px) {
  .txt_xxl {
    font-size: 18px;
  }

  /* .txt_xl {
    font-size: 16px;
  } */

  .nb_txt {
    font-size: 20px;
  }
}


/*application_cp*/
.inter_cp_area {
  overflow: hidden;
  width: 100%;
  flex: 1 0 auto;
}

.cp_news_area.dt_area {
  flex: 1 0 auto;
}

.cpbn_block {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  min-height: 150px;
}

.cp_app_bn {
  display: flex;
  flex-direction: column;
  z-index: 3;
  max-width: 1480px;
  width: 100%;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
  padding: 0 12px;
}

@media(max-width:1499px) {
  .cp_app_bn {
    padding: 0 48px;
  }
}

@media(max-width:991px) {
  .cp_app_bn {
    padding: 0 12px;
  }
}

.cpbn_block img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.cp_bn_black {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #a7cd39 0%, #e3efc4 40%, rgba(255, 255, 255, .2) 100%);
  opacity: .7;
  background-repeat: no-repeat;
  z-index: 2;
}

.cp_bn_title {
  color: #fff;
}

.cp_ap_area {
  overflow: hidden;
  width: 100%;
}


.app_t {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.app_t_info {
  max-width: 700px;
  margin: 0 auto;
}

.app_t_info a {
  margin-top: 48px;
}

.app_t .txt_sm {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app_t .btn_lg span {
  display: flex;
  align-items: center;
}

.app_t .btn_lg span::after {
  content: '+';
  display: inline-flex;
  background-image: none;
  align-items: center;
}

.app_item:nth-child(even) .app_i {
  order: 2;
}

.app_item:nth-child(even) .app_t {
  order: 1;
}

.app_i img {
  max-height: 400px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

}

.breadcrumb-item.active,
.breadcrumb a,
.breadcrumb li,
.breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
  display: inline-flex;
  flex-wrap: wrap;
  white-space: normal !important;
  align-items: center;
  word-break: break-all;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "-";
  font-weight: 700;
  align-items: center;
  display: inline-flex;
}

/* .cp_ap_area .row{
  margin: 0;
} */

.breadcrumb-item.active .txt_sm {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  flex-wrap: wrap;
  white-space: normal;
}

@media(max-width:1499px) {
  .app_t {
    padding: 24px 48px;
  }
}

@media(max-width:991px) {
  .cp_app_bn {
    bottom: 20px;
    padding: 0 24px;
  }

  .nav_area {
    padding: 0 24px;
  }

  .app_t {
    padding: 24px;
  }
}


@media(max-width:575px) {
  .app_t {
    padding: 12px 24px;
  }

  .app_t .txt_sm {
    -webkit-line-clamp: 3;
  }

  .cp_app_bn {
    bottom: 8px;
  }

  .breadcrumb .txt_sm {
    font-size: 12px;
  }
}

/*app_detail*/
.dt_area {
  padding: 150px 0;
}

.dt_app_info,
.dt_app_pdc_block {
  max-width: 1480px;
  width: 100%;
  margin: auto;
  padding: 0 12px;
}

@media(min-width:991px) {
  .dt_app_info {
    padding: 0;
  }
}


.dt_app_pdc_block .app_pdc_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px 0;
}

.dt_app_page_btn a {
  display: block;
  background-color: #a7cd39;
  width: 100%;
  color: #fff;
  padding: 20px;
}

.dt_app_page_btn .page_btn.active {
  background-color: #fff;
  color: #a7cd39;
}

.dt_app_page_btn .page_btn.active span::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 2px;
  margin-right: 5px;
  background-color: #a7cd39;
}

.page_btn span {
  display: flex;
  align-items: center;
}

.dt_app_t::after,
.tab-content::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #cccccc;
  margin-top: 50px;
}

.dt_app_t img {
  max-width: 25vw;
  width: 100%;
  object-fit: contain;
  object-position: center;
  display: inline-block;
  margin-top: 12px;
}

.dt_app_t h1,
h2,
.app_pdc_title h2 {
  font-size: 28px;
  font-weight: 500;
  color: #a7cd39;
}

.dt_app_t h2 {
  padding-top: 20px;
}

.dt_app_t ul {
  margin-bottom: 0;
}

.dt_app_t p,
.li,
.th,
.td {
  font-size: 16px;
  font-weight: 400;
  color: #222222;
  margin: 0;
}

.dt_app_t table {
  width: 100%;
  margin-bottom: 12px;
}

.dt_app_t table,
th,
td {
  border: 1px solid #cccccc;
}

.dt_app_t th,
td {
  padding: 15px;
}

.dt_app_t thead {
  background-color: #e8e8e8;
}

.dt_app_t tr:nth-child(even) {
  background-color: #f7f7f7;
}

.pdc_item_block {
  display: flex;
  gap: 12px;
  margin-top: 50px;
}

.dt_app_page_btn {
  position: sticky;
  top: 80px;
  height: 100%;
}

.pdc_item_block .slick-dots {
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  display: flex !important;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pdc_item_block .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdc_item_block .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  background: transparent;
  opacity: 1;
}

.pdc_item_block .slick-dots li button:before {
  content: '';
  display: none;
}

.pdc_item_block .slick-dots li.slick-active button {
  background-color: #a7cd39;
}

@media(min-width:991px) {
  .dt_app_page_btn_block {
    padding-left: 0;
  }
}

@media(max-width:1499px) {
  .dt_area {
    padding: 130px 36px;
  }
}

@media(max-width:1299px) {

  .dt_app_t h1,
  h2,
  .app_pdc_title h2 {
    font-size: 26px;
  }

  .dt_area {
    padding: 100px 36px;
  }
}

@media(max-width:1199px) {
  .dt_area {
    padding: 80px 36px;
  }
}

@media(max-width:1099px) {

  .dt_app_t h1,
  h2,
  .app_pdc_title h2 {
    font-size: 22px;
  }

  .dt_app_t p,
  .li,
  .th,
  .td {
    font-size: 14px;
  }

  .dt_area {
    padding: 65px 36px;
  }
}

.news_dt_info {
  /* padding-left: 12px;
  padding-right: 12px; */
  margin: auto;
}

@media(max-width:991px) {

  .dt_app_t h1,
  h2,
  .app_pdc_title h2 {
    font-size: 20px;
  }

  .dt_app_t {
    order: 2;
    margin-top: 20px;
  }

  .dt_app_page_btn_block {
    order: 1;
  }

  .mobile_cate_toggle {
    background-color: #a7cd39;
    padding: 15px;
  }

  .mobile_cate_toggle p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile_cate_toggle p::after {
    content: "▼";
    font-size: 15px;
    display: inline-block;
    margin-left: 10px;
  }

  .dt_area {
    padding: 50px 0px;
  }

  .dt_app_t th,
  td {
    padding: 10px;
  }

  .news_dt_info {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media(max-width:575px) {

  .dt_app_t h1,
  h2,
  .app_pdc_title h2 {
    font-size: 18px;
  }
}

@media(max-width:390px) {

  .dt_app_t h1,
  h2,
  .app_pdc_title h2 {
    font-size: 16px;
  }
}

/*cp_pdca*/
.cp_pdc_area {
  width: 100%;
  max-width: 1480px;
  margin: auto;
}

.cp_pdc_block,
.cpb_pdc_block {
  padding: 0 12px;
}

@media(max-width:991px) {

  .index_pdc_info h3,
  .pdc_item h3 {
    margin-top: 10px;
  }
}

/*cp_pdcb*/
.cpb_pdc_block {
  padding: 0 24px;
}

.cpb_pdc_block h2 {
  margin-bottom: 10px;
}

.cpb_pdc_block h2::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  opacity: 0;
  background-image: url('../image/icon/btn_lg_h.svg');
  transition: all .3s ease;
  margin: 10px auto 0 auto;
}

.cpb_pdc_block .pdc_item {
  height: 100%;
  transition: all .3s ease;
}

.cpb_pdc_block a:hover h2 {
  color: #a7cd39;
}

.cpb_pdc_block a:hover .pdc_name {
  margin: 0;
}

.cpb_pdc_block a:hover h2::after {
  opacity: 1;
}

.cpb_pdc_block .pdc_item .card {
  border-radius: 0;
}

/* .cpb_pdc_block .pdc_item .pdc_name,
.cpb_pdc_block .pdc_item .pdc_namea {
  margin-top: 0;
  padding: 0;
} */

.cp_seo_block {
  padding-top: 50px;
  padding-left: 12px;
  padding-right: 12px;
}


@media(max-width:991px) {
  .cpb_pdc_block h2 {
    display: flex;
    align-items: center;
  }

  .cpb_pdc_block h2::after {
    display: inline-block;
    opacity: 1;
    width: 15px;
    height: 15px;
    margin-top: 0;
    margin-left: 10px;
  }

  .cpb_pdc_block {
    padding: 0 36px;
  }
}

/*cp_pdcc*/
.cp_pdc_page_btn_block {
  display: flex;
  align-items: center;
  background-color: #e4f0c3;
  padding: 10px;
  width: 100%;
  margin: 50px auto;
}

.pdc_page_btn_section {
  display: flex;
  align-items: center;
  padding: 0;
  gap: 5px;
}

.cp_pdc_page_btn_block .pdc_page_btn {
  padding: 10px;
  background-color: #fff;
  border: 1px solid #cccccc;
  color: #222222;
}

.cp_pdc_page_btn_block .pdc_page_btn.active {
  background-color: #a7cd39;
  color: #fff;
}


.pdc_namea {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  background-color: transparent;
  transition: all .3s ease;
}

.pdc_namea h3 {
  display: flex;
  text-align: center;
}

.cp_pdc_block a:hover .pdc_namea h3 {
  color: #a7cd39;
}

.page_area {
  width: 100%;
  max-width: 1480px;
  margin: auto;
}

.page_block {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.page_block button,
.page_number {
  border: 1px solid #cccccc;
  margin: 0 5px;
  background-color: transparent;
  padding: 10px 20px;
  transition: all .3s ease;
}

.page_number {
  padding: 11.5px 20px;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page_number span {
  font-weight: 700;
}

.page_block .page_active {
  color: #a7cd39;
}

.page_block .page_arrow::before {
  content: "\F12F";
  display: block;
  font-family: "Bootstrap-icons", "poppins";
  font-size: 20px;
  color: #a7cd39;
  background-color: transparent;
}

.page_block .page_next::before {
  transform: rotate(-180deg);
}

.page_all::before {
  content: "/";
  display: inline-block;
  width: auto;
  height: 15px;
  margin: 0 5px;
}

@media(max-width:1099px) {
  .page_number {
    padding: 12.5px 20px;
  }
}

@media(max-width:991px) {
  .page_number {
    padding: 14.5px 20px;
  }

  .pdc_page_btn_section {
    flex-direction: column;
    padding: 0;
  }

  .cp_pdc_page_btn_block .pdc_page_btn {
    width: 100%;
    border: none;
    margin-top: 5px;
  }

  .cp_pdc_page_btn_block {
    margin-top: 0;
  }

  .cp_pdc_block {
    padding: 0 24px;
  }
}

@media(max-width:767px) {
  .page_number {
    padding: 9.5px 10px;
  }

  .page_block button {
    padding: 5px 10px;
  }
}

/*pdc_detail*/
.dt_pdc_area {
  width: 100%;
  max-width: 1480px;
  margin: auto;
  padding: 150px 12px;
}

.dt_pdc {
  display: flex;
  align-items: center;
  background-color: #a7cd39;
  margin-top: 70px;
  min-height: 100px;
}

.dt_pdc_top {
  bottom: auto;
  padding: 0 24px;
}

.dt_pdc_top_info {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  padding: 0 12px;
}

.pdc_i_container {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: 10px;
}

.main_img_item {
  box-sizing: border-box;
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid #cccccc;
  overflow: hidden;
}

.pdc_i_main img {
  width: 100%;
  margin: auto;
  aspect-ratio: 3/4;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: 425px;
  justify-self: center;
  box-sizing: border-box;
}

.pdc_i_thumbs {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  margin-left: 10px;
}

.thumb_item {
  border: 1px solid #cccccc;

}

.pdc_i_thumbs img {
  display: block;
  max-width: 100px;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 3/4;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  margin: auto;
}

.pdc_i_container .slick-current .thumb_item {
  border-color: #a7cd39;
}

.pdc_i_main {
  flex: 1;
  min-width: 0;
  max-width: 100%;
}

.pdc_i_container button {
  z-index: 2;
}

.pdc_i_container .slick-prev {
  left: 10px;
  transform: rotate(-180deg);
}

.pdc_i_container .slick-next {
  right: 10px;
}

.pdc_i_thumbs .slick-track {
  display: flex;
  flex-direction: column;
}

.pdc_i_thumbs .slick-slide,
.pdc_i_thumbs .slick-track {
  width: 100% !important;
}


.pdc_i_container .slick-prev::before,
.pdc_i_container .slick-next::before {
  content: "\F285" !important;
  font-family: "Bootstrap-icons", "poppins";
  background-image: none;
  color: #565656;
  display: block;
  align-items: center;
  font-weight: 700;
  font-size: 30px;
  width: 30px;
  height: 30px;
}

.pdc_i_main .slick-list {
  overflow: visible;
}

.dt_pdc_top_info .slick-slider .slick-track,
.dt_pdc_top_info .slick-slider .slick-list {
  z-index: -1;
}


.inqure_btn.btn_lg span::after {
  background-image: url('../image/icon/inquire.svg');
  width: 20px;
  height: 20px;
  transition: all .3s ease;
}

.inqure_btn:hover span::after {
  background-image: url('../image/icon/inquire_h.svg');
}

.dt_pdc_title::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #cccccc;
  display: block;
  margin: 50px 0;
}

.dt_pdc_title h1 {
  margin-bottom: 20px;
}

.dt_pdc_title p {
  color: #565656;
  margin-bottom: 0;
}

.dt_pdc_page_btn_section .pdc_tabs {
  display: flex;
  width: 100%;
  border-bottom: none;
  margin-bottom: 0;
  padding: 0 12px;
}

.dt_pdc_page_btn_section .pdc_tabs .nav-item {
  flex: 1;
  display: flex;
}

.pdc_tabs .nav-link {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none !important;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
  background-color: #e6f1d8;
  color: #222222;
  transition: all 0.3s ease;
  margin: 0;
}

.pdc_tabs h2 {
  color: #222222;
  background-color: transparent;
}

.nav-tabs .nav-link.active {
  background-color: #a7cd39;

}

.nav-tabs .nav-link.active h2 {
  color: #fff;
}

.tab-pane {
  padding: 50px 0;
}

.tab-pane h3 {
  color: #a7cd39;
  /* padding-top: 20px; */
}

.tab-pane img {
  margin: 20px 0;
  object-fit: contain;
  object-position: center;
  width: auto;
  display: block;
}

.back_btn {
  margin: auto;
}

.back_btn span::after {
  background-image: url('../image/icon/back.svg');
}


.back_btn:hover span:after {
  background-image: url('../image/icon/back_h.svg');
}


.video-wrapper {
  cursor: pointer;
  position: relative;
}

.video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.video-wrapper:hover .play-btn {
  color: #a7cd39;
}

@media(max-width:1499px) {
  .dt_pdc_area {
    padding: 130px 48px;
  }
}

@media(max-width:1299px) {
  .dt_pdc_area {
    padding: 100px 48px;
  }
}

@media(max-width:1199px) {
  .dt_pdc_area {
    padding: 80px 48px;
  }

  .tab-pane img {
    width: 100%;
  }

  .pdc_i_container {
    display: flex;
    flex-direction: column;
  }

  .pdc_i_thumbs .slick-list,
  .pdc_i_thumbs .slick-slide,
  .pdc_i_thumbs .slick-track {
    width: auto !important;
    height: auto !important;
  }

  .pdc_i_thumbs .slick-track {
    flex-direction: row;
    transform: translate3d(0, 0, 0) !important;
    gap: 5px;
  }

  .pdc_i_thumbs {
    margin: 0;
    height: auto;
    min-height: 50px;
  }

  .pdc_i_thumbs .slick-slide {
    flex: 1;
  }

  .pdc_i_thumbs img {
    width: 100%;
    display: block;
    height: auto;
    max-width: none !important;
  }

  .pdc_i_main {
    order: 1;
  }

  .pdc_i_thumbs {
    order: 2;
  }
}

@media(max-width:991px) {
  .dt_pdc_area {
    padding: 50px 24px;
  }

  .product_gallery {
    padding: 0;
  }

  .dt_pdc_title {
    padding-top: 20px;
  }

  .pdc_i_thumbs .slick-slide {
    width: auto !important;
  }

  .dt_pdc {
    margin-top: 45px;
  }
}

@media(max-width:767px) {
  .pdc_i_thumbs.slick-initialized.slick-slider {
    display: none !important;
  }
}

@media(max-width:575px) {
  .dt_pdc_title::after {
    margin: 30px 0;
  }
}

/*project_cp*/
.cp_pj_block {
  padding: 0 12px;
}

.pj_name {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  transition: all .3s ease;
  background-color: transparent;
}

.pj_name h2 {
  padding-top: 30px;
  transition: all .3s ease;
}

.pj_name p {
  transition: all .3s ease;
  margin-bottom: 30px;
}

.pj_item:hover .pj_name {
  background-color: #a7cd39;
}

.pj_item:hover .pj_name p,
.pj_item:hover .txt_lg {
  color: #fff;
}

.pj_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.pj_item .card {
  border: none;
  border-radius: 0;
}

.pj_card img {
  width: 100%;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 4/3;
}

/*project_detail*/
.dt_pj_area {
  overflow: hidden;
  min-height: calc(100vh - 300px);
}

.dt_pj_info_t img {
  display: block;
  width: 100%;
  object-fit: contain;
  object-position: center;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.pj_img_bg,
.pj_img_sm,
.dt_pj_area .slick-slide,
.dt_pj_area .slick-list {
  aspect-ratio: auto !important;
}

.pj_img_sm .slick-slide {
  padding-right: 10px;
}

.pj_img_sm .slick-track {
  margin: 0;
}

.pj_img_sm .slick-slide {
  padding: 0 5px;
  outline: none;
}

.pj_img_sm .slick-list {
  /* margin-top: 20px; */
  margin: 20px auto 0 auto;
  max-width: 1000px;
}

.pj_img_bg .slick-list {
  max-width: 1000px;
  margin: auto;
}

.pj_img_bg .slick-next {
  right: 10px;
  z-index: 2;
}

.pj_img_bg .slick-prev {
  left: 10px;
  z-index: 2;
}

.pj_img_bg .slick-prev:before,
.pj_img_bg .slick-next:before {
  content: '\F285' !important;
  font-family: 'bootstrap-icons' !important;
  font-size: 50px;
  background-image: none;
  color: #565656;
  font-weight: 700;
}

.pj_img_bg .slick-prev:before {
  transform: rotate(180deg);
}

.pj_img_bg .slick-arrow {
  width: 50px;
  height: 50px;
}

.dt_pj_info_t p {
  font-size: 18px;
  font-weight: 400;
  color: #222222;
}

.dt_app_info .back_btn {
  margin-top: 50px;
}

.dt_pj_info_t::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #cccccc;
  background-repeat: no-repeat;
  margin-top: 50px;
}

@media(max-width:1099px) {
  .dt_pj_info_t p {
    font-size: 16px;
  }
}

@media(max-width:991px) {
  .dt_pj_info_t p {
    font-size: 14px;
  }

  .cp_pj_block {
    padding: 0 24px;
  }
}


@media(max-width:575px) {
  .pj_img_bg .slick-arrow {
    width: 30px;
    height: 30px;
  }

  .pj_img_bg .slick-prev:before,
  .pj_img_bg .slick-next:before {
    font-size: 30px;
  }

  .pj_img_sm .slick-slide,
  .pj_img_sm .slick-list {
    padding: 0 2.5px;
    height: auto !important;
  }

  .pj_img_sm .slick-list {
    margin-top: 10px;
  }
}

/*faq*/
.cp_faq_area {
  max-width: 1480px;
  width: 100%;
  margin: auto;
}

.faq_block {
  padding: 0 12px;
}

.cp_faq_area h2 {
  color: #a7cd39;
}

.faq_title::after,
.news_title::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: #cccccc;
  background-repeat: no-repeat;
  margin-top: 30px;
}

.faq_item_block {
  margin-top: 30px;
}

.faq_list_block h3 {
  padding-bottom: 20px;
  color: #a7cd39;
}

.faq_list_block a {
  display: block;
  width: 100%;
  background-color: transparent;
  padding: 20px;
  border-bottom: 1px solid #cccccc;
  transition: all .3s ease;
}

.faq_item_block a:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.faq_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq_list_block h4 {
  display: flex;
  align-items: center;
  margin: 0;
  transition: all .3s ease;
  font-weight: 700;
}

.faq_list_block h4::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url('../image/icon/faq.svg');
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
  margin-right: 10px;
}

.faq_list_block a:hover {
  background-color: #a7cd39;
}

.faq_list_block a:hover h4::before {
  background-image: url('../image/icon/faq_h.svg');
}

.faq_list_block a:hover h4 {
  color: #fff;
}

.page_block .page_arrow:hover:before {
  color: #fff;
}

.page_block button:hover {
  background-color: #a7cd39;
}

.faq_bottom {
  margin-top: 50px;
  text-align: center;
}

.faq_bottom a {
  display: inline-block;
  align-items: center;
  justify-content: space-around;
}

.faq_bottom p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.faq_bottom .txt_xxl {
  color: #a7cd39;
}

.faq_tel::before,
.faq_email::before {
  display: block;
  font-family: 'bootstrap-icons';
  font-size: 30px;
  margin-right: 10px;
  color: #a7cd39;
}

.faq_tel::before {
  content: "\F4DA";

}

.faq_email::before {
  content: "\F32F";
  margin-left: 30px;
}

.bi-chevron-right {
  color: #a7cd39;
  font-weight: 800;
  font-size: 20px;
}

.faq_card:hover .bi-chevron-right {
  color: #fff;
}

@media(max-width:991px) {
  .faq_block {
    padding: 0 24px;
  }
}

@media(max-width:575px) {
  .faq_email::before {
    margin-left: 0;
  }
}

/*faq_detail*/
.dt_faq_area {
  width: 100%;
  max-width: 1480px;
  margin: auto;
  min-height: calc(100vh - 300px);
}

.faq_dt_block {
  padding: 50px 12px;
}

.faq_dt_info {
  padding: 0 12px;
}

.faq_dt_block p {
  font-size: 16px;
  font-weight: 400;
  color: #222222;
}

.faq_dt_info .back_btn {
  margin-top: 50px;
}

.faq_title p {
  color: #a7cd39;
  font-weight: 700;
}

@media (max-width:1099px) {
  .faq_dt_block p {
    font-size: 14px;
  }
}

@media (max-width:991px) {
  .faq_dt_info {
    padding: 0 24px;
  }
}

/*news*/
.news_list_block {
  margin: auto;
  width: 100%;
  max-width: 1480px;
}

.top_news {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.news_info {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.news_info .txt_sm {
  display: flex;
  align-items: center;
  color: #565656;
}

.news_info .txt_sm::before,
.news_title .txt_sm::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('../image/icon/news_dt.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
  margin-right: 12px;
}

.news_info .txt_lg {
  font-weight: 700;
  transition: all .3s ease;
}

.news_info .txt_lg::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #a7cd39;
  background-repeat: no-repeat;
  margin: 0;
  transition: all .3s ease;
}

.news_card:hover .news_info .txt_lg::after {
  width: 50px;
  margin: 20px 0;
}

.news_card:hover .news_info .txt_lg {
  color: #a7cd39;
}


.news_list_block .card,
.news_top_block .news_card {
  border: 0;
  transition: all .3s ease;
  height: 100%;
  background-color: transparent;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
}

.news_list_block a:hover {
  color: transparent;
  background-color: #f5f5f5;
  box-shadow: none;
}

.news_info .btn_lg span {
  display: flex;
  align-items: center;
}

.news_info .btn_lg span::after {
  content: "+";
  background-image: none;
  width: auto;
  height: auto;
}

.news_card .btn_lg {
  background-color: transparent;
  color: #a7cd39;
  padding-left: 0;
}


.news_card:hover .btn_lg {
  background-color: #a7cd39;
  color: #fff;
  padding-left: 20px;
}

.news_info .txt_md {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news_list_block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


@media(max-width:767px) {
  .news_list_block {
    padding: 0 12px;
  }

  .news_card {
    display: flex;
    flex-direction: column;
  }

  .news_info {
    padding: 20px;
  }
}

/*news_detail*/
.news_title .txt_sm {
  display: flex;
  align-items: center;
}

.news_dt_block {
  margin-top: 50px;
}

.news_dt_block img {
  width: 100%;
  object-fit: contain;
  object-position: center;
  margin: 20px auto;
  display: flex;
  max-width: 1000px;
}

.news_dt_block p {
  font-size: 18px;
  font-weight: 400;
  color: #222222;
  margin-bottom: 50px;
}

.news_title .txt_xl {
  font-weight: 700;
}

@media(max-width:1099px) {
  .news_dt_block p {
    font-size: 16px;
  }
}

@media(max-width:991px) {
  .news_dt_block p {
    font-size: 14px;
  }

  .dt_area .news_title,
  .dt_area .news_dt_block {
    padding: 0;
  }

  .news_dt_block {
    margin-top: 30px;
  }
}

/*video*/

.video_list {
  width: 100%;
  max-width: 1480px;
  margin: auto;
}

.video_tblock {
  padding: 20px;
}

.video_sm_info {
  display: flex;
  align-items: center;
}

.video_sm_info p {
  display: flex;
  align-items: center;
}

.video_a::before {
  content: "\F478";
  font-size: 20px;
  font-family: 'bootstrap-icons';
  color: #a7cd39;
  display: inline-block;
  margin-right: 12px;
}

.video_date::before {
  content: "";
  display: inline-block;
  background-image: url('../image/icon/news_dt.svg');
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  margin-right: 12px;
  margin-left: 20px;
}

.play-btn {
  z-index: 2;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.play-btn .bi-play-circle {
  color: #fff;
  font-size: 50px;
  font-family: 'bootstrap-icons';
  display: block;
  margin: auto;
}

.play-btn:hover .bi-play-circle {
  color: #a7cd39;
}

@media(max-width:1199px) {
  .play-btn .bi-play-circle {
    font-size: 40px;
  }
}

@media(max-width:991px) {
  .play-btn .bi-play-circle {
    font-size: 30px;
  }

  .video_list {
    padding: 0 12px;
  }
}

/*catalog*/
.cata_block {
  width: 100%;
  max-width: 1480px;
  margin: auto;
}

.cata_info a {
  display: flex;
  flex-direction: row;
}

.cata_info img {
  max-width: 300px;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.cata_info::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: #cccccc;
  background-repeat: no-repeat;
  margin-bottom: 30px;
}

.cata_item .btn_lg span::before {
  content: "\F356";
  font-size: 20px;
  font-family: 'bootstrap-icons';
  color: #a7cd39;
  margin-right: 10px;
  transition: all .3s ease;
}

.cata_item .btn_lg {
  background-color: #fff;
  border: 1px solid #a7cd39;
  margin-top: 30px;
}

.cata_item .btn_lg span {
  color: #a7cd39;
}

.cata_item .btn_lg span::after {
  display: none;
}

.cata_info:hover .btn_lg {
  background-color: #a7cd39;
}

.cata_info:hover .btn_lg span {
  color: #FFF;
}

.cata_info:hover .btn_lg span::before {
  color: #FFF;
}

.cata_txt {
  margin-left: 24px;
  margin-top: 30px;
}

.cata_txt .txt_lg {
  font-weight: 700;
  transition: all .3s ease;
}

.cata_info:hover .txt_lg {
  color: #a7cd39;
}

.cata_info:hover::before {
  background-color: #a7cd39;
}

@media(max-width:1499px) {
  .cata_item {
    padding: 12px;
  }
}

@media(max-width:991px) {
  .cata_item {
    padding: 24px;
  }
}

@media(max-width:575px) {
  .cata_info img {
    max-width: 200px;
  }
}

@media(max-width:390px) {
  .cata_info img {
    max-width: 150px;
  }
}

/*company*/
.dt_com_area {
  overflow: hidden;
  padding: 0 0 150px 0;
}

.com_dt_info {
  width: 100%;
  position: relative;
  margin: 0;
}

.com_a {
  width: 100%;
  margin-bottom: 30px;
}

.com_a_block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  max-width: 1480px;
  margin: auto;
  padding: 150px 12px 0 12px;
}

.com_dt_info .txt_title::after,
.esg_a_block .txt_title::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background-color: #a7cd39;
  background-repeat: no-repeat;
  margin-top: 20px;
}

.txt_a img {
  width: 100%;
  margin: 20px 0;
  object-fit: cover;
  object-position: center;
}

.com_b {
  width: 100%;
  height: 100vh;
  min-height: 700px;
  background-image: url('../image/com/com02.png');
  background-repeat: no-repeat;
  z-index: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  margin-bottom: 100px;
  padding: 0 36px;
}

.com_b_info {
  width: 100%;
  max-width: 1480px;
  margin: auto;
  padding: 0 12px;
}

.com_b_info .txt_title {
  padding: 100px 0 50px 0;
}

.history_content_item {
  height: auto;
  outline: none;
}

.history_main_slider {
  display: flex;
}

.content_box {
  padding: 10px;
  max-width: 200px;
  flex: 1 0 auto;
}


.content_box .txt_md {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 15px;
  border-left: 1px solid #cccccc;
  margin-left: 5px;
  padding-bottom: 10px;
}

.content_box h3 {
  display: flex;
  align-items: center;
  font-weight: 700;
}

.content_box h3::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #fff;
  border: 1px solid #cccccc;
  display: inline-block;
  background-repeat: no-repeat;
  margin-right: 10px;
}

.history_timeline {
  width: 100%;
  margin-top: 50px;
}

.his_b_block {
  width: 100%;
  margin: auto;
  position: relative;
}

.timeline_nav_wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

.history_nav_slider {
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding-bottom: 30px;
  width: calc(100% - 120px);
  justify-content: space-around;
}

.history_nav_slider .nav_item {
  text-align: center;
  cursor: pointer;
  /* padding: 20px 0; */
  outline: none;
  position: relative;
  transition: all .3s ease;
}

.history_nav_slider .nav_item span {
  font-weight: 700;
  transition: all .3s ease;
}

.history_nav_slider .nav_item::after {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #fff;
  border: 1px solid #cccccc;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  transition: all .3s ease;
}

.history_main_slider .slick-current h3::before {
  background-color: #a7cd39;
}

.history_main_slider .slick-current h3 {
  color: #a7cd39;
}

.history_nav_slider .slick-current .nav_item span {
  color: #a7cd39;
}

.history_nav_slider .slick-current .nav_item::after {
  background-color: #a7cd39;
}

.timeline_nav_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  z-index: 5;
  pointer-events: auto !important;
}

.timeline_nav_wrapper .nav_arrow {
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #cccccc;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
}

.timeline_nav_wrapper .bi-chevron-right {
  color: #565656;
}

.timeline_line {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #cccccc;
  top: 53%;
  z-index: -1;
  max-width: 1400px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.timeline_nav_wrapper .nav_arrow:hover {
  background-color: #a7cd39;
}

.timeline_nav_wrapper .nav_arrow:hover .bi {
  color: #fff;
}

.history_content_item .content_box {
  transition: transform 0.5s ease;
}

/* 第 1, 6, 11... 項：低位 */
.history_main_slider .slick-slide:nth-child(5n+1) .content_box {
  transform: translateY(70px);
}

/* 第 2, 7, 12... 項：中位 */
.history_main_slider .slick-slide:nth-child(5n+2) .content_box {
  transform: translateY(20px);
}

/* 第 3, 8, 13... 項：高位 */
.history_main_slider .slick-slide:nth-child(5n+3) .content_box {
  transform: translateY(-30px);
}

/* 第 4, 9, 14... 項：中位 */
.history_main_slider .slick-slide:nth-child(5n+4) .content_box {
  transform: translateY(10px);
}

/* 第 5, 10, 15... 項：低位 */
.history_main_slider .slick-slide:nth-child(5n+5) .content_box {
  transform: translateY(50px);
}

.his_area {
  justify-content: center;
  padding: 50px 0;
}

.history_main_slider .slick-list {
  max-width: 1480px;
  overflow-x: hidden;
  padding: 30px 0;
}

.com_c {
  width: 100%;
  max-width: 1480px;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  padding: 0;
}

.com_c_info img {
  width: 100%;
  max-width: 900px;
  position: relative;
  object-fit: cover;
  object-position: center;
  display: block;
}


.com_ct {
  display: flex;
  flex-direction: column;
  margin-left: -50px;
  background-color: #a7cd39;
  padding: 60px;
  position: absolute;
  max-width: 800px;
  top: 50%;
  right: 0;
  transform: translateY(-50%) !important;
}

.com_ct::after {
  content: "”";
  position: absolute;
  top: 40px;
  right: 50px;
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 100px;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
}

.com_ct .txt_xl {
  color: #fff;
}

.com_ct .txt_title::after {
  background-color: #fff;
}

.com_ct .txt_md {
  padding-top: 20px;
}

.com_d {
  padding: 100px 0;
  width: 100%;
  margin: auto;
}

.com_d .txt_title {
  width: 100%;
  max-width: 1480px;
  margin: auto;
}

.com_d .txt_title::after,
.com_e .txt_title::after {
  margin: 20px auto 50px auto;
}

.com_d .txt_xl,
.com_e .txt_xl {
  text-align: center;
}

.com_d_info {
  width: 100%;
  display: flex;
}

.com_da,
.com_db,
.com_dc {
  width: calc(100%/3);
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  aspect-ratio: 4/3;
}

.com_da::before,
.com_db::before,
.com_dc::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: 1;
}

.com_da {
  background-image: url('../image/com/com04.png');
}

.com_db {
  background-image: url('../image/com/com05.png');
}

.com_dc {
  background-image: url('../image/com/com06.png');
}


.com_d_info .pro_svg {
  width: 4vw;
  min-width: 30px;
  /* height: 50px; */
  display: block;
  margin-bottom: 20px;
  z-index: 2;
}

.com_d_info p {
  z-index: 2;
}

.com_d_info .txt_lg {
  color: #fff;
}

.com_e {
  width: 100%;
  max-width: 1480px;
  margin: auto;
}

.assoc_area {
  background-color: #fff;
  padding: 80px 0;
}

.assoc_slide_item {
  padding: 15px;
}

.assoc_card {
  background: linear-gradient(90deg, #fff 65%, #a7cd39 100%);
  border: 1px solid #eee;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: all .3s ease;
}

.assoc_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.assoc_text {
  flex: 1;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
}

.assoc_text h3 {
  color: #222;
  font-weight: bold;
  line-height: 1.5;
}

.view_large {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #a7cd39;
  transition: all .3s ease;
  z-index: 5;
  touch-action: manipulation;
  position: relative;
}

.view_large .txt_md {
  color: #a7cd39;
}

.view_large i {
  margin-right: 8px;
}

.assoc_img {
  flex: 0 0 50%;
}

.assoc_img img {
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.view_large:hover {
  color: #a7cd39;
  transform: scale(1.1);
}

.assoc_nav_container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.assoc_progress_bar {
  flex: 0 0 300px;
  height: 2px;
  background: #eee;
  margin: 0 20px;
  position: relative;
}

.progress_line {
  position: absolute;
  height: 100%;
  background: #a7cd39;
  width: 0%;
  transition: width 0.3s ease;
}

.assoc_prev,
.assoc_next {
  border: none;
  background: none;
  font-size: 24px;
  color: #a7cd39;
  cursor: pointer;
}

.bi-arrows-fullscreen::before {
  font-weight: 500 !important;
  font-size: 20px;
}

@media (max-width: 1499px) {
  .dt_com_area {
    padding: 0 0 130px 0;
  }

  .timeline_line {
    width: 90%;
  }

  .com_a_block {
    padding: 130px 48px 0 48px;
  }

  .assoc_slider {
    padding: 0 36px;
  }
}

@media (max-width: 1299px) {
  .dt_com_area {
    padding: 0 0 100px 0;
  }

  .com_a_block {
    padding: 100px 48px 0 48px;
  }

  .timeline_line {
    top: 47%;
  }
}

@media (max-width: 1199px) {
  .dt_com_area {
    padding: 0 0 80px 0;
  }

  .com_a_block {
    padding: 80px 48px 0 48px;
  }

  .com_b {
    height: 70vh;
  }

  .com_b_info .txt_title {
    padding: 50px 0;
  }
}

@media (max-width: 1099px) {
  .dt_com_area {
    padding: 0 0 65px 0;
  }

  .com_a_block {
    padding: 65px 48px 0 48px;
  }
}


@media (max-width: 991px) {
  .dt_com_area {
    padding: 0 0 50px 0;
  }

  .com_a_block {
    padding: 50px 24px 0 24px;
  }

  .assoc_slider {
    padding: 0 24px;
  }

  /* .dt_com_area {
    padding-left: 0;
    padding-right: 0;
  } */

  .com_b {
    padding-left: 24px;
    padding-right: 24px;
    height: 40vh;
    min-height: 500px;
    margin-bottom: 50px;
  }

  .txt_a {
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .com_a .txt_title {
    padding-left: 0;
    padding-right: 0;
  }

  .com_d_info .txt_lg {
    padding: 24px;
  }

  .com_ct {
    position: relative;
    margin-left: 0;
    transform: none !important;
  }

  .com_a_block {
    justify-content: center;
  }

  .history_timeline {
    margin-top: 0;
  }

  .com_b_info .txt_title {
    padding: 50px 0 0 0;
  }

}

@media (max-width: 767px) {
  .assoc_content {
    flex-direction: column;
    text-align: center;
  }

  .assoc_text {
    padding-right: 0;
    margin-bottom: 20px;
    min-height: auto;
  }

  .view_large {
    justify-content: center;
    margin-top: 15px;
  }

  .assoc_img {
    flex: 0 0 100%;
    width: 80%;
  }

  .com_d_info {
    flex-direction: column;
  }

  .com_da,
  .com_db,
  .com_dc {
    width: 100%;
    height: 400px;
  }

  .com_d {
    padding: 50px 0;
  }

}

@media (max-width: 575px) {
  .assoc_progress_bar {
    flex: 0 0 200px;
  }

  .txt_a .txt_lg {
    word-break: break-all;
  }
}

@media (max-width: 390px) {
  .assoc_progress_bar {
    flex: 0 0 160px;
  }
}

/*esg*/
.esg_dt_info {
  width: 100%;
  max-width: 1480px;
  margin: auto;
  padding: 0 12px;
}

.esg_a_block {
  display: flex;
  align-items: center;
}

.esg_a {
  background-color: #f5f5f5;
}

.esg_at {
  display: flex;
  flex-direction: column;
  padding: 50px;
  justify-content: center;
  text-align: left;
  position: relative;
}

.txt_gt {
  color: #a7cd39;
}

.esg_at .txt_lg::before,
.esg_at .txt_lg:after {
  display: block;
  position: absolute;
  color: #a7cd39;
  font-size: 5vw;
  font-weight: 700;
  opacity: 0.5;
  right: 0;
}

.esg_at .txt_lg::before {
  content: "「";
  top: 55%;
  left: 10px;
  transform: translateY(-50%);
}

.esg_at .txt_lg::after {
  content: "」";
  right: 0;
  bottom: 20px;
}

.esg_txta {
  margin-bottom: 100px;
}

.esg_at .txt_title {
  margin-bottom: 30px;
}

.esg_at .txt_lg {
  padding: 0 20px;
  max-width: 600px;
}

.esg_b {
  padding: 100px 0 50px 0;
}

.esg_c {
  padding-bottom: 100px;
  padding-left: 0;
  padding-right: 0;
}

.esg_c_info {
  display: flex;
  align-items: center;
  width: 100%;
}

.esg_ct {
  z-index: 2;
  left: 0;
  margin-right: -50px;
  position: relative;
  transform: translateX(50px) !important;
}

.esg_c_info img {
  display: block;
}

.esg_c .txt_md,
.esg_c .txt_lg {
  color: #fff;
}

.esg_c .txt_title {
  margin-bottom: 40px;
}

.esg_c .txt_title::after {
  content: "";
  display: block;
  width: 100px;
  height: 1.5px;
  background-color: #fff;
  background-repeat: no-repeat;
  margin: 20px 0;
}

.esg_c:last-child {
  padding-bottom: 0;
}

.esg_a .txt_lg,
.esg_b .txt_lg {
  color: #222222;
}

.esg_a_block img {
  object-fit: cover;
  object-position: center;
  padding: 0;
}

.esg_et {
  right: 0;
  position: relative;
  transform: translateX(0) !important;
}


@media(min-width:1599px) {
  .txt_gt {
    font-size: 26px;
  }
}

@media(max-width:1599px) {
  .esg_at .txt_lg::before {
    left: 20px;
  }
}

@media(max-width:1499px) {
  .esg_et {
    margin-left: -20%;
  }
}

@media(max-width:1199px) {
  .esg_at .txt_lg::before {
    left: 25px;
    top: 60%;
  }

  .com_ct {
    padding: 30px;
  }

  .com_ct::after {
    top: 0;
    right: 30px;
  }

  .esg_ct {
    margin-right: -200px
  }

  .esg_et {
    margin-left: -250px;
  }
}

@media(max-width:1099px) {
  .esg_at .txt_lg::before {
    left: 30px;
  }
}

@media(max-width:991px) {
  .esg_dt_info {
    padding: 0 24px;
  }

  .esg_at .txt_lg::before {
    left: 35px;
  }

  .esg_c_info {
    flex-direction: column;
  }

  .esg_ct,
  .esg_et {
    order: 2;
    margin: auto;
    width: 100%;
    transform: none !important;
    max-width: 100%;
  }

  .esg_c img {
    max-width: 100%;
  }

  .esg_c {
    padding-bottom: 50px;
  }

  .esg_b {
    padding: 50px 0 30px 0;
  }

  .esg_c:last-child {
    padding-bottom: 20px;
  }

  .com_ct .txt_md {
    padding-top: 0;
  }
}

@media(max-width:767px) {
  .esg_a {
    flex-direction: column;
  }

  .esg_txta {
    margin-bottom: 20px;
  }

  .esg_at .txt_lg::after {
    right: 30px;
  }

  .esg_at .txt_lg::before {
    left: 40px;
  }

  .esg_c:last-child {
    padding-bottom: 0;
  }
}

@media(max-width:575px) {
  .esg_at {
    padding: 30px;
  }

  .esg_at .txt_lg::before,
  .esg_at .txt_lg:after {
    font-size: 32px;
  }

  .esg_at .txt_lg::before {
    left: 18px;
    top: 55%;
  }
}



/*contact*/
.contact_info {
  width: 100%;
  max-width: 1480px;
  margin: auto;
  padding: 0 12px;
}

.contact_a {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background-color: #f5f5f5;
  padding: 50px;
}

.contact_a img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 20px;
}

.inter_block {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

.t_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 50px;
}

.contact_a a {
  color: #222222;
  font-weight: 700;
}

.contact_b {
  text-align: center;
  padding: 50px 0;
}

.con_in {
  display: flex;
  justify-content: space-between;
}

.yes_label {
  border: none;
  background-color: #f5f5f5;
  transition: all .3s ease;
}

.col-form-label,
.con_in {
  padding-left: 0;
  white-space: nowrap;
}

.col-form-label span {
  color: red;
}

.code_block {
  display: flex;
  margin-top: 10px;
  padding: 0 12px;
}


.form-control:focus {
  background-color: #cae288;
  border-color: #a7cd39;
}

.contact_a .txt_xl {
  color: #a7cd39;
}

.t_blocka {
  position: relative;
}

.t_blocka::before,
.t_blocka::after {
  content: "";
  width: 1px;
  height: 100px;
  position: absolute;
  background-color: #d9d9d9;
  background-repeat: no-repeat;
}

.t_blocka::before {
  left: 0;
}

.t_blocka::after {
  right: 0;
}

.t_block .txt_lg {
  padding: 0 12px;
}

.code_block button {
  margin-left: auto;
}

@media(max-width:991px) {
  .contact_info {
    padding: 0 24px;
  }
}

@media(max-width:767px) {

  .col-form-label,
  .con_in {
    padding-right: 0;
  }

  .contact_a,
  .inter_block {
    align-items: flex-start;
  }

  .inter_block {
    flex-direction: column;
  }

  .t_block {
    flex-direction: row;
    justify-content: flex-start;
    padding-top: 10px;
    display: flex;
    align-items: center;
  }

  .contact_a img {
    margin-right: 20px;
    margin-bottom: 0;
  }

  .code_block button {
    margin: 20px 0 0 0;
  }

  .t_blocka::before,
  .t_blocka::after {
    height: 0;
  }

  .code_block {
    padding: 0;
  }

}

@media(max-width:575px) {
  .con_in {
    flex-direction: column;
  }

  .contact_a {
    padding: 40px;
  }

  .contact_a img {
    width: 20px;
    height: 20px;
  }
}

/*privacy*/
.privacy_area {
  width: 100%;
  max-width: 1480px;
  margin: auto;
}

.privacy_area>.row {
  padding: 0 12px;
}

.privacy_area .brandname {
  font-weight: 700;
  color: #a7cd39;
}

/*search*/
.cp_search {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  max-width: 1480px;
  width: 100%;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10%;
  padding: 0 12px;
}

.search_bn {
  display: block;
  width: 100%;
  height: 500px;
  background-color: #a7cd39;
  background-repeat: no-repeat;
  z-index: 2;
}

.bn_b_t {
  padding-top: 30px;
  text-align: center;
}

.bn_b_t .txt_lg {
  color: #fff;
  font-weight: 500;
}

.searform .form-control:focus {
  background-color: #fff;
  border-color: #7bac56;
}


.search_bn_block img {
  width: 30px;
  height: 30px;
}

.searform {
  width: 100%;
  min-width: 50vw;
  margin: 30px 0;
  position: relative;
}

.searform .form-control {
  border-radius: 0;
}

.searform .drop_search_btn {
  position: absolute;
  top: 0;
  right: 0;
}

@media(max-width:1199px) {
  .search_bn {
    height: 400px;
  }
}

@media(max-width:991px) {
  .search_bn {
    height: 350px;
  }

  .bn_b_t {
    padding-top: 0;
  }

  .searform {
    margin: 20px 0;
  }

  .cp_search {
    padding: 0 24px;
  }
}

@media(max-width:767px) {
  .search_bn {
    height: 300px;
  }
}

/*404*/
.npage_block {
  width: 100%;
  max-width: 1480px;
  margin: auto;
  background-color: #fff;
  margin-top: -30%;
  padding: 0 12px;
  transition: all .3s ease;
}

.npage_area {
  position: relative;
  z-index: 3;
  padding-right: 12px;
  padding-left: 12px;
}

.npage {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0 150px 0;
}

.npage .txt_xxl {
  font-size: 10vw;
  text-align: center;
}

.npage .txt_xl {
  font-size: 3vw;
  text-align: center;
  color: #565656;
}

.npage a {
  margin-top: 80px;
}

@media(max-width:767px) {
  .npage_block {
    margin-top: -35%;
    min-height: calc(100vh - 300px);
  }

  .npage a {
    margin-top: 40px;
  }

  .npage {
    padding: 50px 0 100px 0;
  }
}

@media(max-width:575px) {
  .npage_block {
    margin-top: -50%;
  }

}

@media(max-width:390px) {
  .npage_block {
    margin-top: -80%;
  }
}

/*submit*/
.submit_block {
  margin: auto;
}

.submit_info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.submit_block img {
  width: 100%;
  max-width: 10vw;
  min-width: 50px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 50px;
}

.submit_info a {
  margin-top: 80px;
}

@media(max-width:767px) {
  .submit_info a {
    margin-top: 40px;
  }

  .submit_block {
    min-height: calc(100vh - 300px);
  }
}

.container-fluid mark {
  font-weight: 700;
  color: red;
  background-color: transparent;
}

/*cookie*/
.privacyBox {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  line-height: 1.5;
  padding: 15px 24px;
  box-shadow: 0 -2px 16px rgba(47, 54, 64, 0.39);
  transition: all 0.3s ease;
  z-index: 999;
  width: 100%;
}

.privacyBox .cookie_block {
  display: flex;
  align-items: center;
  margin: auto;
  max-width: 800px;
}

.privacyBox p {
  color: #fff;
  padding-right: 2%;
}

.privacyBox a {
  color: #a7cd39;
  text-decoration: none;
}

.privacyBox .closePrivacy {
  white-space: nowrap;
  cursor: pointer;
  color: #fff;
  background-color: #a7cd39;
  padding: 8px 20px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.nav-link:focus,
.nav-link:hover {
  color: #a7cd39;
}

@media(max-width:991px) {
  .navbar-collapse {
    max-width: 100%;
    padding: 10px 0 20px 0;
  }

  .navbar-nav button {
    width: 100%;
    text-align: left;
  }

  .dt_ap_area {
    padding: 50px 0;
  }

  .dt_app_t img {
    max-width: 100%;
  }
}

@media(max-width:1399px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    margin: 8px;
    white-space: nowrap;
  }
}

@media(max-width:1199px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    white-space: nowrap;
  }
}

@media(max-width:1099px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 6px 0;
  }
}

.modal-body img {
  display: block;
  width: 100%;
}

.modal-content .btn-close {
  margin: 5px;
}

body.modal-open {
  overflow: hidden;
  padding-right: 0 !important;
}

.modal {
  padding-right: 0 !important;
}

.assoc_text button {
  border: none;
  background-color: transparent;
}

.btn-close:focus {
  box-shadow: none;
}

.pj_img_bg .slick-next:hover:before,
.pj_img_bg .slick-prev:hover:before {
  color: red;
  opacity: 0.8;
}

.dt_pdc_page_btn_section .video-wrapper{
    width:100%;
    display:flex;
    justify-content:center;
}

.dt_pdc_page_btn_section .video-wrapper iframe{
    width:80%;
    aspect-ratio:16/9;
    border:0;
}