Index: /branches/camp/camp-2_5-E/data/class/pages/LC_Page_Index.php
===================================================================
--- /branches/camp/camp-2_5-E/data/class/pages/LC_Page_Index.php	(revision 18995)
+++ /branches/camp/camp-2_5-E/data/class/pages/LC_Page_Index.php	(revision 19028)
@@ -54,5 +54,5 @@
      */
     function mobileInit() {
-        $this->tpl_mainpage = 'top.tpl';
+        $this->init();
     }
 
@@ -63,6 +63,7 @@
      */
     function process() {
+        parent::process();
         $this->action();
-        $this->sendRes();
+        $this->sendResponse();
     }
 
@@ -80,10 +81,11 @@
 
     /**
-     * Page のアクション.
+     * Page のプロセス(モバイル).
      *
      * @return void
      */
-    function sendRes() {
-        $this->objDisp->hoge($this);
+    function mobileProcess() {
+        $this->mobileAction();
+        $this->sendResponse();
     }
 
@@ -93,11 +95,11 @@
      * @return void
      */
-    function mobileProcess() {
+    function mobileAction() {
         $objCustomer = new SC_Customer();
 
-        $objView = new SC_MobileView();
-        $objView->assign("isLogin", $objCustomer->isLoginSuccess(true));
-        $objView->assignobj($this);
-        $objView->display(SITE_FRAME);
+        #$objView = new SC_MobileView();
+        #$objView->assign("isLogin", $objCustomer->isLoginSuccess(true));
+        #$objView->assignobj($this);
+        #$objView->display(SITE_FRAME);
     }
 
Index: /branches/camp/camp-2_5-E/data/class/pages/LC_Page.php
===================================================================
--- /branches/camp/camp-2_5-E/data/class/pages/LC_Page.php	(revision 18995)
+++ /branches/camp/camp-2_5-E/data/class/pages/LC_Page.php	(revision 19028)
@@ -97,4 +97,13 @@
      */
     function process() {}
+
+    /**
+     * Page のアクション.
+     *
+     * @return void
+     */
+    function sendResponse() {
+        $this->objDisp->hoge($this);
+    }
 
     /**
Index: /branches/camp/camp-2_5-E/data/require_classes.php
===================================================================
--- /branches/camp/camp-2_5-E/data/require_classes.php	(revision 18860)
+++ /branches/camp/camp-2_5-E/data/require_classes.php	(revision 19028)
@@ -48,4 +48,5 @@
 require_once(CLASS_PATH . "SC_MobileImage.php");
 require_once(CLASS_PATH . "SC_Product.php");
+require_once(CLASS_PATH . "SC_Display.php");
 require_once(CLASS_EX_PATH . "helper_extends/SC_Helper_PageLayout_Ex.php");
 require_once(CLASS_EX_PATH . "helper_extends/SC_Helper_DB_Ex.php");
