.bg3{
    background-image:
    repeating-linear-gradient(
      90deg,/*水平との角度*/
      #000 ,/*元の色*/
      #000 1px,/*元の色の幅*/
      #fff 1px,/*グラデーション幅*/
      #fff 24px);/*繰り返しの間隔*/
    }
.bg3a{
    background-image:
    repeating-linear-gradient(
      90deg,/*水平との角度*/
      #000 ,/*元の色*/
      #000 12px,/*元の色の幅*/
      #fff 1px,/*グラデーション幅*/
      #fff 24px/*繰り返しの間隔*/);
    }
.bg3b{
    background-image:
    repeating-linear-gradient(
      90deg,/*水平との角度*/
      #000 0px,/*元の色*/
      #fff 24px/*繰り返しの間隔*/);
}
