@charset "UTF-8";
/*
13,14,15追加時の追加スタイル
*/

/* テキストと画像の順番を入れ替え */
.body__topic_paragraph{
  flex-direction: row-reverse;
  &:nth-of-type(2n){
    flex-direction: row;
  }
}

/* Before, Afterのテキストを消す */
.body__topic__casePicB__pics>li::after{
  display: none;
}
/* Before, Afterの矢印 */
.body__topic__casePicB__pics {
  background-image: url(/magazine/assets/img/user/before-after-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  @media (max-width: 990px) {
    background-image: url(/magazine/assets/img/user/before-after-arrow-sp.svg);
  }
}

/* Before, AfterのSPの時の間隔調整 */
.body__topic__casePicB__pics>li:nth-of-type(2) {
  @media (max-width: 990px) {
    margin-top: 16.5%;
  }
}

/* 見出ししたのマージンが一定でないのを調整 */
.body__topic_paragraph[class*="_wide"] .body__topic_tblc{
  margin-top: 0;
}