Index: /branches/version-2_11-dev/data/class/SC_Fpdf.php
===================================================================
--- /branches/version-2_11-dev/data/class/SC_Fpdf.php	(revision 21024)
+++ /branches/version-2_11-dev/data/class/SC_Fpdf.php	(revision 21316)
@@ -55,4 +55,5 @@
 
         $this->pdf  = new PDF_Japanese();
+        $this->lfAddGothicFont();
 
         // SJISフォント
@@ -152,16 +153,17 @@
 
         // お届け先情報
-        $this->pdf->SetFontSize(10);
+        $this->pdf->SetFont('SJIS', '', 10);
         $this->lfText(25, 125, SC_Utils_Ex::sfDispDBDate($this->arrDisp['create_date']), 10); //ご注文日
         $this->lfText(25, 135, $this->arrDisp['order_id'], 10); //注文番号
 
-        $this->pdf->SetFont('', 'B', 15);
+        $this->pdf->SetFont('Gothic', 'B', 15);
         $this->pdf->Cell(0, 10, $this->lfConvSjis($this->tpl_title), 0, 2, 'C', 0, '');  //文書タイトル（納品書・請求書）
         $this->pdf->Cell(0, 66, '', 0, 2, 'R', 0, '');
         $this->pdf->Cell(5, 0, '', 0, 0, 'R', 0, '');
+        $this->pdf->SetFont('SJIS', 'B', 15);
         $this->pdf->Cell(67, 8, $this->lfConvSjis(number_format($this->arrDisp['payment_total'])." 円"), 0, 2, 'R', 0, '');
         $this->pdf->Cell(0, 45, '', 0, 2, '', 0, '');
 
-        $this->pdf->SetFontSize(8);
+        $this->pdf->SetFont('SJIS', '', 8);
 
         $monetary_unit = $this->lfConvSjis("円");
@@ -257,8 +259,8 @@
     function setEtcData() {
         $this->pdf->Cell(0, 10, '', 0, 1, 'C', 0, '');
-        $this->pdf->SetFontSize(9);
+        $this->pdf->SetFont('Gothic', 'B', 9);
         $this->pdf->MultiCell(0, 6, $this->lfConvSjis("＜ 備 考 ＞"), 'T', 2, 'L', 0, '');  //備考
         $this->pdf->Ln();
-        $this->pdf->SetFontSize(8);
+        $this->pdf->SetFont('SJIS', '', 8);
         $this->pdf->MultiCell(0, 4, $this->lfConvSjis($this->arrData['etc1']."\n".$this->arrData['etc2']."\n".$this->arrData['etc3']), '', 2, 'L', 0, '');  //備考
     }
@@ -332,4 +334,15 @@
     }
 
+    /**
+     * ゴシックフォントを定義
+     *
+     * @return void
+     */
+    function lfAddGothicFont() {
+        $cw = $GLOBALS['SJIS_widths'];
+        $c_map = '90msp-RKSJ-H';
+        $registry = array('ordering'=>'Japan1','supplement'=>2);
+        $this->pdf->AddCIDFonts('Gothic', 'KozGoPro-Medium-Acro,MS-PGothic,Osaka', $cw, $c_map, $registry);
+    }
 }
 ?>
