@media (max-width: 1200px) {
  .fs-l-main {
    padding: 0 !important;
  }
}
@media screen and (max-width: 560px) {
  #MagazineDetailAll .M_imageBlock img {
    width: 100%;
    max-width: initial;
  }
  #MagazineDetailAll {
    width: 100%;
  }
  #MagazineDetailAll .MagazineDetailImageList {
    width: 100%;
  }
  #MagazineDetailAll #MagazineTableAll {
    width: calc(686 * (100vw / 750)) !important;
  }
}
/*reset*/
@media only screen and (min-width: 561px) {
  #MagazineDetailAll .M_imageBlock img {
    max-width: initial !important;
  }
}

.scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1s;
}
.scroll-right {
  /*右からスライドイン*/
  /*transform: translateY(100px);*/
  transform: translateX(20px);
  transition: all 0.5s;
}
.scroll-left {
  /*左からスライドイン*/
  /*transform: translateY(100px);*/
  transform: translateX(-20px);
  transition: all 0.5s;
}
.scroll-bottom {
  /*下からスライドイン*/
  transform: translateY(10px);
  transition: all 0.5s;
}
.scroll-stay {
  /*その場*/
  transform: translateY(0);
  transition: all 0.5s;
}

.scroll-up4 {
  transform: translateY(50px);
  transition: all 0.8s;
  transition-delay: 1s;
}

.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.scroll-up img {
  /*transform:scale(1.08,1.08);*/
}

.scroll-up.is-show img {
  transform: scale(1, 1);
  transition: all 2s;
}

.scroll-up.is-show.s1 {
  /*ゆっくり実行*/
  transition: all 1s;
}
.scroll-up.is-show.s2 {
  /*ゆっくり実行*/
  transition: all 2s;
}
.scroll-up.is-show.d1 {
  /*遅延実行*/

  transition-delay: 0.1s;
}
.scroll-up.is-show.d2 {
  /*遅延実行*/
  transition-delay: 0.5s;
}
.scroll-up.is-show.d3 {
  /*遅延実行*/
  transition-delay: 0.8s;
}
