.advantageArea .advantageList .Img a, .advantageArea .advantageList .Img, .catalogArea .catalogList .Img img, .catalogArea .tel a::before, .bannerArea .arrowBox .arrow span, .bannerArea .arrowBox .arrow::before, .bannerArea .arrowBox .arrow::after, .bannerArea .arrowBox .arrow, .bannerArea .catalogListBox .Img img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

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

@keyframes bannerTxtAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes bannerScrollAnimation {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes bannerScrollAnimation {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes translateY {
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes translateY {
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes translateX {
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes translateX {
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.popWin {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  width: 100%;
  height: 100vh;
  font-size: 15px;
  line-height: 1.8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.popWin .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.popWin .inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 700px;
  max-width: 90%;
  max-height: 85vh;
  opacity: 0;
  background-color: #fff;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.popWin .popContent {
  max-height: 85vh;
  overflow-y: auto;
}
.popWin img {
  display: block;
  max-width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.popWin .Txt {
  padding: 30px;
}
.popWin .Txt .popTitle {
  font-size: 25px;
  margin-bottom: 25px;
}
.popWin .close {
  position: absolute;
  right: -23px;
  top: -23px;
  z-index: 1;
  width: 46px;
  height: 46px;
  background-color: rgba(0, 0, 0, 0.7);
  /* background-color: #fff; */
  border-radius: 50%;
}
.popWin .close::before, .popWin .close::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 23px;
  width: 25px;
  height: 1px;
  background-color: #bca480;
  /* border-radius:  50%; */
}
.popWin .close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popWin.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popWin.show .mask,
.popWin.show .inner {
  opacity: 1;
}
.popWin .close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (max-width: 1200px) {
  .popWin .close {
    right: 0;
    top: 0;
    border-radius: 0;
  }
  .popWin .popContent {
    max-height: calc(100vh - 150px);
  }
}

.outerWrap {
  padding-top: 0;
}
@media (max-width: 1200px) {
  .outerWrap {
    padding-top: 60px;
  }
}

header .wrap {
  position: relative;
}
header .wrap::before {
  width: 100%;
}
header .wrap::after {
  width: calc(100% - 60px);
  height: 0;
}

.mainArea {
  padding: 0;
}
.mainArea .wrap {
  max-width: 1380px;
}

.titleBox .titleTw {
  color: #103292;
  font-size: 28px;
  line-height: initial;
}

.bannerArea .bannerVideoBox {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bannerArea .bannerVideoBox.playing {
  opacity: 1;
  pointer-events: auto;
  z-index: 199;
}
.bannerArea .bannerVideoBox iframe {
  width: 102% !important;
  height: 102% !important;
  margin: -1% 0 0 -1% !important;
}
.bannerArea .bannerVideoBtn {
  position: absolute;
  bottom: 180px;
  left: 140px;
  z-index: 200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 80px;
}
@media (max-width: 1440px) {
  .bannerArea .bannerVideoBtn {
    left: 100px;
    bottom: 90px;
  }
}
@media (max-width: 959px) {
  .bannerArea .bannerVideoBtn {
    left: 10px;
    bottom: auto;
    top: 15%;
  }
}
.bannerArea .bannerVideoBtn p {
  width: 100%;
  padding-bottom: 10px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
}
@media (max-width: 480px) {
  .bannerArea .bannerVideoBtn p {
    display: none;
  }
}
.bannerArea .bannerVideoBtn .videoBtn {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
  color: #ddd;
}
.bannerArea .bannerVideoBtn .videoBtn.videoMute {
  font-size: 16px;
}
.bannerArea .bannerVideoBtn .videoBtn.videoMute.hide {
  opacity: 0;
  pointer-events: auto;
}
.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerBox.bannerHide {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .bannerArea .bannerBox.noMoreInfo .upperBox .leftBox {
    display: none;
  }
  .bannerArea .bannerBox.noMoreInfo .upperBox .rightBox {
    width: 100%;
  }
}
@media (min-width: 960px) and (max-width: 1200px) {
  .bannerArea .bannerBox.noMoreInfo .slick-dots {
    padding: 0 150px;
  }
}
@media (max-width: 959px) {
  .bannerArea .bannerBox.noMoreInfo .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 130px 0 10px;
  }
  .bannerArea .bannerBox.noMoreInfo .scrollDown {
    left: initial;
    right: 10px;
  }
}
.bannerArea .bannerBox.noUpperLeft .upperBox .leftBox {
  display: none;
}
.bannerArea .bannerBox.noUpperLeft .upperBox .rightBox {
  width: 100%;
}
.bannerArea .bannerBox.noUpperLeft .slick-dots {
  padding: 0 150px;
}
@media (max-width: 959px) {
  .bannerArea .bannerBox.noUpperLeft .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 130px 0 10px;
  }
  .bannerArea .bannerBox.noUpperLeft .scrollDown {
    left: initial;
    right: 10px;
  }
}
.bannerArea .bannerListBox {
  position: relative;
}
@media (min-width: 960px) {
  .bannerArea .bannerListBox .arrowBox {
    display: none;
  }
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
.bannerArea .bannerList:not(.slick-slider) .bannerItem:not(:first-child) {
  display: none;
}
.bannerArea .bannerList:not(.slick-slider) .bannerItem .Img img {
  aspect-ratio: 1/0.5;
}
@media (max-width: 640px) {
  .bannerArea .bannerList:not(.slick-slider) .bannerItem .Img img {
    aspect-ratio: 1/0.859375;
  }
}
.bannerArea .bannerItem .Txt {
  max-width: 1380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 203px 30px 85px;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 1200px) {
  .bannerArea .bannerItem .Txt {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 55px 30px 85px;
  }
}
@media (max-width: 959px) {
  .bannerArea .bannerItem .Txt {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 50px 60px;
  }
}
@media (max-width: 767px) {
  .bannerArea .bannerItem .Txt {
    display: none;
  }
}
.bannerArea .bannerItem .Txt .textBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 300px;
}
@media (max-width: 959px) {
  .bannerArea .bannerItem .Txt .textBox {
    text-align: center;
  }
}
.bannerArea .bannerItem .Txt .title {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.8px;
  opacity: 0;
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 20px;
  }
}
@media (max-width: 400px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 16px;
  }
}
@media (max-width: 370px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 14px;
  }
}
.bannerArea .bannerItem .Txt .subtitle {
  display: block;
  color: #fff;
  font-size: 43px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.6px;
  margin-top: 10px;
  opacity: 0;
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 33px;
  }
}
@media (max-width: 400px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 28px;
  }
}
@media (max-width: 370px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 20px;
  }
}
.bannerArea .bannerItem .Txt .text {
  position: relative;
  color: #fff;
  display: block;
  font-family: "Inter";
  line-height: 1.5;
  letter-spacing: 0.2px;
  padding-top: 20px;
  margin-top: 20px;
  opacity: 0;
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt .text {
    font-size: 14px;
    padding-top: 15px;
    margin-top: 15px;
  }
}
.bannerArea .bannerItem .Txt .text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 1px;
  background-color: #fff;
}
@media (max-width: 959px) {
  .bannerArea .bannerItem .Txt .text::before {
    left: calc(50% - 25px);
  }
}
.bannerArea .bannerItem .Txt .number {
  position: absolute;
  top: -60px;
  left: -120px;
  color: rgba(201, 201, 201, 0.1);
  font-size: 130px;
  font-weight: 700;
  line-height: 1;
  z-index: -1;
}
@media (max-width: 959px) {
  .bannerArea .bannerItem .Txt .number {
    display: none;
  }
}
.bannerArea .bannerItem .Txt .btn1 {
  margin: 20px 0 0 -5px;
  opacity: 0;
}
.bannerArea .bannerItem .Txt .btn1 a {
  min-width: 230px;
}
@media (min-width: 1201px) {
  .bannerArea .bannerItem .Txt .btn1 a:hover {
    border-color: #735de6;
    background-color: #735de6;
  }
}
@media (max-width: 959px) {
  .bannerArea .bannerItem .Txt .btn1 {
    display: none;
  }
}
.bannerArea .bannerItem .Img {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerItem.slick-current .Txt .title {
  -webkit-animation: bannerTxtAnimation 0.8s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .subtitle {
  -webkit-animation: bannerTxtAnimation 0.8s 0.4s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s 0.4s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .text {
  -webkit-animation: bannerTxtAnimation 0.8s 0.8s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s 0.8s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .btn1 {
  -webkit-animation: bannerTxtAnimation 0.8s 1.2s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s 1.2s ease-in-out forwards;
}
@media (min-width: 960px) {
  .bannerArea .bannerLink {
    display: none;
  }
}
.bannerArea .slick-dots {
  bottom: 20px;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-animation: translateY 0.8s linear forwards;
          animation: translateY 0.8s linear forwards;
  opacity: 0;
}
.bannerArea .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 4px;
}
.bannerArea .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
}
.bannerArea .slick-dots li button::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: 1;
}
.bannerArea .slick-dots li.slick-active button:before {
  background-color: #fff;
  opacity: 1;
}
@media (min-width: 960px) {
  .bannerArea .upperBox {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 1650px;
    width: 100%;
    pointer-events: none;
    padding-right: 30px;
    z-index: 1;
  }
}
.bannerArea .upperBox .leftBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 43.2098765432%;
  pointer-events: auto;
}
@media (max-width: 1200px) {
  .bannerArea .upperBox .leftBox {
    width: 40%;
  }
}
@media (max-width: 959px) {
  .bannerArea .upperBox .leftBox {
    width: 100%;
  }
}
.bannerArea .upperBox .rightBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 56.7901234568%;
}
@media (max-width: 1200px) {
  .bannerArea .upperBox .rightBox {
    width: 60%;
  }
}
@media (max-width: 959px) {
  .bannerArea .upperBox .rightBox .arrowBox {
    display: none;
  }
}
.bannerArea .moreInfoBox {
  position: relative;
  height: 62.5%;
  width: 100%;
  overflow: hidden;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-animation: translateX 0.8s linear forwards;
          animation: translateX 0.8s linear forwards;
  opacity: 0;
}
@media (max-width: 1200px) {
  .bannerArea .moreInfoBox {
    height: 100%;
  }
}
@media (min-width: 640px) and (max-width: 959px) {
  .bannerArea .moreInfoBox {
    max-height: 500px;
  }
}
@media (min-width: 1201px) {
  .bannerArea .moreInfoBox.heightFull {
    height: 100%;
  }
}
.bannerArea .moreInfoBox .Img {
  height: 100%;
}
.bannerArea .moreInfoBox .Img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bannerArea .moreInfoBox .Txt {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 57.1428571429%;
  height: 70.8333333333%;
  padding-right: 60px;
}
@media (max-width: 1440px) {
  .bannerArea .moreInfoBox .Txt {
    padding-right: 40px;
  }
}
@media (max-width: 1366px) {
  .bannerArea .moreInfoBox .Txt {
    width: 65%;
  }
}
@media (max-width: 1200px) {
  .bannerArea .moreInfoBox .Txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    padding: 60px;
  }
}
@media (max-width: 959px) {
  .bannerArea .moreInfoBox .Txt {
    padding: 40px 30px;
  }
}
.bannerArea .moreInfoBox em.subtitle {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.4px;
  line-height: 1.2;
  margin-top: -4px;
}
@media (max-width: 1600px) {
  .bannerArea .moreInfoBox em.subtitle {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .bannerArea .moreInfoBox em.subtitle {
    font-size: 14px;
  }
}
.bannerArea .moreInfoBox h1.title {
  color: #fff;
  font-size: 70px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1;
  margin-top: 10px;
}
@media (max-width: 1600px) {
  .bannerArea .moreInfoBox h1.title {
    font-size: 50px;
  }
}
@media (max-width: 1200px) {
  .bannerArea .moreInfoBox h1.title {
    font-size: 43px;
  }
}
@media (max-width: 480px) {
  .bannerArea .moreInfoBox h1.title {
    font-size: 33px;
  }
}
.bannerArea .moreInfoBox .text {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.2;
  margin-top: 14px;
}
@media (max-width: 1600px) {
  .bannerArea .moreInfoBox .text {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .bannerArea .moreInfoBox .text {
    font-size: 20px;
  }
}
.bannerArea .catalogBox {
  width: 100%;
  height: 37.5%;
  background-color: #03154b;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-animation: translateX 0.8s linear forwards;
          animation: translateX 0.8s linear forwards;
  opacity: 0;
}
@media (max-width: 1200px) {
  .bannerArea .catalogBox {
    display: none;
  }
}
.bannerArea .catalogBox .catalogListBox,
.bannerArea .catalogBox .catalogList,
.bannerArea .catalogBox .slick-list,
.bannerArea .catalogBox .slick-track,
.bannerArea .catalogBox .catalogItem,
.bannerArea .catalogBox .item {
  height: 100%;
}
.bannerArea .catalogListBox {
  width: calc(57.1428571429% + 10px);
  margin-left: auto;
}
.bannerArea .catalogListBox .catalogList:not(.slick-slider) .bannerItem:not(:first-child) {
  display: none;
}
.bannerArea .catalogListBox .catalogList:not(.slick-slider) .bannerItem .Img img {
  aspect-ratio: 1/0.5;
}
@media (max-width: 640px) {
  .bannerArea .catalogListBox .catalogList:not(.slick-slider) .bannerItem .Img img {
    aspect-ratio: 1/0.859375;
  }
}
.bannerArea .catalogListBox .catalogItem {
  padding-left: 10px;
}
.bannerArea .catalogListBox .item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.bannerArea .catalogListBox .link {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media (min-width: 1201px) {
  .bannerArea .catalogListBox .link:hover + .Img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.bannerArea .catalogListBox .Img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 57.5%;
}
@media (max-width: 1440px) {
  .bannerArea .catalogListBox .Img {
    max-width: 50%;
  }
}
.bannerArea .catalogListBox .Txt {
  position: relative;
  width: 50%;
  padding-top: 56px;
  padding-right: 30px;
}
@media (max-width: 1440px) {
  .bannerArea .catalogListBox .Txt {
    width: 55%;
  }
}
.bannerArea .catalogListBox .title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.8px;
}
@media (max-width: 1440px) {
  .bannerArea .catalogListBox .title {
    font-size: 20px;
  }
}
.bannerArea .catalogListBox .subtitle {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.6px;
  margin-top: 8px;
}
@media (max-width: 1440px) {
  .bannerArea .catalogListBox .subtitle {
    font-size: 13px;
  }
}
.bannerArea .catalogListBox .model {
  position: relative;
  color: #fff;
  display: block;
  font-size: 13px;
  font-family: "Inter";
  line-height: 1.5;
  letter-spacing: 0.2px;
  padding-top: 18px;
  margin-top: 23px;
}
.bannerArea .catalogListBox .model::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #fff;
}
@media (max-width: 1440px) {
  .bannerArea .catalogListBox .model {
    padding-top: 12px;
    margin-top: 12px;
  }
}
.bannerArea .catalogListBox .number {
  position: absolute;
  top: -80px;
  left: -60px;
  color: rgba(201, 201, 201, 0.1);
  font-size: 130px;
  font-weight: 700;
  line-height: 1;
  z-index: -1;
}
@media (max-width: 1600px) {
  .bannerArea .catalogListBox .number {
    top: -60px;
    left: -50px;
    font-size: 100px;
  }
}
@media (max-width: 1440px) {
  .bannerArea .catalogListBox .number {
    top: -40px;
    left: -40px;
  }
}
.bannerArea .arrowBox {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  -webkit-animation: translateX 0.8s linear forwards;
          animation: translateX 0.8s linear forwards;
  pointer-events: none;
  opacity: 0;
}
@media (max-width: 959px) {
  .bannerArea .arrowBox {
    position: absolute;
    top: calc(50% - 20px);
    left: 10px;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: calc(100% - 20px);
  }
}
.bannerArea .arrowBox .arrow {
  position: relative;
  width: 120px;
  height: 120px;
  pointer-events: auto;
  cursor: pointer;
}
@media (max-width: 1440px) {
  .bannerArea .arrowBox .arrow {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 959px) {
  .bannerArea .arrowBox .arrow {
    width: 40px;
    height: 40px;
  }
}
.bannerArea .arrowBox .arrow::before, .bannerArea .arrowBox .arrow::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  z-index: -1;
}
.bannerArea .arrowBox .arrow::before {
  left: 0;
  width: 100%;
  background-color: #282828;
}
.bannerArea .arrowBox .arrow::after {
  width: 0;
  background-color: #735de6;
}
.bannerArea .arrowBox .arrow span {
  position: absolute;
  top: calc(50% - 7.5px);
  left: calc(50% - 14.5px);
  width: 29px;
  height: 15px;
}
@media (max-width: 959px) {
  .bannerArea .arrowBox .arrow span {
    top: calc(50% - 4.5px);
    left: calc(50% - 9px);
    width: 18px;
    height: 9px;
  }
}
.bannerArea .arrowBox .arrowPrev::after {
  right: 0;
}
.bannerArea .arrowBox .arrowPrev span {
  background: url(../images/icon/arrow_left.png) no-repeat center/cover;
}
@media (min-width: 1201px) {
  .bannerArea .arrowBox .arrowPrev:hover span {
    -webkit-animation: arrowLeft 1s ease-in-out infinite;
            animation: arrowLeft 1s ease-in-out infinite;
  }
  .bannerArea .arrowBox .arrowPrev:hover::after {
    width: 100%;
  }
}
.bannerArea .arrowBox .arrowNext::after {
  left: 0;
}
.bannerArea .arrowBox .arrowNext span {
  background: url(../images/icon/arrow_right.png) no-repeat center/cover;
}
@media (min-width: 1201px) {
  .bannerArea .arrowBox .arrowNext:hover span {
    -webkit-animation: arrowRight 1s ease-in-out infinite;
            animation: arrowRight 1s ease-in-out infinite;
  }
  .bannerArea .arrowBox .arrowNext:hover::after {
    width: 100%;
  }
}
.bannerArea .scrollDown {
  position: relative;
  display: block;
  width: 120px;
  pointer-events: auto;
  cursor: pointer;
  padding-bottom: 20px;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-animation: translateY 0.8s linear forwards;
          animation: translateY 0.8s linear forwards;
  opacity: 0;
}
@media (max-width: 959px) {
  .bannerArea .scrollDown {
    position: absolute;
    bottom: 0;
    left: calc(50% - 60px);
    z-index: 1;
  }
}
.bannerArea .scrollDown span {
  display: block;
}
.bannerArea .scrollDown span.text {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
}
.bannerArea .scrollDown span.line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #fff;
  overflow: hidden;
  z-index: 1;
}
.bannerArea .scrollDown span.line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 6px;
  -webkit-animation: bannerScrollAnimation 2.5s linear infinite forwards;
          animation: bannerScrollAnimation 2.5s linear infinite forwards;
  background-color: #735de6;
  z-index: 2;
}

