html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Barlow', 'Noto Sans TC', 'Noto Sans', 'Noto Sans K', Arial, '微軟正黑體', 'Microsoft JhengHei', '蘋果儷中黑', 'Apple LiGothic Medium', sans-serif, '0xe804';
  scrollbar-color: #041c5a rgba(0, 0, 0, 0.2);
  scrollbar-width: thin;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

a:hover {
  color: #041c5a;
  transition: all 0.3s ease;
}

button:focus {
  outline: none !important;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 1;
}

mark {
  background: transparent;
  color: var(--red);
}

:root {
  --black: #08111f;
  --blue: #041959;
  --red: #db002d;
  --white: #fff;
  --gray: #666666;
  --darkgray: #333333;
  --bg-gray: rgba(130, 139, 151, 0.7);
  --footer-bg: #041c5a;
  --txt_xxl: 72px;
  --txt_xl: 46px;
  --txt_lg: 21px;
  --txt_md: 18px;
  --txt_sm: 16px;
}

@media (max-width: 1099px) {
  :root {
    --txt_xxl: 65px;
    --txt_xl: 38px;
  }
}

@media (max-width: 991px) {
  :root {
    --txt_xxl: 56px;
    --txt_xl: 32px;
  }
}

@media (max-width: 767px) {
  :root {
    --txt_xxl: 48px;
    --txt_xl: 28px;
  }
}

@media (max-width: 575px) {
  :root {
    --txt_xxl: 36px;
    --txt_xl: 24px;
    --txt_lg: 18px;
    --txt_md: 16px;
    --txt_sm: 14px;
  }
}

@media (max-width: 390px) {
  :root {
    --txt_xxl: 28px;
    --txt_xl: 22px;
  }
}

/*nav*/
.navbar_area {
  padding: 15px 0;
  background: var(--white);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.navbar_area.nav-shrink {
  padding: 8px 0;
}

.apa_nav {
  padding: 0 100px 0 24px;
}

.apa_nav .nav_logo_block img {
  width: 150px;
  height: auto;
  object-fit: contain;
  max-width: 150px;
}

.apa_nav .apa_navcoll {
  justify-content: flex-end;
  list-style: none;
  transition: all .3s ease;
}

.apa_nav li {
  list-style: none;
  margin: 0 10px;
}

.nav-link .bi {
  display: inline-block;
  align-items: center;
  margin-left: 5px;
  font-size: 14px;
  color: var(--blue);
  transition: all 0.3s ease;
}

.nav-link .bi::before {
  font-weight: 600 !important;
}

.apa_nav .nav-link {
  color: #08111f;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  background: transparent;
  padding: 15px 30px !important;
  transition: all 0.3s ease;
  text-transform: uppercase;
  white-space: nowrap;
}

.apa_nav .nav-link:hover {
  background: #041c5a;
  color: var(--white);
}

.apa_nav .apa_navcoll>ul>li a:hover,
.apa_nav .apa_navcoll>ul>li.active>a,
.apa_nav .apa_navcoll>ul>li button:hover,
.apa_nav .apa_navcoll>ul>li.active>button,
.apa_nav .apa_navcoll>ul>li .class li.active>button {
  background: #041c5a;
  color: var(--white);
}

.apa_nav .navbar_right .nav-link:hover {
  background: transparent;
  color: #08111f;
}

.navbar_right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.bar_inq_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bar_inq_btn {
  display: flex;
  align-items: center;
}

.bar_inq_btn img {
  max-width: 24px;
  margin-right: 5px;
}

.language_block button {
  border: none;
  background: transparent;
}

.language_block button .bi {
  margin-left: 0;
  color: var(--black);
}

.language_block button:hover .bi {
  color: var(--blue);
}

.menuSearch .search_btn {
  padding: 0;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 999;
  border: none;
  transition: all 0.3s ease;
}

.menuSearch .search_btn::before {
  content: '';
  -webkit-mask: url(../image/index/icon_search.svg) center no-repeat;
  mask: url(../image/index/icon_search.svg) center no-repeat;
  width: 20px;
  height: 20px;
  display: block;
  background: var(--white);
  margin: 40px 12px 0 40px;
}

.menuSearch .searchOuter {
  width: 0;
  position: absolute;
  z-index: 999;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
  transition: all 0.3s ease;
}

.menuSearch.active .searchOuter {
  width: 30%;
  padding: 0 30px;
}

.menuSearch .searchClose {
  position: relative;
  color: var(--white);
  font-weight: 800;
  font-size: 20px;
  z-index: 1000;
  cursor: pointer;
  padding: 10px;
}

.menuSearch .searchBox {
  flex-grow: 1;
  opacity: 1;
}

.menuSearch input {
  background: none;
  border: none;
  color: var(--white);
  max-width: 80%;
}

.form-control:focus {
  color: var(--white);
  background-color: transparent;
  box-shadow: none;
}

.menuSearch .search_btn {
  margin-left: 10px;
  background: none;
}

.navbar_right .language_btn {
  padding: 15px 0 !important;
}

.language_btn .bi {
  font-size: 25px;
}

.language_btn .bi::before {
  font-weight: 400 !important;
}

.nav-link:hover .bi {
  color: var(--white);
}


@media(min-width: 992px) {
  .menuSearch {
    z-index: 999;
    position: unset;
  }

  .menuSearch .search_btn {
    pointer-events: all;
    background: var(--red);
    -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    border: none;
  }

  .apa_nav .dropdown-menu {
    width: 200px;
    border: 0;
    border-top: 2px solid #041c5a;
    border-radius: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.5s ease;
    padding: 0;
  }

  .apa_nav .dropdown-menu li {
    color: #08111f;
  }

  .apa_nav .nav-item:hover .dropdown-menu {
    display: block;
  }

}

.apa_nav .dropdown-menu .dropdown-item {
  width: 100%;
  display: block;
  color: #08111f;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 20px;
  transition: all 0.3s ease;
  white-space: normal;
}

.menuSearch .searchOuter .search_btn {
  background: transparent;
  margin: auto;
  -webkit-clip-path: none;
  clip-path: none;
  aspect-ratio: 1/1;
}

.menuSearch .searchOuter .search_btn::before {
  margin: auto 5px;
}

.menuSearch .searchOuter.show {
  width: 30%;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar_right .dropdown-item li .active,
.navbar_right .dropdown-item.active,
.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--blue);
  color: var(--white) !important;
}

.apa_nav .dropdown-menu li {
  margin: 0;
}

@media(max-width:1299px) {
  .apa_nav .nav-link {
    padding: 15px 20px !important;
  }
}

@media(max-width:1199px) {
  .apa_nav .nav-link {
    padding: 10px 15px !important;
  }

  .bar_inq_btn img {
    max-width: 25px;
  }

  .language_btn .bi {
    font-size: 22px;
  }
}

@media(max-width:1099px) {
  .navbar_right .bar_inq_btn span {
    display: none;
  }
}

@media(max-width: 991px) {
  .navbar-toggler {
    position: absolute;
    top: 0;
    z-index: 999;
    right: 12px;
    border: none;
    height: 45px;
    width: 45px;
    cursor: pointer;
    box-shadow: none;
    padding: 0px 12px;
  }

  .navbar-toggler .burger_btn {
    width: 100%;
    height: 2px;
    background: #08111f;
    margin: 5px auto;
    transition: all 0.3s ease;
    backface-visibility: hidden;
  }

  .navbar-toggler.on .line1 {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .navbar-toggler.on .line2 {
    opacity: 0;
  }

  .navbar-toggler.on .line3 {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .menuSearch .search_btn::before {
    background: var(--blue);
    margin: 0;
  }

  .navbar_right {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
  }

  .navbar_right .container-fluid {
    justify-content: flex-end;
    margin-right: 50px;
  }

  .apa_nav .nav-link {
    width: 100%;
    text-align: center;
    border: none;
    color: var(--white);
    font-size: 16px;
  }

  .apa_nav .dropdown-menu .dropdown-item {
    color: var(--white);
  }

  .navbar_right .dropdown-menu .dropdown-item {
    color: var(--blue);
  }

  .navbar_right .dropdown-menu a.active {
    background-color: var(--blue);
    color: var(--white);
  }

  .apa_nav {
    position: relative;
    padding: 0;
  }

  .navbar-nav {
    background: #000;
  }

  .navbar-nav .dropdown-menu {
    background: #202020;
    text-align: center;
    padding: 0;
    margin: 0;
  }

  .apa_nav li {
    margin: 0;
  }

  .navbar_right .dropdown-menu.show {
    left: 50%;
    transform: translateX(-50%);
  }


  .nav-link .bi-chevron-down::before {
    color: var(--white);
  }

  .nav_btn {
    position: relative;
    align-items: center;
  }

  .nav-link .bi-chevron-down {
    position: absolute;
    right: 24px;
  }

  .menuSearch .searchOuter.show {
    width: 100%;
  }

  .menuSearch .searchOuter {
    height: 50px;
    position: fixed;
    top: 55px;
  }

  .menuSearch .searchOuter .search_btn::before {
    background: var(--white);
  }

  .menuSearch input {
    max-width: 100%;
  }

  .menuSearch .search_btn {
    position: unset;
    margin-left: 0;
    color: var(--blue);
    padding: 10px 15px;
  }

  .apa_nav .nav_logo_block img {
    margin-left: 12px;
  }

  .bar_inq_btn img {
    margin-right: 0;
  }

  .navbar_area .apa_navcoll.show {
    width: 100%;
    height: 100%;
    height: 100vh;
    height: 100dvh;
  }

  .apa_nav .apa_navcoll {
    padding: 8px 0 0 0;
  }
}

@media(max-width:991px) {
  #navbarSupportedContent {
    position: fixed;
    top: 58px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    transform: translateX(-100%);
    transition: transform .3s ease;
    display: block !important;
    visibility: hidden;
  }

  #navbarSupportedContent.show {
    width: 100%;
    transform: translateX(0);
    visibility: visible;
  }

  #navbarSupportedContent.collapsing {
    visibility: visible;
    width: 100%;
    /* transform: translateX(0);
    height: 100vh; */
  }

  /* #navbarSupportedContent.collapse:not(.show) {
    display: block !important;
  } */
}

@media(max-width: 575px) {
  #navbarSupportedContent {
    top: 52px;
  }

  .apa_nav .nav_logo_block img {
    max-width: 120px;
  }

  .menuSearch .searchOuter {
    top: 50px;
  }
}

@media(max-width: 390px) {
  #navbarSupportedContent {
    top: 48px;
  }

  .apa_nav .nav_logo_block img {
    max-width: 100px;
  }

  .apa_nav .nav-link {
    padding: 10px !important;
  }

  .language_btn .bi {
    font-size: 20px;
  }

  .bar_inq_btn img {
    max-width: 20px;
  }

  .menuSearch .search_btn {
    padding: 10px;
  }

  .navbar-toggler {
    height: 40px;
  }
}

/*index_banner*/
.index_banner_area {
  position: relative;
  padding: 0;
  width: 100%;
}

