.special {
  padding-top: 120px;
}

@media only screen and (max-width: 960px) {
  .special {
    padding-top: 80px;
  }
}

.special .title {
  position: relative;
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 80px;
}

@media only screen and (max-width: 960px) {
  .special .title {
    font-size: 30px;
  }
}

.special .title::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -12px;
  width: 40%;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(30%, white), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0), white 30% 70%, rgba(0, 0, 0, 0));
}

.special_title-sub{
  text-align: center;
  font-size: 24px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 960px) {
  .special_title-sub{
    font-size: 18px;
    margin-bottom: 40px;
  }
}

.comic_tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 960px) {
  .comic_tab {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
}

.comic_tab_item {
  position: relative;
  color: #ccc;
  border: solid 1px #ccc;
  margin-left: 20px;
  line-height: 1em;
  padding: 5px 15px 4px;
  cursor: pointer;
  -webkit-transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.comic_tab_item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 961px) {
  .comic_tab_item:hover {
    background: #ccc;
    color: #000;
  }
}

@media only screen and (max-width: 960px) {
  .comic_tab_item {
    text-align: center;
    margin: 10px 0 0 0;
    font-size: 13px;
    padding: 8px 0 9px;
  }
}

.comic_wrap {
  max-width: 800px;
  width: 80%;
  margin: 0 auto;
}

@media only screen and (max-width: 960px) {
  .comic_wrap {
    width: 84%;
  }
}

.comic_item {
  padding-top: 50px;
  margin-top: 50px;
}

.comic_item:first-child {
  margin-top: 30px;
}

@media only screen and (max-width: 960px) {
  .comic_item {
    padding-top: 30px;
    margin-top: 30px;
  }
  .comic_item:first-child {
    margin-top: 20px;
  }
}

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* -ms-touch-action: pan-y;
  touch-action: pan-y; */
}

.slick-list {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before {
  content: "";
  display: table;
}

.slick-track:after {
  content: "";
  display: table;
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  position: relative;
  float: right;
  height: 100%;
  min-height: 1px;
  display: none;
}

.slick-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .slick-slide::before {
    opacity: 0.6;
  }
}

.slick-slide.slick-active::before {
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 50px;
  width: 50px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  padding: 0;
  border: none;
  outline: none;
  z-index: 10;
}

@media screen and (max-width: 900px) {
  .slick-prev,
  .slick-next {
    width: 25px;
    height: 25px;
  }
}

.slick-prev {
  right: -50px;
}

@media screen and (max-width: 900px) {
  .slick-prev {
    right: -4%;
  }
}

.slick-next {
  left: -51px;
}

@media screen and (max-width: 900px) {
  .slick-next {
    left: calc(-4% - 1px);
  }
}

@media screen and (max-width: 900px) {
  .slick-prev,
  .slick-next {
    bottom: 0;
  }
}

.slick-prev:hover,
.slick-prev:focus {
  outline: none;
  background: transparent;
  color: transparent;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.slick-prev:hover:before,
.slick-prev:focus:before {
  opacity: 1;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0;
  pointer-events: none;
}

.slick-prev:before {
  content: "";
  position: absolute;
  background: url(../img/ar.jpg) no-repeat;
  background-size: contain;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.slick-next:before {
  content: "";
  position: absolute;
  background: url(../img/ar.jpg) no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

@media only screen and (max-width: 768px) {
  .Slide {
    margin-bottom: 0px;
  }
}

input[type=text],
input[type=password] {
  outline: none;
}

textarea,
select,
.slick-slide {
  outline: none;
}
/*# sourceMappingURL=comic.css.map */