.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: 10px;
  }
}

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

.collaboration_tab_item {
  position: relative;
  border: solid 1px #fff;
  font-size: 24px;
  padding: 10px 14px;
  margin-left: 15px;
  -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);
}

@media only screen and (min-width: 961px) {
  .collaboration_tab_item:first-child {
    margin-left: 0;
  }
  .collaboration_tab_item:hover {
    background: #fff;
    color: #000;
  }
}

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

@media only screen and (max-width: 960px) {
  .collaboration_tab {
    width: 88%;
    margin: 0 auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .collaboration_tab_item {
    font-size: 16px;
    margin: 0 5px 10px 5px;
    padding: 6px 10px;
  }
}

.section_ttl {
  text-align: center;
  margin: 60px 0 50px;
  padding-top: 50px;
  font-size: 30px;
  line-height: 1em;
  border-top: #ccc solid 1px;
}

.section_ttl.none {
  border-top: transparent;
  padding-top: 30px;
}

@media only screen and (max-width: 960px) {
  .section_ttl {
    font-size: 20px;
    margin: 40px 0 30px;
    padding-top: 40px;
  }
  .section_ttl.none {
    border-top: transparent;
    padding-top: 20px;
  }
}

.illust_wrap {
  max-width: 1000px;
  width: 80%;
  margin: 0 auto;
}

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

.illust_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.illust_item {
  width: 32%;
  text-align: center;
  margin-left: 2%;
  margin-top: 50px;
}

.illust_item .img {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background: no-repeat center center;
  background-size: contain;
}

.illust_item .img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
}

.illust_item .name {
  margin-top: 18px;
  font-size: 18px;
}

.illust_item .name span {
  font-size: 13px;
  vertical-align: baseline;
}

.illust_item .account {
  font-size: 13px;
  line-height: 1em;
  margin-top: 8px;
}

@media only screen and (min-width: 961px) {
  .illust_item:nth-child(3n+1) {
    margin-left: 0;
  }
  .illust_item:nth-child(n+1):nth-child(-n+3) {
    margin-top: 0;
  }
}

@media only screen and (max-width: 960px) {
  .illust_item {
    width: 100%;
    margin-top: 40px;
  }
  .illust_item:first-child {
    margin-top: 0;
  }
  .illust_item .name {
    font-size: 15px;
    margin-top: 12px;
  }
  .illust_item .name span {
    font-size: 13px;
  }
  .illust_item .account {
    font-size: 13px;
    line-height: 1em;
    margin-top: 5px;
  }
}

/*********************************************************/
.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;
}

.comic_account{
  text-align: center;
  margin-top: -20px;
}
@media only screen and (max-width: 768px) {
  .comic_account{
    font-size: 13px;
    margin-top: -10px;
  }
}