var postData = {
base_cid : remain_page[0].card_id.toInt(),
added_cid : remain_card[0].card_id.toInt(),
'material_cid[]': [],
use_cp_flg : 0,
union_type : 5,
exec_btn : 1,
sub_id : '',
// ad_id : 71,
};
// ad_idはイベント期間限定っぽい

for( var i = 1; i < remain_page.length && i < 5; i++ ) {
postData['material_cid[]'].push( remain_page[i].card_id.toInt() );
}

$.post('/union/union_levelup.php', postData )
.then( function( html ) {
var $html = $(html);
msg.message( $html.find('.common_box3bottom P:first').text() );
self();