public function process()
{
parent::process();
// ログインチェック
$objCustomer = new SC_Customer_Ex();
// ログインしていない場合は必ずログインページを表示する
if ($objCustomer->isLoginSuccess(true) === false) {
// ログイン画面に遷移
SC_Response_Ex::sendRedirectFromUrlPath('mypage/login.php');
}
$this->action();
$this->sendResponse();
}