single.phpの内容を下記のように書き換えます。
<?php if ( in_category('salon') ) { include(TEMPLATEPATH . '/single-salon.php'); } else if ( in_category('staff') ) { include(TEMPLATEPATH . '/single-staff.php'); } else { include(TEMPLATEPATH . '/single-default.php'); } ?>