.aboutArea {
  background-color: #e2e8fb;
  padding: 90px 0 127px;
}
@media (max-width: 1200px) {
  .aboutArea {
    padding: 47px 0 36px;
  }
}
.aboutArea .wrap {
  position: relative;
}
.aboutArea .titleBox {
  margin-bottom: 0;
}
.aboutArea .Txt {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  padding-top: 42px;
  margin-top: 42px;
}
@media (max-width: 1200px) {
  .aboutArea .Txt {
    padding-top: 30px;
    margin-top: 29px;
  }
}
.aboutArea .Txt .contentBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.aboutArea .Txt .left {
  width: 530px;
  padding-right: 20px;
}
@media (max-width: 1200px) {
  .aboutArea .Txt .left {
    width: 100%;
    padding-right: 0;
  }
}
.aboutArea .Txt .right {
  width: 580px;
  padding: 55px 0 0 18px;
}
@media (max-width: 1200px) {
  .aboutArea .Txt .right {
    width: 100%;
    padding: 34px 0 0;
  }
}
.aboutArea .Txt .title {
  color: #051d65;
  font-size: 34px;
  font-weight: 700;
  font-family: "Inter";
  letter-spacing: 0.2px;
}
@media (max-width: 1200px) {
  .aboutArea .Txt .title {
    font-size: 24px;
  }
}
.aboutArea .Txt .subtitle {
  color: #333333;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.5px;
  padding-top: 22px;
}
@media (max-width: 1200px) {
  .aboutArea .Txt .subtitle {
    font-size: 18px;
    padding-top: 10px;
  }
}
.aboutArea .Txt .text {
  color: #333333;
  line-height: 1.7;
  letter-spacing: 0.95px;
}
.aboutArea .btn1 a {
  min-width: 200px;
  color: #000;
}
@media (min-width: 1201px) {
  .aboutArea .btn1 {
    position: absolute;
    top: 56px;
    right: 10px;
    z-index: 1;
  }
}
@media (max-width: 1200px) {
  .aboutArea .btn1 {
    padding-top: 20px;
  }
  .aboutArea .btn1 a {
    margin-left: 0;
  }
}

