Index: /branches/version-2_11-dev/data/class/pages/entry/LC_Page_Entry_Complete.php
===================================================================
--- /branches/version-2_11-dev/data/class/pages/entry/LC_Page_Entry_Complete.php	(revision 20764)
+++ /branches/version-2_11-dev/data/class/pages/entry/LC_Page_Entry_Complete.php	(revision 20837)
@@ -65,5 +65,12 @@
         // カートが空かどうかを確認する。
         $objCartSess            = new SC_CartSession_Ex();
-        $this->tpl_cart_empty   = count($objCartSess->getCartList()) < 1;
+        $arrCartKeys = $objCartSess->getKeys();
+        $this->tpl_cart_empty = true;
+        foreach ($arrCartKeys as $cart_key) {
+            if (count($objCartSess->getCartList($cart_key)) > 0) {
+                $this->tpl_cart_empty = false;
+                break;
+            }
+        }
 
         // メインテンプレートを設定
