解決
http://www.freeml.com/delphi-users/3949/latest
FMX.Styles.Objects内の
TSystemButtonObjectクラスで
FInactiveAnimationを解放してないのが原因みたいです。
上記ファイルを自分のプロジェクトフォルダにコピーして
destructor TSystemButtonObject.Destroy;
begin
FInactiveLink.Free;
//// 追加
FInactiveAnimation.Free;
//// 追加終わり
inherited;
end;