/* Slider */
.issue-slider {
    margin: 0 0 0 10px !important;
    padding: 0;
  }
.issue-slide-dots {
    width: 100%;
    height: 9px;
    display: flex;
    justify-content: center;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    position: absolute;
    bottom: 18px;
}
.issue-slide-dots li {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
}
.issue-slide-dots li + li {
    margin-left: 12px;
}
.issue-slide-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    outline: none;
    border: 0;
    background: #fff;
    padding: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.issue-slide-dots li button:hover {
    background: rgba(23,18,15,.8);
    cursor: pointer;
}
.issue-slide-dots li.slick-active button {
    background: #000;
}
@media screen and (min-width: 769px) {
  .issue-sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .issue-pc {
    display: none !important;
  }
  .issue-slider {
    margin: 0 0 0 0px !important;
    padding: 0;
  }
  .issue-slide-dots {
    bottom: 20px;
  }
  .issue-slide-dots li {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
  }
  .issue-slide-dots li + li {
    margin-left: 15px;
  }
  .issue .topinfo {
    margin-bottom: 5vw;
  }
}

.issue-slider .prev {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 13px 8px 0;
  border-color: transparent rgba(255,255,255,0.8) transparent transparent;
  position: absolute;
  left: 13px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 1;
  cursor: pointer;
}

.issue-slider .next {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 13px;
  border-color: transparent transparent transparent rgba(255,255,255,0.8);
  position: absolute;
  right: 13px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 1;
  cursor: pointer;
}
.issue-slider .prev:hover {
  border-color: transparent rgba(0,0,0,1) transparent transparent;
}
.issue-slider .next:hover {
  border-color: transparent transparent transparent rgba(0,0,0,1);
}



