/* CSS Document */
.sectionBox {
  width: 100%;
  padding-top: 60px;
  padding-bottom: 50px;
}

@media (max-width: 960px) {
  .sectionBox {
    padding-top: 0;
  }
}

.factoryBox {
  position: relative;
  margin-bottom: 100px;
}

@media (max-width: 960px) {
  .factoryBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.factoryImgList li {
  height: 310px;
  overflow: hidden;
}

.factoryImgList img {
  display: block;
  width: 100%;
  -webkit-animation: imgMoveAni 15s .6s ease-in-out both infinite, imgAniOut 15s .6s both infinite;
  animation: imgMoveAni 15s .6s ease-in-out both infinite, imgAniOut 15s .6s both infinite;
}

.factoryImgList li {
  position: relative;
}

.factoryTopBox {
  padding: 60px 30px;
  background-color: #fff;
}

@media (min-width: 1221px) {
  .factoryTopBox::after {
    content: '';
    position: absolute;
    left: 32px;
    top: 190px;
    width: 1px;
    height: 200px;
    background-color: #d98585;
  }
}

@media (min-width: 961px) {
  .factoryTopBox {
    position: absolute;
    left: 30px;
    top: -60px;
    z-index: 1;
    width: 280px;
    height: 270px;
  }
}

@media (max-width: 960px) {
  .factoryTopBox {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    position: relative;
    padding: 30px 20px;
  }
}

.factoryTopBox .subTitle {
  margin-bottom: 12px;
}

.factoryTopBox .title {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.4;
}

.factoryTopBox .totalBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: .02em;
  color: #888;
}

.factoryTopBox .totalBox .current {
  color: #000;
}

.factoryTopBox .totalBox .total::before {
  content: '/';
  display: inline-block;
  margin-left: 4px;
  margin-right: 4px;
}

.factoryList {
  margin-left: -14px;
  margin-right: -14px;
}

.factoryList li {
  position: relative;
  width: 10%;
  padding-left: 14px;
  padding-right: 14px;
}

.factoryList li:not(.last)::after {
  content: '\f105';
  position: absolute;
  right: -3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: FontAwesome;
  font-size: 20px;
  color: #af2b2f;
}

.factoryList li.slick-current .imgBox, .factoryList li:hover .imgBox {
  background-color: #c40000;
}

.factoryList li.slick-current .Img img, .factoryList li:hover .Img img {
  top: -55px;
}

.factoryList li.slick-current .title, .factoryList li:hover .title {
  color: #fff;
}

.factoryList li.slick-current .item::before {
  -webkit-animation: btnAni 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: btnAni 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

.factoryList li.slick-current .item::after {
  -webkit-animation: btnAni02 1.25s 0.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: btnAni02 1.25s 0.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

.factoryList .slick-list {
  padding-top: 40px;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 30px;
}

.factoryList .Txt {
  display: none;
}

.factoryList .item {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding-top: 100%;
}

.factoryList .item::before, .factoryList .item::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
}

.factoryList .imgBox {
  position: absolute;
  left: 0;
  top: 0;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border: 1px solid #dbdbdb;
  border-radius: 50%;
  background-color: #fff;
  overflow: hidden;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.factoryList .Img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
}

.factoryList .Img a {
  display: block;
}

.factoryList .Img img {
  position: relative;
  display: block;
  width: 100%;
  -webkit-filter: drop-shadow(0 55px 0 #fff);
  filter: drop-shadow(0 55px 0 #fff);
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.factoryList .title {
  width: 65%;
  text-align: center;
  display: block;
  font-size: 14px;
  letter-spacing: .02em;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.factoryTextBox {
  width: 100%;
}

@media (min-width: 961px) {
  .factoryTextBox {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px 20px 20px 45px;
  }
}

@media (max-width: 960px) {
  .factoryTextBox {
    padding-top: 5px;
  }
}

.factoryTextList {
  font-size: 14px;
  letter-spacing: .02em;
  color: #696969;
  line-height: 1.8;
}

.factoryTextList .text {
  height: 50px;
}

@-webkit-keyframes btnAni {
  20% {
    background-color: rgba(180, 11, 11, 0.1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    background-color: transparent;
  }
}

@keyframes btnAni {
  20% {
    background-color: rgba(180, 11, 11, 0.1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    background-color: transparent;
  }
}

@-webkit-keyframes btnAni02 {
  20% {
    background-color: rgba(180, 11, 11, 0.2);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    background-color: transparent;
  }
}

@keyframes btnAni02 {
  20% {
    background-color: rgba(180, 11, 11, 0.2);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    background-color: transparent;
  }
}

@-webkit-keyframes imgMoveAni {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  95%,
  100% {
    -webkit-transform: translateY(calc(-100% + 310px));
    transform: translateY(calc(-100% + 310px));
  }
}

@keyframes imgMoveAni {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  95%,
  100% {
    -webkit-transform: translateY(calc(-100% + 310px));
    transform: translateY(calc(-100% + 310px));
  }
}

@-webkit-keyframes imgAniOut {
  0%,
  100% {
    opacity: 0;
  }
  5%,
  95% {
    opacity: 1;
  }
}

@keyframes imgAniOut {
  0%,
  100% {
    opacity: 0;
  }
  5%,
  95% {
    opacity: 1;
  }
}
