﻿@charset "UTF-8";

/* ==================================================
COMMON
================================================== */
#contsHead div#globalNavi div.logoSet {
  visibility: hidden;
}
div.topConts {
  position: relative;
  padding: 0 0 50px;
  background: -o-linear-gradient(75deg, #f0f0f0 0%, #f0f0f0 30%, #f8f8f8 30%, #f8f8f8 60%, #ffffff 60%, #ffffff 100%);
  background: linear-gradient(15deg, #f0f0f0 0%, #f0f0f0 30%, #f8f8f8 30%, #f8f8f8 60%, #ffffff 60%, #ffffff 100%);
  width: 100%;
}

.contsBlk:not(:last-of-type) {
  margin: 0 auto 100px;
}

.slideBlk {
  overflow: hidden;
}

.scrollArrow {
  bottom: auto;
  top: -100px;
}

.areaBlk + .areaBlk {
  margin-top: 120px;
}

@media screen and (min-width: 641px) {
  .areaBlk + .areaBlk {
    margin-top: 160px;
  }
}

@media screen and (min-width: 961px) {
  div.topConts {
    padding: 0 0 100px;
  }
  .areaBlk + .areaBlk {
    margin-top: 200px;
  }
}

@media screen and (min-width: 1281px) {
  .areaBlk + .areaBlk {
    margin-top: 240px;
  }
}

@media screen and (min-width: 1601px) {
  .areaBlk + .areaBlk {
    margin-top: 280px;
  }
}

/* ==================================================
main
================================================== */

#mainArea {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  opacity: 1;
  overflow: hidden;
  background: #f8f8f8;
  position: relative;
}

.swiper-container-fade .swiper-slide {
  line-height: 1;
}

.swiper-slide a {
  width: 100%;
  line-height: 1;
}

.swiper-pagination {
  right: 0;
  top: 50%;
}

.swiper-container-horizontal > .swiper-pagination-bullets {
  mix-blend-mode: multiply;
  width: auto;
  top: 30%;
  bottom: inherit;
  right: 5px;
  left: inherit;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
  background: #c41948;
  display: block;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-top: 10px;
}

.swiper-pagination-bullet {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  z-index: 10;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
  mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
}

.swiper-pagination-bullet::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -20px;
  width: 40px;
  height: 40px;
  background: #aaa;
  -webkit-transform-origin: right 20px;
  -ms-transform-origin: right 20px;
  transform-origin: right 20px;
  z-index: 2;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  -webkit-animation: rotate-circle-left 5s linear forwards;
  animation: rotate-circle-left 5s linear forwards;
}

.swiper-pagination-bullet::after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: #aaa;
  -webkit-transform-origin: left 20px;
  -ms-transform-origin: left 20px;
  transform-origin: left 20px;
  z-index: 3;
}

.swiper-pagination-bullet .circle-inner {
  position: absolute;
  font-size: 12px;
  top: 1px;
  left: 1px;
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  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;
  z-index: 4;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  -webkit-animation: rotate-circle-right 5s linear forwards;
  animation: rotate-circle-right 5s linear forwards;
}

.navion .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
.navion .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

@-webkit-keyframes rotate-circle-right {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    background: #999;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    background: #999;
  }
  50.01% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    background: #c41948;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    background: #c41948;
  }
}

@keyframes rotate-circle-right {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    background: #999;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    background: #999;
  }
  50.01% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    background: #c41948;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    background: #c41948;
  }
}

