//kow案件のsingle.phpに記述
<?php
  // 投稿オブジェクト 複数の取得宣言
  $linkObject = get_field('acf01_participated01');
  foreach((array)$linkObject as $object):
?>
<!--[1] ACFで入力した、画像配列の画像を、取得して表示-->
<?php 
  $image = get_field('acf03_tmb', $object->ID);
  if( !empty($image) ): 
    // vars
    $alt = $image['alt'];
    // thumbnail
    $size = 'medium_large';
    $thumb = $image['sizes'][ $size ];
    $width = $image['sizes'][ $size . '-width' ];
    $height = $image['sizes'][ $size . '-height' ];
?>
<img src="<?php echo $thumb; ?>" alt="<?php echo $alt; ?>" width="<?php echo $width; ?>" height="<?php echo $height; ?>" />

<!--[2] ACFで入力した、テキストを表示-->
<?php the_field('acf03_job', $object->ID); ?>

<?php endif; ?>
<?php endforeach; ?>