@charset "utf-8";
/* .slideShow
------------------------- */
.slideShow {
  width: 100%;
  margin: 0 auto;
  text-align: left;
  display: none;
}
/* .mainView
------------------------- */
.mainView {
  width: 60%;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.slideShow {
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.slideShow .mainView ul {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.slideShow .mainView ul li {
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
}
.slideShow .mainView ul li img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-left: auto;
  margin-right: auto;
}
/* .thumbNail
------------------------- */
.slideShow .thumbNail {
  width: 100%;
  overflow: hidden;
}
.slideShow .thumbNail ul {
  width: 100%;
  margin-top: 15px;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
}
.slideShow .thumbNail ul li {
  display: flex;
  overflow: hidden;
  cursor: pointer;
  padding: 5px;
}
.slideShow .thumbNail ul li img {
  width: 100%;
  height: 70px;
  object-fit: cover;
}
.slideShow .thumbNail ul li.active {
  filter: alpha(opacity=100) !important;
  -moz-opacity: 1 !important;
  opacity: 1 !important;
}
/* sideNavi
------------------------- */
.slideShow .mainView .btnPrev, .slideShow .mainView .btnNext {
  top: 0;
  width: 5%;
  height: 100%;
  position: absolute;
  z-index: 100;
}
.slideShow .mainView .btnPrev {
  left: 0px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/works/before.svg);
  background-size: 30px auto;
}
.slideShow .mainView .btnNext {
  right: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/works/next.svg);
  background-size: 30px auto;
}
/* =======================================
    ClearFixElements
======================================= */
.slideShow ul:after {
  content: ".";
  height: 0;
  clear: both;
  display: block;
  visibility: hidden;
}
.slideShow ul {
  display: inline-block;
  overflow: hidden;
}
@media screen and (max-width:380px) {
  .slideShow .thumbNail ul li {
    width: 25%;
    display: inline;
    overflow: hidden;
    cursor: pointer;
    padding: 5px;
  }
}