@-webkit-keyframes rotate-circle-left {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@keyframes rotate-circle-left {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

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

.miSet::before {
  content: "";
  display: block;
  background: #ffffff;
  width: 100%;
  height: 150vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transition: 6s all ease-out;
  -o-transition: 6s all ease-out;
  transition: 6s all ease-out;
}

.navion .miSet .misTBlk,
.navion .miSet .misBg {
  display: none;
}

.misTBlk {
  position: absolute;
  width: calc(100% - 40px);
  height: 80%;
  left: 20px;
  bottom: 20px;
}

.miSet .misLeads,
.miSet .misLeadm,
.miSet .misLead,
.miSet .misTit,
.miSet .misTxt,
.miSet .misIcon,
.miSet .misBtl,
.miSet .misBrush {
  z-index: 10;
  position: absolute;
  opacity: 0;
  text-align: left;
  -webkit-transition: 1s all ease-out;
  -o-transition: 1s all ease-out;
  transition: 1s all ease-out;
}

.miSet .misLead,
.miSet .misTit,
.miSet .misTxt {
  overflow: hidden;
}

.slide33 .miSet .misTBlk {
  left: 20px;
}
.slide33 .miSet .misLead {
  width: 76%;
  left: 11%;
  bottom: 7%;
}
.slide33 .miSet .misTit {
  width: 61%;
  left: 18%;
  bottom: -3%;
}

.slide33.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  -webkit-transform: skewY(-15deg);
  -ms-transform: skewY(-15deg);
  transform: skewY(-15deg);
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide33.swiper-slide-active .miSet .misLead {
  left: 12.5%;
  opacity: 1;
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.slide33.swiper-slide-active .miSet .misTit {
  left: 20%;
  opacity: 1;
  -webkit-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  -o-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.slide33 .miSet .misBg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.4s all ease-out;
  -o-transition: 0.4s all ease-out;
  transition: 0.4s all ease-out;
}
.slide33.swiper-slide-active .miSet .misBg {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide37 .miSet .misTBlk {
  left: 20px;
}
.slide37 .miSet .misLead {
  width: 35%;
  left: -3%;
  bottom: 16%;
}
.slide37 .miSet .misTit {
  width: 40%;
  left: -3%;
  bottom: -1.5%;
}
.slide37.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  -webkit-transform: skewY(-15deg);
  -ms-transform: skewY(-15deg);
  transform: skewY(-15deg);
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide37.swiper-slide-active .miSet .misLead {
  left: 1%;
  opacity: 1;
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.slide37.swiper-slide-active .miSet .misTit {
  left: -1%;
  opacity: 1;
  -webkit-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  -o-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.slide37 .miSet .misBg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.4s all ease-out;
  -o-transition: 0.4s all ease-out;
  transition: 0.4s all ease-out;
}
.slide37.swiper-slide-active .miSet .misBg {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}

.slide38 .miSet .misTBlk {
  left: 20px;
}
.slide38 .miSet .misLead {
  width: 57%;
  left: -4%;
  bottom: 19%;
}
.slide38 .miSet .misTit {
  width: 51.5%;
  left: -4%;
  bottom: 6.5%;
}
.slide38.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  -webkit-transform: skewY(-15deg);
  -ms-transform: skewY(-15deg);
  transform: skewY(-15deg);
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide38.swiper-slide-active .miSet .misLead {
  left: -2%;
  opacity: 1;
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.slide38.swiper-slide-active .miSet .misTit {
  left: -2%;
  opacity: 1;
  -webkit-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  -o-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.slide38 .miSet .misBg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.4s all ease-out;
  -o-transition: 0.4s all ease-out;
  transition: 0.4s all ease-out;
}
.slide38.swiper-slide-active .miSet .misBg {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide39 .miSet .misTBlk {
  left: 20px;
}
.slide39 .miSet .misLead {
  width: 56%;
  left: -3%;
  bottom: 15.5%;
}
.slide39 .miSet .misTit {
  width: 51%;
  left: -4%;
  bottom: 7.5%;
}
.slide39.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  -webkit-transform: skewY(-15deg);
  -ms-transform: skewY(-15deg);
  transform: skewY(-15deg);
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide39.swiper-slide-active .miSet .misLead {
  left: -2%;
  opacity: 1;
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.slide39.swiper-slide-active .miSet .misTit {
  left: -2%;
  opacity: 1;
  -webkit-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  -o-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.slide39 .miSet .misBg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.4s all ease-out;
  -o-transition: 0.4s all ease-out;
  transition: 0.4s all ease-out;
}
.slide39.swiper-slide-active .miSet .misBg {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide40 .miSet .misTBlk {
  left: 20px;
}
.slide40 .miSet .misLead {
  width: 53%;
  right: -3%;
  bottom: 16%;
}
.slide40 .miSet .misTit {
  width: 37.4%;
  right: 11%;
  bottom: 8.6%;
}
.slide40.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  -webkit-transform: skewY(-15deg);
  -ms-transform: skewY(-15deg);
  transform: skewY(-15deg);
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide40.swiper-slide-active .miSet .misLead {
  right: -2%;
  opacity: 1;
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.slide40.swiper-slide-active .miSet .misTit {
  right: 13%;
  opacity: 1;
  -webkit-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  -o-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.slide40 .miSet .misBg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.4s all ease-out;
  -o-transition: 0.4s all ease-out;
  transition: 0.4s all ease-out;
}
.slide40.swiper-slide-active .miSet .misBg {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}

.slide41 .miSet .misTBlk {
  left: 20px;
}
.slide41 .miSet .misLead {
  width: 41%;
  right: 2%;
  bottom: 22%;
}
.slide41 .miSet .misTit {
  width: 46.8%;
  right: -1%;
  bottom: 3%;
}
.slide41.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  -webkit-transform: skewY(-15deg);
  -ms-transform: skewY(-15deg);
  transform: skewY(-15deg);
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide41.swiper-slide-active .miSet .misLead {
  right: 5%;
  opacity: 1;
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.slide41.swiper-slide-active .miSet .misTit {
  right: 2%;
  opacity: 1;
  -webkit-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  -o-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.slide41 .miSet .misBg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.4s all ease-out;
  -o-transition: 0.4s all ease-out;
  transition: 0.4s all ease-out;
}
.slide41.swiper-slide-active .miSet .misBg {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}

.slide42 .miSet .misTBlk {
  left: 20px;
}
.slide42 .miSet .misLead {
  width: 59%;
  right: -7%;
  bottom: 14%;
}
.slide42 .miSet .misTit {
  width: 34.8%;
  right: 4%;
  bottom: 7%;
}
.slide42.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  -webkit-transform: skewY(-15deg);
  -ms-transform: skewY(-15deg);
  transform: skewY(-15deg);
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide42.swiper-slide-active .miSet .misLead {
  right: -5%;
  opacity: 1;
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.slide42.swiper-slide-active .miSet .misTit {
  right: 6%;
  opacity: 1;
  -webkit-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  -o-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.slide42 .miSet .misBg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.4s all ease-out;
  -o-transition: 0.4s all ease-out;
  transition: 0.4s all ease-out;
}
.slide42.swiper-slide-active .miSet .misBg {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide43 .miSet .misTBlk {
  left: 20px;
}
.slide43 .miSet .misLead {
  width: 57%;
  right: -7%;
  bottom: 15.5%;
}
.slide43 .miSet .misTit {
  width: 36.8%;
  right: 4%;
  bottom: 9%;
}
.slide43.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  -webkit-transform: skewY(-15deg);
  -ms-transform: skewY(-15deg);
  transform: skewY(-15deg);
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide43.swiper-slide-active .miSet .misLead {
  right: -5%;
  opacity: 1;
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.slide43.swiper-slide-active .miSet .misTit {
  right: 14.2%;
  opacity: 1;
  -webkit-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  -o-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.slide43 .miSet .misBg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.4s all ease-out;
  -o-transition: 0.4s all ease-out;
  transition: 0.4s all ease-out;
}
.slide43.swiper-slide-active .miSet .misBg {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide44 .miSet .misTBlk {
  left: 20px;
}
.slide44 .miSet .misLead {
  width: 53%;
  right: -7%;
  bottom: 23%;
}
.slide44 .miSet .misTit {
  width: 46.8%;
  right: 2%;
  bottom: 8%;
}
.slide44.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  -webkit-transform: skewY(-15deg);
  -ms-transform: skewY(-15deg);
  transform: skewY(-15deg);
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide44.swiper-slide-active .miSet .misLead {
  right: -2%;
  opacity: 1;
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.slide44.swiper-slide-active .miSet .misTit {
  right: 4.5%;
  opacity: 1;
  -webkit-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  -o-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.slide44 .miSet .misBg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.4s all ease-out;
  -o-transition: 0.4s all ease-out;
  transition: 0.4s all ease-out;
}
.slide44.swiper-slide-active .miSet .misBg {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide45 .miSet .misTBlk {
  left: 20px;
}
.slide45 .miSet .misLead {
  width: 55%;
  right: -4%;
  bottom: 17%;
}
.slide45 .miSet .misTit {
  width: 49%;
  right: 1%;
  bottom: 8%;
}
.slide45.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  -webkit-transform: skewY(-15deg);
  -ms-transform: skewY(-15deg);
  transform: skewY(-15deg);
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide45.swiper-slide-active .miSet .misLead {
  right: -2%;
  opacity: 1;
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.slide45.swiper-slide-active .miSet .misTit {
  right: 3.5%;
  opacity: 1;
  -webkit-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  -o-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.slide45 .miSet .misBg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.4s all ease-out;
  -o-transition: 0.4s all ease-out;
  transition: 0.4s all ease-out;
}
.slide45.swiper-slide-active .miSet .misBg {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide46 .miSet .misTBlk {
  left: 20px;
}
.slide46 .miSet .misLead {
  width: 54%;
  right: -7%;
  bottom: 23%;
}
.slide46 .miSet .misTit {
  width: 49%;
  right: -2%;
  bottom: 8%;
}
.slide46.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  -webkit-transform: skewY(-15deg);
  -ms-transform: skewY(-15deg);
  transform: skewY(-15deg);
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide46.swiper-slide-active .miSet .misLead {
  right: -4%;
  opacity: 1;
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.slide46.swiper-slide-active .miSet .misTit {
  right: 0.5%;
  opacity: 1;
  -webkit-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  -o-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.slide46 .miSet .misBg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.4s all ease-out;
  -o-transition: 0.4s all ease-out;
  transition: 0.4s all ease-out;
}
.slide46.swiper-slide-active .miSet .misBg {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide47 .miSet .misTBlk {
  left: 20px;
}
.slide47 .miSet .misLead {
  width: 59%;
  right: -9%;
  bottom: 15%;
}
.slide47 .miSet .misTit {
  width: 38%;
  right: -16%;
  bottom: 9%;
}
.slide47.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  -webkit-transform: skewY(-15deg);
  -ms-transform: skewY(-15deg);
  transform: skewY(-15deg);
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide47.swiper-slide-active .miSet .misLead {
  right: -6%;
  opacity: 1;
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.slide47.swiper-slide-active .miSet .misTit {
  right: 13.5%;
  opacity: 1;
  -webkit-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  -o-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.slide47 .miSet .misBg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.4s all ease-out;
  -o-transition: 0.4s all ease-out;
  transition: 0.4s all ease-out;
}
.slide47.swiper-slide-active .miSet .misBg {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide48 .miSet .misTBlk {
  left: 20px;
}
.slide48 .miSet .misLead {
  width: 56%;
  right: -7%;
  bottom: 23%;
}
.slide48 .miSet .misTit {
  width: 47%;
  right: -2%;
  bottom: 11%;
}
.slide48.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  -webkit-transform: skewY(-15deg);
  -ms-transform: skewY(-15deg);
  transform: skewY(-15deg);
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide48.swiper-slide-active .miSet .misLead {
  right: -4%;
  opacity: 1;
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.slide48.swiper-slide-active .miSet .misTit {
  right: 2.5%;
  opacity: 1;
  -webkit-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  -o-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.slide48 .miSet .misBg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.4s all ease-out;
  -o-transition: 0.4s all ease-out;
  transition: 0.4s all ease-out;
}
.slide48.swiper-slide-active .miSet .misBg {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide49 .miSet .misTBlk {
  left: 20px;
}
.slide49 .miSet .misLead {
  width: 47%;
  right: -3%;
  bottom: 15%;
}
.slide49 .miSet .misTit {
  width: 46%;
  right: 0%;
  bottom: 3%;
}
.slide49.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  -webkit-transform: skewY(-15deg);
  -ms-transform: skewY(-15deg);
  transform: skewY(-15deg);
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide49.swiper-slide-active .miSet .misLead {
  right: 0%;
  opacity: 1;
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.slide49.swiper-slide-active .miSet .misTit {
  right: 2%;
  opacity: 1;
  -webkit-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  -o-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.slide49 .miSet .misBg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.4s all ease-out;
  -o-transition: 0.4s all ease-out;
  transition: 0.4s all ease-out;
}
.slide49.swiper-slide-active .miSet .misBg {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide50 .miSet .misTBlk {
  left: 20px;
}
.slide50 .miSet .misLead {
  width: 48%;
  right: -3%;
  bottom: 19%;
}
.slide50 .miSet .misTit {
  width: 51%;
  right: -5%;
  bottom: 2%;
}
.slide50.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  -webkit-transform: skewY(-15deg);
  -ms-transform: skewY(-15deg);
  transform: skewY(-15deg);
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide50.swiper-slide-active .miSet .misLead {
  right: 0%;
  opacity: 1;
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.slide50.swiper-slide-active .miSet .misTit {
  right: -3%;
  opacity: 1;
  -webkit-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  -o-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.slide50 .miSet .misBg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.4s all ease-out;
  -o-transition: 0.4s all ease-out;
  transition: 0.4s all ease-out;
}
.slide50.swiper-slide-active .miSet .misBg {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  -o-transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide51 .miSet .misTBlk {
  left: 20px;
}
.slide51 .miSet .misLead {
  width: 59%;
  right: -6%;
  bottom: 16%;
}
.slide51 .miSet .misTit {
  width: 54.8%;
  right: 0%;
  bottom: 7.5%;
}
.slide51.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  transform: skewY(-15deg);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide51.swiper-slide-active .miSet .misLead {
  right: -4%;
  opacity: 1;
  -webkit-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  -o-transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.slide51.swiper-slide-active .miSet .misTit {
  right: 1%;
  opacity: 1;
  -webkit-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  -o-transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.slide51 .miSet .misBg {
  transform: scale(1);
  transition: 0.4s all ease-out;
}
.slide51.swiper-slide-active .miSet .misBg {
  transform: scale(1.02);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide52 .miSet .misTBlk {
  left: 20px;
}
.slide52 .miSet .misLead {
  width: 63%;
  right: -10%;
  bottom: 20%;
}
.slide52 .miSet .misTit {
  width: 58%;
  right: -5%;
  bottom: 6.5%;
}
.slide52.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  transform: skewY(-15deg);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide52.swiper-slide-active .miSet .misLead {
  right: -8%;
  opacity: 1;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.slide52.swiper-slide-active .miSet .misTit {
  right: -3%;
  opacity: 1;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.slide52 .miSet .misBg {
  transform: scale(1);
  transition: 0.4s all ease-out;
}
.slide52.swiper-slide-active .miSet .misBg {
  transform: scale(1.02);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide53 .miSet .misTBlk {
  left: 20px;
}
.slide53 .miSet .misLead {
  width: 42%;
  left: -3%;
  bottom: 24.5%;
}
.slide53 .miSet .misTit {
  width: 73%;
  left: -3%;
  bottom: 7.5%;
}
.slide53.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  transform: skewY(-15deg);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide53.swiper-slide-active .miSet .misLead {
  left: 0%;
  opacity: 1;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.slide53.swiper-slide-active .miSet .misTit {
  left: -0.8%;
  opacity: 1;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.slide53 .miSet .misBg {
  transform: scale(1);
  transition: 0.4s all ease-out;
}
.slide53.swiper-slide-active .miSet .misBg {
  transform: scale(1.02);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide54 .miSet .misTBlk {
  left: 20px;
}
.slide54 .miSet .misLead {
  width: 81%;
  right: -5%;
  bottom: 14%;
}
.slide54 .miSet .misTit {
  width: 69%;
  right: -5%;
  bottom: 6.5%;
}
.slide54.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  transform: skewY(-15deg);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide54.swiper-slide-active .miSet .misLead {
  right: -3%;
  opacity: 1;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.slide54.swiper-slide-active .miSet .misTit {
  right: -3.2%;
  opacity: 1;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.slide54 .miSet .misBg {
  transform: scale(1);
  transition: 0.4s all ease-out;
}
.slide54.swiper-slide-active .miSet .misBg {
  transform: scale(1.02);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide55 .miSet .misTBlk {
  left: 20px;
}
.slide55 .miSet .misLead {
  width: 110%;
  left: -3%;
  bottom: 50%;
}
.slide55 .miSet .misTit {
  width: 73%;
  left: -3%;
  bottom: 7.5%;
}
.slide55.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  transform: skewY(-15deg);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide55.swiper-slide-active .miSet .misLead {
  left: -5%;
  opacity: 1;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.slide55.swiper-slide-active .miSet .misTit {
  left: -0.8%;
  opacity: 1;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.slide55 .miSet .misBg {
  transform: scale(1);
  transition: 0.4s all ease-out;
}
.slide55.swiper-slide-active .miSet .misBg {
  transform: scale(1.02);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide56 .miSet .misTBlk {
  left: 20px;
}
.slide56 .miSet .misLead {
  width: 100%;
  right: -3%;
  bottom: 15%;
}
.slide56 .miSet .misTit {
  width: 39%;
  right: -5%;
  bottom: 8.5%;
}
.slide56.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  transform: skewY(-15deg);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide56.swiper-slide-active .miSet .misLead {
  right: -1%;
  opacity: 1;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.slide56.swiper-slide-active .miSet .misTit {
  right: -1.2%;
  opacity: 1;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.slide56 .miSet .misBg {
  transform: scale(1);
  transition: 0.4s all ease-out;
}
.slide56.swiper-slide-active .miSet .misBg {
  transform: scale(1.02);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}

.slide57 .miSet .misTBlk {
  left: 20px;
}

.slide57 .miSet .misLead {
  width: 40%;
  right: -4%;
  bottom: 23.5%;
}

.slide57 .miSet .misTit {
  width: 73%;
  right: -3%;
  bottom: 7%;
}

.slide57.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  transform: skewY(-15deg);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}

.slide57.swiper-slide-active .miSet .misLead {
  right: -1%;
  opacity: 1;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}

.slide57.swiper-slide-active .miSet .misTit {
  right: -1%;
  opacity: 1;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}

.slide57 .miSet .misBg {
  transform: scale(1);
  transition: 0.4s all ease-out;
}

.slide57.swiper-slide-active .miSet .misBg {
  transform: scale(1.02);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide58 .miSet .misTBlk {
  left: 20px;
}
.slide58 .miSet .misLead {
  width: 56%;
  right: -4%;
  bottom: 29%;
}
.slide58 .miSet .misTit {
  width: 62%;
  right: -5%;
  bottom: 8.5%;
}
.slide58.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  transform: skewY(-15deg);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.slide58.swiper-slide-active .miSet .misLead {
  left: -2%;
  opacity: 1;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.slide58.swiper-slide-active .miSet .misTit {
  left: -2.2%;
  opacity: 1;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.slide58 .miSet .misBg {
  transform: scale(1);
  transition: 0.4s all ease-out;
}
.slide58.swiper-slide-active .miSet .misBg {
  transform: scale(1.02);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}

@media screen and (min-width: 641px) {
  .swiper-container-horizontal > .swiper-pagination-bullets {
    right: 20px;
    top: 50%;
  }
  .miSet::before {
    width: 200vw;
    height: 200vw;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .slide33 .miSet .misLead {
    width: 34%;
    left: 62%;
    bottom: 36%;
  }
  .slide33 .miSet .misTit {
    width: 26.8%;
    left: 63%;
    bottom: 16.5%;
  }
  .slide33.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide33.swiper-slide-active .miSet .misLead {
    left: 63%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .slide33.swiper-slide-active .miSet .misTit {
    left: 66.6%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .slide33 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .slide33.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide37 .miSet .misLead {
    width: 18%;
    left: 70%;
    bottom: 74%;
  }
  .slide37 .miSet .misTit {
    width: 20%;
    left: 70%;
    bottom: 49%;
  }
  .slide37.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide37.swiper-slide-active .miSet .misLead {
    left: 73%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .slide37.swiper-slide-active .miSet .misTit {
    left: 72%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .slide37 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .slide37.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide38 .miSet .misLead {
    width: 25%;
    left: 49%;
    bottom: 45%;
  }
  .slide38 .miSet .misTit {
    width: 19.6%;
    left: 49%;
    bottom: 25%;
  }
  .slide38.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide38.swiper-slide-active .miSet .misLead {
    left: 51%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .slide38.swiper-slide-active .miSet .misTit {
    left: 51%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .slide38 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .slide38.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide39 .miSet .misLead {
    width: 24%;
    left: 53%;
    bottom: 45%;
  }
  .slide39 .miSet .misTit {
    width: 18.8%;
    left: 54%;
    bottom: 34%;
  }
  .slide39.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide39.swiper-slide-active .miSet .misLead {
    left: 56%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .slide39.swiper-slide-active .miSet .misTit {
    left: 56%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .slide39 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .slide39.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide40 .miSet .misLead {
    width: 30%;
    right: 45.5%;
    bottom: 39%;
  }
  .slide40 .miSet .misTit {
    width: 14.6%;
    right: 58.1%;
    bottom: 36%;
  }
  .slide40.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide40.swiper-slide-active .miSet .misLead {
    right: 43.5%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .slide40.swiper-slide-active .miSet .misTit {
    right: 56.1%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .slide40 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .slide40.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide41 .miSet .misLead {
    width: 19%;
    right: 29.6%;
    bottom: 49.5%;
  }
  .slide41 .miSet .misTit {
    width: 17.4%;
    right: 30.8%;
    bottom: 24%;
  }
  .slide41.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide41.swiper-slide-active .miSet .misLead {
    right: 27.6%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .slide41.swiper-slide-active .miSet .misTit {
    right: 28.8%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .slide41 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .slide41.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide42 .miSet .misLead {
    width: 26%;
    right: 26.6%;
    bottom: 48.5%;
  }
  .slide42 .miSet .misTit {
    width: 15%;
    right: 30.8%;
    bottom: 35%;
  }
  .slide42.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide42.swiper-slide-active .miSet .misLead {
    right: 23.6%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .slide42.swiper-slide-active .miSet .misTit {
    right: 28.8%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .slide42 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .slide42.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide43 .miSet .misLead {
    width: 31%;
    right: 19.2%;
    bottom: 30.5%;
  }
  .slide43 .miSet .misTit {
    width: 14.5%;
    right: 33%;
    bottom: 26%;
  }
  .slide43.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide43.swiper-slide-active .miSet .misLead {
    right: 21.2%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .slide43.swiper-slide-active .miSet .misTit {
    right: 35%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .slide43 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .slide43.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide44 .miSet .misLead {
    width: 31%;
    right: 26.6%;
    bottom: 34.5%;
  }
  .slide44 .miSet .misTit {
    width: 17.6%;
    right: 33.4%;
    bottom: 23%;
  }
  .slide44.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide44.swiper-slide-active .miSet .misLead {
    right: 20.6%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .slide44.swiper-slide-active .miSet .misTit {
    right: 31.4%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .slide44 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .slide44.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide45 .miSet .misLead {
    width: 27%;
    right: 22%;
    bottom: 40.5%;
  }
  .slide45 .miSet .misTit {
    width: 21%;
    right: 26.8%;
    bottom: 28%;
  }
  .slide45.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide45.swiper-slide-active .miSet .misLead {
    right: 24%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .slide45.swiper-slide-active .miSet .misTit {
    right: 29.8%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .slide45 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .slide45.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide46 .miSet .misLead {
    width: 31%;
    right: 24%;
    bottom: 32.5%;
  }
  .slide46 .miSet .misTit {
    width: 21.6%;
    right: 31.8%;
    bottom: 19%;
  }
  .slide46.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide46.swiper-slide-active .miSet .misLead {
    right: 27%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .slide46.swiper-slide-active .miSet .misTit {
    right: 34.8%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .slide46 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .slide46.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide47 .miSet .misLead {
    width: 33%;
    right: 15.8%;
    bottom: 36.5%;
  }
  .slide47 .miSet .misTit {
    width: 14.4%;
    right: 31.4%;
    bottom: 33%;
  }
  .slide47.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide47.swiper-slide-active .miSet .misLead {
    right: 13.8%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .slide47.swiper-slide-active .miSet .misTit {
    right: 29.4%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .slide47 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .slide47.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide48 .miSet .misLead {
    width: 34%;
    right: 47.5%;
    bottom: 29.5%;
  }
  .slide48 .miSet .misTit {
    width: 19.8%;
    right: 58.8%;
    bottom: 19%;
  }
  .slide48.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide48.swiper-slide-active .miSet .misLead {
    right: 44.5%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .slide48.swiper-slide-active .miSet .misTit {
    right: 55.8%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .slide48 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .slide48.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide49 .miSet .misLead {
    width: 18.8%;
    right: 24.8%;
    bottom: 46.5%;
  }
  .slide49 .miSet .misTit {
    width: 17.4%;
    right: 25.4%;
    bottom: 22%;
    bottom: 27%;
  }
  .slide49.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide49.swiper-slide-active .miSet .misLead {
    right: 27.8%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .slide49.swiper-slide-active .miSet .misTit {
    right: 28.4%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .slide49 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .slide49.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide50 .miSet .misLead {
    width: 18.8%;
    right: 55.5%;
    bottom: 49.5%;
  }
  .slide50 .miSet .misTit {
    width: 19.8%;
    right: 55.2%;
    bottom: 22%;
  }
  .slide50.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide50.swiper-slide-active .miSet .misLead {
    right: 53.5%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .slide50.swiper-slide-active .miSet .misTit {
    right: 53.2%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .slide50 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .slide50.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide51 .miSet .misLead {
    width: 24.8%;
    right: 22.8%;
    bottom: 44%;
  }
  .slide51 .miSet .misTit {
    width: 19.4%;
    right: 28.2%;
    bottom: 22%;
    bottom: 31%;
  }
  .slide51.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide51.swiper-slide-active .miSet .misLead {
    right: 24.8%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .slide51.swiper-slide-active .miSet .misTit {
    right: 30.2%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .slide51 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .slide51.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide52 .miSet .misLead {
    width: 29.8%;
    right: 39%;
    bottom: 34.5%;
  }
  .slide52 .miSet .misTit {
    width: 24%;
    right: 44.8%;
    bottom: 17.5%;
  }
  .slide52.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide52.swiper-slide-active .miSet .misLead {
    right: 42%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .slide52.swiper-slide-active .miSet .misTit {
    right: 47.8%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .slide52 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .slide52.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide53 .miSet .misLead {
    width: 20.8%;
    left: 20%;
    bottom: 44.5%;
  }
  .slide53 .miSet .misTit {
    width: 19.8%;
    left: 20%;
    bottom: 24.5%;
  }
  .slide53.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide53.swiper-slide-active .miSet .misLead {
    left: 22%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .slide53.swiper-slide-active .miSet .misTit {
    left: 22.5%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .slide53 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .slide53.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide54 .miSet .misLead {
    width: 18.8%;
    right: 23%;
    bottom: 46.5%;
  }
  .slide54 .miSet .misTit {
    width: 18.1%;
    right: 24.4%;
    bottom: 28.6%;
  }
  .slide54.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide54.swiper-slide-active .miSet .misLead {
    right: 26%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .slide54.swiper-slide-active .miSet .misTit {
    right: 26.4%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .slide54 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .slide54.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide55 .miSet .misLead {
    width: 100.8%;
    left: -3.5%;
    bottom: -4.5%;
  }
  .slide55 .miSet .misTit {
    width: 19.8%;
    left: 20%;
    bottom: 24.5%;
  }
  .slide55.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide55.swiper-slide-active .miSet .misLead {
    left: -1.5%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .slide55.swiper-slide-active .miSet .misTit {
    left: 22.5%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .slide55 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .slide55.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide56 .miSet .misLead {
    width: 32.8%;
    right: 48.5%;
    bottom: 41.5%;
  }
  .slide56 .miSet .misTit {
    width: 18.1%;
    right: 62.8%;
    bottom: 30.6%;
  }
  .slide56.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide56.swiper-slide-active .miSet .misLead {
    right: 50.5%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .slide56.swiper-slide-active .miSet .misTit {
    right: 64.8%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .slide56 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .slide56.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide57 .miSet .misLead {
    width: 21%;
    right: 59.5%;
    bottom: 45.5%;
  }
  /*.slide57 .miSet .misLead {*/
  /*  width: 30%;*/
  /*  right: 59.5%;*/
  /*  bottom: 45.5%;*/
  /*}*/
  .slide57 .miSet .misTit {
    width: 20.6%;
    right: 60.8%;
    bottom: 28.6%;
  }
  /*.slide57 .miSet .misTit {*/
  /*  width: 24%;*/
  /*  right: 60.8%;*/
  /*  bottom: 28.6%;*/
  /*}*/
  .slide57.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide57.swiper-slide-active .miSet .misLead {
    /*right: 49%;*/
    right: 57.5%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .slide57.swiper-slide-active .miSet .misTit {
    /*right: 55%;*/
    right: 57.8%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .slide57 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .slide57.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide58 .miSet .misLead {
    width: 26.8%;
    left: 48.5%;
    bottom: 72.5%;
  }
  .slide58 .miSet .misTit {
    width: 29.1%;
    left: 48.5%;
    bottom: 38.4%;
  }
  .slide58.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .slide58.swiper-slide-active .miSet .misLead {
    left: 50.5%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .slide58.swiper-slide-active .miSet .misTit {
    left: 50.5%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .slide58 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .slide58.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
}


/* --------- id-slide --------- */
.id-slide01 .miSet .misTBlk {
  left: 20px;
}
.id-slide01 .miSet .misLead {
  width: 40.5%;
  left: -2%;
  bottom: 25.9%;
}
.id-slide01 .miSet .misTit {
  width: 72.7%;
  left: -2.6%;
  bottom: 11.5%;
}
.id-slide01.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  transform: skewY(-15deg);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.id-slide01.swiper-slide-active .miSet .misLead {
  left: 0;
  opacity: 1;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.id-slide01.swiper-slide-active .miSet .misTit {
  left: -0.6%;
  opacity: 1;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.id-slide01 .miSet .misBg {
  transform: scale(1);
  transition: 0.4s all ease-out;
}
.id-slide01.swiper-slide-active .miSet .misBg {
  transform: scale(1.02);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.id-slide02 .miSet .misTBlk {
  left: 20px;
}
.id-slide02 .miSet .misLead {
  width: 43.1%;
  right: -2.4%;
  bottom: 25.6%;
}
.id-slide02 .miSet .misTit {
  width: 70.1%;
  right: -2.8%;
  bottom: 12.3%;
}
.id-slide02.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  transform: skewY(-15deg);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.id-slide02.swiper-slide-active .miSet .misLead {
  right: -0.4%;
  opacity: 1;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.id-slide02.swiper-slide-active .miSet .misTit {
  right: -0.8%;
  opacity: 1;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.id-slide02 .miSet .misBg {
  transform: scale(1);
  transition: 0.4s all ease-out;
}
.id-slide02.swiper-slide-active .miSet .misBg {
  transform: scale(1.02);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.id-slide03 .miSet .misTBlk {
  left: 20px;
}
.id-slide03 .miSet .misLead {
  width: 69.2%;
  left: 3.6%;
  bottom: 16.5%;
}
.id-slide03 .miSet .misTit {
  width: 33.2%;
  left: 39.3%;
  bottom: 9.9%;
}
.id-slide03.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  transform: skewY(-15deg);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.id-slide03.swiper-slide-active .miSet .misLead {
  left: 5.6%;
  opacity: 1;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.id-slide03.swiper-slide-active .miSet .misTit {
  left: 41.3%;
  opacity: 1;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.id-slide04 .miSet .misTBlk {
  left: 20px;
}
.id-slide04 .miSet .misLead {
  width: 61.4%;
  right: 10.3%;
  bottom: 16%;
}
.id-slide04 .miSet .misTit {
  width: 60.5%;
  right: 10.9%;
  bottom: 8.7%;
}
.id-slide04.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  transform: skewY(-15deg);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.id-slide04.swiper-slide-active .miSet .misLead {
  right: 12.3%;
  opacity: 1;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.id-slide04.swiper-slide-active .miSet .misTit {
  right: 12.9%;
  opacity: 1;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
.id-slide04 .miSet .misBg {
  transform: scale(1);
  transition: 0.4s all ease-out;
}
.id-slide04.swiper-slide-active .miSet .misBg {
  transform: scale(1.02);
  transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.id-slide05 .miSet .misTBlk {
  left: 20px;
}
.id-slide05 .miSet .misLead {
  width: 58.6%;
  left: 24.4%;
  bottom: 21.8%;
}
.id-slide05 .miSet .misTit {
  width: 46.9%;
  left: 24.6%;
  bottom: 11.1%;
}
.id-slide05.swiper-slide-active .miSet::before {
  top: 110%;
  left: 0;
  transform: skewY(-15deg);
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
}
.id-slide05.swiper-slide-active .miSet .misLead {
  left: 26.4%;
  opacity: 1;
  transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
}
.id-slide05.swiper-slide-active .miSet .misTit {
  left: 26.6%;
  opacity: 1;
  transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
}
@media screen and (min-width: 641px) {
  .id-slide01 .miSet .misLead {
    width: 31.4%;
    left: 50.0%;
    bottom: 56.9%;
  }
  .id-slide01 .miSet .misTit {
    width: 45.1%;
    left: 36.3%;
    bottom: 20.1%;
  }
  .id-slide01.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .id-slide01.swiper-slide-active .miSet .misLead {
    left: 52.0%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .id-slide01.swiper-slide-active .miSet .misTit {
    left: 38.3%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .id-slide01 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .id-slide01.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .id-slide02 .miSet .misLead {
    width: 29.5%;
    right: 48.2%;
    bottom: 59%;
  }
  .id-slide02 .miSet .misTit {
    width: 41.5%;
    right: 37.1%;
    bottom: 28.1%;
  }
  .id-slide02.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .id-slide02.swiper-slide-active .miSet .misLead {
    right: 51.3%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .id-slide02.swiper-slide-active .miSet .misTit {
    right: 39.1%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .id-slide03 .miSet .misLead {
    width: 40.5%;
    left: 41.2%;
    bottom: 49.7%;
  }
  .id-slide03 .miSet .misTit {
    width: 14.5%;
    left: 41.4%;
    bottom: 40.2%;
  }
  .id-slide03.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .id-slide03.swiper-slide-active .miSet .misLead {
    left: 43.2%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .id-slide03.swiper-slide-active .miSet .misTit {
    left: 43.4%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .id-slide03 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .id-slide03.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .id-slide04 .miSet .misLead {
    width: 37%;
    right: 45.7%;
    bottom: 38.8%;
  }
  .id-slide04 .miSet .misTit {
    width: 26.1%;
    right: 56.2%;
    bottom: 27.5%;
  }
  .id-slide04.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .id-slide04.swiper-slide-active .miSet .misLead {
    right: 47.7%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .id-slide04.swiper-slide-active .miSet .misTit {
    right: 58.2%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .id-slide05 .miSet .misLead {
    width: 31.3%;
    left: 16.4%;
    bottom: 56.5%;
  }
  .id-slide05 .miSet .misTit {
    width: 29.9%;
    left: 16.6%;
    bottom: 29%;
  }
  .id-slide05.swiper-slide-active .miSet::before {
    top: 15%;
    left: 0;
    content: none;
    transform: skewY(-15deg);
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
  .id-slide05.swiper-slide-active .miSet .misLead {
    left: 18.4%;
    opacity: 1;
    transition: 1s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1s;
  }
  .id-slide05.swiper-slide-active .miSet .misTit {
    left: 18.6%;
    opacity: 1;
    transition: 1.2s all cubic-bezier(0.57, 0.02, 0.4, 0.92) 1.2s;
  }
  .id-slide05 .miSet .misBg {
    transform: scale(1);
    transition: 0.4s all ease-out;
  }
  .id-slide05.swiper-slide-active .miSet .misBg {
    transform: scale(1.02);
    transition: 5s all cubic-bezier(0.57, 0.02, 0.4, 0.92);
  }
}


@media screen and (min-width: 641px) {
  .swiper-pagination-bullet {
    width: 40px;
    height: 40px;
  }
  .swiper-pagination-bullet::before {
    left: -20px;
    width: 40px;
    height: 40px;
    -webkit-transform-origin: right 20px;
    -ms-transform-origin: right 20px;
    transform-origin: right 20px;
  }
  .swiper-pagination-bullet::after {
    left: 20px;
    width: 40px;
    height: 40px;
    -webkit-transform-origin: left 20px;
    -ms-transform-origin: left 20px;
    transform-origin: left 20px;
  }
  .swiper-pagination-bullet .circle-inner {
    font-size: 12px;
    width: 38px;
    height: 38px;
  }
}

@media screen and (min-width: 961px) {
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-top: 15px;
  }
  .swiper-pagination-bullet {
    width: 46px;
    height: 46px;
  }
  .swiper-pagination-bullet::before {
    left: -23px;
    width: 46px;
    height: 46px;
    -webkit-transform-origin: right 23px;
    -ms-transform-origin: right 23px;
    transform-origin: right 23px;
  }
  .swiper-pagination-bullet::after {
    left: 23px;
    width: 46px;
    height: 46px;
    -webkit-transform-origin: left 23px;
    -ms-transform-origin: left 23px;
    transform-origin: left 23px;
  }
  .swiper-pagination-bullet .circle-inner {
    font-size: 14px;
    width: 44px;
    height: 44px;
  }
}

@media screen and (min-width: 1281px) {
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-top: 15px;
  }
  .swiper-pagination-bullet {
    width: 50px;
    height: 50px;
  }
  .swiper-pagination-bullet::before {
    left: -25px;
    width: 50px;
    height: 50px;
    -webkit-transform-origin: right 25px;
    -ms-transform-origin: right 25px;
    transform-origin: right 25px;
  }
  .swiper-pagination-bullet::after {
    left: 25px;
    width: 50px;
    height: 50px;
    -webkit-transform-origin: left 25px;
    -ms-transform-origin: left 25px;
    transform-origin: left 25px;
  }
  .swiper-pagination-bullet .circle-inner {
    font-size: 15px;
    width: 48px;
    height: 48px;
  }
}

@media screen and (min-width: 1601px) {
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-top: 20px;
  }
  .swiper-pagination-bullet {
    width: 60px;
    height: 60px;
  }
  .swiper-pagination-bullet::before {
    left: -30px;
    width: 60px;
    height: 60px;
    -webkit-transform-origin: right 30px;
    -ms-transform-origin: right 30px;
    transform-origin: right 30px;
  }
  .swiper-pagination-bullet::after {
    left: 30px;
    width: 60px;
    height: 60px;
    -webkit-transform-origin: left 30px;
    -ms-transform-origin: left 30px;
    transform-origin: left 30px;
  }
  .swiper-pagination-bullet .circle-inner {
    font-size: 16px;
    width: 58px;
    height: 58px;
  }
}

/* ==================================================
caution
================================================== */

.cautionArea {
  padding: 20px 0;
  margin: 0 auto;
  width: 90%;
}

@media screen and (min-width: 961px) {
  .cautionArea {
    padding: 60px 0;
  }
}

@media screen and (min-width: 1281px) {
  .cautionArea {
    padding: 80px 0;
  }
}

@media screen and (min-width: 1601px) {
  .cautionArea {
    padding: 100px 0;
  }
}

/* ==================================================
concept
================================================== */

.conceptArea {
}

.conceptArea .caImg {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}

.conceptArea .caTxt {
  width: 80%;
  margin: 30px auto;
  /* line-height: 2.6; */
}

.conceptArea .BtnCenter {
  margin: 40px auto 0;
}

.conceptArea .movieBlk {
  width: 90%;
  margin: 0 auto;
}
.conceptArea .movieBlk .movSet {
  margin: 0 auto;
  position: relative;
  width: 100%;
  max-width: 720px;
}
.conceptArea .movieBlk .movSet::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
}
.conceptArea .movieBlk .movSet iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 641px) {
  .conceptArea .caTxt {
    margin: 35px auto;
  }
  .conceptArea .BtnCenter {
    margin: 45px auto 0;
  }
}

@media screen and (min-width: 961px) {
  .conceptArea .caTxt {
    margin: 40px auto;
  }
  .conceptArea .BtnCenter {
    margin: 45px auto 0;
  }
}

@media screen and (min-width: 1281px) {
  .conceptArea .caTxt {
    margin: 45px auto;
  }
  .conceptArea .BtnCenter {
    margin: 55px auto 0;
  }
}

@media screen and (min-width: 1601px) {
  .conceptArea .caTxt {
    margin: 50px auto;
  }
  .conceptArea .BtnCenter {
    margin: 60px auto 0;
  }
}

/* ==================================================
cateArea
================================================== */

.cateArea {
  position: relative;
}

#mascara {
  z-index: 1;
}

.cateArea .caBg {
  position: absolute;
  overflow: hidden;
  top: -100%;
  left: 0;
  width: 100%;
  height: 200vh;
  z-index: 0;
}

.cateArea .caBg::before {
  position: absolute;
  content: "";
  display: block;
  background: #f8f8f8;
  width: 100%;
  height: 80%;
  top: 10%;
  right: 0;
  z-index: 1;
}

.cateArea .caBg::after {
  position: absolute;
  content: "";
  display: block;
  background: #ffffff;
  -webkit-transform: skewY(-15deg);
  -ms-transform: skewY(-15deg);
  transform: skewY(-15deg);
  width: 100%;
  height: 480px;
  top: 30%;
  left: 0;
  z-index: 0;
}

.cateArea.appeared .caBg::before {
  right: 100%;
  -webkit-transition: 0.6s right ease-out;
  -o-transition: 0.6s right ease-out;
  transition: 0.6s right ease-out;
}

.categorySet {
  position: relative;
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

.categorySet .csCatch {
}

.categorySet .csImgSet {
  margin: 20px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

#mascara .categorySet .csImgSet {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding: 0 0 0 15px;
  margin: 20px auto -8%;
}
#mascara .categorySet .csImgSet p:nth-child(1) {
  margin-top: 4.5%;
}
#mascara .categorySet .csImgSet p:nth-child(2) {
  margin-top: 0%;
}
#mascara .categorySet .csImgSet p:nth-child(3) {
  margin-top: 10%;
}
#mascara .categorySet .csImgSet p:nth-child(4) {
  margin-top: 4.5%;
}

#mascara .categorySet .csImgSet p + p {
  margin-left: -30px;
}

#eyeliner .categorySet .csImgSet {
  padding: 0 50px 0 10px;
  /* overflow:hidden; */
}

#eyeliner .categorySet .csImgSet p:nth-of-type(2) {
  margin: -20px -15px 0 15px;
}

#eyeliner .categorySet .csImgSet p:nth-of-type(3) {
  margin: -20px -30px 20px 30px;
}

#eyeliner .categorySet .csImgSet p:nth-of-type(4) {
  margin: -40px -45px 20px 45px;
}
#eyeliner .categorySet .csImgSet p:nth-of-type(5) {
  margin: -40px -60px 20px 60px;
}

#eyebrow .categorySet .csImgSet {
  padding: 0 40px 0 20px;
}

#eyebrow .categorySet .csImgSet p:nth-of-type(1) {
  margin: 20% 8% 20% 10%;
}

#eyebrow .categorySet .csImgSet p:nth-of-type(2) {
  margin: -60% -10% 0 10%;
}

.categorySet .csTxt {
  margin: 0 auto 60px;
}

@media screen and (min-width: 641px) {
  .categorySet .csTxt {
    margin: 0 auto 70px;
  }
}

@media screen and (min-width: 961px) {
  .categorySet {
    text-align: left;
  }
  .categorySet .csTit,
  .categorySet .csTxt {
    margin: 0 auto 60px;
  }
  .categorySet .csImgSet {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50%;
    max-width: 680px;
  }
  .categorySet .BtnCenter {
    margin: 0 auto 0 0;
  }
  #mascara .categorySet .csImgSet p + p {
    margin-left: -60px;
  }
  #eyeliner .categorySet .csCatch,
  #eyeliner .categorySet .csTit,
  #eyeliner .categorySet .csTxt {
    padding: 0 0 0 50%;
    text-align: left;
  }
  #eyeliner .categorySet .BtnCenter {
    margin: 0 auto 0 50%;
  }
  #eyeliner .categorySet .csImgSet {
    right: inherit;
    left: 0;
    width: 50%;
    padding: 0;
    margin: 0 0 0 -5%;
    max-width: 880px;
  }
  #eyebrow .categorySet .csImgSet {
    padding: 0;
  }

  #eyeliner .categorySet .csImgSet p:nth-of-type(2) {
    margin: -40px -20px 0 20px;
  }

  #eyeliner .categorySet .csImgSet p:nth-of-type(3) {
    margin: -40px -40px 20px 40px;
  }

  #eyeliner .categorySet .csImgSet p:nth-of-type(4) {
    margin: -50px -60px 20px 60px;
  }
  #eyeliner .categorySet .csImgSet p:nth-of-type(5) {
    margin: -50px -80px 20px 80px;
  }
}

@media screen and (min-width: 1281px) {
  .categorySet .csCatch,
  .categorySet .csTit,
  .categorySet .csTxt {
    padding: 0 0 0 100px;
    text-align: left;
  }
  .categorySet .BtnCenter {
    margin: 0 auto 0 100px;
  }
  .categorySet .csTit,
  .categorySet .csTxt {
    margin: 0 auto 90px;
  }
  .categorySet .csImgSet {
    margin: 0;
    position: absolute;
    top: 50%;
    right: 0%;
    right: 0%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .categorySet .csImgSet {
    width: 50%;
    max-width: 680px;
  }
  #mascara .categorySet .csImgSet p + p {
    margin-left: -60px;
  }
  #eyeliner .categorySet .csCatch,
  #eyeliner .categorySet .csTit,
  #eyeliner .categorySet .csTxt {
    padding: 0 0 0 60%;
  }
  #eyeliner .categorySet .BtnCenter {
    margin: 0 auto 0 60%;
  }
  #eyeliner .categorySet .csImgSet {
    width: 55%;
    margin: 0;
  }
}

@media screen and (min-width: 1601px) {
  .categorySet .csCatch,
  .categorySet .csTit,
  .categorySet .csTxt {
    padding: 0 0 0 160px;
    text-align: left;
  }
  .categorySet .BtnCenter {
    margin: 0 auto 0 160px;
  }
  .categorySet .csImgSet {
    width: 60%;
    max-width: 780px;
  }
  .categorySet .csTit,
  .categorySet .csTxt {
    margin: 0 auto 100px;
  }
  #mascara .categorySet .csImgSet p + p {
    margin-left: -70px;
  }
  #eyeliner .categorySet .csImgSet p:nth-of-type(1) {
    margin: 0px 80px 0 -80px;
  }
  #eyeliner .categorySet .csImgSet p:nth-of-type(2) {
    margin: -60px 40px 0 -40px;
  }
  #eyeliner .categorySet .csImgSet p:nth-of-type(3) {
    margin: -60px 00px 60px 00px;
  }
  #eyeliner .categorySet .csImgSet p:nth-of-type(4) {
    margin: -118px -40px 60px 40px;
  }
  #eyeliner .categorySet .csImgSet p:nth-of-type(5) {
    margin: -98px -80px 60px 80px;
  }
}

/* ==================================================
news
================================================== */

.newsArea {
  margin: 6rem auto;
}

.newsArea .titSet {
  margin: 0 auto 3rem;
}

.newsArea .slideBlk {
  max-width: 1260px;
  margin: 0 auto;
  position: relative;
}

.newsArea .slideBlk .newsSlide {
  padding: 0 38px;
}

.newsArea .slideBlk .newsSlide .swiper-wrapper .newsSet {
  background: #ffffff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.newsArea .slideBlk .newsSlide .swiper-wrapper .newsSet .nsTxt {
  margin: 10px auto 0;
  padding: 0 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.newsArea .slideBlk .newsSlide .swiper-wrapper .newsSet .nsTxt .nsCate {
  padding: 0 5px;
  background: #c41948;
}

.newsArea .slideBlk .newsSlide .swiper-wrapper .newsSet .nsTxt .nsTit {
  margin: 10px auto 0;
  width: 100%;
  text-align: left;
}

@media screen and (min-width: 961px) {
}

/* ==================================================
緊急文言スペース
================================================== */

.attentionInfoArea {
  margin: 4em 0 6em;
}

.attentionInfoArea a {
  border-bottom: 1px solid;
}

.attentionInfoArea a:hover {
  border: none;
}
