diff --git a/bookkeeping-jp.cabal b/bookkeeping-jp.cabal
--- a/bookkeeping-jp.cabal
+++ b/bookkeeping-jp.cabal
@@ -1,5 +1,5 @@
 name:                bookkeeping-jp
-version:             0.1.1.1
+version:             0.1.1.2
 synopsis:            Helper functions for Japanese bookkeeping.
 description:
     Helper functions of [bookkeeping module](https://github.com/arowM/haskell-bookkeeping#readme) for Japanese bookkeeping.
@@ -19,7 +19,7 @@
   exposed-modules:     Business.Bookkeeping.JP.SelfEmployed
                      , Business.Bookkeeping.JP.Csv
   build-depends:       base >= 4.9 && < 5
-                     , bookkeeping >= 0.2 && < 0.3
+                     , bookkeeping >= 0.3.2 && < 0.4
                      , mono-traversable
                      , text
                      , time
diff --git a/src/Business/Bookkeeping/JP/Csv.hs b/src/Business/Bookkeeping/JP/Csv.hs
--- a/src/Business/Bookkeeping/JP/Csv.hs
+++ b/src/Business/Bookkeeping/JP/Csv.hs
@@ -35,7 +35,9 @@
     [ tshow n
     , tshow $ formatTime defaultTimeLocale "%Y/%m/%d" tDay
     , formatText . unCategoryName . cName . unDebitCategory $ tDebit
+    , maybe "" formatText . unCategorySubName . cName . unDebitCategory $ tDebit
     , formatText . unCategoryName . cName . unCreditCategory $ tCredit
+    , maybe "" formatText . unCategorySubName . cName . unCreditCategory $ tCredit
     , formatText . unDescription $ tDescription
     , formatText . unSubDescription $ tSubDescription
     , tshow $ unAmount tAmount
@@ -50,7 +52,9 @@
     [ formatText "取引No"
     , formatText "取引日"
     , formatText "借方勘定科目"
+    , formatText "借方補助勘定科目"
     , formatText "貸方勘定科目"
+    , formatText "貸方補助勘定科目"
     , formatText "摘要"
     , formatText "細目"
     , formatText "貸借金額"
