sass

●変数
$xxxx: 30px;

margin-right: $xxxx ;


● 関数の中で変数を使う場合



               width: -webkit-calc(50% - #{$xxxx});
               width: calc(50% - #{$xxxx});