.slide_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 960px;
  margin: 0 auto 0.5em;
  background-color: #222;
}

#slider {
  width: 100%;
  margin: 0 auto 7px;
  padding: 0;
}

.slide-item img {
  width: 100%;
  height: auto;
  display: block;
}

ul li.slide-item {
  margin: 0;
  padding: 0;
}

#thumbnail-list {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
}

/* サムネイルにマウスオンの際にカーソルをポインタにする */
#thumbnail-list:hover {
  cursor: pointer;
}

.thumbnail-item {
  flex: 1;
  box-sizing: border-box;
  position: relative;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

.thumbnail-item:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: 0.3s opacity linear;
}

/* サムネイルにマウスオンの際に明るくする */
.thumbnail-item:hover:before {
  background-color: rgba(0, 0, 0, 0.1);
}

.thumbnail-item.thumbnail-current:before {
  opacity: 0;
}

/* サムネイルの上にマーカーを表示 */
.thumbnail-item.thumbnail-current::after {
  background-color: #ff0;
  content: "";
  position: absolute;
  display: block;
  top: -7px;
  left: 0;
  width: 100%;
  height: 7px;
  opacity: 1;
  transition: 0.3s opacity linear;
}

.thumbnail-item img {
  width: 100%;
  display: block;
  height: auto;
}

/* 左右の矢印は非表示 */
.slick-next {
  right: 20px;
}

.slick-prev {
  left: 20px;
}

.slick-next,
.slick-prev {
  width: 30px;
  height: 30px;
  z-index: 10;
}

.slick-next:before,
.slick-prev:before {
  font-size: 30px;
}

/* -- ▼▼▼タブレット▼▼▼ -- */
@media screen and (max-width: 959px) {
  .slide_wrap {
    width: 100%;
  }

}

/* -- ▲▲▲タブレット▲▲▲ -- */

/* -- ▼▼▼スマートフォン▼▼▼ -- */
@media screen and (max-width: 767px) {
  #slider {
    margin: 0 auto 5px;
  }

/* サムネイルの上にマーカーを表示 */
.thumbnail-item.thumbnail-current::after {
  top: -5px;
  height: 5px;
  }

}

/*# sourceMappingURL=style.css.map */