.catalogArea {
  background-color: #f9faff;
  padding: 96px 0 70px;
}
@media (max-width: 1200px) {
  .catalogArea {
    padding: 55px 0 60px;
  }
}
.catalogArea .wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.catalogArea .leftBox {
  width: 50%;
}
.catalogArea .leftBox .catalogList {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
.catalogArea .leftBox .item {
  padding: 24px 30px 110px;
}
@media (max-width: 1200px) {
  .catalogArea .leftBox .item {
    padding: 7px 12px 40px;
  }
}
.catalogArea .leftBox .Img {
  padding-top: 40px;
}
@media (max-width: 1200px) {
  .catalogArea .leftBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .catalogArea .leftBox .catalogList {
    width: 50%;
    border-top: none;
  }
}
@media (max-width: 959px) {
  .catalogArea .leftBox .catalogList {
    display: none;
  }
}
.catalogArea .rightBox {
  width: 50%;
  border-left: 1px solid rgba(0, 0, 0, 0.5);
}
@media (max-width: 1200px) {
  .catalogArea .rightBox {
    width: 100%;
    border: none;
  }
}
.catalogArea .rightBox .catalogList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 480px) {
  .catalogArea .rightBox .catalogItem {
    width: 50%;
  }
}
.catalogArea .rightBox .catalogItem:first-child {
  width: 100%;
}
@media (min-width: 1201px) {
  .catalogArea .rightBox .catalogItem:nth-child(2), .catalogArea .rightBox .catalogItem:nth-child(5), .catalogArea .rightBox .catalogItem:nth-child(6) {
    background-color: #edf1fe;
  }
  .catalogArea .rightBox .catalogItem:nth-child(5) {
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(0, 0, 0, 0.5);
  }
  .catalogArea .rightBox .catalogItem:nth-child(6) {
    border-top: 1px solid rgba(0, 0, 0, 0.5);
  }
}
@media (min-width: 960px) {
  .catalogArea .rightBox .catalogItem:first-child {
    display: none;
  }
}
@media (min-width: 960px) and (max-width: 1200px) {
  .catalogArea .rightBox .catalogItem {
    width: 33.3333333333%;
  }
  .catalogArea .rightBox .catalogItem:nth-child(2), .catalogArea .rightBox .catalogItem:nth-child(4), .catalogArea .rightBox .catalogItem:nth-child(6) {
    background-color: #edf1fe;
  }
  .catalogArea .rightBox .catalogItem:not(:nth-child(3n+1)) {
    border-right: 1px solid rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 1200px) {
  .catalogArea .rightBox .catalogItem {
    border-top: 1px solid rgba(0, 0, 0, 0.5);
  }
}
@media (min-width: 480px) and (max-width: 959px) {
  .catalogArea .rightBox .catalogItem:nth-child(2), .catalogArea .rightBox .catalogItem:nth-child(5), .catalogArea .rightBox .catalogItem:nth-child(6) {
    background-color: #edf1fe;
  }
  .catalogArea .rightBox .catalogItem:nth-child(even) {
    border-right: 1px solid rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 479px) {
  .catalogArea .rightBox .catalogItem:nth-child(even) {
    background-color: #edf1fe;
  }
}
.catalogArea .rightBox .item {
  height: 100%;
  padding: 32px 32px 40px 32px;
}
@media (max-width: 1200px) {
  .catalogArea .rightBox .item {
    padding: 7px 12px 40px;
  }
}
.catalogArea .rightBox .Img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 10px;
}
@media (min-width: 1201px) {
  .catalogArea .rightBox .Img {
    max-height: 220px;
    overflow: hidden;
  }
  .catalogArea .rightBox .Img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.catalogArea .titleBox {
  width: 100%;
  padding: 0 30px 63px 0;
  margin-bottom: 0;
}
.catalogArea .titleBox .titleEn {
  letter-spacing: 0.8px;
}
@media (min-width: 960px) and (max-width: 1200px) {
  .catalogArea .titleBox {
    width: 50%;
    border-right: 1px solid rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 959px) {
  .catalogArea .titleBox {
    padding: 0 0 30px 0;
  }
}
.catalogArea .moreInfoBox {
  color: #333333;
  font-size: 16px;
  letter-spacing: 1px;
  padding-top: 24px;
}
.catalogArea .tel {
  padding-top: 12px;
}
.catalogArea .tel a {
  position: relative;
  display: block;
  color: #103292;
  font-size: 25px;
  font-weight: 800;
  font-family: "Inter";
  padding-bottom: 2px;
}
.catalogArea .tel a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
}
@media (min-width: 1201px) {
  .catalogArea .tel a:hover::before {
    width: 100%;
  }
}
.catalogArea .btnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px;
  padding-top: 27px;
}
@media (max-width: 1200px) {
  .catalogArea .btnBox {
    padding-top: 17px;
  }
  .catalogArea .btnBox .btn1 a {
    min-width: 205px;
  }
}
.catalogArea .catalogList .item {
  position: relative;
}
.catalogArea .catalogList .link {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media (min-width: 1201px) {
  .catalogArea .catalogList .link:hover ~ .Img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.catalogArea .catalogList .Img img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  max-width: 450px;
  margin: 0 auto;
}
.catalogArea .catalogList h3.title {
  color: #333333;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.catalogArea .catalogList .subtitle {
  color: #000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding-top: 4px;
}
@media (max-width: 1200px) {
  .catalogArea .catalogList .subtitle {
    display: none;
  }
}
.catalogArea .catalogList .model {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.catalogArea .catalogList .model span {
  font-size: 13px;
  font-family: "Inter";
}
.catalogArea .catalogList .model span.text {
  letter-spacing: 0.2px;
}
@media (max-width: 1200px) {
  .catalogArea .catalogList .model {
    bottom: 12px;
    right: 12px;
  }
}

.advantageArea {
  background-color: #03154b;
  padding: 88px 0 75px;
}
@media (max-width: 1200px) {
  .advantageArea {
    padding: 48px 0;
  }
}
.advantageArea .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.advantageArea .leftBox {
  width: 50%;
  padding-right: 80px;
}
@media (max-width: 959px) {
  .advantageArea .leftBox {
    width: 100%;
    padding-right: 0;
  }
}
.advantageArea .rightBox {
  width: 50%;
}
@media (max-width: 959px) {
  .advantageArea .rightBox {
    width: 100%;
    padding-top: 20px;
  }
}
.advantageArea .titleBox {
  margin-bottom: 0;
}
.advantageArea .moreInfoBox {
  position: relative;
  color: #fff;
  letter-spacing: 1px;
  padding-top: 29px;
  margin-top: 24px;
}
.advantageArea .moreInfoBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background-color: #fff;
}
.advantageArea .advantageList {
  margin: 0 -7.5px;
}
.advantageArea .advantageList:not(.slick-slider) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.advantageArea .advantageList:not(.slick-slider) .advantageItem {
  width: 25%;
}
@media (max-width: 1200px) {
  .advantageArea .advantageList:not(.slick-slider) {
    margin: 0 -10px;
  }
  .advantageArea .advantageList:not(.slick-slider) .advantageItem {
    width: 50%;
    padding: 10px;
    margin-bottom: 8px;
  }
}
@media (min-width: 768px) and (max-width: 959px) {
  .advantageArea .advantageList:not(.slick-slider) .advantageItem {
    width: 25%;
    margin-bottom: 0;
  }
}
@media (max-width: 479px) {
  .advantageArea .advantageList:not(.slick-slider) .advantageItem {
    width: 100%;
  }
}
.advantageArea .advantageList .advantageItem {
  padding: 10px 7.5px;
}
@media (min-width: 1201px) {
  .advantageArea .advantageList .item:hover .Img {
    opacity: 1;
  }
  .advantageArea .advantageList .item:hover .Img a {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  .advantageArea .advantageList .item:hover .title a {
    color: #fff;
  }
}
.advantageArea .advantageList .Img {
  position: relative;
  opacity: 0.5;
}
@media (min-width: 1201px) {
  .advantageArea .advantageList .Img::before {
    content: "";
    position: absolute;
    top: calc(100% - 20px);
    left: calc(50% - 1px);
    width: 2px;
    height: 57px;
    background: url(../images/icon/dotted_line.png) no-repeat;
    z-index: 1;
  }
}
.advantageArea .advantageList .Img a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 154px;
  border: 3px solid #fff;
  background-color: #03154b;
  margin: 0 auto;
  z-index: 2;
}
.advantageArea .advantageList .Img .circle {
  position: absolute;
  bottom: -14.5px;
  left: calc(50% - 13px);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 3px solid #fff;
  background-color: #03154b;
}
.advantageArea .advantageList .Img .circle::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  left: calc(50% - 4px);
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 1;
}
@media (max-width: 1200px) {
  .advantageArea .advantageList .Img .circle {
    display: none;
  }
}
.advantageArea .advantageList .Img img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  max-width: 100px;
}
.advantageArea .advantageList .Txt {
  text-align: center;
  padding-top: 60px;
}
@media (max-width: 1200px) {
  .advantageArea .advantageList .Txt {
    padding-top: 7px;
  }
}
.advantageArea .advantageList .Txt .title a {
  color: #b4bfe1;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.advantageArea .advantageList .Txt .subtitle {
  color: #735de6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding-top: 5px;
}
.advantageArea .btn1 {
  margin-left: -5px;
  padding-top: 30px;
}
.advantageArea .btn1 a {
  min-width: 150px;
}
.advantageArea .btn1 a::before {
  -webkit-filter: invert(0);
          filter: invert(0);
}