positionの位置指定まとめて出力。
@mixin posa ($top: null, $right: null, $bottom: null, $left: null) {
position: absolute;
top: $top;
right: $right;
bottom: $bottom;
left: $left;
}
@mixin posr ($top: null, $right: null, $bottom: null, $left: null) {
position: relative;
top: $top;
right: $right;
bottom: $bottom;
left: $left;
}