.index_banner_block {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.index_banner_block .pic {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.index_banner_block .slick-slide>div {
  line-height: 0;
}

.index_banner_block .pic::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background: #4b4b4b;
  opacity: 0.5;
}

.index_banner_block .pic img {
  transform: scale(1);
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: center;
}

.index_banner_block .pic::after {
  content: '';
  width: 53.5%;
  height: 100%;
  aspect-ratio: 1/1;
  position: absolute;
  left: -6%;
  top: 19%;
  -webkit-clip-path: polygon(72% 0%, 100% 0%, 0% 100%, -27% 100%);
  clip-path: polygon(72% 0%, 100% 0%, 0% 100%, -27% 100%);
  display: block;
  background: #db002d;
  z-index: 2;
}

.index_banner_block .infoBox {
  position: absolute;
  inset: 0 16% 8%;
  padding: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.index_banner_block .infoBox .title {
  color: #fff;
  font-size: 80px;
  font-weight: 800;
  line-height: 0.95;
}

.index_banner_area .control .skip {
  color: var(--white);
  background: none;
  margin-bottom: 20px;
  padding: 10px 15px 12px;
  height: auto;
  border: 1px solid #fff;
}

.index_banner_area .control .skip:hover {
  color: #000;
  background: var(--white);
}

.indexMore:hover::before {
  width: 100%;
  left: 0;
}

.index_banner_area .control .skip:hover::after {
  background: #000;
}

.indexMore {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0.7;
  color: #2f2f2e;
  z-index: 9;
  max-width: 190px;
  height: 50px;
  border-radius: 8px;
  margin: 0 auto;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  padding: 0 15px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.index_banner_area .control {
  position: absolute;
  bottom: 60px;
  right: 10%;
}

.index_banner_area .control .skip {
  color: #fff;
  background: none;
  margin-bottom: 20px;
  padding: 10px 15px 12px;
  height: auto;
  border: 1px solid #fff;
  font-size: 16px;
}

.index_banner_area .control .skip::before {
  background: #fff;
}

.indexMore::before {
  content: '';
  position: absolute;
  width: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  background: #000;
  z-index: -1;
  transition: all 0.3s ease;
}

.index_banner_area .control .skip::after {
  background: #fff;
  margin: 0 0 0 5px;
}

.indexMore::after {
  content: '';
  width: 24px;
  height: 5px;
  -webkit-mask: url(../image/index/icon_more.svg) center no-repeat;
  mask: url(../image/index/icon_more.svg) center no-repeat;
  background: #2f2f2e;
  display: block;
  transition: all 0.3s ease;
}


.index_banner_area .slick-dots {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  bottom: 30px;
  right: 10%;
}

.index_banner_area .slick-dots li {
  margin: 0 6px;
  height: 14px;
  width: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index_banner_area .slick-dots li {
  margin: 0 6px;
  height: 14px;
  width: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index_banner_area .slick-dots li button {
  box-sizing: content-box;
  color: transparent;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  padding: 0;
  border: none;
  background: #fff;
}

.index_banner_area .slick-dots li.slick-active button {
  background: transparent;
  border: 3px solid #db002d;
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

/* 
@media(max-width: 991px) {
  .index_banner_area .control,
  .index_banner_area .slick-dots {
    right: 24px;
  }
} */

@media(max-width: 767px) {
  .index_banner_area .item .infoBox .title {
    font-size: 60px;
  }

  .index_banner_block .pic img {
    height: 500px;
  }
}

@media(max-width: 575px) {
  .index_banner_area .item .infoBox .title {
    font-size: 50px;
  }

  .index_banner_area .control {
    bottom: 40px;
  }
}

@media(max-width: 390px) {
  .index_banner_area .item .infoBox .title {
    font-size: 38px;
  }

}

/*countbox*/
.countbox {
  background: url(../image/index/count_bg.jpg) center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  margin: 0 0 10px;
  padding: 100px 24px;
}

.countbox .listbox {
  max-width: 1340px;
  margin: 0 auto;
  color: #fff;
  display: flex;
  justify-content: center;
  text-align: center;
  justify-content: space-around;
}

.countbox span {
  font-size: var(--txt_xxl);
  font-weight: 600;
}

.countbox .count1 span::after,
.countbox .count3 span::after {
  content: '+';
}

.countbox .title {
  color: var(--red);
  font-size: var(--txt_lg);
  font-weight: 600;
}

@media(max-width:1199px) {
  .countbox {
    padding: 80px 24px;
  }
}

@media(max-width:1099px) {
  .countbox {
    padding: 65px 24px;
  }
}

@media(max-width:991px) {
  .countbox {
    padding: 50px 24px;
  }

  .countbox .listbox {
    gap: 20px;
  }
}

@media(max-width:575px) {
  .countbox .listbox {
    flex-direction: column;
  }
}

/*index_pdc_area*/
.index_pdc_area,
.flow_area {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
}

.index_pdc_block {
  display: flex;
  margin: 0 0 10px 0;
}

.index_pdc_block .item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
}

.index_pdc_block .item:nth-child(1) {
  padding-right: 12px;
}

.index_pdc_block .item::before {
  content: '';
  position: absolute;
  inset: 0;
  display: block;
  margin: 0 12px 0 0;
  z-index: 1;
  opacity: 0.5;
  background: linear-gradient(to right, rgba(4, 28, 90, 0.3) 0%, rgb(4, 28, 90) 100%);
}

.index_pdc_area .index_pdc_block .item a {
  width: 100%;
  height: 100%;
}

.index_pdc_area .index_pdc_block .item a .pic {
  width: 100%;
  height: 100%;
}

.index_pdc_area .index_pdc_block a .pic img {
  object-fit: cover;
  height: 100%;
}

.index_pdc_block .item .title {
  max-width: 270px;
  font-size: var(--txt_xl);
  inset: 0;
  z-index: 9;
  color: #fff;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index_pdc_block .item .indexMore {
  margin: 30px 0 0 0;
  color: #fff;
  background: #db002d;
}

.indexMore {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0.7;
  z-index: 9;
  width: 100%;
  max-width: 190px;
  height: 50px;
  border-radius: 8px;
  margin: 0 auto;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  padding: 0 15px;
  transition: all 0.3s ease;
  font-size: var(--txt_sm);
}

.index_pdc_block .item .indexMore::before {
  background: #000;
}

.index_pdc_block .item .indexMore::after {
  background: #fff;
}

.indexMore::after {
  content: '';
  width: 24px;
  height: 5px;
  -webkit-mask: url(../image/index/icon_more.svg) center no-repeat;
  mask: url(../image/index/icon_more.svg) center no-repeat;
  background: #2f2f2e;
  display: block;
  margin: 0 0 0 15px;
  transition: all 0.3s ease;
}

.index_pdc_block .item:hover .indexMore::before {
  width: 100%;
  left: 0;
}

.index_pdc_block .item .info {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
}

@media(max-width:991px) {
  .index_pdc_block .item .info {
    left: 0;
    right: 0;
    align-items: center;
    padding: 12px;
  }

  .index_pdc_block .item .title {
    text-align: center;
  }

  .index_pdc_block {
    gap: 10px;
  }

  .index_pdc_block .item:nth-child(1) {
    padding-right: 0;
  }

  .indexMore {
    max-width: 160px;
    height: 40px;
    font-size: 13px;
  }
}

/*flow_area*/
.flow_area::before {
  content: '';
  position: absolute;
  inset: 0;
  display: block;
  z-index: 1;
  opacity: 0.2;
  background: #041c5a;
}

.flow_area .info {
  position: absolute;
  inset: 20px;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.flow_area .title {
  font-size: var(--txt_xxl);
  color: #fff;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 30px;
  text-align: center;
}

.flow_area .indexMore {
  color: #fff;
}

.flow_area .indexMore::before {
  background: #db002d;
}

.flow_area .indexMore::after {
  background: #fff;
}

/*index news*/
.index_news_area {
  background: url(../image/index/news_bg.jpg) center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding: 100px 0;
}

.index_news_block {
  position: relative;
  width: calc(100% - 160px);
  max-width: 1340px;
  padding: 0 80px;
  margin: 0 auto;
  box-sizing: border-box;
}

.index_news_block .listBox {
  margin-bottom: 40px;
  padding: 0;
}

.index_news_block .unitTitle {
  font-size: var(--txt_xl);
  font-weight: 700;
  color: var(--darkgray);
  position: relative;
  margin: 0 0 60px 0;
  line-height: 1.2;
  isolation: isolate;
  text-align: center;
}

.index_news_block .news_item {
  padding: 40px 0 20px 0;
  border-bottom: #dddddd 1px solid;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
}

.index_news_block .news_item::before {
  content: '';
  position: absolute;
  height: 1px;
  bottom: -1px;
  left: 0;
  display: block;
  background: var(--red);
  right: 100%;
  z-index: 9;
  transition: all 0.5s ease;
}

.index_news_block .news_item a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
}

.index_news_block .news_item a .pic {
  width: 100%;
  max-width: 300px;
}

.index_news_block .news_item .timeBox {
  padding: 0 20px;
}

.index_news_block .news_item time {
  max-width: 180px;
  display: flex;
  color: var(--gray);
  font-weight: 700;
  font-size: var(--txt_sm);
  margin-bottom: 20px;
}

.index_news_block .news_item .tag {
  letter-spacing: 2px;
  font-size: 14px;
  color: var(--darkgray);
}

.index_news_block .news_info {
  flex-grow: 1;
  width: 100%;
  max-width: 860px;
}

.index_news_block .news_info .title {
  font-size: var(--txt_lg);
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--black);
  transition: all .3s ease;
}

.index_news_block .description {
  color: var(--darkgray);
  font-size: var(--txt_md);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.index_news_block a:hover .news_info .title {
  color: var(--blue);
}

.index_news_block .news_item:first-child {
  padding: 0 0 20px;
}

.index_news_block .news_item:hover {
  transform: translate(-5px, -5px);
}

.index_news_block .news_item:hover::before {
  right: 0;
}

.index_news_block .indexMore {
  border: 1px solid #bbbbbb;
}

.index_news_block .indexMore:hover {
  color: var(--white);
}

.index_news_block .indexMore:hover::after {
  background: var(--white);
}

.index_news_block .indexMore:hover::before {
  background: var(--red);
}

@media(max-width:1199px) {
  .index_news_block .description {
    -webkit-line-clamp: 2;
  }

  .index_news_area {
    padding: 80px 0;
  }

  .index_news_block .unitTitle {
    margin-bottom: 50px;
  }
}

@media(max-width:1099px) {
  .index_news_block .timeBox {
    padding: 0 10px;
  }

  .index_news_area {
    padding: 65px 0;
  }
}

@media(max-width:991px) {
  .index_news_area {
    padding: 50px 0;
  }

  .index_news_block .unitTitle {
    margin: 0 0 30px 0;
  }

  .index_news_block .news_item {
    padding: 20px 0;
  }

  .index_news_block .news_item a .pic {
    max-width: 100%;
  }

  .index_news_block .news_item .timeBox {
    display: flex;
    align-items: center;
    padding: 20px 0;
  }

  .index_news_block .news_item a {
    flex-direction: column;
  }

  .index_news_block .news_item time {
    margin-bottom: 0;
  }

  .index_news_block .news_item .tag {
    padding: 0 20px;
  }

  .index_news_block .news_info {
    max-width: 100%;
  }

  .index_news_block {
    width: 100%;
    margin: auto;
    padding: 0 24px;
  }
}

/*about*/
.index_about_area {
  background: linear-gradient(to right, rgb(4, 28, 90) 50%, rgb(219, 0, 45) 80%);
  width: 100%;
  padding: 0;
  position: relative;
}

.index_about {
  width: 100%;
  padding: 0 0 100px 24px;
  position: relative;
  margin: auto;
}

.index_about_area .ab_info {
  position: relative;
  z-index: 9;
  margin: 100px 0 auto auto;
  padding: 6% 30px 0 6%;
  box-sizing: border-box;
  color: var(--white);
}

.index_about_area .ab_info::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 11%;
  aspect-ratio: 1;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  background: var(--red);
}

.index_about_area .about_p {
  position: sticky;
  top: 50px;
  width: 100%;
  max-width: 50%;
  height: 100%;
}

.index_about_area .ab_info .title {
  font-weight: 900;
  font-size: var(--txt_xxl);
  line-height: 1.1;
  padding: 0 0 60px 0;
  position: relative;
  margin: 0;
}

.index_about_area .ab_info .description {
  font-size: var(--txt_md);
  margin: 0 0 80px 0;
}

.index_about_area .ab_info .indexMore {
  margin: 30px 0 0;
  color: var(--white);
  background: var(--red);
}

.index_about_area .ab_info .indexMore::after {
  background: var(--white);
}

.index_about_area .ab_info .indexMore:hover {
  left: 0;
  width: 100%;
  color: var(--white);
}

.index_about_area .ab_info .indexMore:hover::after {
  background: var(--white);
}


.index_about_area .about_item {
  position: relative;
}

.index_about_area .ab_info .about_item::before {
  content: '';
  position: absolute;
  inset: 0;
  display: block;
  z-index: 1;
  opacity: 0.3;
  background: #000;
}

.about_item {
  line-height: 0;
}

.about_item img {
  width: 100%;
  height: 100%;
  height: auto;
  object-fit: contain;
}

.about_p_info {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.index_about_area .about_p_info .slick-arrow {
  width: 46px;
  height: 46px;
  margin: 16px 8px 0;
  flex-shrink: 0;
  bottom: -100px;
  top: auto;
}

.index_about_area .slick-arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(../image/index/icon_arrow_.svg) center no-repeat;
  display: block;
  filter: invert(1);
}

.index_about_area .slick-arrow.slick-next::before {
  transform: rotate(180deg);
}

.index_about_area .slick-prev {
  left: 45%;
  right: auto;
}

.index_about_area .slick-next {
  right: 40%;
  left: auto;
}

@media(max-width:1599px) {
  .index_about_area .about_p_info .slick-prev {
    left: 40%;
  }
}

@media(max-width:1199px) {
  .index_about_area .about_p_info .slick-prev {
    left: 38%;
  }

  .index_about_area .about_p_info .slick-next {
    right: 38%;
  }
}

@media(max-width:991px) {
  .index_about {
    padding: 0 24px 100px 24px;
  }

  .index_about_area .about_p {
    max-width: 100%;
    padding: 0 12px;
  }

  .index_about_area .ab_info {
    margin: 50px 0 0 0;
    padding: 50px 12px;
  }

  .index_about_area .about_p_info .slick-arrow {
    width: 45px;
    height: 45px;
  }

  .index_about_area .ab_info .title {
    padding: 0 0 30px 0;
  }

  .index_about_area .ab_info .description {
    margin: 0 0 50px 0;
  }
}

@media(max-width:575px) {
  .index_about_area .about_p_info .slick-prev {
    left: 33%;
  }

  .index_about_area .about_p_info .slick-next {
    right: 33%;
  }
}

@media(max-width:390px) {
  .index_about_area .about_p_info .slick-prev {
    left: 29%;
  }

  .index_about_area .about_p_info .slick-next {
    right: 29%;
  }
}

/*index_world*/
.index_worldBox_area {
  background: url(../image/index/world_bg.jpg) center no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 100px 24px;
  width: 100%;
}

.index_worldBox_area .index_worldBox {
  width: 100%;
  max-width: 890px;
  background: rgba(130, 139, 151, 0.7);
  border-radius: 8px;
  padding: 4%;
  box-sizing: border-box;
}

.index_worldBox .title {
  font-size: var(--txt_xl);
  font-weight: 700;
  position: relative;
  margin: 0 0 30px;
  padding: 0 0 30px;
}

.index_worldBox .title::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 25%;
  height: 4px;
  background: #db002d;
  display: block;
}

.index_worldBox .description {
  font-size: var(--txt_lg);
}

@media(max-width:1199px) {
  .index_worldBox_area {
    padding: 80px 24px;
  }
}

@media(max-width:1099px) {
  .index_worldBox_area {
    padding: 65px 24px;
  }
}

@media(max-width:991px) {
  .index_worldBox_area {
    padding: 50px 24px;
  }

  .index_worldBox_area {
    background-attachment: scroll;
  }
}

/*footer*/
.index_footer_area {
  position: relative;
  background: var(--blue);
  width: 100%;
  margin: auto;
  overflow: hidden;
  padding: 0;
}

.index_footer_area .footer_block {
  width: 100%;
  max-width: 1200px;
  padding: 30px 24px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.index_footer_area .copyright {
  display: flex;
  width: 100%;
  padding: 0;
}

.index_footer_area .copyright p {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--white);
  margin: 0;
  transition: all .3s ease;
}

.index_footer_area .copyright a {
  color: #fff;
  text-decoration: none;
}

.index_footer_area .footerMenu {
  display: flex;
  flex: 1;
  width: 100%;
}

.index_footer_area .footerMenu ul {
  display: flex;
  margin: 0;
}

.index_footer_area .footerMenu li {
  margin: 0 0 0 20px;
}

.index_footer_area .footerMenu li a {
  font-size: var(--txt_md);
  font-weight: 600;
  display: block;
  padding: 5px 0;
  color: var(--white);
  white-space: nowrap;
}

.footerMenu li {
  list-style: none;
}

@media(max-width:767px) {
  .index_footer_area .copyright p {
    display: inline-block;
  }

}

/*Top_btn*/
.top_btn_area {
  position: fixed;
  width: 50px;
  height: 50px;
  z-index: 999;
  right: 25px;
  bottom: 20%;
}

.top_btn_area button {
  background: #041c5a;
  margin: 20px 0 0;
  opacity: 0;
  width: 46px;
  height: 46px;
  border-radius: 100%;
  padding: 0;
  padding: 7px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}


.top_btn_area button::before {
  content: '';
  width: 46px;
  height: 46px;
  position: absolute;
  aspect-ratio: 1;
  display: block;
  transform: rotate(90deg);
  -webkit-mask-image: url(../image/index/icon_arrow_.svg);
  mask-image: url(../image/index/icon_arrow_.svg);
  background: var(--white);
}

.top_btn_area.show button {
  opacity: 1;
}

@media(max-width:991px) {
  .index_footer_area .footer_block {
    width: 100%;
    margin: auto;
  }

  .index_footer_area .footer_block .copyright {
    justify-content: center;
  }

  .index_footer_area .footerMenu {
    display: none;
  }

  .top_btn_area button::before {
    width: 40px;
    height: 40px;
  }
}

/*pdc_cpa*/
.banner_area {
  width: 100%;
  padding: 0;
  margin-top: 70px;
}

.banner_pblock {
  width: 100%;
  height: 100%;
  min-height: 150px;
}

.banner_pblock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner_area .banner {
  position: relative;
}

.banner_area .banner {
  position: relative;
}

.banner_area .banner::before {
  content: '';
  position: absolute;
  width: 40%;
  top: 0;
  left: 15%;
  height: 100%;
  display: block;
  transform: translateX(-40%);
  -webkit-clip-path: polygon(50% 0%, 100% 0%, 50% 100%, 0% 100%);
  clip-path: polygon(50% 0%, 100% 0%, 50% 100%, 0% 100%);
  background: linear-gradient(to bottom, rgba(218, 0, 44, 1) 40%, rgba(218, 0, 44, 0) 90%);
  line-height: 1.45;
}

.banner_area .banner .banner_tblock {
  width: 100%;
  max-width: 1340px;
  padding: 0 24px;
  margin: auto;
}

.banner_area .banner .banner_tblock .title {
  font-size: var(--txt_xl);
  line-height: 1;
  font-weight: 700;
  color: var(--white);
  z-index: 3;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}

.cp_pdc_section {
  width: 100%;
  max-width: 1340px;
  padding: 100px 24px;
  margin: auto;
}

.cp_area .seo_block p {
  color: var(--darkgray);
  font-size: var(--txt_md);
  line-height: 1.4;
  margin: 0 0 100px 0;
  transition: all .3s ease;
}

.cp_area .bread_block {
  width: 100%;
  background: var(--white);
}

.cp_area .bread_block .breadcrumb {
  width: 100%;
  max-width: 1340px;
  padding: 10px 24px;
  margin: auto;
  font-size: var(--txt_sm);
  color: var(--darkgray);
  font-weight: 500;
  opacity: 0.7;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.cp_area .bread_block .breadcrumb li {
  position: relative;
  display: flex;
  font-size: var(--txt_sm);
}

.cp_area .bread_block .breadcrumb li a {
  color: var(--darkgray);
  display: inline;
  text-decoration: none;
}

.breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: .5rem;
  color: #6c757d;
  content: var(--bs-breadcrumb-divider, ">");
}

.cp_pdc_area .cp_pdc_section .cp_pdca_block {
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0;
}

.cp_pdc_area .cp_pdc_section .cp_pdca_block .pdc_item {
  position: relative;
  display: flex;
}

.breadcrumb-item.active {
  color: var(--red);
}

.cp_pdc_area .cp_pdc_section .cp_pdca_block .pdc_item a {
  display: block;
  width: 100%;
  height: 100%;
}

.cp_pdc_area .cp_pdc_section .cp_pdca_block .pdc_item {
  grid-column: span 1;
  grid-row: span 1;
}

.cp_pdc_area .cp_pdc_section .cp_pdca_block .pdc_item:nth-child(1) {
  grid-column: span 1;
  grid-row: span 2;
}

.cp_pdc_area .cp_pdc_section .cp_pdca_block .cpa_pdc_p {
  display: block;
  height: 100%;
  position: relative;
  isolation: isolate;
}

.cp_pdc_area .cp_pdc_section .cp_pdca_block .cpa_pdc_p::before {
  content: '';
  position: absolute;
  display: block;
  inset: 0;
  background: linear-gradient(to bottom, rgb(4, 28, 90) 0%, rgb(0, 0, 0) 100%);
  opacity: 0.5;
}

.cp_pdc_area .cp_pdc_section .cp_pdca_block .cpa_pdc_p img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cp_pdc_area .cp_pdc_section .cp_pdca_block .cpa_pdc_t {
  position: absolute;
  bottom: 0;
  left: 0;
  color: var(--white);
}

.cp_pdc_area .cp_pdc_section .cp_pdca_block .cpa_pdc_t h2 {
  width: 100%;
  padding: 24px;
  font-size: var(--txt_xl);
  font-weight: 700;
  line-height: 1;
  transition: all .3s ease;
}

@media(max-width:1199px) {
  .banner_area {
    margin-top: 60px;
  }

  .cp_pdc_section {
    padding: 80px 24px;
  }

  .cp_area .seo_block p {
    margin: 0 0 80px 0;
  }
}

@media(max-width:1099px) {
  .cp_pdc_section {
    padding: 65px 24px;
  }

  .cp_area .seo_block p {
    margin: 0 0 65px 0;
  }
}

@media(max-width:991px) {
  .cp_pdc_section {
    padding: 50px 24px;
  }

  .cp_area .seo_block p {
    margin: 0 0 50px 0;
  }

  .banner_area {
    margin-top: 50px;
  }
}

@media(max-width:767px) {
  .cp_pdc_area .cp_pdc_section .cp_pdca_block {
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
  }
}

@media(max-width:390px) {
  .banner_area {
    margin-top: 45px;
  }
}

/*inter_footer*/
.footer_area {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
}

.footer_area .footer_block {
  position: relative;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.footer_area .footer_block .footerMenu {
  width: 100%;
  background: var(--blue);
  margin: auto;
  padding: 0;
}

.footer_area .footer_block .footer_item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 50px 0;
  max-width: 1340px;
  padding: 24px;
  margin: auto;
}

.footer_area .footer_block .footerMenu a {
  text-decoration: none;
  transition: all .3s ease;
  display: block;
  font-size: var(--txt_sm);
  color: var(--gray);
  line-height: 1.7;
}

.footer_area .footer_block .footerMenu .footer_title {
  font-size: var(--txt_md);
  font-weight: 500;
  color: var(--white);
  margin: 0 0 10px 0;
}

.footer_area .footer_block .footerMenu a:hover {
  color: var(--red);
}

.footer_area .footer_block .footerMenu .footer_title ol,
ul {
  padding: 0;
}

.footer_area .footer_block .footer_bottom {
  width: 100%;
  background: var(--white);
  margin: auto;
  padding: 0;
}

.footer_area .footer_block .footer_bottom .footer_bm {
  width: 100%;
  max-width: 1340px;
  padding: 24px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_area .footer_block .footer_bottom .footer_bm img {
  object-fit: cover;
}

.footer_area .footer_block .footer_bottom .footer_bm .logo_block {
  width: 100%;
  max-width: 150px;
}

.footer_area .footer_block .footer_bottom .footer_bm .txt {
  font-size: 14px;
  color: var(--black);
}

.footer_area .footer_block .footer_bottom .footer_bm .txt a {
  color: var(--gray);
  text-decoration: none;
}

@media(max-width:991px) {
  .footer_area .footer_block .footerMenu {
    display: none;
  }

  .footer_area .footer_block .footer_bottom .footer_bm {
    flex-direction: column;
  }

  .footer_area .footer_block .footer_bottom .footer_bm .copyright {
    margin-top: 10px;
    text-align: center;
  }
}

/*pdc_cpb*/
.pdc_search_block {
  width: 100%;
  background: var(--blue);
}

.pdc_search_block form {
  width: 100%;
  max-width: 1340px;
  margin: auto;
  display: flex;
  align-items: center;
  padding: 20px 24px;
}

.pdc_search_block form .txt {
  color: var(--white);
  font-size: var(--txt_lg);
  font-weight: 600;
  margin: 0 30px 0 0;
  white-space: nowrap;
  position: relative;
}

.pdc_search_block form .txt button {
  display: none;
  background: none;
  border: none;
  position: absolute;
  inset: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
}

.pdc_search_block .search_block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: auto 0;
}

.pdc_search_block .search_block li {
  list-style: none;
}

.pdc_search_block form .inputitem {
  position: relative;
  width: 100%;
  min-width: 150px;
}

.pdc_search_block form .inputitem::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #db002d transparent;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.pdc_search_block form .inputitem input,
.pdc_search_block form .inputitem select {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  height: auto;
  padding: 10px 40px 10px 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  white-space: pre-wrap;
}

.pdc_search_block form .form-select:focus {
  box-shadow: none;
}

.pdc_search_block form .inputitem option {
  padding: 8px;
  white-space: pre-wrap;
  color: var(--darkgray);
}

.cp_pdc_area .cp_pdcb_block {
  margin-bottom: 100px;
}

.cp_pdc_area .cp_pdcb_block .cpb_item_block {
  width: 100%;
  padding: 0;
  margin: 0;
}

.cp_pdc_area .cp_pdcb_block .pdcb_item {
  height: 100%;
  padding: 0;
  border-left: #e7e7e7 2px solid;
  background: url(../image/product/products_bg.svg) center bottom no-repeat;
  background-size: cover;
}

.cp_pdc_area .cp_pdcb_block .pdcb_item a {
  display: block;
  display: flex;
  flex-direction: column;
  padding: 20px 30px;
  height: 100%;
}

.cp_pdc_area .cp_pdcb_block .pdcb_item img {
  width: 100%;
  max-width: 250px;
  aspect-ratio: 3/4;
  margin: 0 auto 30px auto;
}

.cp_pdcb_block .cpb_item_block .pdcb_item .cpb_pdc_t h2 {
  color: var(--darkgray);
  font-size: var(--txt_lg);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 20px;
  transition: all 0.3s ease;
}

.cp_pdcb_block .cpb_item_block a {
  text-decoration: none;
}

.more_btn {
  color: var(--blue);
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: auto 0 0;
}

.more_btn::after {
  content: '';
  width: 8px;
  height: 10px;
  display: block;
  -webkit-mask: url(../image/icon/icon_download.svg) center no-repeat;
  mask: url(../image/icon/icon_download.svg) center no-repeat;
  background: var(--blue);
  margin: 0 0 0 10px;
  transition: all 0.3s ease;
}

.more_btn:hover {
  color: var(--red);
}

.more_btn:hover::after {
  background: var(--red);
}

.cp_pdcb_block .cpb_item_block .pdcb_item:hover .more_btn {
  color: var(--red);
}

.cp_pdcb_block .cpb_item_block .pdcb_item:hover .more_btn::after {
  background: var(--red);
}

.cp_pdcb_block .cpb_item_block .pdcb_item:hover .cpb_pdc_t h2 {
  color: var(--blue);
  transition: all .3s ease;
}

@media(max-width: 1199px) {
  .cp_pdc_area .cp_pdcb_block {
    margin-bottom: 80px;
  }
}

@media(max-width: 1099px) {
  .cp_pdc_area .cp_pdcb_block {
    margin-bottom: 65px;
  }
}

@media(max-width: 991px) {
  .cp_pdc_area .cp_pdcb_block {
    margin-bottom: 50px;
  }

  .pdc_search_block .search_block li {
    margin: 0 0 10px 0;
  }
}

@media(max-width: 767px) {
  .pdc_search_block form {
    flex-direction: column;
  }

  .pdc_search_block form .txt button {
    display: block;
    color: var(--white);
  }

  .pdc_search_block form .txt button::after {
    content: '+';
    font-weight: 300;
    font-size: 1.875rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .pdc_search_block .search_block {
    display: none;
    flex-direction: column;
    gap: 10px;
  }

  .pdc_search_block .search_block.open {
    display: block;
    width: 100%;
  }

  .pdc_search_block form .inputItem select {
    margin-top: 10px;
    width: 100%;
  }

  .pdc_search_block form .txt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/*pdc_cpc*/
.cp_pdcc_block .page_title {
  font-size: var(--txt_xl);
  font-weight: bold;
  line-height: 1;
  margin: 0 0 50px 0;
  color: var(--blue);
}

.cp_pdcc_block {
  margin-bottom: 100px;
}

.cp_pdcc_block .cpc_item_block .pdcc_item h3 {
  color: var(--black);
  font-size: var(--txt_lg);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 20px;
}

.cp_pdcc_block .cpc_item_block .pdcc_item {
  border: #e7e7e7 1px solid;
  border-width: 0 1px;
  margin: 0 0 24px -1px;
  isolation: isolate;
  position: relative;
  display: flex;
  flex-direction: column;
}

.cp_pdcc_block .cpc_item_block .pdcc_item:hover::before {
  opacity: 1;
}

.cp_pdcc_block .cpc_item_block .pdcc_item::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  display: block;
  background: linear-gradient(to bottom, rgba(240, 240, 240, 0) 0%, rgb(240, 240, 240) 100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.cp_pdcc_block .cpc_item_block .pdcc_item a {
  display: block;
  position: relative;
  padding: 20px 30px 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.cp_pdcc_block .cpc_item_block .pdcc_item .cpc_pdc_p {
  margin-bottom: 30px;
}

.cp_pdcc_block .cpc_item_block .pdcc_item .inquire_btn {
  width: calc(100% - 20px);
  margin: auto 10px 0 10px;
  background: #9ba0d6;
  font-size: 1.125rem;
  color: #fff;
  font-weight: 600;
  flex-grow: 1;
  text-align: left;
  padding: 12px 25px;
  max-height: 55px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border: none;
}

.cp_pdcc_block .cpc_item_block .pdcc_item .inquire_btn:hover {
  background: var(--red);
}

.cp_pdcc_block .cpc_item_block .pdcc_item .inquire_btn::after {
  content: '';
  display: block;
  margin: 0 0 0 auto;
  width: 35px;
  aspect-ratio: 1/1;
  background: url(../image/icon/icon_add.png) no-repeat center;
  flex-shrink: 0;
  background-size: contain;
  /* -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../image/icon/icon_add.png);
  mask-image: url(../image/icon/icon_add.png); */
}

.cp_pdcc_block .tag_block {
  padding: 10px;
  background: #9ba0d6;
  margin-bottom: 30px;
}

.cp_pdcc_block .tag_block ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
  transition: all .3s ease;
}

.cp_pdcc_block .tag_block ul li {
  list-style: none;
  transition: all .3s ease;
}

.cp_pdcc_block .tag_block ul li a {
  display: block;
  padding: 5px 10px;
  color: var(--black);
  background: var(--white);
  text-decoration: none;
  transition: all .3s ease;
}

.cp_pdcc_block .tag_block ul li.active a,
.cp_pdcc_block .tag_block ul li a:hover {
  color: #fff;
  background: #041c5a;
}

@media(max-width:1199px) {
  .cp_pdcc_block {
    margin-bottom: 80px;
  }
}

@media(max-width:1099px) {
  .cp_pdcc_block {
    margin-bottom: 65px;
  }
}

@media(max-width:991px) {
  .cp_pdcc_block {
    margin-bottom: 50px;
  }

  .cp_pdcc_block .page_title {
    margin: 0 0 30px 0;
  }
}

/*pdc_dt*/
.pdc_dt_area {
  position: relative;
  overflow: hidden;
}

.pdc_dt_area::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 50px;
  background: var(--blue);
  top: 75px;
  left: 0;
}

.pdc_dt_area .pdc_dt_block {
  width: 100%;
  max-width: 1340px;
  margin: auto;
  padding: 250px 24px 100px 24px;
}

.pdc_dt_area .pdc_dt_block .pic_block {
  display: flex;
  align-items: stretch;
  padding: 0 40px 0 0;
  gap: 20px;
}

.pdc_dt_area .pdc_dt_block .pic_block .picNav {
  position: relative;
  min-width: 60px;
  max-width: 80px;
  flex-shrink: 0;
}

.pdc_dt_area .pdc_dt_block .pic_block .picNav .item {
  border: #c4c4c4 1px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  aspect-ratio: 1/1;
}

.pdc_dt_area .pdc_dt_block .pic_block .picNav .item.slick-current,
.pdc_dt_area .pdc_dt_block .pic_block .picNav .item:hover {
  border-color: var(--red);
}

.pdc_dt_area .pdc_dt_block .pic_block .pic {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  line-height: 0;
}

.pdc_dt_area .pdc_dt_block .pic_block .pdc_p img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 500px;
}

.pdc_dt_area .pdc_dt_block .pic_block .bigNav {
  aspect-ratio: 1/1;
  flex: 1;
  position: relative;
  min-width: 0;
}

.pdc_dt_area .pdc_dt_block .pic_block .bigNav .slick-list,
.pdc_dt_area .pdc_dt_block .pic_block .bigNav .slick-track,
.pdc_dt_area .pdc_dt_block .pic_block .bigNav .item,
.pdc_dt_area .pdc_dt_block .pic_block .bigNav .pic {
  height: 100%;
}

.pdc_dt_area .pdc_dt_block .pic_block .picNav .slick-slide.slick-current .item,
.pdc_dt_area .pdc_dt_block .pic_block .picNav .item:hover {
  border-color: #db002d;
}

.pdc_top_block {
  padding: 0 0 0 40px;
  display: flex;
  flex-direction: column;
}

.pdc_top_block .pdc_n_block .name {
  font-size: var(--txt_xl);
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  margin: 0 0 100px 0;
}

.pdc_top_block .pdc_n_block .tag {
  font-size: var(--txt_lg);
  font-weight: 700;
  color: var(--red);
  order: -1;
}

.pdc_top_block .btn_block {
  display: flex;
}

.pdc_top_block .btn_block .download_btn {
  background: #db002d;
}

.pdc_top_block .btn_block .download_btn,
.pdc_top_block .btn_block .add_btn {
  font-size: var(--txt_md);
  color: var(--white);
  font-weight: 600;
  flex-grow: 1;
  text-align: left;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.pdc_top_block .btn_block .download_btn::before {
  content: '';
  display: block;
  width: 23px;
  height: 30px;
  mask: url(../image/icon/icon_pdf.svg) center no-repeat;
  background: var(--white);
  margin: 0 8px 0 0;
}

.pdc_top_block .btn_block .download_btn::after {
  mask-image: url(../image/icon/icon_download_.svg);
}

.pdc_top_block .btn_block .download_btn::after,
.pdc_top_block .btn_block .add_btn::after {
  content: '';
  display: block;
  margin: 0 0 0 auto;
  width: 46px;
  aspect-ratio: 1;
  background: var(--white);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  flex-shrink: 0;
}

.pdc_top_block .btn_block .add_btn {
  background: #9ba0d6;
  border: none;
}

.pdc_top_block .btn_block .add_btn::after {
  mask-image: url(../image/icon/icon_add.svg);
}

.btn_block:has(.download_btn:hover) .add_btn {
  opacity: 0.5;
}

.btn_block:has(.add_btn:hover) .download_btn {
  opacity: 0.5;
}

.pdc_info_section .dt_pdc_block {
  width: 100%;
  max-width: 1340px;
  margin: auto;
  position: relative;
  padding: 0 24px 100px 24px;
}

.pdc_info_section .dt_pdc_block .page_btn {
  position: relative;
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
  height: 100%;
  padding: 0;
  margin-bottom: 50px;
}

.pdc_dt_info {
  scroll-margin-top: 100px;
}

.pdc_info_section .dt_pdc_block .anchor_nav {
  overflow-x: auto;
  scrollbar-color: #db002d rgba(0, 0, 0, 0.2);
  scrollbar-width: thin;
}

.pdc_info_section .dt_pdc_block .page_btn .anchor_nav {
  width: 100%;
}

.pdc_info_section .dt_pdc_block .page_btn .anchor_nav a {
  font-size: var(--txt_lg);
  color: var(--darkgray);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 700;
  white-space: nowrap;
}

.pdc_info_section .dt_pdc_block .page_btn ul {
  display: flex;
  width: 100%;
  margin: 0;
}

.pdc_info_section .dt_pdc_block .page_btn ul li {
  flex-grow: 1;
  cursor: pointer;
  background: #f0f0f0;
  text-align: center;
  transition: all 0.3s ease;
  list-style: none;
}


.pdc_info_section .pdc_dt_info h2 {
  font-size: 32px;
  color: var(--red);
  font-weight: 700;
  margin: 0 0 20px;
  transition: all .3s ease;
}

.pdc_info_section .pdc_dt_info p,
.pdc_info_section .pdc_dt_info h3,
.pdc_info_section .pdc_dt_info ul {
  font-size: var(--txt_lg);
  color: var(--darkgray);
  line-height: 1.7;
  margin: 0 0 50px;
  font-weight: 400;
  transition: all .3s ease;
}

.pdc_info_section .pdc_dt_info ul li {
  font-size: var(--txt_lg);
  color: var(--darkgray);
  font-weight: 400;
}

.pdc_info_section .pdc_dt_info ul {
  padding-left: 1.5rem;
}

.pdc_info_section .pdc_dt_info li::marker {
  color: var(--red);
}

.pdc_info_section .pdc_dt_info ul li+li {
  margin: 10px 0 0;
}

.pdc_info_section .pdc_dt_info {
  margin: 0 0 50px 0;
  border-bottom: 1px solid #e7e7e7;
}

.anchor_nav ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;
  text-align: center;
}


.pdc_info_section .dt_pdc_block .page_btn ul li.active,
.pdc_info_section .dt_pdc_block .page_btn ul li:hover {
  background: var(--blue);
}

.pdc_info_section .dt_pdc_block .page_btn ul li.active a,
.pdc_info_section .dt_pdc_block .page_btn ul li:hover a {
  color: var(--white);
}

.pdc_info_section .dt_pdc_block .anchor_nav ul li a.active {
  background: var(--blue);
  color: var(--white);
}

.inter_c .app_block {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.inter_c .app_block .app_item img {
  width: 100%;
  max-width: 80px;
  aspect-ratio: 1/1;
  margin-bottom: 10px;
}

.inter_c .app_block .app_item {
  display: flex;
  flex-direction: column;
  width: calc(100% / 6);
  margin: 0 10px 0 0;
}

.inter_c .app_block .app_item a {
  text-decoration: none;
  flex-wrap: wrap;
}

.inter_c .app_block .app_item {}

.pdc_info_section .inter_d img {
  width: auto;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 50px;
}


@media(max-width:1199px) {
  .pdc_dt_area::before {
    top: 60px;
  }

  .pdc_info_section .dt_pdc_block .page_btn {
    top: 55px;
  }

  .pdc_dt_area .pdc_dt_block {
    padding: 200px 24px 80px 24px;
  }

  .pdc_top_block .pdc_n_block .name {
    margin: 0 0 80px 0;
  }
}

@media(max-width:1099px) {
  .pdc_dt_area .pdc_dt_block {
    padding: 180px 24px 65px 24px;
  }

  .pdc_top_block .pdc_n_block .name {
    margin: 0 0 65x 0;
  }
}

@media(max-width:991px) {
  .pdc_dt_area::before {
    top: 55px;
  }

  .pdc_dt_area .pdc_dt_block {
    padding: 180px 24px 50px 24px;
  }

  .pdc_dt_area .pdc_dt_block .pic_block {
    flex-direction: column;
  }

  .pdc_dt_area .pdc_dt_block .pic_block .picNav {
    width: 100%;
    max-width: none;
    height: auto;
    order: 2;
  }

  .pdc_dt_area .pdc_dt_block .pic_block .bigNav {
    width: 100%;
    max-width: none;
    order: 1;
  }

  .pdc_dt_area .pdc_dt_block .pic_block .picNav .item {
    max-width: 100%;
  }

  .pdc_dt_area .pdc_dt_block .pic_block .slick-slide {
    margin: 0 5px;
  }

  .pdc_top_block .btn_block {
    flex-direction: column;
  }

  .pdc_top_block .pdc_n_block .name {
    margin: 0 0 50px 0;
  }

  .pdc_info_section .pdc_dt_info {
    padding: 0;
    margin: 0 0 30px 0;
  }

  .pdc_info_section .pdc_dt_info p,
  .pdc_info_section .pdc_dt_info h3,
  .pdc_info_section .pdc_dt_info ul {
    margin: 0 0 30px 0;
  }

  .inter_c .app_block {
    gap: 30px;
  }

  .pdc_info_section .pdc_dt_info h2 {
    font-size: var(--txt_xl);
  }

  .pdc_info_section .inter_d img {
    margin-bottom: 30px;
  }
}

@media(max-width:767px) {
  .pdc_top_block .pdc_n_block .tag {
    margin-top: 20px;
  }

  .pdc_dt_area .pdc_dt_block .pic_block,
  .pdc_top_block {
    padding: 0;
  }

  .pdc_dt_area .pdc_dt_block .pic_block {
    width: 100%;
    order: 2;
  }

  .pdc_dt_area .pdc_dt_block .pdc_top_block {
    display: contents;
  }

  .pdc_dt_area .pdc_dt_block .pdc_n_block {
    width: 100%;
    order: 1;
  }

  .pdc_dt_area .pdc_dt_block .btn_block {
    width: 100%;
    order: 3;
    margin-top: 50px;
  }
}

@media(max-width:575px) {
  .pdc_dt_area::before {
    top: 48px;
  }

  .pdc_top_block .pdc_n_block .name {
    margin: 0 0 30px 0;
  }

  .pdc_dt_area .pdc_dt_block .btn_block {
    margin-top: 30px;
  }

  .pdc_info_section .dt_pdc_block .page_btn {
    top: 50px;
  }
}

/*application_dt*/
.appdt_area {
  position: relative;
  width: 100%;
  background: #f0f0f0;
  overflow: hidden;
}

.appdt_area::before {
  content: '';
  width: 100%;
  height: 50px;
  background: var(--blue);
  overflow: hidden;
  display: block;
  position: absolute;
  top: 70px;
  left: 0;
}

.appdt_area .appdt_section {
  position: relative;
  width: 100%;
  max-width: 1770px;
  margin: 0 auto 0 0;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 120px 24px 0 0;
}

.appdt_area .appdt_section .pic_block {
  padding: 0;
  /* position: sticky;
  top: 60px;
  height: 100%; */
}

.appdt_area .appdt_section .pic_block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.appdt_area .appdt_section .txt_block {
  padding: 100px 24px;
}

.appdt_area .appdt_section .txt_block .title {
  font-size: var(--txt_xxl);
  color: var(--darkgray);
  font-weight: 800;
  margin: 0 0 30px;
  line-height: 1.2;
}

.appdt_area .appdt_section .txt_block p {
  font-size: var(--txt_md);
  color: var(--black);
  line-height: 1.4;
  transition: all .3s ease;
}

.appdt_area .app_pdc_section {
  background: var(--white);
  padding: 100px 24px;
  margin: 0;
}

.appdt_area .app_pdc_section .app_pdc_block {
  width: 100%;
  max-width: 1340px;
  margin: auto;
  padding: 0;
}

.appdt_area .app_pdc_section h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 40px 0;
  transition: all .3s ease;
}

.appdt_area .app_pdc_block .pdc_item a {
  display: block;
  position: relative;
  padding: 20px 30px 40px;
  flex-grow: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.appdt_area .app_pdc_block .pdc_item {
  position: relative;
  border: #e7e7e7 1px solid;
  border-width: 0 1px;
  margin: 0 0 0 -1px;
  transition: all 0.3s ease;
  z-index: 2;
}

.appdt_area .app_pdc_block .pdc_item::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  display: block;
  background: linear-gradient(to bottom, rgba(240, 240, 240, 0) 0%, rgb(240, 240, 240) 100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.appdt_area .app_pdc_block .pdc_item:hover::before {
  opacity: 1;
}

.appdt_area .app_pdc_block .pdc_item {
  margin-bottom: 30px;
}

.appdt_area .app_pdc_block .pdc_item h3 {
  color: var(--black);
  font-size: var(--txt_lg);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 20px;
  transition: all .3s ease;
}

.appdt_area .app_pdc_block .pdc_item img {
  max-width: 250px;
  aspect-ratio: 1/1;
  margin: 0 auto 20px auto;
}

@media(max-width:1199px) {
  .appdt_area::before {
    top: 55px;
  }

  .appdt_area .appdt_section {
    padding: 105px 0 24px 0;
  }
}

@media(max-width:991px) {
  .appdt_area::before {
    top: 48px;
  }

  .appdt_area .appdt_section {
    padding: 50px 24px 25px 24px;
  }

  .appdt_area .appdt_section .pic_block {
    order: 2;
  }

  .appdt_area .appdt_section .txt_block {
    order: 1;
  }

  .appdt_area .appdt_section .txt_block {
    padding: 100px 0 50px 0;
  }

  .appdt_area .app_pdc_section {
    padding: 50px 24px;
  }

  .appdt_area .app_pdc_block .pdc_item a {
    padding: 20px;
  }
}

/*news*/
.cp_news_area {
  width: 100%;
  padding: 0;
  position: relative;
  background: #F0F0F0 url(../image/media/news_bg.jpg) right top no-repeat;
  z-index: 1;
}

.cp_news_area .cp_news_section {
  width: 100%;
  max-width: 1620px;
  margin: auto;
  padding: 100px 24px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.sidepage_btn_area {
  padding: 0;
  position: relative;
}

.sidepage_btn_area .sidepage_block .sidepage_t {
  color: var(--darkgray);
  font-size: var(--txt_xxl);
  font-weight: 600;
  padding-bottom: 20px;
  border-bottom: var(--red) 4px solid;
}

.sidepage_btn_area .sidepage_block .spage_btn {
  width: 100%;
  background: none;
  color: #fff;
  background: #DB002D;
  padding: 10px;
  position: relative;
  display: none;
}

.sidepage_btn_area .sidepage_block .spage_btn::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.sidepage_btn_area .sidepage_block li {
  border-bottom: #9E9E9E 1px solid;
  list-style: none;
}

.sidepage_btn_area .sidepage_block li a {
  font-size: var(--txt_md);
  font-weight: 700;
  display: block;
  padding: 30px 0;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--black);
}

.sidepage_btn_area .sidepage_block li.active a {
  color: var(--red);
}

.news_info_block {
  padding: 0;
}

.news_info_block .news_info_item {
  width: 100%;
  margin: 0;
}

.news_info_block .news_item .news_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.news_info_block .news_item a {
  text-decoration: none;
}

.news_info_block .news_item .news_top .news_time {
  color: var(--gray);
  font-size: var(--txt_md);
  font-weight: 800;
}

.news_info_block .news_item .news_top .tag {
  color: var(--red);
  font-size: var(--txt_md);
  font-weight: 800;
}

.news_info_item .news_info h2 {
  color: var(--black);
  font-size: var(--txt_lg);
  font-weight: 800;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news_info_item .news_info .news_sm {
  color: var(--darkgray);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.news_info_item a:hover .news_info h2 {
  color: var(--red);
}

.page_block {
  width: 100%;
  margin-top: 50px;
}

.page_block .page_dt {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.page_block .page_dt span {
  font-size: var(--txt_sm);
  font-weight: 500;
  color: var(--blue);
}

.page_block .page_arrow {
  content: '';
  width: 25px;
  height: 25px;
  /* -webkit-mask: url(../image/icon/icon_arrow_.svg) center no-repeat;
  mask: url(../image/icon/icon_arrow_.svg) center no-repeat; */
  background: url(../image/icon/icon_arrow_.svg) center no-repeat;
  display: block;
  margin: 0 15px;
  transition: all 0.3s ease;
  object-fit: contain;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border: none;
}

.page_block .page_next {
  transform: scaleX(-1);
}

.page_all::before {
  content: "/";
  margin-right: 5px;
}

@media (min-width: 992px) {
  .sidepage_btn_area .sidepage_block ul {
    display: block !important;
  }

  .cp_news_area::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 34%;
    background: #DDDDDD;
    display: block;
    z-index: -1;
  }
}

@media(max-width: 1199px) {
  .cp_news_area .cp_news_section {
    padding: 80px 24px;
  }
}

@media(max-width: 1099px) {
  .cp_news_area .cp_news_section {
    padding: 65px 24px;
  }
}

@media(max-width: 991px) {
  .cp_news_area .cp_news_section {
    padding: 50px 24px;
  }

  .sidepage_btn_area .sidepage_block {
    position: relative;
  }

  .sidepage_btn_area .sidepage_block .spage_btn {
    display: block;
    width: 100%;
    border: none;
    background-color: var(--red);
    color: var(--white);
    font-size: var(--txt_md);
    font-weight: 500;
  }

  .sidepage_btn_area .sidepage_block ul {
    display: none;
    overflow: hidden;
  }

  .sidepage_btn_area .sidepage_block.open ul {
    display: block;
  }

  .sidepage_btn_area .sidepage_block ul {
    margin-bottom: 30px;
  }

  .sidepage_btn_area .sidepage_block li a {
    padding: 15px 0;
  }

  .sidepage_btn_area .sidepage_block .sidepage_t {
    display: none;
  }

  .page_block {
    margin-top: 30px;
  }
}

/*news_dt*/
.newsdt_area {
  width: 100%;
  background: #f0f0f0;
}

.newsdt_area .newsdt_section {
  position: relative;
  width: 100%;
  max-width: 1770px;
  margin: 0 0 0 auto;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 0 0 0 24px;
}

.newsdt_area .newsdt_section .txt_block {
  padding: 100px 24px;
}

.newsdt_area .newsdt_section .pic_block {
  padding: 0;
  position: sticky;
  top: 60px;
  height: 100%;
}

.newsdt_area .txt_block .title {
  font-size: var(--txt_xl);
  color: var(--blue);
  font-weight: 800;
  margin: 0 0 30px;
  line-height: 1.2;
}

.newsdt_area .txt_block time {
  font-size: var(--txt_lg);
  font-weight: 600;
  color: var(--white);
  padding: 10px 20px;
  background: var(--red);
  transform: translateY(50%);
  display: block;
  max-width: 150px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.newsdt_area .news_pic {
  margin: 0 0 60px;
  max-width: 500px;
}

.newsdt_area .txt_block p {
  font-size: var(--txt_md);
  color: var(--darkgray);
  line-height: 1.4;
  transition: all .3s ease;
}

.dt_area .bread_block {
  width: 100%;
  background: var(--white);
}

.dt_area .bread_block .breadcrumb {
  width: 100%;
  max-width: 1340px;
  padding: 10px 24px;
  margin: auto;
  font-size: var(--txt_sm);
  color: var(--darkgray);
  font-weight: 500;
  opacity: 0.7;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.dt_area .bread_block .breadcrumb li {
  position: relative;
  display: flex;
  font-size: var(--txt_sm);
}

.dt_area .bread_block .breadcrumb li a {
  color: var(--darkgray);
  display: inline;
  text-decoration: none;
}

@media(max-width:1199px) {
  .newsdt_area .newsdt_section .txt_block {
    padding: 80px 24px 80px 0;
  }
}

@media(max-width:1099px) {
  .newsdt_area .newsdt_section .txt_block {
    padding: 65px 24px 65px 0;
  }
}

@media(max-width:991px) {
  .newsdt_area .newsdt_section {
    padding: 0;
  }

  .newsdt_area .pic_block {
    display: none;
  }

  .newsdt_area .newsdt_section .txt_block {
    padding: 50px 24px;
  }
}

/*video*/
.video_area {
  width: 100%;
  padding: 0;
  position: relative;
  background: #f0f0f0;
  z-index: 1;
}

.video_area::before {
  content: '';
  width: 45%;
  height: 100%;
  position: absolute;
  background: #f0f0f0 url(../image/media/brochure_bg.jpg) left top no-repeat;
  background-size: cover;
  z-index: -1;
}

.video_area .video_section,
.catalog_area .catalog_section {
  width: 100%;
  max-width: 1620px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding: 200px 24px 100px 24px;
}

.video_area h1,
.catalog_area .catalog_section h1 {
  color: var(--darkgray);
  margin-bottom: 90px;
  font-size: var(--txt_xxl);
  font-weight: 700;
  transition: all .3s ease;
}

@media(min-width:991px) {

  .video_area .sidepage_btn,
  .catalog_area .sidepage_btn {
    margin-right: -12px;
  }

  .video_area .sidepage_btn_area .sidepage_block li,
  .catalog_area .sidepage_btn_area .sidepage_block li {
    border: none;
  }
}

.video_area .sidepage_btn li,
.catalog_area .sidepage_btn li {
  width: 100%;
  background: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.video_area .sidepage_btn li h2,
.catalog_area .sidepage_btn li h2 {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: left;
  color: var(--darkgray);
}

.video_area .sidepage_btn li.active,
.video_area .sidepage_btn li:hover,
.catalog_area .sidepage_btn li.active,
.catalog_area .sidepage_btn li:hover {
  padding: 0 25px;
  background: var(--red);
}

.video_area .sidepage_btn li.active h2,
.video_area .sidepage_btn li:hover h2,
.catalog_area .sidepage_btn li.active h2,
.catalog_area .sidepage_btn li:hover h2 {
  color: var(--white);
}

.video-container {
  width: 100%;
  aspect-ratio: 16/9;
}

.video-container iframe {
  width: 100%;
  height: 100%;
}

.video_info_block {
  padding: 0;
}

.video_info_block .video_info_item {
  width: 100%;
  margin: 0;
}

.video_info_block .video_info_item .video_item h3 {
  font-size: var(--txt_lg);
  font-weight: 700;
  line-height: 1;
  transition: all 0.3s ease;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 10px 0;
}

@media(max-width:1199px) {

  .video_area .video_section,
  .catalog_area .catalog_section {
    padding: 180px 24px 80px 24px;
  }

  .video_area h1 {
    margin-bottom: 50px;
  }
}

@media(max-width:1099px) {

  .video_area .video_section,
  .catalog_area .catalog_section {
    padding: 150px 24px 65px 24px;
  }
}

@media(max-width:991px) {

  .video_area .video_section,
  .catalog_area .catalog_section {
    padding: 150px 24px 65px 24px;
  }

  .video_area h1 {
    margin-bottom: 30px;
  }

  .video_area .sidepage_btn li.active,
  .video_area .sidepage_btn li:hover,
  .catalog_area .sidepage_btn li.active,
  .catalog_area .sidepage_btn li:hover {
    padding: 0;
    background: transparent;
  }

  .video_area .sidepage_btn li.active h2,
  .video_area .sidepage_btn li:hover h2,
  .catalog_area .sidepage_btn li.active h2,
  .catalog_area .sidepage_btn li:hover h2 {
    color: var(--red);
  }

  .video_area {
    background-size: cover;
  }

  .video_area::before {
    width: 100%;
  }
}

@media(max-width:575px) {

  .video_area .video_section,
  .catalog_area .catalog_section {
    padding: 100px 24px 50px 24px;
  }
}

/*catalog*/
.catalog_area {
  width: 100%;
  padding: 0;
  position: relative;
  background: url(../image/media/brochure_bg.jpg) left top no-repeat;
  z-index: 1;
}

.catalog_area .video_info_block {
  margin-top: 50px;
}

.catapage_block .page_dt {
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.catapage_block .page_dt span {
  font-size: var(--txt_lg);
  color: var(--darkgray);
  font-weight: 600;
}

.catapage_block .page_dt span.active {
  color: var(--red);
}

.catalog_area .slick-prev:before,
.catalog_area .slick-next:before {
  content: '';
  width: 50px;
  height: 50px;
  -webkit-mask: url(../image/icon/icon_arrow_.svg) center no-repeat;
  mask: url(../image/icon/icon_arrow_.svg) center no-repeat;
  background: var(--black);
  display: block;
  margin: 0 15px;
  transition: all 0.3s ease;
}

.catalog_area .slick-next {
  transform: scaleX(-1);
}

.catalog_area .slick-prev,
.catalog_area .slick-next {
  top: auto;
  bottom: 0;
}

.catalog_area .slick-prev {
  left: -150px;
  transform: none;
}

.catalog_area .slick-next {
  left: -25px;
}

.catalog_area .video_info_block .catalog_item {
  padding: 0 12px 0 0;
  box-sizing: border-box;
  height: 100%;
}

.catalog_area .video_info_block .catalog_item img {
  width: 100%;
  max-width: 100%;
}


.catalog_area .video_info_block .catalog_item h3 {
  position: absolute;
  color: var(--white);
  font-size: var(--txt_lg);
  line-height: 1;
  bottom: 32px;
  left: 32px;
  right: 32px;
  transition: all 0.3s ease;
}

.catalog_area .video_info_block .catalog_item a:hover h3 {
  top: 32px;
  bottom: auto;
}

.catalog_area .video_info_block .catalog_item a::after {
  content: "";
  width: 50%;
  margin: 0 auto;
  aspect-ratio: 1;
  display: block;
  -webkit-mask: url(../image/icon/icon_arrow_.svg) center no-repeat;
  mask: url(../image/icon/icon_arrow_.svg) center no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: #FFF;
  position: absolute;
  z-index: 9;
  pointer-events: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  opacity: 0;
  transition: all 0.3s ease;
}

.catalog_area .video_info_block .catalog_item a:hover::after {
  opacity: 1;
}

.catalog_area .video_info_block .catalog_item a {
  position: relative;
}

.catalog_area .video_info_block .catalog_item .pic::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(to bottom, rgb(136, 136, 136) 0%, rgb(136, 136, 136) 100%);
  opacity: 0.5;
}

.catalog_area .video_info_block .catalog_item a:hover .pic::after {
  opacity: 1;
  background: linear-gradient(to bottom, rgb(4, 28, 90) 0%, rgba(4, 28, 90, 0) 100%);
}

@media (max-width: 1199px) {
  .catalog_area .catalog_section h1 {
    margin-bottom: 50px;
  }
}


@media(max-width:991px) {
  .catalog_area {
    background-size: cover;
  }

  .catalog_area .video_info_block {
    margin-top: 0;
  }

  .catalog_area .catalog_section h1 {
    margin-bottom: 30px;
  }

  .catapage_block .page_dt {
    justify-content: center;
    padding-top: 20px;
  }

  .catalog_area .slick-prev,
  .catalog_area .slick-next {
    bottom: -30px;
  }

  .catalog_area .slick-next {
    left: auto;
    right: 0;
  }

  .catalog_area .slick-prev {
    left: 0;
  }

  .catalog_area .slick-prev:before,
  .catalog_area .slick-next:before {
    width: 35px;
    height: 35px;
  }

  .catapage_block .page_dt {
    padding-top: 12px;
  }
}

@media(max-width:575px) {

  .catalog_area .slick-prev:before,
  .catalog_area .slick-next:before {
    width: 30px;
    height: 30px;
  }

  .catalog_area .video_info_block .catalog_item {
    padding: 0;
  }
}

/*company*/
.company_area {
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.company_section_a,
.company_section_c {
  width: 100%;
  max-width: 1340px;
  margin: 100px auto;
}

.company_block {
  display: flex;
  align-items: center;
  width: 100%;
  margin: auto;
  padding: 0 24px;
}

.company_block .com_i {
  padding: 0;
}

.company_block .com_t {
  padding: 0 24px;
}

.company_block .com_t .txt_lg {
  width: 100%;
  text-align: right;
  color: var(--blue);
  font-size: 40px;
  font-weight: 700;
  display: flex;
  gap: 10px;
  line-height: 1.2;
  margin-bottom: 30px;
}

.company_block .com_t .txt_lg::before {
  content: "";
  height: 2px;
  flex: 1;
  min-width: 120px;
  margin-top: 30px;
  display: block;
  background: var(--blue);
}

.company_block .com_t .txt_sm {
  font-size: var(--txt_lg);
  color: var(--darkgray);
}

.company_section_b,
.company_section_d {
  width: 100%;
  margin: auto;
  background: #f0f0f0;
  padding: 100px 0;
}

.company_section_b .company_block {
  width: 100%;
  margin: 0 0 0 auto;
  max-width: 1580px;
  padding: 0;
  justify-content: flex-end;
}

.company_section_b .company_block .com_i {
  padding: 0;
}

.company_section_c .company_block {
  width: 100%;
  justify-content: center;
}

.company_section_d .company_block,
.company_section_e .company_block {
  width: 100%;
  max-width: 1340px;
  margin: auto;
}


.company_section_e .company_block {
  margin: 100px auto;
}

.company_section_e .company_block .com_i {
  margin-bottom: -100px;
  z-index: 2;
}

.company_section_e .company_block .com_t {
  margin-left: -50px;
  border: 2px solid var(--blue);
  background: var(--white);
  z-index: 1;
  padding: 30px 30px 30px 60px;
}

.company_section_e .company_block .com_t .txt_lg::before,
.company_section_g .company_block .com_t .txt_lg::before {
  display: none;
}


.company_section_f .company_block {
  width: 100%;
  justify-content: flex-end;
  margin: 100px auto;
}

.company_section_g {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(to top, #F0F0F0 0%, #fff 100%);
}

.company_area ol,
.company_area ul {
  padding: 0 2rem;
}

.company_area li {
  color: var(--black);
  font-size: var(--txt_lg);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  list-style: none;
}

.company_area ul li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #DE1D45;
  display: block;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
}

@media(min-width:991px) {
  .company_block .com_t {
    max-width: 700px;
  }
}

@media(max-width:1399px) {

  .company_section_a .company_block .com_t,
  .company_section_c .company_block .com_t,
  .company_section_g .company_block .com_t {
    padding-right: 0;
  }

  .company_section_d .company_block .com_t,
  .company_section_f .company_block .com_t {
    padding-left: 0;
  }

}

@media(max-width:1199px) {

  .company_section_a,
  .company_section_c {
    margin: 80px auto;
  }

  .company_section_b,
  .company_section_d {
    padding: 80px 0;
  }

  .company_section_e .company_block {
    margin: 80px auto;
  }

  .company_section_f .company_block {
    margin: 80px auto;
  }

  .company_section_g {
    padding: 80px 0;
  }

}

@media(max-width:1099px) {

  .company_section_a,
  .company_section_c {
    margin: 50px auto;
  }

  .company_section_b,
  .company_section_d {
    padding: 50px 0;
  }

  .company_section_e .company_block {
    margin: 50px auto;
  }

  .company_section_f .company_block {
    margin: 50px auto;
  }

  .company_section_g {
    padding: 50px 0;
  }

  .company_block .com_t .txt_lg {
    font-size: var(--txt_xl);
  }
}

@media(max-width:991px) {

  .company_section_a,
  .company_section_c {
    margin: 25px auto;
  }

  .company_section_b,
  .company_section_d {
    padding: 25px 0;
  }

  .company_section_e .company_block {
    margin: 25px auto;
  }

  .company_section_f .company_block {
    margin: 25px auto;
  }

  .company_section_g {
    padding: 25px 0;
  }

  .company_block .com_i {
    margin: 30px 0;
  }

  .company_block .com_t {
    padding: 0;
  }

  .company_section_b .company_block {
    padding: 0 24px;
  }

  .company_section_e .company_block .com_t {
    margin-left: 0;
    padding: 30px;
  }

  .company_section_e .company_block .com_i {
    margin-bottom: 0
  }

  .company_block .com_t .txt_lg {
    margin-bottom: 10px;
  }

  .company_block .com_t .txt_lg {
    text-align: start;
  }

  .company_block .com_t .txt_lg::before {
    display: none;
  }
}

/*Milestone/history*/
.history_area .history_section {
  width: 100%;
  margin: auto;
  padding: 100px 0 0 0;
}

.history_area .history_section .history_year {
  width: 100%;
  max-width: 1340px;
  margin: auto;
  padding: 0 24px 100px 24px;
}

.history_area .history_section .btn_block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  box-sizing: border-box;
}

.history_area .history_section .btn_block .year_btn {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--darkgray);
  position: relative;
  height: 150px;
}

.history_area .history_section .btn_block .year_btn::before {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  flex: 1;
  display: block;
  background: #DDDDDD;
}

.history_area .history_section .btn_block .year_btn::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #999999;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.history_area .history_section .btn_block .year_btn {
  color: var(--darkgray);
}

.history_year .btn_block .slick-slide.slick-current .year_btn {
  color: var(--blue);
}

.history_year .btn_block .slick-slide.slick-current .year_btn::after {
  background: var(--blue);
}

.history_area .history_info .list_block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.history_info .list_block .item .year {
  font-size: 6rem;
  font-weight: 700;
  color: #E2E2E2;
  line-height: 1;
  margin-bottom: -30px;
  word-break: break-word;
}

.history_info .list_block .item .description {
  width: 100%;
  max-width: 305px;
  font-size: var(--txt_lg);
  color: var(--darkgray);
  position: relative;
  margin: 0;
}

.history_info .list_block .slick-track {
  display: flex !important;
  align-items: stretch;
}

.history_info .list_block .slick-slide {
  position: relative;
  background: linear-gradient(to top, #F0F0F0 0%, #fff 100%);
  padding: 1.5% 20px;
  height: auto
}

.history_info .list_block .slick-slide .history_info .list_block .slick-slide>div {
  height: 100%;
}

.history_info .list_block .slick-slide .item {
  height: 100%;
}

.history_info .list_block .slick-slide:nth-child(even) {
  background: linear-gradient(to bottom, #F0F0F0 0%, #fff 100%);
}

.history_info .list_block .slick-slide.slick-current {
  background: var(--blue) url(../image/company/milestone_bg.png) top center no-repeat;
}

.history_info .list_block .slick-slide.slick-current .item .description {
  padding-top: 20px;
  color: var(--white);
}

.history_info .list_block .slick-slide.slick-current .item .year {
  margin-bottom: 0;
}

.history_area .slick-prev:before,
.history_area .slick-next:before {
  width: 50px;
  height: 50px;
  -webkit-mask: url(../image/icon/icon_arrow_.svg) center no-repeat;
  mask: url(../image/icon/icon_arrow_.svg) center no-repeat;
  background: var(--black);
  display: block;
  margin: 0 15px;
  transition: all 0.3s ease;
}

.history_area .slick-prev {
  top: 35%;
  left: 0;
  transform: none;
}

.history_area .slick-next {
  top: 55%;
  right: 0;
  transform: scale(-1);
}

@media(max-width:1199px) {
  .history_area .history_section .history_year {
    padding: 0 24px 80px 24px;
  }

  .history_area .history_section {
    padding: 80px 0 0 0;
  }

  .history_area .history_section .btn_block .year_btn {
    font-size: var(--txt_xl);
  }

  .history_info .list_block .item .year {
    font-size: var(--txt_xxl);
  }
}

@media(max-width:1099px) {
  .history_area .history_section .history_year {
    padding: 0 24px 65px 24px;
  }

  .history_area .history_section {
    padding: 65px 0 0 0;
  }
}

@media(max-width:991px) {
  .history_area .history_section .history_year {
    padding: 0 24px 50px 24px;
  }

  .history_area .history_section {
    padding: 50px 0 0 0;
  }

  .history_area .slick-prev:before,
  .history_area .slick-next:before {
    width: 40px;
    height: 40px;
  }

  .history_area .slick-next {
    top: 50%;
  }
}

@media(max-width:575px) {
  .history_area .history_section .history_year {
    padding: 0 24px;
  }
}

/*contact*/
.contact_area {
  position: relative;
}

.contact_area::before {
  content: '';
  display: block;
  height: 50px;
  width: 100%;
  background: var(--blue);
}

.contact_area .contact_section {
  width: 100%;
  max-width: 1340px;
  margin: 100px auto;
  overflow: hidden;
}

.contact_area .contact_a,
.contact_form_block {
  padding: 0 24px;
}

.contact_area .contact_a h1,
.contact_area .inquire_block h2 {
  font-size: var(--txt_xxl);
  color: var(--black);
  font-weight: 700;
  transition: all .3s ease;
}

.contact_area .company_name {
  font-size: var(--txt_lg);
  color: var(--red);
  font-weight: 700;
}


.contact_area .contact_section .contact_a ul {
  display: flex;
  flex-wrap: wrap;
}

.contact_area .contact_section .contact_a ul li {
  list-style: none;
  color: var(--white);
  font-size: var(--txt_md);
  margin: 0 5px;
}

.contact_area .contact_section .contact_a ul li a {
  text-decoration: none;
  color: var(--black);
}

.contact_area .contact_section .contact_a ul li::before {
  content: '';
  color: var(--white);
  font-size: var(--txt_md);
  background: #9ba0d6;
  display: inline-block;
  font-weight: 700;
  padding: 0 10px;
  margin: 0 10px;
}

.contact_area .contact_section .contact_a .address::before {
  content: 'ADD';
  margin: 0 5px 0 0;
}

.contact_area .contact_section .contact_a .tel::before {
  content: 'TEL';
}

.contact_area .contact_section .contact_a .fax::before {
  content: 'FAX';
}

.contact_area .inquire_block {
  padding: 0 24px;
  margin-bottom: 100px;
}

.contact_area .inquire_block .inquiry_table .title {
  padding: 20px;
  font-weight: 700;
  color: #fff;
  background: #5f6499;
}

.contact_area .inquire_block .inquiry_table table {
  width: 100%;
}

.contact_area .inquire_block .inquiry_table table tbody tr {
  border-bottom: #dddddd 1px solid;
}


.inquiry_table table tbody td {
  padding: 15px;
}

.inquiry_table table tbody td a {
  text-decoration: none;
  color: var(--black);
}

.inquiry_table .pic {
  width: 100%;
  max-width: 150px;
  height: auto;
  aspect-ratio: 1/1;
  border: #c4c4c4 1px solid;
  background: #fff;
}

.inquiry_table tbody tr:nth-child(even) {
  background: #e7e7eb;
}

.inquiry_table tbody td:nth-child(1) {
  border-right: none;
}

.inquiry_table tbody td:nth-child(2) {
  font-weight: 600;
  border-left: none;
}

.inquiry_table tbody td:nth-child(3) {
  border-left: #dddddd 1px solid;
  padding: 0 3px;
}

.inquiry_table .del {
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
  line-height: 1;
  text-align: center;
  padding: 0;
  background: none;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.inquiry_table button {
  border: none;
  background: transparent;
}

.inquiry_table .bi-x::before {
  font-size: 30px;
  color: var(--blue);
}

.contact_form_block {
  position: relative;
}

.contact_area .inquire_block h3 {
  font-size: var(--txt_lg);
  color: var(--black);
  margin: 0;
  transition: all .3s ease;
}

.contact_form_block .formBox .input_item.required label::before {
  content: '*';
  color: var(--red);
  display: block;
  position: absolute;
  left: 8%;
  right: 0;
}

.contact_form_block .notice {
  background: #9ba0d6;
  display: block;
  padding: 10px 20px;
  width: 100%;
}

.contact_form_block .notice p {
  font-size: var(--txt_md);
  text-align: center;
  color: var(--white);
  margin: 0;
  transition: all .3s ease;
}

.contact_form_block form {
  padding: 4%;
  background: var(--white);
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
}

.contact_form_block ul {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto 40px;
}

.contact_form_block ul li {
  list-style: none;
  display: flex;
  padding: 15px 0;
  margin: 0 0 10px 0;
  border-bottom: 1px solid rgb(221, 221, 221);
}

.contact_form_block label {
  font-size: var(--txt_md);
  color: var(--black);
  line-height: 1;
  min-width: 100px;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 0px 0px 0px 20px;
}

.contact_form_block .input_item select.selectControl,
.contact_form_block .input_item input.inputControl,
.contact_form_block .input_item textarea.textareaControl {
  font-size: var(--txt_sm);
  line-height: 1;
  flex-grow: 1;
  color: rgb(0, 0, 0);
  border-radius: 0px;
  background: transparent;
  border-style: solid;
  border-color: rgb(221, 221, 221);
  border-image: none;
  border-width: 0px 0px 0px 1px;
  padding: 15px;
  width: 100%;
}


.contact_form_block .input_item input:focus,
.contact_form_block .input_item textarea.textareaControl:focus-visible {
  box-shadow: var(--blue) 0px 0px 10px 0px;
  border-color: var(--blue);
  outline: none;
}

.contact_form_block .input_item img {
  max-width: 250px;
  margin-left: auto;
}

.contact_form_block ul li:nth-last-child(1) {
  border-bottom: none;
}

.pageBtnBox .send_btn,
.back_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  line-height: 0.7;
  color: var(--darkgray);
  max-width: 200px;
  height: 50px;
  font-weight: 600;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  padding: 0px 25px;
  background: transparent;
  border: 1px solid rgb(187, 187, 187);
  transition: all 0.3s ease;
  white-space: nowrap;
  z-index: 1;
}

.back_btn {
  text-decoration: none;
  margin: 60px 0 0 0;
}

.pageBtnBox .send_btn::before,
.back_btn::before {
  content: "";
  width: 24px;
  height: 5px;
  display: block;
  mask: url(../image/icon/icon_more.svg) center center no-repeat;
  background: var(--darkgray);
  margin: 0 0 0 12px;
  transition: 0.3s;
  order: 2;
}

.back_btn::before {
  transform: scaleX(-1);
  order: unset;
  margin: 0 12px 0 0;
}

.pageBtnBox .send_btn:hover,
.back_btn:hover {
  color: rgb(255, 255, 255);
  border-color: rgb(219, 0, 45);
}

.pageBtnBox .send_btn::after,
.back_btn::after {
  content: "";
  position: absolute;
  width: 0px;
  left: 0px;
  top: 0px;
  bottom: 0px;
  z-index: -1;
  background: rgb(219, 0, 45);
  transition: 0.3s;
}

.pageBtnBox .send_btn:hover::after,
.back_btn:hover::after {
  width: 100%;
}

.pageBtnBox .send_btn:hover::before,
.back_btn:hover::before {
  background: var(--white);
}

.contact_area .mapBox {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.contact_area .mapBox::before {
  content: '';
  position: absolute;
  top: 0;
  height: 30%;
  left: 0;
  width: 100%;
  z-index: 9;
  pointer-events: none;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}

.contact_area iframe {
  width: 100%;
  height: 690px;
}

@media(max-width:1399px) {
  .contact_form_block .formBox .input_item.required label::before {
    left: 6%;
  }
}

@media(max-width:1199px) {
  .contact_area .contact_section {
    margin: 80px auto;
  }

  .contact_area .inquire_block {
    margin-bottom: 80px;
  }
}

@media(max-width:1099px) {
  .contact_area .contact_section {
    margin: 65px auto;
  }

  .contact_area .inquire_block {
    margin-bottom: 65px;
  }

  .contact_area .inquire_block .inquiry_table .title {
    padding: 10px 20px;
  }

  .inquiry_table .pic {
    width: 150px;
  }
}

@media(max-width:991px) {
  .contact_area .contact_section {
    margin: 50px auto;
  }

  .contact_area .inquire_block {
    margin-bottom: 50px;
  }

  .contact_area .contact_section .input_item {
    flex-direction: column;
  }

  .contact_area .contact_section .contact_a ul li {
    margin: 10px 5px;
  }

  .contact_area .contact_section .contact_a ul li::before {
    margin: 0 10px 0 0;
  }

  .inquiry_table table tbody td {
    padding: 10px;
  }

  .inquiry_table .pic {
    width: 100px;
  }

  .pageBtnBox .send_btn,
  .back_btn {
    font-size: 14px;
    max-width: 180px;
    padding: 0 10px;
  }

  .contact_form_block .input_item input.inputControl,
  .contact_form_block .input_item textarea.textareaControl {
    margin-top: 15px;
  }
}

@media(max-width:575px) {
  .inquiry_table table tbody td {
    padding: 5px;
  }

  .inquiry_table .pic {
    width: 80px;
  }

  .contact_form_block .formBox .input_item.required label::before {
    left: 40px;
  }

  .contact_area .inquire_block h3 {
    font-size: 16px;
  }
}

@media(max-width:390px) {
  .inquiry_table .pic {
    width: 50px;
  }

}

/*privacy*/
.privacy_area {
  background: transparent;
}

.privacy_area .privacy_block {
  width: 100%;
  max-width: 1340px;
  margin: auto;
  padding: 100px 24px;
}

.privacy_area .privacy_block .privacy_info {
  width: 100%;
  margin: auto;
  padding: 100px 0 0 0;
}

.privacy_area .privacy_block .brand {
  font-size: var(--txt_lg);
  color: var(--red);
  font-weight: 700;
}

.privacy_area .privacy_block h1 {
  font-size: var(--txt_xxl);
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  margin: 0 0 20px;
  transition: all .3s ease;
}

.privacy_area .privacy_block p {
  margin: 0 auto;
  color: var(--darkgray);
  font-size: var(--txt_lg);
  line-height: 1.45;
  transition: all .3s ease;
}

@media(max-width:1199px) {
  .privacy_area .privacy_block {
    padding: 80px 24px;
  }
}

@media(max-width:1099px) {
  .privacy_area .privacy_block {
    padding: 65px 24px;
  }
}

@media(max-width:991px) {
  .privacy_area .privacy_block {
    padding: 50px 24px;
  }
}

/*404*/
.xpage_area {
  width: 100%;
  background: transparent;
}

.xpage_area .privacy_block {
  width: 100%;
  max-width: 1340px;
  margin: auto;
  min-height: 90vh;
  min-height: 90dvh;
}

.xpage_info {
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.xpage_area .xpage_info h1 {
  font-size: 150px;
  color: var(--red);
  font-weight: 800;
  transition: all .3s ease;
}

.xpage_area .xpage_info p {
  font-size: var(--txt_lg);
  font-weight: 500;
  color: var(--gray);
  transition: all .3s ease;
}

@media(max-width:1299px) {
  .xpage_area .xpage_info h1 {
    font-size: 140px;
  }
}

@media(max-width:1099px) {
  .xpage_area .xpage_info h1 {
    font-size: 120px;
  }
}

@media(max-width:991px) {
  .xpage_area .xpage_info h1 {
    font-size: 100px;
  }

  .back_btn {
    margin: 30px 0 0 0;
  }
}

/*submit*/
.submit_area {
  width: 100%;
  background: transparent;
}

.submit_area .submit_block {
  width: 100%;
  max-width: 1340px;
  margin: auto;
  min-height: 90vh;
  min-height: 90dvh;
}

.submit_info {
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.submit_area .submit_info h1 {
  font-size: 100px;
  color: var(--blue);
  font-weight: 800;
  transition: all .3s ease;
}

.submit_area .submit_info p {
  font-size: var(--txt_lg);
  color: var(--gray);
  font-weight: 500;
  transition: all .3s ease;
}

@media(max-width:1299px) {
  .submit_area .submit_info h1 {
    font-size: 80px;
  }
}

@media(max-width:1099px) {
  .submit_area .submit_info h1 {
    font-size: 70px;
  }
}

@media(max-width:991px) {
  .submit_area .submit_info h1 {
    font-size: 50px;
  }
}

/*cookie*/
.privacyBox {
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: var(--black);
  color: var(--gray);
  width: 100%;
  padding-top: 1em;
  padding: 30px 24px;
  z-index: 999;
  text-align: left;
  transition: all 0.3s linear;
}

.privacyBox .cookie_block {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

.privacyBox:hover,
.privacyBox:active {
  padding: 40px 24px;
  background-color: var(--red);
  color: var(--white);
}

.privacyBox p {
  margin-bottom: 0;
  font-size: var(--txt_sm);
}

.privacyBox p a {
  color: var(--gray);
}

.privacyBox:hover a {
  color: var(--white);
}

.privacyBox .closePrivacy {
  border-top: 1px solid var(--darkgray);
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  background-color: transparent;
  color: var(--white);
  padding: 0.5em;
  display: block;
  margin-top: 1em;
  text-align: center;
  font-size: 0.9em;
}

.privacyBox:hover .closePrivacy,
.privacyBox:active .closePrivacy {
  border-top: 1px solid white;
  color: #ff0000;
  background-color: white;
}