Index: branches/version-2_5-dev/data/Smarty/templates/sphone/site_main.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/sphone/site_main.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/sphone/site_main.tpl	(revision 19665)
@@ -0,0 +1,50 @@
+<!--{*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ *}-->
+<body>
+
+<!--{$GLOBAL_ERR}-->
+<noscript>
+  <p>JavaScript を有効にしてご利用下さい.</p>
+</noscript>
+
+<a name="top" id="top"></a>
+
+<!--▼MAIN-->
+<!--{include file=$tpl_mainpage}-->
+<!--▲MAIN-->
+
+<!--{* ▼FOOTER *}-->
+<!--{if $arrPageLayout.footer_chk != 2}-->
+<!--{include file= './footer.tpl'}-->
+<!--{/if}-->
+<!--{* ▲FOOTER *}-->
+
+</body>
+
+<!--{if "/\/top.tpl$/"|preg_match:$tpl_mainpage}-->
+<!--{else}-->
+<script type="text/javascript" language="JavaScript">
+//<![CDATA[
+setTopButton("<!--{$smarty.const.SPHONE_SSL_URL}-->");
+//]]>
+<!--{/if}-->
+</script>
Index: branches/version-2_5-dev/data/Smarty/templates/sphone/list.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/sphone/list.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/sphone/list.tpl	(revision 19665)
@@ -0,0 +1,286 @@
+<!--{*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ *}-->
+<script type="text/javascript">//<![CDATA[
+// 規格2に選択肢を割り当てる。
+function fnSetClassCategories(form, classcat_id2_selected) {
+    sele1 = form.classcategory_id1;
+    sele2 = form.classcategory_id2;
+    product_id = form.product_id.value;
+
+    if (sele1) {
+        if (sele2) {
+            // 規格2の選択肢をクリア
+            count = sele2.options.length;
+            for(i = count; i >= 0; i--) {
+                sele2.options[i] = null;
+            }
+            
+            // 規格2に選択肢を割り当てる
+            classcats = productsClassCategories[product_id][sele1.value];
+            i = 0;
+            for (var classcat_id2_key in classcats) {
+                sele2.options[i] = new Option(classcats[classcat_id2_key].name, classcat_id2_key);
+                if (classcat_id2_key == classcat_id2_selected) {
+                    sele2.options[i].selected = true;
+                }
+                i++;
+            }
+        }
+        fnCheckStock(form);
+    }
+}
+// 並び順を変更
+function fnChangeOrderby(orderby) {
+    fnSetVal('orderby', orderby);
+    fnSetVal('pageno', 1);
+    fnSubmit();
+}
+// 表示件数を変更
+function fnChangeDispNumber(dispNumber) {
+    fnSetVal('disp_number', dispNumber);
+    fnSetVal('pageno', 1);
+    fnSubmit();
+}
+// カゴに入れる
+function fnInCart(productForm) {
+    var product_id = productForm["product_id"].value;
+    fnChangeAction("?#product" + product_id);
+    if (productForm["classcategory_id1"]) {
+        fnSetVal("classcategory_id1", productForm["classcategory_id1"].value);
+    }
+    if (productForm["classcategory_id2"]) {
+        fnSetVal("classcategory_id2", productForm["classcategory_id2"].value);
+    }
+    fnSetVal("quantity", productForm["quantity"].value);
+    fnSetVal("product_id", productForm["product_id"].value);
+    fnSetVal("product_class_id", productForm["product_class_id"].value);
+    fnSetVal("product_type", productForm["product_type"].value);
+    fnSubmit();
+}
+function fnCheckStock(form) {
+    product_id = form.product_id.value;
+    classcat_id1 = form.classcategory_id1.value;
+    classcat_id2 = form.classcategory_id2 ? form.classcategory_id2.value : 0;
+    classcat2 = productsClassCategories[product_id][classcat_id1][classcat_id2];
+    
+    // 在庫(品切れ)
+    eleDefault = document.getElementById('cartbtn_default_' + product_id);
+    eleDynamic = document.getElementById('cartbtn_dynamic_' + product_id);
+    if (
+           classcat2
+        && classcat2.stock_find === false
+    ) {
+        eleDefault.style.display = 'none';
+        eleDynamic.innerHTML = '申し訳ございませんが、只今品切れ中です。';
+    } else {
+        eleDefault.style.display = '';
+        eleDynamic.innerHTML = '';
+    }
+    
+    // 販売価格
+    eleDefault = document.getElementById('price02_default_' + product_id);
+    eleDynamic = document.getElementById('price02_dynamic_' + product_id);
+    if (
+           classcat2
+        && typeof classcat2.price02 != 'undefined'
+        && String(classcat2.price02).length >= 1
+    ) {
+        eleDefault.style.display = 'none';
+        eleDynamic.innerHTML = classcat2.price02;
+    } else {
+        eleDefault.style.display = '';
+        eleDynamic.innerHTML = '';
+    }
+    // 商品規格
+    eleDynamic = document.getElementById('product_class_id' + product_id);
+    if (
+           classcat2
+        && typeof classcat2.product_class_id != 'undefined'
+        && String(classcat2.product_class_id).length >= 1
+    ) {
+        eleDynamic.value = classcat2.product_class_id;
+    } else {
+        eleDynamic.value = ''
+    }
+    // 商品種別
+    eleDynamic = document.getElementById('product_type' + product_id);
+    if (
+           classcat2
+        && typeof classcat2.product_type != 'undefined'
+        && String(classcat2.product_type).length >= 1
+    ) {
+        eleDynamic.value = classcat2.product_type;
+    } else {
+        eleDynamic.value = ''
+    }
+}
+//]]>
+</script>
+
+<!--▼CONTENTS-->
+<div id="undercolumn" class="product product_list">
+    <form name="form1" id="form1" method="get" action="?">
+        <input type="hidden" name="mode" value="<!--{$mode|escape}-->" />
+        <!--{* ▼検索条件 *}-->
+        <input type="hidden" name="category_id" value="<!--{$arrSearchData.category_id|escape}-->" />
+        <input type="hidden" name="maker_id" value="<!--{$arrSearchData.maker_id|escape}-->" />
+        <input type="hidden" name="name" value="<!--{$arrSearchData.name|escape}-->" />
+        <!--{* ▲検索条件 *}-->
+        <!--{* ▼ページナビ関連 *}-->
+        <input type="hidden" name="orderby" value="<!--{$orderby|escape}-->" />
+        <input type="hidden" name="disp_number" value="<!--{$disp_number|escape}-->" />
+        <input type="hidden" name="pageno" value="<!--{$tpl_pageno|escape}-->" />
+        <!--{* ▲ページナビ関連 *}-->
+        <!--{* ▼注文関連 *}-->
+        <input type="hidden" name="product_id" value="" />
+        <input type="hidden" name="classcategory_id1" value="" />
+        <input type="hidden" name="classcategory_id2" value="" />
+        <input type="hidden" name="product_class_id" value="" />
+        <input type="hidden" name="product_type" value="" />
+        <input type="hidden" name="quantity" value="" />
+        <!--{* ▲注文関連 *}-->
+        <input type="hidden" name="rnd" value="<!--{$tpl_rnd|escape}-->" />
+    </form>
+    
+    <!--★タイトル★-->
+    <h2 class="title"><!--{$tpl_subtitle|escape}--></h2>
+    
+    <!--▼検索条件-->
+    <!--{if $tpl_subtitle == "検索結果"}-->
+        <ul class="pagecondarea">
+            <li><strong>商品カテゴリ：</strong><!--{$arrSearch.category|escape}--></li>
+        <!--{if $arrSearch.maker|strlen >= 1}--><li><strong>メーカー：</strong><!--{$arrSearch.maker|escape}--></li><!--{/if}-->
+            <li><strong>商品名：</strong><!--{$arrSearch.name|escape}--></li>
+        </ul>
+    <!--{/if}-->
+    <!--▲検索条件-->
+
+    <!--▼ページナビ(本文)-->
+    <!--{capture name=page_navi_body}-->
+        <div class="pagenumberarea">
+            <div class="change">
+                <!--{if $orderby != 'price'}-->
+                    <a href="javascript:fnChangeOrderby('price');">価格順</a>
+                <!--{else}-->
+                    <strong>価格順</strong>
+                <!--{/if}-->
+                <!--{if $orderby != "date"}-->
+                        <a href="javascript:fnChangeOrderby('date');">新着順</a>
+                <!--{else}-->
+                    <strong>新着順</strong>
+                <!--{/if}-->
+            </div>
+            <div class="navi"><!--{$tpl_strnavi}--></div>
+        </div>
+    <!--{/capture}-->
+    <!--▲ページナビ(本文)-->
+
+    <!--{foreach from=$arrProducts item=arrProduct name=arrProducts}-->
+
+        <!--{if $smarty.foreach.arrProducts.first}-->
+            <!--▼件数-->
+            <div>
+                <span class="pagenumber"><!--{$tpl_linemax}--></span>件の商品
+                
+                <select name="disp_number" onchange="javascript:fnChangeDispNumber(this.value);">
+                    <!--{foreach from=$arrPRODUCTLISTMAX item="dispnum" key="num"}-->
+                        <!--{if $num == $disp_number}-->
+                        <option value="<!--{$num}-->" selected="selected" ><!--{$dispnum}--></option>
+                        <!--{else}-->
+                        <option value="<!--{$num}-->" ><!--{$dispnum}--></option>
+                        <!--{/if}-->
+                    <!--{/foreach}-->
+                </select>
+            </div>
+            <!--▲件数-->
+            
+            <!--▼ページナビ(上部)-->
+            <form name="page_navi_top" id="page_navi_top" action="?">
+                <!--{if $tpl_linemax > 0}--><!--{$smarty.capture.page_navi_body|smarty:nodefaults}--><!--{/if}-->
+            </form>
+            <!--▲ページナビ(上部)-->
+        <!--{/if}-->
+
+        <!--{assign var=id value=$arrProduct.product_id}-->
+        <!--{assign var=arrErr value=$arrProduct.arrErr}-->
+        <!--▼商品-->
+        <div class="listarea">
+        <a name="product<!--{$id|escape}-->" />
+            <div class="listphoto">
+                <!--★画像★-->
+                <a href="<!--{$smarty.const.DETAIL_P_HTML}--><!--{$arrProduct.product_id|escape:url}-->" class="over"><!--商品写真--><img src="<!--{$smarty.const.IMAGE_SAVE_URL|sfTrimURL}-->/<!--{$arrProduct.main_list_image|sfNoImageMainList|escape}-->" alt="<!--{$arrProduct.name|escape}-->" class="picture" /></a>
+            </div>
+            
+            <div class="listrightblock">
+                <!--▼商品ステータス-->
+                <!--{if count($productStatus[$id]) > 0}-->
+                    <ul class="status_icon">
+                        <!--{foreach from=$productStatus[$id] item=status}--> 
+                            <li>
+                                <img src="<!--{$TPL_DIR}--><!--{$arrSTATUS_IMAGE[$status]}-->" width="65" height="17" alt="<!--{$arrSTATUS[$status]}-->"/>
+                            </li>
+                        <!--{/foreach}-->
+                    </ul>
+                <!--{/if}-->
+                <!--▲商品ステータス-->
+                
+                <!--★商品名★-->
+                <h3>
+                    <a href="<!--{$smarty.const.DETAIL_P_HTML}--><!--{$arrProduct.product_id|escape:url}-->" name="product<!--{$arrProduct.product_id}-->"><!--{$arrProduct.name|escape}--></a>
+                </h3>
+                
+                <!--★コメント★-->
+                <p class="listcomment"><!--{$arrProduct.main_list_comment|escape|nl2br}--></p>
+                
+                <p>
+                    <span class="pricebox sale_price">
+                        <span class="mini">税込</span>：
+                        <span class="price">
+                            <span id="price02_default_<!--{$id}-->">
+                                <!--{if $arrProduct.price02_min == $arrProduct.price02_max}-->
+                                    <!--{$arrProduct.price02_min|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
+                                <!--{else}-->
+                                    <!--{$arrProduct.price02_min|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->～<!--{$arrProduct.price02_max|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
+                                <!--{/if}-->
+                            </span><span id="price02_dynamic_<!--{$id}-->"></span>
+                            円</span>
+                    </span>
+                </p>
+
+            </div>
+        </div>
+        <!--▲商品-->
+
+        <!--{if $smarty.foreach.arrProducts.last}-->
+            <!--▼ページナビ(下部)-->
+            <form name="page_navi_bottom" id="page_navi_bottom" action="?">
+                <!--{if $tpl_linemax > 0}--><!--{$smarty.capture.page_navi_body|smarty:nodefaults}--><!--{/if}-->
+            </form>
+            <!--▲ページナビ(下部)-->
+        <!--{/if}-->
+
+    <!--{foreachelse}-->
+        <!--{include file="frontparts/search_zero.tpl"}-->
+    <!--{/foreach}-->
+
+</div>
+<!--▲CONTENTS-->
Index: branches/version-2_5-dev/data/Smarty/templates/sphone/footer.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/sphone/footer.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/sphone/footer.tpl	(revision 19665)
@@ -0,0 +1,66 @@
+<!--{*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ *}-->
+
+<!--▼ BEGIN PAGETOP-->
+<div id="pagetop">
+<a href="#top">↑このページのトップへ</a>
+</div>
+<!--▲ END PAGETOP-->
+
+<!--▼ BEGIN FOOTER-->
+<div id="footer">
+<div id="footer-info">
+<ul id="footer-menu">
+<li>
+<a href="<!--{$smarty.const.SPHONE_SSL_URL|sfTrimURL}-->/cart/index.php">かごを見る</a>
+</li>
+<li>
+<a href="<!--{$smarty.const.SPHONE_SSL_URL|sfTrimURL}-->/mypage/login.php">マイページ</a>
+</li>
+<li>
+<a href="<!--{$smarty.const.SPHONE_SSL_URL|sfTrimURL}-->/entry/kiyaku.php">会員登録</a>
+</li>
+
+<!--{php}-->
+$tmp = $this->get_template_vars('tpl_mainpage');
+if(preg_match("/top\.tpl$/", $tmp))
+$this->assign('isTop', 1);
+<!--{/php}-->
+<!--{if $isTop ne 1}-->
+<li>
+<a href="<!--{$smarty.const.SPHONE_SITE_URL|sfTrimURL}-->">TOPページへ</a>
+</li>
+<!--{/if}-->
+
+</ul>
+<ul id="footer-navi">
+<li><a href="<!--{$smarty.const.SPHONE_SITE_URL}-->contact/index.php">お問合せ</a></li>
+<li><a href="<!--{$smarty.const.SPHONE_SITE_URL}-->guide/privacy.php">プライバシーポリシー</a></li>
+<li class="end"><a href="<!--{$smarty.const.SPHONE_SITE_URL}-->abouts/index.php">店舗情報</a></li>
+<li class="end"><a href="<!--{$smarty.const.SPHONE_SITE_URL}-->order/index.php">特定商取引法に基づく表記</a></li>
+</ul>
+
+<div id="copyright">(C) <!--{$arrSiteInfo.shop_name|escape}-->.</div>
+
+</div>
+</div>
+<!--▲ END FOOTER-->
Index: branches/version-2_5-dev/data/Smarty/templates/sphone/site_frame.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/sphone/site_frame.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/sphone/site_frame.tpl	(revision 19665)
@@ -0,0 +1,60 @@
+<!--{printXMLDeclaration}--><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!--{*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ *}-->
+
+<html xmlns="http://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=<!--{$smarty.const.CHAR_CODE}-->" />
+
+<meta name="viewport" content="width=320,maximum-scale=1.0,user-scalable=no">
+<meta name="format-detection" content="telephone=no">
+<meta http-equiv="Content-Script-Type" content="text/javascript" />
+<meta http-equiv="Content-Style-Type" content="text/css" />
+<!--{* 共通CSS *}-->
+<link rel="stylesheet" media="only screen" href="<!--{$smarty.const.SPHONE_URL_DIR}-->sphone/user_data/packages/default/css/import.css" type="text/css" /> 
+
+<script type="text/javascript" src="<!--{$smarty.const.SPHONE_URL_DIR}-->sphone/user_data/packages/default/js/barbutton.js"></script>
+<script type="text/javascript" src="<!--{$smarty.const.SPHONE_URL_DIR}-->sphone/user_data/packages/default/js/category.js"></script>
+<script type="text/javascript" src="<!--{$smarty.const.SPHONE_URL_DIR}-->sphone/user_data/packages/default/js/news.js"></script>
+<script type="text/javascript" src="<!--{$TPL_DIR}-->js/navi.js"></script>
+<script type="text/javascript" src="<!--{$TPL_DIR}-->js/win_op.js"></script>
+<script type="text/javascript" src="<!--{$TPL_DIR}-->js/site.js"></script>
+<title><!--{$arrSiteInfo.shop_name|escape}--><!--{if $tpl_subtitle|strlen >= 1}--> / <!--{$tpl_subtitle|escape}--><!--{elseif $tpl_title|strlen >= 1}--> / <!--{$tpl_title|escape}--><!--{/if}--></title>
+<!--{if $arrPageLayout.author|strlen >= 1}-->
+    <meta name="author" content="<!--{$arrPageLayout.author|escape}-->" />
+<!--{/if}-->
+<!--{if $arrPageLayout.description|strlen >= 1}-->
+    <meta name="description" content="<!--{$arrPageLayout.description|escape}-->" />
+<!--{/if}-->
+<!--{if $arrPageLayout.keyword|strlen >= 1}-->
+    <meta name="keywords" content="<!--{$arrPageLayout.keyword|escape}-->" />
+<!--{/if}-->
+<!--{* iPhone用アイコン画像 *}-->
+<link rel="apple-touch-icon" href="<!--{$smarty.const.SPHONE_URL_DIR}-->sphone/apple-touch-icon.png" />
+
+</head>
+
+<!-- ▼BODY部 スタート -->
+<!--{include file='./site_main.tpl'}-->
+<!-- ▲BODY部 エンド -->
+
+</html>
Index: branches/version-2_5-dev/data/Smarty/templates/sphone/bloc/best5.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/sphone/bloc/best5.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/sphone/bloc/best5.tpl	(revision 19665)
@@ -0,0 +1,74 @@
+<!--{*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ *}-->
+<!--{if count($arrBestProducts) > 0}-->
+<div id="recomendarea" class="bloc_outer">
+    <h2><img src="<!--{$TPL_DIR}-->img/bloc/best5/title_icon.gif" width="20" height="20" alt="*" class="title_icon" />
+        おすすめ商品</h2>
+    <!--{section name=cnt loop=$arrBestProducts step=2}-->
+    <div class="recomendblock">
+        <div class="recomendleft">
+
+            <a href="<!--{$smarty.const.DETAIL_P_HTML}--><!--{$arrBestProducts[cnt].product_id|escape:url}-->">
+                <img src="<!--{$smarty.const.SPHONE_URL_DIR}-->resize_image.php?image=<!--{$arrBestProducts[cnt].main_list_image|sfNoImageMainList|escape}-->&amp;width=80&amp;height=80" alt="<!--{$arrBestProducts[cnt].name|escape}-->" /></a>
+            
+            <div class="recomendrightblock">
+                <h3>
+                    <a href="<!--{$smarty.const.DETAIL_P_HTML}--><!--{$arrBestProducts[cnt].product_id|escape:url}-->"><!--{$arrBestProducts[cnt].name|escape}--></a>
+                </h3>
+
+                <!--{assign var=price01 value=`$arrBestProducts[cnt].price01_min`}-->
+                <!--{assign var=price02 value=`$arrBestProducts[cnt].price02_min`}-->
+
+                <p class="sale_price"><span class="mini">(税込)</span>：
+                    <span class="price"><!--{$price02|sfPreTax:$arrInfo.tax:$arrInfo.tax_rule|number_format}--> 円</span>
+                </p>
+
+                <p class="mini comment"><!--{$arrBestProducts[cnt].comment|escape|nl2br}--></p>
+            </div>
+        </div>
+        
+        <!--{assign var=cnt2 value=`$smarty.section.cnt.iteration*$smarty.section.cnt.step-1`}-->
+        <!--{if $arrBestProducts[$cnt2]|count > 0}-->
+        <div class="recomendright">
+            <a href="<!--{$smarty.const.DETAIL_P_HTML}--><!--{$arrBestProducts[$cnt2].product_id|escape:url}-->">
+                <img src="<!--{$smarty.const.SPHONE_URL_DIR}-->resize_image.php?image=<!--{$arrBestProducts[$cnt2].main_list_image|sfNoImageMainList|escape}-->&amp;width=80&amp;height=80" alt="<!--{$arrBestProducts[$cnt2].name|escape}-->" /></a>
+
+            <div class="recomendrightblock">
+                <h3>
+                <a href="<!--{$smarty.const.DETAIL_P_HTML}--><!--{$arrBestProducts[$cnt2].product_id|escape:url}-->"><!--{$arrBestProducts[$cnt2].name|escape}--></a>
+                </h3>
+
+                <!--{assign var=price01 value=`$arrBestProducts[$cnt2].price01_min`}-->
+                <!--{assign var=price02 value=`$arrBestProducts[$cnt2].price02_min`}-->
+
+                <p class="sale_price"><span class="mini">(税込)</span>：
+                    <span class="price"><!--{$price02|sfPreTax:$arrInfo.tax:$arrInfo.tax_rule|number_format}--> 円</span>
+                </p>
+
+                <p class="mini comment"><!--{$arrBestProducts[$cnt2].comment|escape|nl2br}--></p>
+            </div>
+        </div>
+        <!--{/if}-->
+    </div>
+    <!--{/section}-->
+</div>
+<!--{/if}-->
Index: branches/version-2_5-dev/data/Smarty/templates/sphone/bloc/login.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/sphone/bloc/login.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/sphone/bloc/login.tpl	(revision 19665)
@@ -0,0 +1,34 @@
+<!--{*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ *}-->
+<!--▼ログインここから-->
+<div id="block-login" class="block-side">
+  <div class="create-box">
+    <!--{if $tpl_login}-->
+      <a href="<!--{$smarty.const.SPHONE_SSL_URL|sfTrimURL}-->/mypage/login.php" class="spbtn">マイページ</a>
+    <!--{else}-->
+      <a href="<!--{$smarty.const.SPHONE_SSL_URL|sfTrimURL}-->/entry/kiyaku.php" class="spbtn">会員登録</a>
+      <a href="<!--{$smarty.const.SPHONE_SSL_URL|sfTrimURL}-->/mypage/login.php" class="spbtn">ログイン</a>
+    <!--{/if}-->
+    <!--ログインフォーム-->
+  </div>
+</div>
+<!--▲ログインここまで-->
Index: branches/version-2_5-dev/data/Smarty/templates/sphone/bloc/news.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/sphone/bloc/news.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/sphone/bloc/news.tpl	(revision 19665)
@@ -0,0 +1,67 @@
+<!--{*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ *}-->
+<!--{assign var=mypage value="`$smarty.const.SPHONE_URL_DIR`mypage/index.php"}-->
+<!--{if $smarty.server.PHP_SELF != $mypage}-->
+
+<!--{if $arrNews}-->
+<div id="block-news" class="block-center">
+<div class="create-box">
+
+<!--{section name=data loop=$arrNews max=3}-->
+<div class="anews">
+<span><!--{$arrNews[data].news_date_disp|date_format:"%m.%d"}--></span>&nbsp;
+<!--{if $arrNews[data].news_url}--><a href="<!--{$arrNews[data].news_url|escape}-->"><!--{/if}-->
+<!--{$arrNews[data].news_title|escape}-->
+<!--{if $arrNews[data].news_url}--></a><!--{/if}-->
+</div>
+<!--{/section}-->
+
+</div>
+</div>
+
+<script type="text/javascript" language="JavaScript">
+//<![CDATA[
+initNews(); //カテゴリーリストの初期化
+//]]>
+</script>
+<!--{/if}-->
+
+
+<!--{elseif $smarty.server.PHP_SELF == $mypage}-->
+
+<!--{if $arrMemberNews}-->
+<h3>お知らせ</h3>
+<div id="block-news-mypage">
+
+<!--{section name=data loop=$arrMemberNews max=3}-->
+<div class=" ">
+<span><!--{$arrMemberNews[data].news_date_disp|date_format:"%m.%d"}--></span>&nbsp;
+<!--{if $arrMemberNews[data].news_url}--><a href="<!--{$arrMemberNews[data].news_url|escape}-->"><!--{/if}-->
+<!--{$arrMemberNews[data].news_title|escape}-->
+<!--{if $arrMemberNews[data].news_url}--></a><!--{/if}-->
+</div>
+<!--{/section}-->
+
+</div>
+<!--{/if}-->
+
+<!--{/if}-->
Index: branches/version-2_5-dev/data/Smarty/templates/sphone/bloc/category.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/sphone/bloc/category.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/sphone/bloc/category.tpl	(revision 19665)
@@ -0,0 +1,82 @@
+<!--{*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ *}-->
+<!--商品カテゴリーここから-->
+<h2 id="title-category" class="title-side">商品カテゴリ</h2>
+<div id="block-category" class="block-side">
+  <div class="create-box">
+
+    <ul id="categorytree">
+    <!--{assign var=preLev value=1}-->
+    <!--{assign var=firstdone value=0}-->
+    <!--{section name=cnt loop=$arrTree}-->
+      <!--{* カテゴリ表示・非表示切り替え *}-->
+      <!--{if $arrTree[cnt].view_flg != "2"}-->
+        <!--{* 表示フラグがTRUEなら表示 *}-->
+        <!--{* <!--{if $arrTree[cnt].display == 1}--> *}-->
+        <!--{assign var=level value=`$arrTree[cnt].level`}-->
+        <!--{* level2以下なら表示（level指定可能） *}-->
+        <!--{if $level <= 2 || $arrTree[cnt].display == 1}-->
+        <!--{assign var=levdiff value=`$level-$preLev`}-->
+          <!--{if $levdiff > 0}-->
+              <ul>
+          <!--{elseif $levdiff == 0 && $firstdone == 1}-->
+              </li>
+          <!--{elseif $levdiff < 0}-->
+            <!--{section name=d loop=`$levdiff*-1`}-->
+                </li>
+              </ul>
+            <!--{/section}-->
+            </li>
+          <!--{/if}-->
+          
+          <li class="level<!--{$level}--><!--{if in_array($arrTree[cnt].category_id, $tpl_category_id) }--> onmark<!--{/if}-->"><span class="category_header"></span><span class="category_body"><a href="<!--{$smarty.const.SPHONE_URL_DIR}-->products/list.php?category_id=<!--{$arrTree[cnt].category_id}-->"<!--{if in_array($arrTree[cnt].category_id, $tpl_category_id) }--> class="onlink"<!--{/if}-->><!--{$arrTree[cnt].category_name|escape}-->(<!--{$arrTree[cnt].product_count|default:0}-->)</a></span>
+            <!--{if $firstdone == 0}--><!--{assign var=firstdone value=1}--><!--{/if}-->
+            <!--{assign var=preLev value=`$level`}-->
+            <!--{/if}-->
+            <!--{* セクションの最後に閉じタグを追加 *}-->
+            <!--{if $smarty.section.cnt.last}-->
+                <!--{if $preLev-1 > 0 }-->
+                    <!--{section name=d loop=`$preLev-1`}-->
+                        </li>
+                    </ul>
+            <!--{/section}-->
+            </li>
+          <!--{else}-->
+            </li>
+          <!--{/if}-->
+        <!--{/if}-->
+      <!--{/if}-->
+    <!--{/section}-->
+    </ul>
+
+  </div>
+</div>
+
+<!--{if $arrTree|@count > 0}-->
+<script type="text/javascript" language="JavaScript">
+//<![CDATA[
+initCategoryList(); //カテゴリーリストの初期化
+//]]>
+</script>
+<!--{/if}-->
+
+<!--商品カテゴリーここまで-->
Index: branches/version-2_5-dev/data/Smarty/templates/sphone/detail.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/sphone/detail.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/sphone/detail.tpl	(revision 19665)
@@ -0,0 +1,526 @@
+<!--{*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ *}-->
+<script type="text/javascript" src="<!--{$TPL_DIR}-->jquery.fancybox/jquery.mousewheel-3.0.2.pack.js"></script>
+<script type="text/javascript" src="<!--{$TPL_DIR}-->jquery.fancybox/jquery.fancybox-1.3.1.pack.js"></script>
+<link rel="stylesheet" href="<!--{$TPL_DIR}-->jquery.fancybox/jquery.fancybox-1.3.1.css" type="text/css" media="screen" />
+<script type="text/javascript">//<![CDATA[
+// 規格2に選択肢を割り当てる。
+function fnSetClassCategories(form, classcat_id2_selected) {
+    sele1 = form.classcategory_id1;
+    sele2 = form.classcategory_id2;
+
+    if (sele1) {
+        if (sele2) {
+            // 規格2の選択肢をクリア
+            count = sele2.options.length;
+            for(i = count; i >= 0; i--) {
+                sele2.options[i] = null;
+            }
+
+            // 規格2に選択肢を割り当てる
+            classcats = classCategories[sele1.value];
+            i = 0;
+            for (var classcat_id2_key in classcats) {
+                sele2.options[i] = new Option(classcats[classcat_id2_key].name, classcat_id2_key);
+                if (classcat_id2_key == classcat_id2_selected) {
+                    sele2.options[i].selected = true;
+                }
+                i++;
+            }
+        }
+        fnCheckStock(form);
+    }
+}
+function fnCheckStock(form) {
+    classcat_id1 = form.classcategory_id1.value;
+    classcat_id2 = form.classcategory_id2 ? form.classcategory_id2.value : 0;
+    classcat2 = classCategories[classcat_id1][classcat_id2];
+
+    // 商品コード
+    eleDefault = document.getElementById('product_code_default');
+    eleDynamic = document.getElementById('product_code_dynamic');
+    if (
+           classcat2
+        && typeof classcat2.product_code != 'undefined'
+    ) {
+        eleDefault.style.display = 'none';
+        eleDynamic.innerHTML = classcat2.product_code;
+    } else {
+        eleDefault.style.display = '';
+        eleDynamic.innerHTML = '';
+    }
+
+    // 在庫(品切れ)
+    eleDefault = document.getElementById('cartbtn_default');
+    eleDynamic = document.getElementById('cartbtn_dynamic');
+    if (
+           classcat2
+        && classcat2.stock_find === false
+    ) {
+        eleDefault.style.display = 'none';
+        eleDynamic.innerHTML = '申し訳ございませんが、只今品切れ中です。';
+    } else {
+        eleDefault.style.display = '';
+        eleDynamic.innerHTML = '';
+    }
+
+    // 通常価格
+    eleDefault = document.getElementById('price01_default');
+    eleDynamic = document.getElementById('price01_dynamic');
+    if (eleDefault && eleDynamic) {
+        if (
+               classcat2
+            && typeof classcat2.price01 != 'undefined'
+            && String(classcat2.price01).length >= 1
+        ) {
+            eleDefault.style.display = 'none';
+            eleDynamic.innerHTML = classcat2.price01;
+        } else {
+            eleDefault.style.display = '';
+            eleDynamic.innerHTML = '';
+        }
+    }
+
+    // 販売価格
+    eleDefault = document.getElementById('price02_default');
+    eleDynamic = document.getElementById('price02_dynamic');
+    if (
+           classcat2
+        && typeof classcat2.price02 != 'undefined'
+        && String(classcat2.price02).length >= 1
+    ) {
+        eleDefault.style.display = 'none';
+        eleDynamic.innerHTML = classcat2.price02;
+    } else {
+        eleDefault.style.display = '';
+        eleDynamic.innerHTML = '';
+    }
+
+    // ポイント
+    eleDefault = document.getElementById('point_default');
+    eleDynamic = document.getElementById('point_dynamic');
+    if (
+           classcat2
+        && typeof classcat2.point != 'undefined'
+        && String(classcat2.point).length >= 1
+    ) {
+        eleDefault.style.display = 'none';
+        eleDynamic.innerHTML = classcat2.point;
+    } else {
+        eleDefault.style.display = '';
+        eleDynamic.innerHTML = '';
+    }
+    // 商品規格
+    eleDynamic = document.getElementById('product_class_id');
+    if (
+           classcat2
+        && typeof classcat2.product_class_id != 'undefined'
+        && String(classcat2.product_class_id).length >= 1
+    ) {
+        eleDynamic.value = classcat2.product_class_id;
+    } else {
+        eleDynamic.value = ''
+    }
+    // 商品種別
+    eleDynamic = document.getElementById('product_type');
+    if (
+           classcat2
+        && typeof classcat2.product_type != 'undefined'
+        && String(classcat2.product_type).length >= 1
+    ) {
+        eleDynamic.value = classcat2.product_type;
+    } else {
+        eleDynamic.value = ''
+    }
+}
+$(document).ready(function() {
+    $("a.expansion").fancybox({
+    });
+});
+//]]>
+</script>
+
+<!--▼CONTENTS-->
+<div id="undercolumn" class="product product_detail">
+
+    <!--★タイトル★-->
+    <h2 class="title"><!--{$tpl_subtitle|escape}--></h2>
+
+    <div id="detailarea">
+        <div id="detailphotoblock">
+
+            <!--{assign var=key value="main_image"}-->
+
+            <!--★画像★-->
+            <a
+                <!--{if $arrProduct.main_large_image|strlen >= 1}-->
+                    href="<!--{$smarty.const.IMAGE_SAVE_URL}--><!--{$arrProduct.main_large_image|escape}-->"
+                    class="expansion"
+                    onmouseover="chgImg('<!--{$TPL_DIR}-->img/products/b_expansion_on.gif','expansion01');"
+                    onmouseout="chgImg('<!--{$TPL_DIR}-->img/products/b_expansion.gif','expansion01');"
+                    target="_blank"
+                <!--{/if}-->
+            >
+                <img src="<!--{$arrFile[$key].filepath|escape}-->" width="<!--{$arrFile[$key].width}-->" height="<!--{$arrFile[$key].height}-->" alt="<!--{$arrProduct.name|escape}-->" class="picture" /><br />
+                <!--★拡大する★-->
+                <!--{if $arrProduct.main_large_image|strlen >= 1}-->
+                    <img src="<!--{$TPL_DIR}-->img/products/b_expansion.gif" width="85" height="13" alt="画像を拡大する" name="expansion01" id="expansion01" />
+                <!--{/if}-->
+            </a>
+        </div>
+
+        <div id="detailrightblock">
+            <!--▼商品ステータス-->
+            <!--{assign var=ps value=$productStatus[$smarty.get.product_id]}-->
+            <!--{if count($ps) > 0}-->
+                <ul class="status_icon">
+                    <!--{foreach from=$ps item=status}-->
+                    <li>
+                        <img src="<!--{$TPL_DIR}--><!--{$arrSTATUS_IMAGE[$status]}-->" width="65" height="17" alt="<!--{$arrSTATUS[$status]}-->" id="icon<!--{$status}-->" />
+                    </li>
+                    <!--{/foreach}-->
+                </ul>
+            <!--{/if}-->
+            <!--▲商品ステータス-->
+
+            <!--★ダウンロード販売★-->
+            <!--{if $arrProduct.down == 2}-->
+                <div><font color="red">本商品はダウンロード販売となります。<br /> 購入後はMYページの購入履歴からダウンロード可能です。</font></div><br />
+            <!--{/if}-->
+
+            <table>
+                <tr>
+                    <th colspan="2">
+                        <!--★商品名★-->
+                        <h2><!--{$arrProduct.name|escape}--></h2>
+                    </th>
+                </tr>
+                <tr>
+                    <th>
+                        <!--★販売価格★-->
+                        <div class="sale_price"><!--{$smarty.const.SALE_PRICE_TITLE}--><span class="mini">(税込)</span></div>
+                    </th>
+                    <td>
+                        <span class="price">
+                            <span id="price02_default">
+                                <!--{if $arrProduct.price02_min == $arrProduct.price02_max}-->
+                                    <!--{$arrProduct.price02_min|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
+                                <!--{else}-->
+                                    <!--{$arrProduct.price02_min|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->～<!--{$arrProduct.price02_max|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
+                                <!--{/if}-->
+                            </span><span id="price02_dynamic"></span>
+                            円
+                        </span>
+                    </td>
+                </tr>
+                <!--★通常価格★-->
+                <!--{if $arrProduct.price01_max > 0}-->
+                <tr>
+                    <th>
+                        <div class="normal_price">
+                        <!--{$smarty.const.NORMAL_PRICE_TITLE}-->：
+                        </div>
+                    </th>
+                    <td>
+                        <span class="price">
+                            <span id="price01_default">
+                                <!--{if $arrProduct.price01_min == $arrProduct.price01_max}-->
+                                    <!--{$arrProduct.price01_min|number_format}-->
+                                <!--{else}-->
+                                    <!--{$arrProduct.price01_min|number_format}-->～<!--{$arrProduct.price01_max|number_format}-->
+                                <!--{/if}-->
+                            </span><span id="price01_dynamic"></span>
+                            円
+                        </span>
+                    </td>
+                </tr>    
+                <!--{/if}-->
+
+            
+                <!--★ポイント★-->
+                <!--{if $smarty.const.USE_POINT !== false}-->
+                <tr>
+                    <th>
+                        <span class="price">ポイント：</span>
+                    </th>
+                    <td>
+                        <span id="point_default">
+                            <!--{if $arrProduct.price02_min == $arrProduct.price02_max}-->
+                                <!--{$arrProduct.price02_min|sfPrePoint:$arrProduct.point_rate:$smarty.const.POINT_RULE:$arrProduct.product_id}-->
+                            <!--{else}-->
+                                <!--{if $arrProduct.price02_min|sfPrePoint:$arrProduct.point_rate:$smarty.const.POINT_RULE:$arrProduct.product_id == $arrProduct.price02_max|sfPrePoint:$arrProduct.point_rate:$smarty.const.POINT_RULE:$arrProduct.product_id}-->
+                                    <!--{$arrProduct.price02_min|sfPrePoint:$arrProduct.point_rate:$smarty.const.POINT_RULE:$arrProduct.product_id}-->
+                                <!--{else}-->
+                                    <!--{$arrProduct.price02_min|sfPrePoint:$arrProduct.point_rate:$smarty.const.POINT_RULE:$arrProduct.product_id}-->～<!--{$arrProduct.price02_max|sfPrePoint:$arrProduct.point_rate:$smarty.const.POINT_RULE:$arrProduct.product_id}-->
+                                <!--{/if}-->
+                            <!--{/if}-->
+                            </span><span id="point_dynamic">
+                            Pt
+                        </span>
+                    </td>
+                </tr>
+                <!--{/if}-->
+
+                <!--▼メーカーURL-->
+                <!--{if $arrProduct.comment1|strlen >= 1}-->
+                <tr>
+                    <th>
+                        <span class="comment1">メーカーURL：
+                    </th>
+                    <td>
+                            <a href="<!--{$arrProduct.comment1|escape}-->">
+                                <!--{$arrProduct.comment1|escape}--></a>
+                    </td>
+                </tr>
+                <!--{/if}-->
+                <!--▲メーカーURL-->
+
+                <!--★関連カテゴリ★-->
+                <tr>
+                    <th>
+                        <div class="relative_cat">関連カテゴリ：</div>
+                    </th>
+                    <td>
+                        <!--{section name=r loop=$arrRelativeCat}-->
+                        <p>
+                            <!--{section name=s loop=$arrRelativeCat[r]}-->
+                            <a href="<!--{$smarty.const.SPHONE_URL_DIR}-->products/list.php?category_id=<!--{$arrRelativeCat[r][s].category_id}-->"><!--{$arrRelativeCat[r][s].category_name}--></a>
+                            <!--{if !$smarty.section.s.last}--><!--{$smarty.const.SEPA_CATNAVI}--><!--{/if}-->
+                            <!--{/section}-->
+                        </p>
+                        <!--{/section}-->
+                    </td>
+                </tr>
+                <tr>
+                    <td colspan="2">
+                            <!--★詳細メインコメント★-->
+                            <div class="main_comment"><!--{$arrProduct.main_comment|nl2br_html}--></div>
+                    </td>
+                </tr>
+            </table>
+
+            <!--▼買い物かご-->
+            <form name="form1" id="form1" method="post" action="?">
+                <input type="hidden" name="mode" value="cart" />
+                <input type="hidden" name="product_id" value="<!--{$tpl_product_id}-->" />
+                <input type="hidden" name="product_class_id" value="<!--{$tpl_product_class_id}-->" id="product_class_id" />
+                <input type="hidden" name="product_type" value="<!--{$tpl_product_type}-->" id="product_type" />
+                <input type="hidden" name="favorite_product_id" value="" />
+
+                <!--{if $tpl_stock_find}-->
+                    <dl>
+                        <!--{if $tpl_classcat_find1}-->
+                            <!--▼規格1-->
+                            <dt><!--{$tpl_class_name1|escape}--></dt>
+                            <dd>
+                                <select name="classcategory_id1"
+                                    style="<!--{$arrErr.classcategory_id1|sfGetErrorColor}-->"
+                                    onchange="fnSetClassCategories(this.form);"
+                                >
+                                    <!--{html_options options=$arrClassCat1 selected=$arrForm.classcategory_id1.value}-->
+                                </select>
+                                <!--{if $arrErr.classcategory_id1 != ""}-->
+                                    <br /><span class="attention">※ <!--{$tpl_class_name1}-->を入力して下さい。</span>
+                                <!--{/if}-->
+                            </dd>
+                            <!--▲規格1-->
+                        <!--{/if}-->
+
+                        <!--{if $tpl_classcat_find2}-->
+                            <!--▼規格2-->
+                            <dt><!--{$tpl_class_name2|escape}--></dt>
+                            <dd>
+                                <select name="classcategory_id2"
+                                    style="<!--{$arrErr.classcategory_id2|sfGetErrorColor}-->"
+                                    onchange="fnCheckStock(this.form);"
+                                >
+                                </select>
+                                <!--{if $arrErr.classcategory_id2 != ""}-->
+                                    <br /><span class="attention">※ <!--{$tpl_class_name2}-->を入力して下さい。</span>
+                                <!--{/if}-->
+                            </dd>
+                            <!--▲規格2-->
+                        <!--{/if}-->
+
+                        <dt>数量</dt>
+                        <dd>
+                            <input type="text" name="quantity" class="box54" value="<!--{$arrForm.quantity.value|default:1}-->" maxlength="<!--{$smarty.const.INT_LEN}-->" style="<!--{$arrErr.quantity|sfGetErrorColor}-->" />
+                            <!--{if $arrErr.quantity != ""}-->
+                                <br /><span class="attention"><!--{$arrErr.quantity}--></span>
+                            <!--{/if}-->
+                        </dd>
+                    </dl>
+                <!--{/if}-->
+
+                <div class="btn">
+                    <!--{if $smarty.const.OPTION_FAVOFITE_PRODUCT == 1 && $tpl_login === true}-->
+                        <div>
+                            <!--{assign var=add_favorite value="add_favorite`$product_id`"}-->
+                            <!--{if $arrErr[$add_favorite]}--><div class="attention"><!--{$arrErr[$add_favorite]}--></div><!--{/if}-->
+                            <!--{if !$arrProduct.favorite_count}-->
+                                <a
+                                    href="javascript:fnModeSubmit('add_favorite','favorite_product_id','<!--{$arrProduct.product_id|escape}-->');"
+                                    onmouseover="chgImg('<!--{$TPL_DIR}-->img/products/add_favolite_product_on.gif','add_favolite_product');"
+                                    onmouseout="chgImg('<!--{$TPL_DIR}-->img/products/add_favolite_product.gif','add_favolite_product');"
+                                ><img src="<!--{$TPL_DIR}-->img/products/add_favolite_product.gif" width="115" height="20" alt="お気に入りに追加" name="add_favolite_product" id="add_favolite_product" /></a>
+                            <!--{else}-->
+                                <img src="<!--{$TPL_DIR}-->img/products/add_favolite_product_on.gif" width="115" height="20" alt="お気に入り登録済" name="add_favolite_product" id="add_favolite_product" />
+                            <!--{/if}-->
+                        </div>
+                    <!--{/if}-->
+
+                    <!--{if $tpl_stock_find}-->
+                        <div id="cartbtn_default">
+                            <!--★カゴに入れる★-->
+                            <div>
+                                <a href="javascript:void(document.form1.submit())" onmouseover="chgImg('<!--{$TPL_DIR}-->img/products/b_cartin_on.gif','cart');" onmouseout="chgImg('<!--{$TPL_DIR}-->img/products/b_cartin.gif','cart');" class="spbtn spbtn-agree">
+                                    カゴに入れる
+                                </a>
+                            </div>
+                            <!--{if 'sfGMODetailDisplay'|function_exists}--><!--{* GMOワンクリック *}-->
+                                <!--{'sfGMODetailDisplay'|call_user_func}-->
+                            <!--{/if}-->
+                        </div>
+                        <div class="attention" id="cartbtn_dynamic"></div>
+                    <!--{else}-->
+                        <div class="attention">申し訳ございませんが、只今品切れ中です。</div>
+                    <!--{/if}-->
+                </div>
+            </form>
+            <!--▲買い物かご-->
+
+        </div>
+    </div>
+    <!--{* オペビルダー用 *}-->
+    <!--{if "sfViewDetailOpe"|function_exists === TRUE}-->
+        <!--{include file=`$smarty.const.MODULE_PATH`mdl_opebuilder/detail_ope_view.tpl}-->
+    <!--{/if}-->
+    <!--詳細ここまで-->
+
+    <!--▼サブコメント-->
+    <!--{section name=cnt loop=$smarty.const.PRODUCTSUB_MAX}-->
+        <!--{assign var=key value="sub_title`$smarty.section.cnt.index+1`"}-->
+        <!--{if $arrProduct[$key] != ""}-->
+            <div class="subarea">
+                <h3><!--★サブタイトル★--><!--{$arrProduct[$key]|escape}--></h3>
+                <!--{assign var=ckey value="sub_comment`$smarty.section.cnt.index+1`"}-->
+
+                <div class="subtext"><!--★サブテキスト★--><!--{$arrProduct[$ckey]|nl2br_html}--></div>
+
+                <!--▼サブ画像-->
+                <!--{assign var=key value="sub_image`$smarty.section.cnt.index+1`"}-->
+                <!--{assign var=lkey value="sub_large_image`$smarty.section.cnt.index+1`"}-->
+                <!--{if $arrProduct[$key]|strlen >= 1}-->
+                    <div class="subphotoimg">
+                        <a
+                            <!--{if $arrProduct[$lkey]|strlen >= 1}-->
+                                href="<!--{$smarty.const.IMAGE_SAVE_URL}--><!--{$arrProduct[$lkey]|escape}-->"
+                                class="expansion"
+                                onmouseover="chgImg('<!--{$TPL_DIR}-->img/products/b_expansion_on.gif', 'expansion_<!--{$lkey|escape}-->');"
+                                onmouseout="chgImg('<!--{$TPL_DIR}-->img/products/b_expansion.gif', 'expansion_<!--{$lkey|escape}-->');"
+                                target="_blank"
+                            <!--{/if}-->
+                        >
+                            <img src="<!--{$arrFile[$key].filepath}-->" alt="<!--{$arrProduct.name|escape}-->" width="<!--{$arrFile[$key].width}-->" height="<!--{$arrFile[$key].height}-->" /><br />
+                            <!--{if $arrProduct[$lkey]|strlen >= 1}-->
+                                <img src="<!--{$TPL_DIR}-->img/products/b_expansion.gif" width="85" height="13" alt="画像を拡大する" id="expansion_<!--{$lkey|escape}-->" />
+                            <!--{/if}-->
+                        </a>
+                    </div>
+                <!--{/if}-->
+                <!--▲サブ画像-->
+            </div>
+        <!--{/if}-->
+    <!--{/section}-->
+    <!--▲サブコメント-->
+
+    <!--▼関連商品-->
+    <!--{if $arrRecommend}-->
+        <div id="whoboughtarea">
+            <h2>その他のオススメ商品(関連商品)</h2>
+            <div class="whoboughtblock">
+
+            <!--{section name=cnt loop=$arrRecommend}-->
+                <!--{if ($smarty.section.cnt.index % 2) == 0}-->
+                <!--{if $arrRecommend[cnt].product_id}-->
+                <!-- 左列 -->
+                <div class="whoboughtleft">
+
+                    <a href="<!--{$smarty.const.DETAIL_P_HTML}--><!--{$arrRecommend[cnt].product_id|escape:url}-->">
+                        <img src="<!--{$smarty.const.SPHONE_URL_DIR}-->resize_image.php?image=<!--{$arrRecommend[cnt].main_list_image|sfNoImageMainList|escape}-->&amp;width=65&amp;height=65" alt="<!--{$arrRecommend[cnt].name|escape}-->" /></a>
+
+                    <div class="whoboughtrightblock">
+                        <!--{assign var=price02_min value=`$arrRecommend[cnt].price02_min`}-->
+                        <!--{assign var=price02_max value=`$arrRecommend[cnt].price02_max`}-->
+                        <h3><a href="<!--{$smarty.const.DETAIL_P_HTML}--><!--{$arrRecommend[cnt].product_id|escape:url}-->"><!--{$arrRecommend[cnt].name|escape}--></a></h3>
+
+                        <p class="sale_price"><!--{$smarty.const.SALE_PRICE_TITLE}--><span class="mini">(税込)</span>：<span class="price">
+                            <!--{if $price02_min == $price02_max}-->
+                                <!--{$price02_min|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
+                            <!--{else}-->
+                                <!--{$price02_min|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->～<!--{$price02_max|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
+                            <!--{/if}-->円</span></p>
+                        <p class="mini"><!--{$arrRecommend[cnt].comment|escape|nl2br}--></p>
+                    </div>
+                </div>
+                <!-- 左列 -->
+                <!--{/if}-->
+                <!--{/if}-->
+
+                <!--{if ($smarty.section.cnt.index % 2) != 0}-->
+                <!--{* assign var=nextCnt value=$smarty.section.cnt.index+1 *}-->
+                <!--{if $arrRecommend[cnt].product_id}-->
+                <!-- 右列 -->
+                <div class="whoboughtright">
+
+                    <a href="<!--{$smarty.const.DETAIL_P_HTML}--><!--{$arrRecommend[cnt].product_id|escape:url}-->">
+                        <img src="<!--{$smarty.const.SPHONE_URL_DIR}-->resize_image.php?image=<!--{$arrRecommend[cnt].main_list_image|sfNoImageMainList|escape}-->&amp;width=65&amp;height=65" alt="<!--{$arrRecommend[cnt].name|escape}-->" /></a>
+
+                    <div class="whoboughtrightblock">
+                        <!--{assign var=price02_min value=`$arrRecommend[cnt].price02_min`}-->
+                        <!--{assign var=price02_max value=`$arrRecommend[cnt].price02_max`}-->
+                        <h3><a href="<!--{$smarty.const.DETAIL_P_HTML}--><!--{$arrRecommend[cnt].product_id|escape:url}-->"><!--{$arrRecommend[cnt].name|escape}--></a></h3>
+
+                        <p class="sale_price"><!--{$smarty.const.SALE_PRICE_TITLE}--><span class="mini">(税込)</span>：<span class="price">
+
+                            <!--{if $price02_min == $price02_max}-->
+                                <!--{$price02_min|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
+                            <!--{else}-->
+                                <!--{$price02_min|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->～<!--{$price02_max|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
+                            <!--{/if}-->円</span></p>
+                        <p class="mini"><!--{$arrRecommend[cnt].comment|escape|nl2br}--></p>
+                    </div>
+                </div>
+                <!-- 右列 -->
+            <!--{/if}-->
+            <!--{/if}-->
+
+            <!--{if $smarty.section.cnt.last}-->
+            </div>
+            <!--{/if}-->
+        <!--{/section}-->
+        </div>
+    <!--{/if}-->
+    <!--▲関連商品-->
+
+</div>
+<!--▲CONTENTS-->
Index: branches/version-2_5-dev/data/Smarty/templates/sphone/top.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/sphone/top.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/sphone/top.tpl	(revision 19665)
@@ -0,0 +1,55 @@
+<!--{*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ *}-->
+
+<div id="topbox">
+<!--{* ▼ロゴ ここから *}-->
+<div id="header">
+<h1>
+    <a href="<!--{$smarty.const.SPHONE_SSL_URL}-->">
+      <em><!--{$arrSiteInfo.shop_name|escape}-->/<!--{$tpl_title|escape}--></em></a>
+  </h1>
+</div>
+<!--{* ▲ロゴ ここまで *}-->
+
+<!--{* ヘッダメニュー *}-->
+<div id="headmenu">
+
+<!--{* 検索 *}-->
+<div id="searchbar">
+<form method="get" action="<!--{$smarty.const.SPHONE_SITE_URL}-->products/list.php">
+<input type="text" name="name" maxlength="50" value="<!--{$smarty.get.name|escape}-->" placeholder="商品検索" ><input type="submit" name="search" value="検索">
+</form>
+<!--{* searchmenu *}--></div>
+<!--{* headmenu *}--></div>
+<!--{* topbox *}--></div>
+
+<!--{* 新着情報 *}-->
+<!--{include_php file=`$smarty.const.SPHONE_HTML_PATH`/frontparts/bloc/news.php}-->
+
+<!--{* ログイン *}-->
+<!--{include_php file=`$smarty.const.SPHONE_HTML_PATH`/frontparts/bloc/login.php}-->
+
+<!--{* おすすめ商品 *}-->
+<!--{include_php file=`$smarty.const.SPHONE_HTML_PATH`/frontparts/bloc/best5.php}-->
+
+<!-- ▼メニュー ここから -->
+<!--{include_php file=`$smarty.const.SPHONE_HTML_PATH`/frontparts/bloc/category.php}-->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/unsupported/index.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/unsupported/index.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/unsupported/index.tpl	(revision 19665)
@@ -0,0 +1,28 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<!--▼CONTENTS-->
+<!--▼MAIN ONTENTS-->
+非対応機種です。
+<!--▲MAIN ONTENTS-->
+<!--▲CONTENTS-->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/cart/index.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/cart/index.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/cart/index.tpl	(revision 19665)
@@ -0,0 +1,88 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<!--▼CONTENTS-->
+<!--▼MAIN ONTENTS-->
+<div align="center"><font color="#000080">かご表示</font></div>
+<!--{if $tpl_message != ""}-->
+	<!--{$tpl_message}--><br>
+<!--{/if}-->
+<!--{if count($arrProductsClass) > 0}-->
+<form name="form1" id="form1" method="post" action="<!--{$smarty.server.PHP_SELF|escape}-->"  utn>
+	<input type="hidden" name="mode" value="confirm">
+	<input type="hidden" name="cart_no" value="">
+	<!--ご注文内容ここから-->
+	<hr>
+	<!--{section name=cnt loop=$arrProductsClass}-->
+		<!--{* 商品名 *}--><!--{$arrProductsClass[cnt].name|escape}--><br>
+		<!--{* 販売価格 *}-->
+		\<!--{$arrProductsClass[cnt].price02|sfPreTax:$arrInfo.tax:$arrInfo.tax_rule|number_format}-->
+		× <!--{$arrProductsClass[cnt].quantity}--><br>
+		<!--{* 詳細 *}-->
+		<!--{if $arrProductsClass[cnt].classcategory_name1 != ""}-->
+			<!--{$arrProductsClass[cnt].class_name1}-->:<!--{$arrProductsClass[cnt].classcategory_name1}--><br>
+		<!--{/if}-->
+		<!--{if $arrProductsClass[cnt].classcategory_name2 != ""}-->
+			<!--{$arrProductsClass[cnt].class_name2}-->:<!--{$arrProductsClass[cnt].classcategory_name2}--><br>
+		<!--{/if}-->
+		<br>
+		<!--{* 数量 *}-->
+		数量:<!--{$arrProductsClass[cnt].quantity}-->
+		<a href="<!--{$smarty.server.PHP_SELF|escape}-->?mode=up&amp;cart_no=<!--{$arrProductsClass[cnt].cart_no}-->">+</a>
+		<a href="<!--{$smarty.server.PHP_SELF|escape}-->?mode=down&amp;cart_no=<!--{$arrProductsClass[cnt].cart_no}-->">-</a>
+		<a href="<!--{$smarty.server.PHP_SELF|escape}-->?mode=delete&amp;cart_no=<!--{$arrProductsClass[cnt].cart_no}-->">削除</a><br>
+		<!--{* 合計 *}-->
+		小計:<!--{$arrProductsClass[cnt].total_pretax|number_format}-->円<br>
+		<div align="right"><a href="<!--{$smarty.const.MOBILE_DETAIL_P_HTML}--><!--{$arrProductsClass[cnt].product_id|escape:url}-->">商品詳細へ→</a></div>
+		<HR>
+	<!--{/section}-->
+	商品合計:<!--{$tpl_total_pretax|number_format}-->円<br>
+	合計:<!--{$arrData.total-$arrData.deliv_fee|number_format}-->円<br>
+	<!--{if $arrData.birth_point > 0}-->
+		お誕生月ﾎﾟｲﾝﾄ<br>
+		<!--{$arrData.birth_point|number_format}-->pt<br>
+	<!--{/if}-->
+	<br>
+	<center><input type="submit" value="注文する"></center>
+</form>
+<form method="post" action="<!--{$smarty.server.PHP_SELF|escape}-->">
+	<input type="hidden" name="mode" value="continue">
+	<center><input type="submit" value="お買物を続ける"></center>
+</form>
+<!--{else}-->
+	※現在ｶｰﾄ内に商品はございません｡<br>
+<!--{/if}-->
+<!--▲CONTENTS-->
+<!--▲MAIN CONTENTS-->
+<!--▲CONTENTS-->
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/contact/index.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/contact/index.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/contact/index.tpl	(revision 19665)
@@ -0,0 +1,47 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">お問い合わせ</div>
+
+<hr>
+
+各種お問い合せは、下記のお電話又はメールにてご連絡下さいませ。<br>
+■<!--{$company_name}--><br>
+【電話】<br>
+営業時間：<br>
+<!--{$business_hour}--><br>
+電話番号：<br>
+<!--{$tel01}-->-<!--{$tel02}-->-<!--{$tel03}--><br>
+【E-mail】<br>
+<a href="mailto:<!--{$email02|escape:'url'}-->"><!--{$email02|escape}--></a><br>
+※お急ぎの場合には、お電話にてお問い合せ下さい。<br>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/magazine/cancel.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/magazine/cancel.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/magazine/cancel.tpl	(revision 19665)
@@ -0,0 +1,40 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">解除完了</div>
+<hr>
+
+メールマガジンの解除が完了致しました。<br>
+今後ともご愛顧賜りますようよろしくお願い申し上げます。<br>
+<br>
+
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/magazine/index.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/magazine/index.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/magazine/index.tpl	(revision 19665)
@@ -0,0 +1,58 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">メルマガ登録</div>
+<hr>
+ご登録いただいたお客様へは<!--{if $arrSiteInfo.shop_name != ""}--><!--{$arrSiteInfo.shop_name|escape}-->より<!--{/if}-->商品やキャンペーン情報をメールでお届けいたします。<br>
+※<!--{if $arrSiteInfo.shop_name != ""}--><!--{$arrSiteInfo.shop_name|escape}-->では<!--{/if}-->ご利用規約に従い利用者のアドレスを保護しています。<br>
+<br>
+<form action="confirm.php" method="post">
+	■登録<br>
+	<font color="#FF0000"><!--{$arrErr.regist}--></font>
+	<input type="text" name="regist" value="<!--{$arrForm.regist|escape}-->" istyle="3"><br>
+	<div align="center"><input type="submit" name="btnRegist" value="次へ"></div>
+	<br>
+
+	■解除<br>
+	<font color="#FF0000"><!--{$arrErr.cancel}--></font>
+	<input type="text" name="cancel" value="<!--{$arrForm.cancel|escape}-->" istyle="3"><br>
+	<div align="center"><input type="submit" name="btnCancel" value="次へ"></div>
+	<br>
+</form>
+<br>
+
+■メールアドレス変更<br>
+メールアドレス変更希望の方は一度、登録解除してから、もう一度登録し直してください。<br>
+
+<br>
+
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/magazine/complete.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/magazine/complete.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/magazine/complete.tpl	(revision 19665)
@@ -0,0 +1,40 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">完了</div>
+<hr>
+
+ご入力いただいたメールアドレス宛てに、ご連絡が届いておりますのでご確認下さい。<br>
+今後ともご愛顧賜りますようよろしくお願い申し上げます。<br>
+<br>
+
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/magazine/confirm.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/magazine/confirm.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/magazine/confirm.tpl	(revision 19665)
@@ -0,0 +1,49 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center"><!--{$arrForm.kind|escape}-->確認</div>
+<hr>
+<!--{$arrForm.kind|escape}-->を行います。<br>
+以下の内容でよろしいでしょうか。<br>
+
+<br>
+<form action="confirm.php" method="post">
+	<input type="hidden" name="mode" value="<!--{$arrForm.type}-->">
+	<input type="hidden" name="email" value="<!--{$arrForm.mail|escape}-->">
+	■メールアドレス<br>
+	<!--{$arrForm.mail|escape}--><br>
+	<br>
+	<div align="center"><input type="submit" name="submit" value="決定"></div>
+</form>
+<br>
+
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/magazine/regist.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/magazine/regist.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/magazine/regist.tpl	(revision 19665)
@@ -0,0 +1,40 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">登録完了</div>
+<hr>
+
+メールマガジンの登録が完了致しました。<br>
+今後ともご愛顧賜りますようよろしくお願い申し上げます。<br>
+<br>
+
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/footer.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/footer.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/footer.tpl	(revision 19665)
@@ -0,0 +1,28 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center><font size="-2">Copyright &copy; 
+<!--{if $smarty.const.RELEASE_YEAR !=  $smarty.now|date_format:"%Y"}-->
+    <!--{$smarty.const.RELEASE_YEAR}-->-
+<!--{/if}-->
+<!--{$smarty.now|date_format:"%Y"}--> <!--{$arrSiteInfo.shop_name_eng|escape}--> All rights reserved.</font></center>
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/guide/about.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/guide/about.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/guide/about.tpl	(revision 19665)
@@ -0,0 +1,78 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>運営会社紹介</center>
+
+<hr>
+
+<!-- ▼本文 ここから -->
+<!--{if $arrSiteInfo.shop_name != ""}-->
+[emoji:38]<font color="#800000">店名</font><br>
+<!--{$arrSiteInfo.shop_name|escape}--><br>
+<!--{/if}-->
+<!--{if $arrSiteInfo.company_name != ""}-->
+[emoji:39]<font color="#800000">会社名</font><br>
+<!--{$arrSiteInfo.company_name|escape}--><br>
+<!--{/if}-->
+<!--{if $arrSiteInfo.zip01 != ""}-->
+[emoji:121]<font color="#800000">住所</font><br>
+〒<!--{$arrSiteInfo.zip01|escape}-->-<!--{$arrSiteInfo.zip02|escape}--><br>
+<!--{$arrSiteInfo.pref|escape}--><!--{$arrSiteInfo.addr01|escape}--><!--{$arrSiteInfo.addr02|escape}--><br>
+<!--{/if}-->
+<!--{if $arrSiteInfo.tel01 != ""}-->
+[emoji:74]<font color="#800000">電話番号</font><br>
+<!--{$arrSiteInfo.tel01|escape}-->-<!--{$arrSiteInfo.tel02|escape}-->-<!--{$arrSiteInfo.tel03|escape}--><br>
+<!--{/if}-->
+<!--{if $arrSiteInfo.fax01 != ""}-->
+[emoji:76]<font color="#800000">FAX番号</font><br>
+<!--{$arrSiteInfo.fax01|escape}-->-<!--{$arrSiteInfo.fax02|escape}-->-<!--{$arrSiteInfo.fax03|escape}--><br>
+<!--{/if}-->
+<!--{if $arrSiteInfo.business_hour != ""}-->
+[emoji:176]<font color="#800000">営業時間</font><br>
+<!--{$arrSiteInfo.business_hour|escape}--><br>
+<!--{/if}-->
+<!--{if $arrSiteInfo.email02 != ""}-->
+[emoji:110]<font color="#800000">メールアドレス</font><br>
+<a href="mailto:<!--{$arrSiteInfo.email02|escape}-->"><!--{$arrSiteInfo.email02|escape}--></a><br>
+<!--{/if}-->
+<!--{if $arrSiteInfo.good_traded != ""}-->
+[emoji:72]<font color="#800000">取扱商品</font><br>
+<!--{$arrSiteInfo.good_traded|escape|nl2br}--><br>
+<!--{/if}-->
+<!--{if $arrSiteInfo.message != ""}-->
+[emoji:70]<font color="#800000">メッセージ</font><br>
+<!--{$arrSiteInfo.message|escape|nl2br}--><br>
+<!--{/if}-->
+<!-- ▲本文 ここまで -->
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/guide/order1.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/guide/order1.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/guide/order1.tpl	(revision 19665)
@@ -0,0 +1,58 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>特定商取引に関する法律に基づく表記(1/3)</center>
+
+<hr>
+
+<!-- ▼本文 ここから -->
+[emoji:39]<font color="#800000">販売業者</font><br>
+<!--{$arrRet.law_company|escape}--><br>
+[emoji:63]<font color="#800000">運営責任者</font><br>
+<!--{$arrRet.law_manager|escape}--><br>
+[emoji:38]<font color="#800000">住所</font><br>
+〒<!--{$arrRet.law_zip01|escape}-->-<!--{$arrRet.law_zip02|escape}--><br>
+<!--{$arrPref[$arrRet.law_pref]|escape}--><!--{$arrRet.law_addr01|escape}--><!--{$arrRet.law_addr02|escape}--><br>
+[emoji:74]<font color="#800000">電話番号</font><br>
+<!--{$arrRet.law_tel01|escape}-->-<!--{$arrRet.law_tel02|escape}-->-<!--{$arrRet.law_tel03|escape}--><br>
+[emoji:76]<font color="#800000">FAX番号</font><br>
+<!--{$arrRet.law_fax01|escape}-->-<!--{$arrRet.law_fax02|escape}-->-<!--{$arrRet.law_fax03|escape}--><br>
+[emoji:120]<font color="#800000">メールアドレス</font><br>
+<a href="mailto:<!--{$arrRet.law_email|escape:'hex'}-->"><!--{$arrRet.law_email|escape:'hexentity'}--></a><br>
+[emoji:e11]<font color="#800000">URL</font><br>
+<a href="<!--{$arrRet.law_url|escape}-->"><!--{$arrRet.law_url|escape}--></a><br>
+<!-- ▲本文 ここまで -->
+
+<br>
+<a href="order.php?page=2" accesskey="2"><!--{2|numeric_emoji}-->進む</a><br>
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/guide/kiyaku.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/guide/kiyaku.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/guide/kiyaku.tpl	(revision 19665)
@@ -0,0 +1,53 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>ご利用規約(<!--{$tpl_kiyaku_index+1}-->/<!--{$tpl_kiyaku_last_index+1}-->)</center>
+
+<hr>
+
+<!-- ▼本文 ここから -->
+<font color="#ff0000"><!--{$tpl_kiyaku_title|escape}--></font><br>
+<!--{$tpl_kiyaku_text|escape}--><br>
+<!-- ▲本文 ここまで -->
+
+<!--{if !$tpl_kiyaku_is_first || !$tpl_kiyaku_is_last}-->
+<br>
+<!--{if !$tpl_kiyaku_is_first}-->
+<a href="kiyaku.php?page=<!--{$tpl_kiyaku_index-1}-->" accesskey="1"><!--{1|numeric_emoji}-->戻る</a><br>
+<!--{/if}-->
+<!--{if !$tpl_kiyaku_is_last}-->
+<a href="kiyaku.php?page=<!--{$tpl_kiyaku_index+1}-->" accesskey="2"><!--{2|numeric_emoji}-->進む</a><br>
+<!--{/if}-->
+<!--{/if}-->
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/guide/order2.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/guide/order2.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/guide/order2.tpl	(revision 19665)
@@ -0,0 +1,50 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>特定商取引に関する法律に基づく表記(2/3)</center>
+
+<hr>
+
+<!-- ▼本文 ここから -->
+[emoji:e44]<font color="#800000">商品以外の必要代金</font><br>
+<!--{$arrRet.law_term01|escape|nl2br}--><br>
+[emoji:115]<font color="#800000">注文方法</font><br>
+<!--{$arrRet.law_term02|escape|nl2br}--><br>
+[emoji:e10]<font color="#800000">支払方法</font><br>
+<!--{$arrRet.law_term03|escape|nl2br}--><br>
+<!-- ▲本文 ここまで -->
+
+<br>
+<a href="order.php?page=1" accesskey="1"><!--{1|numeric_emoji}-->戻る</a><br>
+<a href="order.php?page=3" accesskey="3"><!--{3|numeric_emoji}-->進む</a><br>
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/guide/privacy.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/guide/privacy.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/guide/privacy.tpl	(revision 19665)
@@ -0,0 +1,44 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>プライバシーポリシー</center>
+
+<hr>
+
+<!-- ▼本文 ここから -->
+<!--{$arrSiteInfo.company_name|escape}-->は、個人情報保護の重要性に鑑み、「個人情報の保護に関する法律」及び本プライバシーポリシーを遵守し、お客さまのプライバシー保護に努めます。<br>
+　個人情報の定義<br>
+お客さま個人に関する情報(以下「個人情報」といいます)であって、お客さまのお名前、ご住所、電話番号など当該お客さま個人を識別することができる情報をさします。他の情報と組み合わせて照合することにより個人を識別することができる情報も含まれます。<br>
+<!-- ▲本文 ここまで -->
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/guide/order3.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/guide/order3.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/guide/order3.tpl	(revision 19665)
@@ -0,0 +1,49 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>特定商取引に関する法律に基づく表記(3/3)</center>
+
+<hr>
+
+<!-- ▼本文 ここから -->
+[emoji:114]<font color="#800000">支払期限</font><br>
+<!--{$arrRet.law_term04|escape|nl2br}--><br>
+[emoji:72]<font color="#800000">引渡し時期</font><br>
+<!--{$arrRet.law_term05|escape|nl2br}--><br>
+[emoji:167]<font color="#800000">返品・交換について</font><br>
+<!--{$arrRet.law_term06|escape|nl2br}--><br>
+<!-- ▲本文 ここまで -->
+
+<br>
+<a href="order.php?page=2" accesskey="2"><!--{2|numeric_emoji}-->戻る</a><br>
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/guide/usage.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/guide/usage.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/guide/usage.tpl	(revision 19665)
@@ -0,0 +1,45 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>ご利用方法</center>
+
+<hr>
+
+<!-- ▼メニュー ここから -->
+<a href="usage.php?page=1" accesskey="1"><!--{1|numeric_emoji}-->商品の探し方</a><br>
+<a href="usage.php?page=2" accesskey="2"><!--{2|numeric_emoji}-->ご注文方法</a><br>
+<a href="usage.php?page=3" accesskey="3"><!--{3|numeric_emoji}-->ご注文後</a><br>
+<a href="usage.php?page=4" accesskey="4"><!--{4|numeric_emoji}-->商品到着後</a><br>
+<!-- ▲メニュー ここまで -->
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/guide/usage1.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/guide/usage1.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/guide/usage1.tpl	(revision 19665)
@@ -0,0 +1,42 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>商品の探し方</center>
+
+<hr>
+
+<!-- ▼本文 ここから -->
+「商品の探し方」の本文<br>
+<!-- ▲本文 ここまで -->
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/guide/usage2.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/guide/usage2.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/guide/usage2.tpl	(revision 19665)
@@ -0,0 +1,42 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>ご注文方法</center>
+
+<hr>
+
+<!-- ▼本文 ここから -->
+「ご注文方法」の本文<br>
+<!-- ▲本文 ここまで -->
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/guide/index.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/guide/index.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/guide/index.tpl	(revision 19665)
@@ -0,0 +1,46 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>ご利用ガイド</center>
+
+<hr>
+
+<!-- ▼メニュー ここから -->
+<a href="usage.php" accesskey="1"><!--{1|numeric_emoji}-->ご利用方法</a><br>
+<a href="privacy.php" accesskey="2"><!--{2|numeric_emoji}-->プライバシーポリシー</a><br>
+<a href="charge.php" accesskey="3"><!--{3|numeric_emoji}-->通信料について</a><br>
+<a href="kiyaku.php" accesskey="4"><!--{4|numeric_emoji}-->ご利用規約</a><br>
+<a href="about.php" accesskey="5"><!--{5|numeric_emoji}-->運営会社紹介</a><br>
+<!-- ▲メニュー ここまで -->
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/guide/usage3.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/guide/usage3.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/guide/usage3.tpl	(revision 19665)
@@ -0,0 +1,42 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>ご注文後</center>
+
+<hr>
+
+<!-- ▼本文 ここから -->
+「ご注文後」の本文<br>
+<!-- ▲本文 ここまで -->
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/guide/usage4.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/guide/usage4.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/guide/usage4.tpl	(revision 19665)
@@ -0,0 +1,42 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>商品到着後</center>
+
+<hr>
+
+<!-- ▼本文 ここから -->
+「商品到着後」の本文<br>
+<!-- ▲本文 ここまで -->
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/guide/charge.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/guide/charge.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/guide/charge.tpl	(revision 19665)
@@ -0,0 +1,45 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>通信料について</center>
+
+<hr>
+
+<!-- ▼本文 ここから -->
+当サイトのコンテンツは、下記免責事項をお読みになり、ご了承いただいた方にお使い頂けます。<br>
+<br>
+パケット通信には携帯キャリア指定の通信料が発生します。<br>
+電波状況などにより、パケット通信をやり直す場合があります。<br>
+<!-- ▲本文 ここまで -->
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/regist/complete.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/regist/complete.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/regist/complete.tpl	(revision 19665)
@@ -0,0 +1,54 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>本会員登録完了</center>
+
+<hr>
+
+本登録が完了いたしました。<br>
+それではショッピングをお楽しみください。<br>
+
+<br>
+
+今後ともご愛顧賜りますようよろしくお願い申し上げます。<br>
+
+<br>
+
+<!--{$arrSiteInfo.company_name|escape}--><br>
+TEL：<!--{$arrSiteInfo.tel01}-->-<!--{$arrSiteInfo.tel02}-->-<!--{$arrSiteInfo.tel03}--> <!--{if $arrSiteInfo.business_hour != ""}-->（受付時間/<!--{$arrSiteInfo.business_hour}-->）<!--{/if}--><br>
+E-mail：<a href="mailto:<!--{$arrSiteInfo.email02|escape}-->"><!--{$arrSiteInfo.email02|escape}--></a><br>
+
+<br>
+
+<!--{if !$tpl_cart_empty}-->
+<a href="<!--{$smarty.const.MOBILE_URL_DIR}-->shopping/deliv.php">ご注文手続きへ進む</a><br>
+<!--{/if}-->
+
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページに戻る</a><br>
+
+<br>
+<hr>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/regist/error.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/regist/error.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/regist/error.tpl	(revision 19665)
@@ -0,0 +1,40 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>本会員登録</center>
+
+<hr>
+
+<font color="#ff0000"><!--{$arrErr.id}--></font>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/top.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/top.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/top.tpl	(revision 19665)
@@ -0,0 +1,63 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<!-- ▼ロゴ ここから -->
+<center><img src="<!--{$TPL_DIR}-->img/header/logo.gif"></center>
+<!-- ▲ロゴ ここまで -->
+
+<br>
+
+<!-- ▼新着情報 ここから -->
+<!--{include_php file=`$smarty.const.MOBILE_HTML_PATH`frontparts/bloc/news.php}-->
+<!-- ▲新着情報 ここまで -->
+
+<br>
+
+<!-- ▼ピックアップ商品 ここから -->
+<hr>
+<!--{include_php file=`$smarty.const.MOBILE_HTML_PATH`frontparts/bloc/best5.php}-->
+<hr>
+<!-- ▲ピックアップ商品 ここまで -->
+
+<br>
+
+<!-- ▼メニュー ここから -->
+<!--{1|numeric_emoji}-->商品カテゴリ<br>
+<!--{include_php file=`$smarty.const.MOBILE_HTML_PATH`frontparts/bloc/category.php}-->
+<a href="products/search.php" accesskey="2"><!--{2|numeric_emoji}-->商品検索</a><br>
+<!--{if $isLogin eq true}-->
+<a href="mypage/refusal.php" accesskey="3"><!--{3|numeric_emoji}-->会員退会</a><br>
+<!--{else}-->
+<a href="entry/new.php" accesskey="3"><!--{3|numeric_emoji}-->会員登録</a><br>
+<!--{/if}-->
+<a href="guide/<!--{$smarty.const.DIR_INDEX_URL}-->" accesskey="4"><!--{4|numeric_emoji}-->ご利用ガイド</a><br>
+<a href="contact/<!--{$smarty.const.DIR_INDEX_URL}-->" accesskey="5"><!--{5|numeric_emoji}-->お問い合せ</a><br>
+<a href="mypage/<!--{$smarty.const.DIR_INDEX_URL}-->" accesskey="6" utn><!--{6|numeric_emoji}-->MYページ</a><br>
+<a href="order/<!--{$smarty.const.DIR_INDEX_URL}-->" accesskey="7"><!--{7|numeric_emoji}-->特定商取引に関する法律に基づく表記</a><br>
+<!-- ▲メニュー ここまで -->
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/forgot/secret.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/forgot/secret.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/forgot/secret.tpl	(revision 19665)
@@ -0,0 +1,53 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>パスワードを忘れた方</center>
+
+<hr>
+
+<!--{if $errmsg}-->
+<font color="#ff0000"><!--{$errmsg}--></font><br>
+<!--{/if}-->
+
+ご登録時に入力した下記質問の答えを入力して「次へ」ボタンをクリックしてください。<br>
+※下記質問の答えをお忘れになられた場合は、<a href="mailto:<!--{$arrSiteInfo.email02|escape}-->"><!--{$arrSiteInfo.email02|escape}--></a>までご連絡ください。<br>
+
+<form action="<!--{$smarty.server.PHP_SELF|escape}-->" method="post">
+<input type="hidden" name="mode" value="secret_check">
+
+<!--{$Reminder|escape}-->：<input type="text" name="input_reminder" value="" size="40"><br>
+
+<center><input type="submit" value="次へ" name="next"></center>
+</form>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/forgot/index.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/forgot/index.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/forgot/index.tpl	(revision 19665)
@@ -0,0 +1,63 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>パスワードを忘れた方</center>
+
+<font color="#ff0000">※新しくパスワードを発行いたしますので、お忘れになったパスワードはご利用できなくなります。</font>
+
+<hr>
+
+<!--{if $errmsg}-->
+<font color="#ff0000"><!--{$errmsg}--></font><br>
+<!--{/if}-->
+
+<!--{if @$tpl_kara_mail_to != ''}-->
+■ご登録時のメールアドレスからメールを送れる方は、次のリンクをクリックして空メールを送信してください。<br>
+<center><a href="mailto:<!--{$tpl_kara_mail_to|escape:'url'}-->">メール送信</a></center>
+
+<br>
+
+■メールを送れない方は、ご登録時のメールアドレスを入力して「次へ」ボタンをクリックしてください。<br>
+<!--{else}-->
+ご登録時のメールアドレスを入力して「次へ」ボタンをクリックしてください。<br>
+<!--{/if}-->
+
+<form action="<!--{$smarty.server.PHP_SELF|escape}-->" method="post">
+<input type="hidden" name="mode" value="mail_check">
+
+メールアドレス：<input type="text" name="email" value="<!--{$tpl_login_email|escape}-->" size="50" istyle="3"><br>
+
+<center><input type="submit" value="次へ" name="next"></center>
+</form>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/forgot/complete.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/forgot/complete.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/forgot/complete.tpl	(revision 19665)
@@ -0,0 +1,45 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>パスワードを忘れた方</center>
+
+<hr>
+
+パスワードの発行が完了いたしました。ログインには下記のパスワードをご利用ください。<br>
+※下記パスワードは、MYページの「会員登録内容変更」よりご変更いただけます。<br>
+
+<br>
+
+<center><font color="red"><!--{$temp_password}--></font></center>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/mail_templates/customer_mail.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/mail_templates/customer_mail.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/mail_templates/customer_mail.tpl	(revision 19665)
@@ -0,0 +1,37 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+※本メールは、
+<!--{$CONF.shop_name}-->より会員登録を希望された方にお送りしています。
+もしお心当たりが無い場合はこのままこのメールを破棄していただければ会員登録はなされません。
+
+<!--{$to_name01}--> <!--{$to_name02}--> 様
+
+<!--{$CONF.shop_name}-->でございます。
+この度は会員登録依頼をいただきまして、有り難うございます。
+現在は仮登録の状態です。
+　　　~~~~~~
+本会員登録を完了するには下記URLにアクセスしてください。
+<!--{$smarty.const.MOBILE_SSL_URL}-->regist/<!--{$smarty.const.DIR_INDEX_URL}-->?mode=regist&id=<!--{$uniqid}--><!--{$etc_value}-->
+
+上記URLにて本会員登録が完了いたしましたら改めてご登録内容ご確認メールをお送り致します。
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/mail_templates/mail_title.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/mail_templates/mail_title.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/mail_templates/mail_title.tpl	(revision 19665)
@@ -0,0 +1,24 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+【<!--{$tpl_shopname}-->】 <!--{$tpl_mailtitle}-->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/mail_templates/mailmagazine_cancel.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/mail_templates/mailmagazine_cancel.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/mail_templates/mailmagazine_cancel.tpl	(revision 19665)
@@ -0,0 +1,33 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+※本メールは自動配信メールです。
+<!--{$tpl_shopname}-->より、メルマガ購読解除を希望された方にお送りしています。
+もしお心当たりが無い場合は、このままこのメールを破棄していただければメルマガ購読解除はなされません。
+またその旨、<!--{$tpl_infoemail}-->までご連絡いただければ幸いです。
+
+現在はまだ購読された状態です。
+完了するには下記URLにアクセスしてください。
+※入力されたお客様の情報はSSL暗号化通信により保護されます。
+
+<!--{$tpl_url}-->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/mail_templates/mailmagazine_regist.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/mail_templates/mailmagazine_regist.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/mail_templates/mailmagazine_regist.tpl	(revision 19665)
@@ -0,0 +1,34 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+※本メールは自動配信メールです。
+<!--{$tpl_shopname}-->より、メルマガ購読登録を希望された方にお送りしています。
+もしお心当たりが無い場合は、このままこのメールを破棄していただければメルマガ購読登録はなされません。
+またその旨、<!--{$tpl_infoemail}-->までご連絡いただければ幸いです。
+
+この度は、メルマガ購読依頼をいただきまして、有り難うございます。
+現在は仮登録の状態です。
+完了するには下記URLにアクセスしてください。
+※入力されたお客様の情報はSSL暗号化通信により保護されます。
+
+<!--{$tpl_url}-->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/mail_templates/order_mail.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/mail_templates/order_mail.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/mail_templates/order_mail.tpl	(revision 19665)
@@ -0,0 +1,54 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<!--{$arrOrder.order_name01}--> <!--{$arrOrder.order_name02}--> 様
+
+■配送情報とご請求金額
+ご注文番号：<!--{$arrOrder.order_id}-->
+お支払合計：￥ <!--{$arrOrder.payment_total|number_format|default:0}-->
+ご決済方法：<!--{$arrOrder.payment_method}-->
+お届け日：<!--{$arrOrder.deliv_date|default:"指定なし"}-->
+お届け時間：<!--{$arrOrder.deliv_time|default:"指定なし"}-->
+
+◎お届け先
+お名前　：<!--{$arrOrder.deliv_name01}--> <!--{$arrOrder.deliv_name02}-->　様
+郵便番号：〒<!--{$arrOrder.deliv_zip01}-->-<!--{$arrOrder.deliv_zip02}-->
+ご住所　：<!--{$arrOrder.deliv_pref}--><!--{$arrOrder.deliv_addr01}--><!--{$arrOrder.deliv_addr02}-->
+電話番号：<!--{$arrOrder.deliv_tel01}-->-<!--{$arrOrder.deliv_tel02}-->-<!--{$arrOrder.deliv_tel03}-->
+
+<!--{if $arrOther.title.value }-->
+■<!--{$arrOther.title.name}-->情報
+<!--{foreach key=key item=item from=$arrOther}-->
+<!--{if $key != "title"}-->
+<!--{if $item.name != ""}--><!--{$item.name}-->：<!--{/if}--><!--{$item.value}-->
+<!--{/if}-->
+<!--{/foreach}-->
+
+<!--{/if}-->
+■ご注文商品明細
+<!--{section name=cnt loop=$arrOrderDetail}-->
+商品名: <!--{$arrOrderDetail[cnt].product_name}--> <!--{$arrOrderDetail[cnt].classcategory_name1}--> <!--{$arrOrderDetail[cnt].classcategory_name2}-->
+数量：<!--{$arrOrderDetail[cnt].quantity}-->
+金額：￥ <!--{$arrOrderDetail[cnt].price|sfPreTax:$arrInfo.tax:$arrInfo.tax_rule|number_format}-->
+
+<!--{/section}-->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/mail_templates/customer_regist_mail.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/mail_templates/customer_regist_mail.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/mail_templates/customer_regist_mail.tpl	(revision 19665)
@@ -0,0 +1,33 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<!--{$name01}--><!--{$name02}--> 様
+
+<!--{$CONF.shop_name}-->でございます。
+
+この度は会員登録依頼をいただきましてまことに有り難うございます。
+
+本会員登録が完了いたしました。
+ショッピングをお楽しみくださいませ。
+
+今後ともどうぞ<!--{$CONF.shop_name}-->をよろしくお願い申し上げます。
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/entry/mail.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/entry/mail.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/entry/mail.tpl	(revision 19665)
@@ -0,0 +1,47 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>メールアドレス登録</center>
+
+<hr>
+
+次のリンクをクリックして空メールを送信してください。
+すぐにご案内のメールが送信されますので、メール内のリンクをクリックして会員情報の入力に進んでください。<br>
+<font color="#ff0000">※ドメイン指定受信機能を利用されている方は、メールを送信する前に必ず「<!--{$tpl_from_address|escape}-->」からのメールが受信できるように設定しておいてください。</font><br>
+<br>
+
+<br>
+
+<center><a href="mailto:<!--{$tpl_kara_mail_to|escape:'url'}-->">メール送信</a></center>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/entry/email_mobile_complete.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/entry/email_mobile_complete.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/entry/email_mobile_complete.tpl	(revision 19665)
@@ -0,0 +1,40 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>携帯メール登録完了</center>
+
+<hr>
+
+携帯電話のメールアドレスの登録が完了いたしました。<br>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/entry/index.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/entry/index.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/entry/index.tpl	(revision 19665)
@@ -0,0 +1,90 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">会員情報入力 1/3</div>
+<hr>
+<form name="form1" method="post" action="<!--{$smarty.server.PHP_SELF|escape}-->">
+	<input type="hidden" name="mode" value="set1">
+
+	<font color="#FF0000">*は必須項目です。</font><br>
+	<br>
+
+	【メールアドレス】<font color="#FF0000">※</font><br>
+	<font color="#FF0000"><!--{$arrErr.email}--></font>
+<!--{if @$tpl_kara_mail_from}-->
+  <!--{$tpl_kara_mail_from|escape}-->
+<!--{else}-->
+	<input type="text" name="email" value="<!--{$email|escape}-->" istyle="3">
+<!--{/if}-->
+  <br>
+
+	【パスワード】<font color="#FF0000">※</font><br>
+	（半角英数字<!--{$smarty.const.PASSWORD_LEN1}-->文字以上<!--{$smarty.const.PASSWORD_LEN2}-->文字以内）<br>
+	<font color="#FF0000"><!--{$arrErr.password}--></font>
+	<!--{assign var="size" value="`$smarty.const.PASSWORD_LEN2+2`"}-->
+	<input type="password" name="password" value="<!--{$arrForm.password}-->" istyle="4" maxlength="<!--{$smarty.const.PASSWORD_LEN2}-->" size="<!--{$size}-->"><br>
+
+	【パスワード確認用の質問】<font color="#FF0000">※</font><br>
+	<font color="#FF0000"><!--{$arrErr.reminder}--></font>
+	<select name="reminder">
+		<option value="">選択してください</option>
+		<!--{html_options options=$arrReminder selected=$reminder}-->
+	</select><br>
+
+	【質問の答え】<font color="#FF0000">※</font><br>
+	<font color="#FF0000"><!--{$arrErr.reminder_answer}--></font>
+	<input type="text" name="reminder_answer" value="<!--{$reminder_answer|escape}-->" istyle="1"><br>
+
+	【お名前】<font color="#FF0000">※</font><br>
+	<font color="#FF0000"><!--{$arrErr.name01}--><!--{$arrErr.name02}--></font>
+	姓（例：渋谷）<br>
+	<input type="text" name="name01" value="<!--{$name01|escape}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" istyle="1"><br>
+
+	名（例：花子）<br>
+	<input type="text" name="name02" value="<!--{$name02|escape}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" istyle="1"><br>
+	<font color="#FF0000"><!--{$arrErr.kana01}--><!--{$arrErr.kana02}--></font>
+
+	カナ/姓（例：シブヤ）<br>
+	<input type="text" name="kana01" value="<!--{$kana01|escape}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" istyle="2"><br>
+
+	カナ/名（例：ハナコ）<br>
+	<input type="text" name="kana02" value="<!--{$kana02|escape}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" istyle="2"><br>
+
+	<input type="submit" name="submit" value="次へ">
+
+	<!--{foreach from=$list_data key=key item=item}-->
+		<input type="hidden" name="<!--{$key|escape}-->" value="<!--{$item|escape}-->">
+	<!--{/foreach}-->
+</form>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/entry/complete.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/entry/complete.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/entry/complete.tpl	(revision 19665)
@@ -0,0 +1,43 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">会員登録完了</div>
+<hr>
+
+会員登録の受付が完了いたしました。<br>
+現在<font color="#FF0000">仮会員</font>の状態です。<br>
+ご入力いただいたメールアドレス宛てに、ご連絡が届いておりますので、本会員登録になった上でお買い物をお楽しみください。<br>
+今後ともご愛顧賜りますようよろしくお願い申し上げます。<br>
+
+<br>
+
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/entry/new.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/entry/new.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/entry/new.tpl	(revision 19665)
@@ -0,0 +1,43 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">新規ご登録</div>
+<hr>
+
+ご注文に際して必要な内容（ご自宅住所等）をご登録していただきます。<br>
+ご利用の規約をよくお読みの上、ご登録下さい。<br>
+<a href="kiyaku.php" accesskey="1"><!--{1|numeric_emoji}-->会員規約を読む</a><br>
+<a href="./<!--{$smarty.const.DIR_INDEX_URL}-->" accesskey="2"><!--{2|numeric_emoji}-->同意して登録へ</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="3"><!--{3|numeric_emoji}-->同意しない</a><br>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/entry/set1.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/entry/set1.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/entry/set1.tpl	(revision 19665)
@@ -0,0 +1,74 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">会員情報入力 2/3</div>
+<hr>
+<form name="form1" method="post" action="<!--{$smarty.server.PHP_SELF|escape}-->">
+	<input type="hidden" name="mode" value="set2">
+
+	<font color="#FF0000">*は必須項目です。</font><br>
+	<br>
+
+	【性別】<font color="#FF0000">*</font><br>
+	<font color="#FF0000"><!--{$arrErr.sex}--></font>
+	<input type="radio" name="sex" value="1" <!--{if $sex eq 1}-->checked<!--{/if}--> />男性&nbsp;<input type="radio" name="sex" value="2" <!--{if $sex eq 2}-->checked<!--{/if}--> />女性<br>
+
+	【生年月日】<br>
+	<font color="#FF0000"><!--{$arrErr.year}--><!--{$arrErr.month}--><!--{$arrErr.day}--></font>
+	<input type="text" name="year" value="<!--{$year|escape}-->" size="4" maxlength="4" istyle="4">年<br>
+	<select name="month">
+		<!--{html_options options=$arrMonth selected=$month}-->
+	</select>月<br>
+	<select name="day">
+		<!--{html_options options=$arrDay selected=$day}-->
+	</select>日<br>
+
+	<!--{assign var=key1 value="zip01"}-->
+	<!--{assign var=key2 value="zip02"}-->
+	【郵便番号】<font color="#FF0000">*</font><br>
+	<font color="#FF0000"><!--{$arrErr[$key1]}--><!--{$arrErr[$key2]}--></font>
+	<!--{assign var="size1" value="`$smarty.const.ZIP01_LEN+2`"}-->
+	<!--{assign var="size2" value="`$smarty.const.ZIP02_LEN+2`"}-->
+	<input size="<!--{$size1}-->" type="text" name="zip01" value="<!--{if $zip01 == ""}--><!--{$arrOtherDeliv.zip01|escape}--><!--{else}--><!--{$zip01|escape}--><!--{/if}-->" maxlength="<!--{$smarty.const.ZIP01_LEN}-->" istyle="4">
+	&nbsp;-&nbsp;
+	<input size="<!--{$size2}-->" type="text" name="zip02" value="<!--{if $zip02 == ""}--><!--{$arrOtherDeliv.zip02|escape}--><!--{else}--><!--{$zip02|escape}--><!--{/if}-->" maxlength="<!--{$smarty.const.ZIP02_LEN}-->" istyle="4"><br>
+
+	<input type="submit" name="submit" value="次へ"><br>
+	<input type="submit" name="return" value="戻る">
+
+	<!--{foreach from=$list_data key=key item=item}-->
+		<input type="hidden" name="<!--{$key|escape}-->" value="<!--{$item|escape}-->">
+	<!--{/foreach}-->
+</form>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/entry/confirm.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/entry/confirm.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/entry/confirm.tpl	(revision 19665)
@@ -0,0 +1,73 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">登録確認</div>
+<hr>
+<form name="form1" id="form1" method="post" action="<!--{$smarty.server.PHP_SELF|escape}-->" utn>
+	<input type="hidden" name="mode" value="complete">
+	<!--{foreach from=$list_data key=key item=item}-->
+		<input type="hidden" name="<!--{$key|escape}-->" value="<!--{$item|escape}-->">
+	<!--{/foreach}-->
+	下記の内容でご登録してもよろしいですか？<br>
+	<br>
+	【ﾒｰﾙｱﾄﾞﾚｽ】<br>
+	<!--{$list_data.email|escape}--><br>
+
+	【ﾊﾟｽﾜｰﾄﾞ確認用質問】<br>
+	<!--{$arrReminder[$list_data.reminder]|escape}--><br>
+
+	【質問の答え】<br>
+	<!--{$list_data.reminder_answer|escape}--><br>
+
+	【個人情報】<br>
+	<!--{$list_data.name01|escape}-->　<!--{$list_data.name02|escape}--><br>
+	<!--{$list_data.kana01|escape}-->　<!--{$list_data.kana02|escape}--><br>
+	<!--{if $list_data.sex eq 1}-->男性<!--{else}-->女性<!--{/if}--><br>
+	<!--{if strlen($list_data.year) > 0 && strlen($list_data.month) > 0 && strlen($list_data.day) > 0}--><!--{$list_data.year|escape}-->年<!--{$list_data.month|escape}-->月<!--{$list_data.day|escape}-->日生まれ<!--{else}-->生年月日 未登録<!--{/if}--><br>
+	〒<!--{$list_data.zip01|escape}--> - <!--{$list_data.zip02|escape}--><br>
+	<!--{$arrPref[$list_data.pref]|escape}--><!--{$list_data.addr01|escape}--><!--{$list_data.addr02|escape}--><br>
+	<!--{$list_data.tel01|escape}-->-<!--{$list_data.tel02|escape}-->-<!--{$list_data.tel03|escape}--><br>
+	
+	【ﾒｰﾙﾏｶﾞｼﾞﾝﾞ】<br>
+	<!--{if $list_data.mailmaga_flg eq 2}-->希望する<!--{else}-->希望しない<!--{/if}--><br>
+	<br>
+
+	<input type="submit" name="submit" value="登録"><br>
+	<input type="submit" name="return" value="戻る">
+
+	<!--{foreach from=$list_data key=key item=item}-->
+		<input type="hidden" name="<!--{$key|escape}-->" value="<!--{$item|escape}-->">
+	<!--{/foreach}-->
+</form>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/entry/kiyaku.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/entry/kiyaku.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/entry/kiyaku.tpl	(revision 19665)
@@ -0,0 +1,46 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">ご利用規約</div>
+<hr>
+<!--{$tpl_kiyaku_text|escape|nl2br}--><br>
+
+<BR>
+<!--{if $offset != -1}-->
+	<a href="kiyaku.php?offset=<!--{$offset}-->">次へ→</a><br><br>
+<!--{/if}-->
+
+<a href="./<!--{$smarty.const.DIR_INDEX_URL}-->" accesskey="1"><!--{1|numeric_emoji}-->同意して登録へ</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="2"><!--{2|numeric_emoji}-->同意しない</a><br>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/entry/set2.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/entry/set2.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/entry/set2.tpl	(revision 19665)
@@ -0,0 +1,80 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">会員情報入力 3/3</div>
+<hr>
+<form name="form1" method="post" action="<!--{$smarty.server.PHP_SELF|escape}-->">
+	<input type="hidden" name="mode" value="confirm">
+
+	<font color="#FF0000">*は必須項目です。</font><br>
+	<br>
+
+	【都道府県】<font color="#FF0000">*</font><br>
+	<font color="#FF0000"><!--{$arrErr.pref}--></font>
+	<select name="pref">
+		<option value="">都道府県を選択</option>
+		<!--{html_options options=$arrPref selected=$pref}-->
+	</select><br>
+
+	【市区町村】<font color="#FF0000">*</font><br>
+	<font color="#FF0000"><!--{$arrErr.addr01}--></font>
+	<input type="text" name="addr01" value="<!--{$addr01|escape}-->" istyle="1"><br>
+
+	【番地】<font color="#FF0000">*</font><br>
+	<font color="#FF0000"><!--{$arrErr.addr02}--></font>
+	<input type="text" name="addr02" value="<!--{$addr02|escape}-->" istyle="1"><br>
+
+	【電話番号】<font color="#FF0000">*</font><br>
+	<font color="#FF0000"><!--{$arrErr.tel01}--><!--{$arrErr.tel02}--><!--{$arrErr.tel03}--></font>
+	<!--{assign var="size" value="`$smarty.const.TEL_ITEM_LEN+2`"}-->
+	<input type="text" size="<!--{$size}-->" name="tel01" value="<!--{$tel01|escape}-->" maxlength="<!--{$smarty.const.TEL_ITEM_LEN}-->" istyle="4">
+	&nbsp;-&nbsp;
+	<input type="text" size="<!--{$size}-->" name="tel02" value="<!--{$tel02|escape}-->" maxlength="<!--{$smarty.const.TEL_ITEM_LEN}-->" istyle="4">
+	&nbsp;-&nbsp;
+	<input type="text" size="<!--{$size}-->" name="tel03" value="<!--{$tel03|escape}-->" maxlength="<!--{$smarty.const.TEL_ITEM_LEN}-->" istyle="4"><br>
+
+	【メールマガジン】<br>
+	お得な情報を希望されますか？<br>
+	配信希望<input type="checkbox" name="mailmaga_flg" value="on" <!--{if $mailmaga_flg eq 'on' || $mailmaga_flg == 2}-->checked<!--{/if}--> /><br>
+	（希望されない場合はチェックをはずしてください）<br>
+	<br>
+
+	<input type="submit" name="submit" value="次へ"><br>
+	<input type="submit" name="return" value="戻る">
+
+	<!--{foreach from=$list_data key=key item=item}-->
+		<input type="hidden" name="<!--{$key|escape}-->" value="<!--{$item|escape}-->">
+	<!--{/foreach}-->
+</form>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/entry/email_mobile.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/entry/email_mobile.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/entry/email_mobile.tpl	(revision 19665)
@@ -0,0 +1,58 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>携帯メール登録</center>
+
+<hr>
+
+<!--{$tpl_name|escape}-->様<br>
+いつもご利用いただきありがとうございます。ご使用の携帯電話のメールアドレスをご登録下さい。<br>
+
+<br>
+
+<!--{assign var=key value='email_mobile'}-->
+<!--{if @$tpl_kara_mail_to != ''}-->
+<font color="#ff0000"><!--{$arrErr[$key]|default:''}--></font>
+次のリンクをクリックして空メールを送信してください。<br>
+<center><a href="mailto:<!--{$tpl_kara_mail_to|escape:'url'}-->">メール送信</a></center>
+<!--{else}-->
+<form method="post" action="<!--{$smarty.server.PHP_SELF|escape}-->">
+▼メールアドレス<br>
+<font color="#ff0000"><!--{$arrErr[$key]|default:''}--></font>
+<input type="text" name="email_mobile" value="<!--{$arrForm[$key].value|escape}-->" size="40" maxlength="<!--{$arrForm[$key].length}-->" istyle="3"><br>
+<center><input type="submit" value="送信"></center>
+<center><a href="../mypage/<!--{$smarty.const.DIR_INDEX_URL}-->" accesskey="0">今は登録しない</a></center>
+</form>
+<!--{/if}-->
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/frontparts/bloc/news.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/frontparts/bloc/news.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/frontparts/bloc/news.tpl	(revision 19665)
@@ -0,0 +1,34 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<!--{if count($arrNews) > 0}-->
+<center>
+―――――――――<br>
+<!--{marquee}-->
+<!--{if $arrNews[0].news_url}--><a href="<!--{$arrNews[0].news_url|escape}-->"><!--{/if}-->
+<!--{$arrNews[0].news_title|escape}-->
+<!--{if $arrNews[0].news_url}--></a><!--{/if}-->
+<!--{/marquee}-->
+―――――――――<br>
+</center>
+<!--{/if}-->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/frontparts/bloc/category.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/frontparts/bloc/category.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/frontparts/bloc/category.tpl	(revision 19665)
@@ -0,0 +1,34 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<!--▼商品カテゴリーここから-->
+<!--{section name=cnt loop=$arrCat}-->
+<!--{assign var=disp_name value="`$arrCat[cnt].category_name`"}-->
+<!--{if $arrCat[cnt].has_children}-->
+<!--{assign var=path value="`$smarty.const.MOBILE_URL_DIR`products/category_list.php"}-->
+<!--{else}-->
+<!--{assign var=path value="`$smarty.const.MOBILE_URL_DIR`products/list.php"}-->
+<!--{/if}-->
+　<font color="<!--{cycle values="#000000,#880000,#8888ff,#88ff88,#ff0000"}-->">■</font><a href="<!--{$path}-->?category_id=<!--{$arrCat[cnt].category_id}-->"><!--{$disp_name|sfCutString:20|escape}--></a><br>
+<!--{/section}-->
+<!--▲商品カテゴリーここまで-->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/frontparts/bloc/best5.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/frontparts/bloc/best5.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/frontparts/bloc/best5.tpl	(revision 19665)
@@ -0,0 +1,36 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<!--{if count($arrBestProducts) > 0}-->
+<center>
+<!--{foreach from=$arrBestProducts item=arrProduct name=best_products}-->
+
+<!-- ▼おすすめ商品コメント ここから -->
+<a href="<!--{$smarty.const.MOBILE_DETAIL_P_HTML}--><!--{$arrProduct.product_id|escape:url}-->">
+<!--{$arrProduct.comment|escape|nl2br}--></a>
+<!-- ▲おすすめ商品コメント ここまで -->
+
+<!--{if !$smarty.foreach.best_products.last}--><br><br><!--{/if}-->
+<!--{/foreach}-->
+</center>
+<!--{/if}-->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/products/detail.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/products/detail.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/products/detail.tpl	(revision 19665)
@@ -0,0 +1,109 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<!--▼CONTENTS-->
+<!--▼MAIN CONTENTS-->
+<!--ﾀｲﾄﾙここから-->
+<!--★商品名★-->
+<div align="center"><!--{$arrProduct.name|escape}--></div>
+<hr>
+<!--ﾀｲﾄﾙここまで-->
+<!--詳細ここから-->
+<!--{if $smarty.get.image != ''}-->
+  <!--{assign var=key value="`$smarty.get.image`"}-->
+<!--{else}-->
+  <!--{assign var=key value="main_image"}-->
+<!--{/if}-->
+<img src="<!--{$arrFile[$key].filepath}-->">
+<!--{if $subImageFlag == true}-->
+<br>画像
+  <!--{if ($smarty.get.image == "" || $smarty.get.image == "main_image")}-->
+[1]
+  <!--{else}-->
+[<a href="<!--{$smarty.server.PHP_SELF|escape}-->?product_id=<!--{$smarty.get.product_id}-->&image=main_image">1</a>]
+  <!--{/if}-->
+  
+  <!--{assign var=num value="2"}-->
+  <!--{section name=cnt loop=$smarty.const.PRODUCTSUB_MAX}-->
+  <!--{assign var=key value="sub_image`$smarty.section.cnt.iteration`"}-->
+  <!--{if $arrFile[$key].filepath != ""}-->
+    <!--{if $key == $smarty.get.image}-->
+[<!--{$num}-->]
+    <!--{else}-->
+[<a href="<!--{$smarty.server.PHP_SELF|escape}-->?product_id=<!--{$smarty.get.product_id}-->&image=<!--{$key}-->"><!--{$num}--></a>]
+    <!--{/if}-->
+    <!--{assign var=num value="`$num+1`"}-->
+  <!--{/if}-->
+  <!--{/section}-->
+<!--{/if}-->
+<br>
+<!--{* オペビルダー用 *}-->
+<!--{if "sfViewDetailOpe"|function_exists === TRUE}-->
+<!--{include file=`$smarty.const.MODULE_PATH`mdl_opebuilder/detail_ope_mb_view.tpl}-->
+<!--{/if}-->
+<!--★詳細ﾒｲﾝｺﾒﾝﾄ★-->
+[emoji:76]<!--{$arrProduct.main_comment|nl2br_html}--><br>
+<br>
+<!--ｱｲｺﾝ-->
+<!--★販売価格★-->
+<font color="#FF0000"><!--{$smarty.const.SALE_PRICE_TITLE}-->(税込):
+<!--{if $arrProduct.price02_min == $arrProduct.price02_max}-->
+	<!--{$arrProduct.price02_min|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
+<!--{else}-->
+	<!--{$arrProduct.price02_min|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->～<!--{$arrProduct.price02_max|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
+<!--{/if}-->
+円</font><br/>
+<!--★通常価格★-->
+<!--{if $arrProduct.price01_max > 0}-->
+<font color="#FF0000"><!--{$smarty.const.NORMAL_PRICE_TITLE}-->:
+<!--{if $arrProduct.price01_min == $arrProduct.price01_max}-->
+<!--{$arrProduct.price01_min|number_format}-->
+<!--{else}-->
+<!--{$arrProduct.price01_min|number_format}-->～<!--{$arrProduct.price01_max|number_format}-->
+<!--{/if}-->
+円</font><br>
+<!--{/if}-->
+<form name="form1" method="post" action="<!--{$smarty.server.REQUEST_URI|escape}-->">
+	<input type="hidden" name="mode" value="select">
+	<input type="hidden" name="product_id" value="<!--{$tpl_product_id}-->">
+<!--{if $tpl_stock_find}-->
+	<!--★商品を選ぶ★-->
+	<center><input type="submit" name="select" id="cart" value="この商品を選ぶ"></center>
+<!--{else}-->
+	<font color="#FF0000">申し訳ございませんが､只今品切れ中です｡</font>
+<!--{/if}-->
+</form>
+<!--詳細ここまで-->
+<!--▲CONTENTS-->
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/products/search.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/products/search.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/products/search.tpl	(revision 19665)
@@ -0,0 +1,48 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>商品検索</center>
+
+<hr>
+
+お探しの商品名・型番を入力してください。<br>
+
+<form method="get" action="<!--{$smarty.const.MOBILE_URL_DIR}-->products/list.php">
+<center>
+<input type="hidden" name="mode" value="search">
+<input type="text" name="name" size="18" maxlength="50" value="<!--{$smarty.get.name|escape}-->"><br>
+<input type="submit" name="search" value="検索">
+</center>
+</form>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/products/category_list.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/products/category_list.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/products/category_list.tpl	(revision 19665)
@@ -0,0 +1,51 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center><!--{$arrCategory.category_name|escape}--></center>
+
+<hr>
+
+<!--{foreach from=$arrChildren key=i item=arrChild}-->
+<!--{if $arrChild.has_children}-->
+<!--{assign var=path value="`$smarty.const.MOBILE_URL_DIR`products/category_list.php"}-->
+<!--{else}-->
+<!--{assign var=path value="`$smarty.const.MOBILE_URL_DIR`products/list.php"}-->
+<!--{/if}-->
+<!--{if $i+1<9}-->
+<a href="<!--{$path}-->?category_id=<!--{$arrChild.category_id}-->" accesskey="<!--{$i+1}-->"><!--{$i+1|numeric_emoji}--><!--{$arrChild.category_name|escape}-->(<!--{$arrChild.product_count}-->)</a><br>
+<!--{else}-->
+[<!--{$i+1}-->]<a href="<!--{$path}-->?category_id=<!--{$arrChild.category_id}-->"><!--{$arrChild.category_name|escape}-->(<!--{$arrChild.product_count}-->)</a><br>
+<!--{/if}-->
+<!--{/foreach}-->
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/products/list.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/products/list.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/products/list.tpl	(revision 19665)
@@ -0,0 +1,97 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<!-- ▼タイトル ここから -->
+<center><!--{$tpl_subtitle|escape}--></center>
+<!-- ▲タイトル ここまで -->
+
+<hr>
+
+<!--{if isset($tpl_previous_page|smarty:nodefaults) || isset($tpl_next_page|smarty:nodefaults)}-->
+<!--{if isset($tpl_previous_page|smarty:nodefaults)}-->
+<a href="<!--{$tpl_previous_page|escape}-->">前へ</a>
+<!--{/if}-->
+<!--{if isset($tpl_previous_page|smarty:nodefaults) && isset($tpl_next_page|smarty:nodefaults)}-->
+｜
+<!--{/if}-->
+<!--{if isset($tpl_next_page|smarty:nodefaults)}-->
+<a href="<!--{$tpl_next_page|escape}-->">次へ</a>
+<!--{/if}-->
+<br><br>
+<!--{/if}-->
+
+<!--{foreach from=$arrProducts key=i item=arrProduct}-->
+<!-- ▼商品 ここから -->
+<!--{if $i+1<9}--><!--{$i+1|numeric_emoji}--><!--{else}-->[<!--{$i+1}-->]<!--{/if}-->
+<!-- 商品名 --><!--{$arrProduct.name|escape}--><br>
+
+<!--{$smarty.const.SALE_PRICE_TITLE}-->：
+<!--{if $arrProduct.price02_min == $arrProduct.price02_max}-->
+￥<!--{$arrProduct.price02_min|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
+<!--{else}-->
+￥<!--{$arrProduct.price02_min|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->～￥<!--{$arrProduct.price02_max|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
+<!--{/if}-->
+<br>
+
+<div align="right">
+<!--{if $i+1<9}-->
+<a href="<!--{$smarty.const.MOBILE_DETAIL_P_HTML}--><!--{$arrProduct.product_id|escape:url}-->" accesskey="<!--{$i+1}-->">商品詳細へ→</a>
+<!--{else}-->
+<a href="<!--{$smarty.const.MOBILE_DETAIL_P_HTML}--><!--{$arrProduct.product_id|escape:url}-->">商品詳細へ→</a>
+<!--{/if}-->
+</div>
+
+<br>
+<!-- ▲商品 ここまで -->
+<!--{foreachelse}-->
+<!--{if $tpl_search_mode}-->
+該当件数0件です。他の検索キーワードより再度検索をしてください。<br>
+<!--{else}-->
+商品がありません。<br>
+<!--{/if}-->
+<!--{/foreach}-->
+
+<!--{if isset($tpl_previous_page|smarty:nodefaults) || isset($tpl_next_page|smarty:nodefaults)}-->
+<!--{if isset($tpl_previous_page|smarty:nodefaults)}-->
+<a href="<!--{$tpl_previous_page|escape}-->">前へ</a>
+<!--{/if}-->
+<!--{if isset($tpl_previous_page|smarty:nodefaults) && isset($tpl_next_page|smarty:nodefaults)}-->
+｜
+<!--{/if}-->
+<!--{if isset($tpl_next_page|smarty:nodefaults)}-->
+<a href="<!--{$tpl_next_page|escape}-->">次へ</a>
+<!--{/if}-->
+<br>
+<!--{/if}-->
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/products/select_item.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/products/select_item.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/products/select_item.tpl	(revision 19665)
@@ -0,0 +1,49 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">数量指定</div>
+<hr>
+
+<!--{if $arrErr.classcategory_id2 != ""}-->
+	<font color="#FF0000">※数量を入力して下さい｡</font><br>
+<!--{/if}-->
+<form method="post" action="<!--{$smarty.server.REQUEST_URI|escape}-->">
+	<input type="text" name="quantity" size="3" value="<!--{$arrForm.quantity.value|default:1}-->" maxlength=<!--{$smarty.const.INT_LEN}--> istyle="4"><br>
+	<input type="hidden" name="mode" value="cart">
+	<input type="hidden" name="classcategory_id1" value="<!--{$arrForm.classcategory_id1.value}-->">
+	<input type="hidden" name="classcategory_id2" value="<!--{$arrForm.classcategory_id2.value}-->">
+	<input type="hidden" name="product_id" value="<!--{$tpl_product_id}-->">
+	<center><input type="submit" name="submit" value="かごに入れる"></center>
+</form>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/products/select_find1.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/products/select_find1.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/products/select_find1.tpl	(revision 19665)
@@ -0,0 +1,50 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center"><!--{$tpl_class_name1}--></div>
+<hr>
+
+<!--{if $arrErr.classcategory_id1 != ""}-->
+	<font color="#FF0000">※<!--{$tpl_class_name1}-->を入力して下さい｡</font><br>
+<!--{/if}-->
+<form method="post" action="<!--{$smarty.server.REQUEST_URI|escape}-->">
+	<select name="classcategory_id1">
+		<option value="">選択してください</option>
+		<!--{html_options options=$arrClassCat1 selected=$arrForm.classcategory_id1.value}-->
+	</select><br>
+	<input type="hidden" name="mode" value="select2">
+	<input type="hidden" name="product_id" value="<!--{$tpl_product_id}-->">
+	<center><input type="submit" name="submit" value="次へ"></center>
+</form>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/products/select_find2.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/products/select_find2.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/products/select_find2.tpl	(revision 19665)
@@ -0,0 +1,51 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center"><!--{$tpl_class_name2}--></div>
+<hr>
+
+<!--{if $arrErr.classcategory_id2 != ""}-->
+	<font color="#FF0000">※<!--{$tpl_class_name2}-->を入力して下さい｡</font><br>
+<!--{/if}-->
+<form method="post" action="<!--{$smarty.server.REQUEST_URI|escape}-->">
+	<select name="classcategory_id2">
+		<option value="">選択してください</option>
+		<!--{html_options options=$arrClassCat2 selected=$arrForm.classcategory_id2.value}-->
+	</select><br>
+	<input type="hidden" name="mode" value="selectItem">
+	<input type="hidden" name="classcategory_id1" value="<!--{$arrForm.classcategory_id1.value}-->">
+	<input type="hidden" name="product_id" value="<!--{$tpl_product_id}-->">
+	<center><input type="submit" name="submit" value="次へ"></center>
+</form>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/site_main.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/site_main.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/site_main.tpl	(revision 19665)
@@ -0,0 +1,33 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<body bgcolor="#ffffff" text="#555555" link="#3a75af" vlink="#3a75af" alink="#3a75af">
+<!--{* Moba8リクエスト用 *}-->
+<!--{if "sfRequestMoba8"|function_exists === TRUE}-->
+<!--{include file=`$smarty.const.MODULE_PATH`mdl_moba8/request_moba8.tpl}-->
+<!--{/if}-->
+
+<!--▼MAIN-->
+<!--{include file=$tpl_mainpage}-->
+<!--▲MAIN-->
+</body>
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/order/index.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/order/index.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/order/index.tpl	(revision 19665)
@@ -0,0 +1,87 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center><font color="#008080"><b><!--{$tpl_title|escape}--></b></font></center>
+
+<hr>
+
+[emoji:39]<font color="#800000">販売業者</font><br>
+<!--{$arrRet.law_company|escape}--><br>
+<hr>
+
+[emoji:170]<font color="#800000">運営責任者</font><br>
+<!--{$arrRet.law_manager|escape}--><br>
+<hr>
+
+[emoji:38]<font color="#800000">住所</font><br>
+〒<!--{$arrRet.law_zip01|escape}-->-<!--{$arrRet.law_zip02|escape}--><br>
+<!--{$arrPref[$arrRet.law_pref]|escape}--><!--{$arrRet.law_addr01|escape}--><br>
+<!--{$arrRet.law_addr02|escape}--><br>
+<hr>
+
+[emoji:74]<font color="#800000">電話番号</font><br>
+<a href="tel:<!--{$arrRet.law_tel01|escape}-->-<!--{$arrRet.law_tel02|escape}-->-<!--{$arrRet.law_tel03|escape}-->"><!--{$arrRet.law_tel01|escape}-->-<!--{$arrRet.law_tel02|escape}-->-<!--{$arrRet.law_tel03|escape}--></a><br>
+<hr>
+
+[emoji:107]<font color="#800000">FAX番号</font><br>
+<!--{$arrRet.law_fax01|escape}-->-<!--{$arrRet.law_fax02|escape}-->-<!--{$arrRet.law_fax03|escape}--><br>
+<hr>
+
+[emoji:110]<font color="#800000">メールアドレス</font><br>
+<a href="mailto:<!--{$arrRet.law_email|escape:'hex'}-->"><!--{$arrRet.law_email|escape:'hexentity'}--></a><br>
+<hr>
+
+[emoji:e11]<font color="#800000">サイトURL</font><br>
+<a href="<!--{$arrRet.law_url|escape}-->"><!--{$arrRet.law_url|escape}--></a><br>
+<hr>
+
+[emoji:113]<font color="#800000">商品以外の必要代金</font><br>
+<!--{$arrRet.law_term01|escape|nl2br}--><br>
+<hr>
+
+[emoji:146]<font color="#800000">注文方法</font><br>
+<!--{$arrRet.law_term02|escape|nl2br}--><br>
+<hr>
+
+[emoji:42]<font color="#800000">支払方法</font><br>
+<!--{$arrRet.law_term03|escape|nl2br}--><br>
+<hr>
+
+[emoji:176]<font color="#800000">支払期限</font><br>
+<!--{$arrRet.law_term04|escape|nl2br}--><br>
+<hr>
+
+[emoji:72]<font color="#800000">引渡し時期</font><br>
+<!--{$arrRet.law_term05|escape|nl2br}--><br>
+<hr>
+
+[emoji:e42]<font color="#800000">返品・交換について</font><br>
+<!--{$arrRet.law_term06|escape|nl2br}--><br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->カート見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->ホームへ</a><br>
+
+<br>
+
+<!--{include file='footer.tpl'}-->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/site_frame.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/site_frame.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/site_frame.tpl	(revision 19665)
@@ -0,0 +1,35 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=shift_jis">
+<title><!--{$arrSiteInfo.shop_name|escape}--><!--{if $tpl_subtitle|strlen >= 1}-->/<!--{$tpl_subtitle|escape}--><!--{elseif $tpl_title|strlen >= 1}-->/<!--{$tpl_title|escape}--><!--{/if}--></title>
+<meta name="author" content="<!--{$arrPageLayout.author|escape}-->">
+<meta name="description" content="<!--{$arrPageLayout.description|escape}-->">
+<meta name="keywords" content="<!--{$arrPageLayout.keyword|escape}-->">
+</head>
+<!-- ▼ ＢＯＤＹ部 スタート -->
+<!--{include file='./site_main.tpl'}-->
+<!-- ▲ ＢＯＤＹ部 エンド -->
+</html>
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/index.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/index.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/index.tpl	(revision 19665)
@@ -0,0 +1,43 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">MYページTOP</div>
+<hr>
+
+<!--{$CustomerName1|escape}--> <!--{$CustomerName2|escape}-->様<br>
+いつもご利用いただきありがとうございます。<br>
+<br>
+<a href="history.php" accesskey="1"><!--{1|numeric_emoji}-->購入履歴</a><br>
+<a href="change.php" accesskey="2"><!--{2|numeric_emoji}-->登録内容変更</a><br>
+<a href="refusal.php" accesskey="3"><!--{3|numeric_emoji}-->退会</a><br>
+
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/login.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/login.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/login.tpl	(revision 19665)
@@ -0,0 +1,57 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">ログイン</div>
+<hr>
+
+<!--▼CONTENTS-->
+<form name="login_mypage" id="login_mypage" method="post" action="./<!--{$smarty.const.DIR_INDEX_URL}-->">
+	<input type="hidden" name="mode" value="login" >
+<!--{if !$tpl_valid_phone_id}-->
+	▼メールアドレス<br>
+	<!--{assign var=key value="login_email"}-->
+	<font color="#FF0000"><!--{$arrErr[$key]}--></font>
+	<input type="text" name="<!--{$key}-->" value="<!--{$login_email|escape}-->" 
+		size="40" istyle="3"><br>
+<!--{else}-->
+	<input type="hidden" name="login_email" value="dummy">
+<!--{/if}-->
+	▼パスワード<br>
+	<!--{assign var=key value="login_pass"}--><font color="#FF0000"><!--{$arrErr[$key]}--></font>
+	<input type="password" name="<!--{$key}-->" size="40" istyle="3"><br>
+	<center><input type="submit" value="送信" name="log"></center><br>
+	<a href="<!--{$smarty.const.MOBILE_URL_DIR}-->forgot/<!--{$smarty.const.DIR_INDEX_URL}-->">パスワードをお忘れの方はこちら</a><br>
+</form>
+<!--▲CONTENTS-->
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/refusal_complete.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/refusal_complete.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/refusal_complete.tpl	(revision 19665)
@@ -0,0 +1,39 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">退会完了</div>
+<hr>
+
+退会手続きが完了致しました。またのご利用をおまちしております。<br>
+<br>
+
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<hr>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
+
+
+
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/set1.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/set1.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/set1.tpl	(revision 19665)
@@ -0,0 +1,75 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">登録内容変更 2/3</div>
+<hr>
+<form name="form1" method="post" action="<!--{$smarty.server.PHP_SELF|escape}-->">
+	<input type="hidden" name="mode" value="set2">
+
+	<font color="#FF0000">*は必須項目です。</font><br>
+	<br>
+
+	【性別】<font color="#FF0000">*</font><br>
+	<font color="#FF0000"><!--{$arrErr.sex}--></font>
+	<input type="radio" name="sex" value="1" <!--{if $arrForm.sex eq "1"}-->checked<!--{/if}--> />男性&nbsp;
+	<input type="radio" name="sex" value="2" <!--{if $arrForm.sex eq "2"}-->checked<!--{/if}--> />女性<br>
+
+	【生年月日】<br>
+	<font color="#FF0000"><!--{$arrErr.year}--><!--{$arrErr.month}--><!--{$arrErr.day}--></font>
+	<input type="text" name="year" value="<!--{$arrForm.year|escape}-->" size="4" maxlength="4" istyle="4">年<br>
+	<select name="month">
+		<!--{html_options options=$arrMonth selected=$arrForm.month}-->
+	</select>月<br>
+	<select name="day">
+		<!--{html_options options=$arrDay selected=$arrForm.day}-->
+	</select>日<br>
+
+	<!--{assign var=key1 value="zip01"}-->
+	<!--{assign var=key2 value="zip02"}-->
+	【郵便番号】<font color="#FF0000">*</font><br>
+	<font color="#FF0000"><!--{$arrErr[$key1]}--><!--{$arrErr[$key2]}--></font>
+	<!--{assign var="size1" value="`$smarty.const.ZIP01_LEN+2`"}-->
+	<!--{assign var="size2" value="`$smarty.const.ZIP02_LEN+2`"}-->
+	<input size="<!--{$size1}-->" type="text" name="zip01" value="<!--{if $arrForm.zip01 == ""}--><!--{$arrForm.zip01|escape}--><!--{else}--><!--{$arrForm.zip01|escape}--><!--{/if}-->" maxlength="<!--{$smarty.const.ZIP01_LEN}-->" istyle="4">
+	&nbsp;-&nbsp;
+	<input size="<!--{$size2}-->" type="text" name="zip02" value="<!--{if $arrForm.zip02 == ""}--><!--{$arrForm.zip02|escape}--><!--{else}--><!--{$arrForm.zip02|escape}--><!--{/if}-->" maxlength="<!--{$smarty.const.ZIP02_LEN}-->" istyle="4"><br>
+
+	<input type="submit" name="confirm" value="次へ"><br>
+	<input type="submit" name="return" value="戻る">
+
+	<!--{foreach from=$list_data key=key item=item}-->
+		<input type="hidden" name="<!--{$key|escape}-->" value="<!--{$item|escape}-->">
+	<!--{/foreach}-->
+</form>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/change_complete.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/change_complete.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/change_complete.tpl	(revision 19665)
@@ -0,0 +1,41 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">変更完了</div>
+<hr>
+
+会員登録内容の変更が完了いたしました。<br>
+今後ともご愛顧賜りますようよろしくお願い申し上げます。<br>
+
+<br>
+
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/set2.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/set2.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/set2.tpl	(revision 19665)
@@ -0,0 +1,85 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">登録内容変更 3/3</div>
+<hr>
+<form name="form1" method="post" action="<!--{$smarty.server.PHP_SELF|escape}-->">
+	<input type="hidden" name="mode" value="confirm">
+
+	<font color="#FF0000">*は必須項目です。</font><br>
+	<br>
+
+	【都道府県】<font color="#FF0000">*</font><br>
+	<font color="#FF0000"><!--{$arrErr.pref}--></font>
+	<select name="pref">
+		<option value="">都道府県を選択</option>
+		<!--{html_options options=$arrPref selected=$arrForm.pref}-->
+	</select><br>
+
+	【市区町村】<font color="#FF0000">*</font><br>
+	<font color="#FF0000"><!--{$arrErr.addr01}--></font>
+	<input type="text" name="addr01" value="<!--{$arrForm.addr01|escape}-->" istyle="1"><br>
+
+	【番地】<font color="#FF0000">*</font><br>
+	<font color="#FF0000"><!--{$arrErr.addr02}--></font>
+	<input type="text" name="addr02" value="<!--{$arrForm.addr02|escape}-->" istyle="1"><br>
+
+	【電話番号】<font color="#FF0000">*</font><br>
+	<font color="#FF0000"><!--{$arrErr.tel01}--><!--{$arrErr.tel02}--><!--{$arrErr.tel03}--></font>
+	<!--{assign var="size" value="`$smarty.const.TEL_ITEM_LEN+2`"}-->
+	<input type="text" size="<!--{$size}-->" name="tel01" value="<!--{$arrForm.tel01|escape}-->" maxlength="<!--{$smarty.const.TEL_ITEM_LEN}-->" istyle="4">
+	&nbsp;-&nbsp;
+	<input type="text" size="<!--{$size}-->" name="tel02" value="<!--{$arrForm.tel02|escape}-->" maxlength="<!--{$smarty.const.TEL_ITEM_LEN}-->" istyle="4">
+	&nbsp;-&nbsp;
+	<input type="text" size="<!--{$size}-->" name="tel03" value="<!--{$arrForm.tel03|escape}-->" maxlength="<!--{$smarty.const.TEL_ITEM_LEN}-->" istyle="4"><br>
+
+	【メールマガジン】<br>
+	お得な情報を希望されますか？<br>
+	配信希望<input type="checkbox" name="mailmaga_flg" value="on" <!--{if $arrForm.mailmaga_flg eq '2'}-->checked<!--{/if}--> /><br>
+	（希望されない場合はチェックをはずしてください）<br>
+	<br>
+
+	<input type="hidden" name="fax01" value="<!--{$arrForm.fax01|escape}-->">
+	<input type="hidden" name="fax02" value="<!--{$arrForm.fax02|escape}-->">
+	<input type="hidden" name="fax03" value="<!--{$arrForm.fax03|escape}-->">
+	<input type="hidden" name="job" value="<!--{$arrForm.job|escape}-->">
+
+	<input type="submit" name="confirm" value="次へ"><br>
+	<input type="submit" name="return" value="戻る">
+
+	<!--{foreach from=$list_data key=key item=item}-->
+		<input type="hidden" name="<!--{$key|escape}-->" value="<!--{$item|escape}-->">
+	<!--{/foreach}-->
+</form>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/history.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/history.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/history.tpl	(revision 19665)
@@ -0,0 +1,54 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">購入履歴</div>
+<hr>
+
+<!--{section name=cnt loop=$arrOrder}-->
+	■<!--{$arrOrder[cnt].create_date|sfDispDBDate}--><br>
+	注文番号:<!--{$arrOrder[cnt].order_id}--><br>
+	<!--{assign var=payment_id value="`$arrOrder[cnt].payment_id`"}-->
+	合計金額:<!--{$arrOrder[cnt].payment_total|number_format}-->円<br>
+
+	<div align="center">
+	<form name="form1" method="post" action="history_detail.php">
+		<input type="hidden" name="order_id" value="<!--{$arrOrder[cnt].order_id}-->">
+		<input type="submit" name="submit" value="詳細を見る">
+	</form>
+	</div>
+	<br>
+<!--{/section}-->
+<br>
+
+<!--{$tpl_strnavi}-->
+
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/refusal.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/refusal.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/refusal.tpl	(revision 19665)
@@ -0,0 +1,45 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">退会確認</div>
+<hr>
+<!--{$CustomerName1|escape}--> <!--{$CustomerName2|escape}-->様、会員から退会をされますと、登録されているお届け先の情報など全て削除されますがよろしいでしょうか。<br>
+<br>
+<div align="center">
+<form action="<!--{$smarty.server.PHP_SELF|escape}-->" method="post">
+	<input type="submit" name="no" value="いいえ">
+	<input type="submit" name="complete" value="はい">
+</form>
+</div>
+<br>
+
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/change_confirm.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/change_confirm.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/change_confirm.tpl	(revision 19665)
@@ -0,0 +1,77 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">変更確認</div>
+<hr>
+<form name="form1" id="form1" method="post" action="<!--{$smarty.server.PHP_SELF|escape}-->">
+	<input type="hidden" name="mode" value="complete">
+	<!--{foreach from=$list_data key=key item=item}-->
+		<input type="hidden" name="<!--{$key|escape}-->" value="<!--{$item|escape}-->">
+	<!--{/foreach}-->
+	下記の内容でご登録してもよろしいですか？<br>
+	<br>
+	【ﾒｰﾙｱﾄﾞﾚｽ】<br>
+	<!--{$list_data.email|escape}--><br>
+	<br>
+
+	【携帯ﾒｰﾙｱﾄﾞﾚｽ】<br>
+	<!--{$list_data.email_mobile|escape|default:"未登録"}--><br>
+	<br>
+
+	【ﾊﾟｽﾜｰﾄﾞ確認用質問】<br>
+	<!--{$arrReminder[$list_data.reminder]|escape}--><br>
+	<br>
+
+	【質問の答え】<br>
+	<!--{$list_data.reminder_answer|escape}--><br>
+	<br>
+
+	【個人情報】<br>
+	<!--{$list_data.name01|escape}-->　<!--{$list_data.name02|escape}--><br>
+	<!--{$list_data.kana01|escape}-->　<!--{$list_data.kana02|escape}--><br>
+	<!--{if $list_data.sex eq 1}-->男性<!--{else}-->女性<!--{/if}--><br>
+	<!--{if strlen($list_data.year) > 0 && strlen($list_data.month) > 0 && strlen($list_data.day) > 0}--><!--{$list_data.year|escape}-->年<!--{$list_data.month|escape}-->月<!--{$list_data.day|escape}-->日生まれ<!--{else}-->生年月日 未登録<!--{/if}--><br>
+	〒<!--{$list_data.zip01|escape}--> - <!--{$list_data.zip02|escape}--><br>
+	<!--{$arrPref[$list_data.pref]|escape}--><!--{$list_data.addr01|escape}--><!--{$list_data.addr02|escape}--><br>
+	<!--{$list_data.tel01|escape}-->-<!--{$list_data.tel02|escape}-->-<!--{$list_data.tel03|escape}--><br>
+	<br>
+	
+	【ﾒｰﾙﾏｶﾞｼﾞﾝﾞ】<br>
+	<!--{if $list_data.mailmaga_flg eq 2}-->希望する<!--{else}-->希望しない<!--{/if}--><br>
+	<br>
+
+	<input type="submit" name="submit" value="変更"><br>
+	<input type="submit" name="return" value="戻る">
+</form>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/history_detail.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/history_detail.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/history_detail.tpl	(revision 19665)
@@ -0,0 +1,77 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">購入履歴詳細</div>
+<hr>
+
+■<!--{$arrDisp.create_date|sfDispDBDate}--><br>
+注文番号:<!--{$arrDisp.order_id}--><br>
+<br>
+【お届け先】<br>
+	<!--{assign var=key1 value="deliv_name01"}--><!--{assign var=key2 value="deliv_name02"}-->
+	<!--{$arrDisp[$key1]|escape}-->&nbsp;<!--{$arrDisp[$key2]|escape}--><br>
+	<!--{assign var=key1 value="deliv_zip01"}--><!--{assign var=key2 value="deliv_zip02"}-->
+	〒<!--{$arrDisp[$key1]}-->-<!--{$arrDisp[$key2]}--><br>
+	<!--{assign var=pref value=`$arrDisp.deliv_pref`}--><!--{$arrPref[$pref]}-->
+	<!--{assign var=key value="deliv_addr01"}--><!--{$arrDisp[$key]|escape}-->
+	<!--{assign var=key value="deliv_addr02"}--><!--{$arrDisp[$key]|escape}--><br>
+<br>
+【お届け日時指定】<br>
+<!--{if $arrDisp.deliv_date eq "" and $arrDelivTime[$arrDisp.deliv_time_id] eq ""}-->
+	指定なし<br>
+<!--{else}-->
+	<!--{$arrDisp.deliv_date|escape}--> <!--{$arrDelivTime[$arrDisp.deliv_time_id]|escape}--><br>
+<!--{/if}-->
+<br>
+【お支払い方法】<br>
+<!--{$arrPayment[$arrDisp.payment_id]|escape}--><br>
+<br>
+【ご注文内容】<br>
+<!--{section name=cnt loop=$arrDisp.quantity}-->
+<!--{$arrDisp.product_name[cnt]|escape}--><br>
+<a href="<!--{$smarty.const.MOBILE_DETAIL_P_HTML}--><!--{$arrDisp.product_id[cnt]|escape:url}-->">商品詳細→</a><br>
+<!--{/section}-->
+<br>
+【購入金額】<br>
+商品合計:<!--{$arrDisp.subtotal|number_format}-->円<br>
+送料:<!--{assign var=key value="deliv_fee"}--><!--{$arrDisp[$key]|escape|number_format}-->円<br>
+合計:<!--{$arrDisp.payment_total|number_format}-->円<br>
+<br>
+
+<form action="order.php" method="post">
+	<input type="hidden" name="order_id" value="<!--{$arrDisp.order_id}-->">
+	<div align="center"><input type="submit" name="submit" value="再注文"></div>
+</form>
+
+<br>
+
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/change.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/change.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/mypage/change.tpl	(revision 19665)
@@ -0,0 +1,92 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">登録内容変更 1/3</div>
+<hr>
+<form name="form1" method="post" action="<!--{$smarty.server.PHP_SELF|escape}-->">
+	<input type="hidden" name="mode" value="set1">
+
+	<font color="#FF0000">*は必須項目です。</font><br>
+	PCと携帯のメールアドレスが登録できます。<br>
+	<br>
+
+	【メールアドレス】<font color="#FF0000">※</font><br>
+	<font color="#FF0000"><!--{$arrErr.email}--></font>
+	<input type="text" name="email" value="<!--{$arrForm.email|escape}-->" istyle="3">
+	<br>
+
+	【携帯メールアドレス】<br>
+	<font color="#FF0000"><!--{$arrErr.email_mobile}--></font>
+	<input type="text" name="email_mobile" value="<!--{$arrForm.email_mobile|escape}-->" istyle="3">
+	<br>
+
+	【パスワード】<font color="#FF0000">※</font><br>
+	（半角英数字<!--{$smarty.const.PASSWORD_LEN1}-->文字以上<!--{$smarty.const.PASSWORD_LEN2}-->文字以内）<br>
+	<font color="#FF0000"><!--{$arrErr.password}--></font>
+	<!--{assign var="size" value="`$smarty.const.PASSWORD_LEN2+2`"}-->
+	<input type="password" name="password" value="<!--{$arrForm.password}-->" istyle="4" maxlength="<!--{$smarty.const.PASSWORD_LEN2}-->" size="<!--{$size}-->"><br>
+
+	【パスワード確認用の質問】<font color="#FF0000">※</font><br>
+	<font color="#FF0000"><!--{$arrErr.reminder}--></font>
+	<select name="reminder">
+		<option value="">選択してください</option>
+		<!--{html_options options=$arrReminder selected=$arrForm.reminder}-->
+	</select><br>
+
+	【質問の答え】<font color="#FF0000">※</font><br>
+	<font color="#FF0000"><!--{$arrErr.reminder_answer}--></font>
+	<input type="text" name="reminder_answer" value="<!--{$arrForm.reminder_answer|escape}-->" istyle="1"><br>
+
+	【お名前】<font color="#FF0000">※</font><br>
+	<font color="#FF0000"><!--{$arrErr.name01}--><!--{$arrErr.name02}--></font>
+	姓（例：渋谷）<br>
+	<input type="text" name="name01" value="<!--{$arrForm.name01|escape}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" istyle="1"><br>
+
+	名（例：花子）<br>
+	<input type="text" name="name02" value="<!--{$arrForm.name02|escape}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" istyle="1"><br>
+	<font color="#FF0000"><!--{$arrErr.kana01}--><!--{$arrErr.kana02}--></font>
+
+	カナ/姓（例：シブヤ）<br>
+	<input type="text" name="kana01" value="<!--{$arrForm.kana01|escape}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" istyle="2"><br>
+
+	カナ/名（例：ハナコ）<br>
+	<input type="text" name="kana02" value="<!--{$arrForm.kana02|escape}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" istyle="2"><br>
+
+	<input type="submit" name="confirm" value="次へ">
+
+	<!--{foreach from=$list_data key=key item=item}-->
+		<input type="hidden" name="<!--{$key|escape}-->" value="<!--{$item|escape}-->">
+	<!--{/foreach}-->
+</form>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/index.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/index.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/index.tpl	(revision 19665)
@@ -0,0 +1,72 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<!--▼CONTENTS-->
+<!--▼MAIN ONTENTS-->
+<div align="center"><font color="#000080">ご注文手続き</font></div><br>
+<hr>
+<!--{if !$tpl_valid_phone_id}-->
+<!--▼会員登録がお済みでないお客様-->
+■初めてご注文の方<br>
+(新規ご登録)<br>
+<form name="member_form" id="member_form" method="post" action="<!--{$smarty.const.MOBILE_URL_DIR}-->entry/kiyaku.php">
+	<div align="center"><input type="submit" value="新規登録"></div><br>
+</form>
+<!--▲まだ会員登録されていないお客様-->
+<!--{/if}-->
+
+<!--▼会員登録がお済みのお客様-->
+<form name="member_form" id="member_form" method="post" action="./deliv.php">
+	<input type="hidden" name="mode" value="login">
+<!--{if !$tpl_valid_phone_id}-->
+	■以前にご注文された方<br>
+	(モバイル又はPCでご登録済み)<br>
+	▼メールアドレス<br>
+	<!--{assign var=key value="login_email"}-->
+	<font color="#FF0000"><!--{$arrErr[$key]}--></font>
+	<input type="text" name="<!--{$key}-->" value="<!--{$tpl_login_email|escape}-->" 
+		size="40" istyle="3"><br>
+<!--{else}-->
+<input type="hidden" name="login_email" value="dummy">
+<!--{/if}-->
+	▼パスワード<br>
+	<!--{assign var=key value="login_pass"}--><font color="#FF0000"><!--{$arrErr[$key]}--></font>
+	<input type="password" name="<!--{$key}-->" size="40" istyle="3"><br>
+	<center><input type="submit" value="送信" name="log"></center><br>
+	<a href="<!--{$smarty.const.MOBILE_URL_DIR}-->forgot/<!--{$smarty.const.DIR_INDEX_URL}-->">パスワードをお忘れの方はこちら</a><br>
+</form>
+<!--▲会員登録がお済のお客様-->
+<!--▲MAIN ONTENTS-->
+<!--▲CONTENTS-->
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/complete.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/complete.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/complete.tpl	(revision 19665)
@@ -0,0 +1,52 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>ご注文完了</center>
+
+<hr>
+
+ご注文、有り難うございました。<br>
+商品到着をお楽しみにお待ち下さいませ。<br>
+どうぞ、今後とも、<!--{$arrInfo.shop_name|escape}-->をよろしくお願いします。<br>
+<br>
+
+<!--{if $arrOther.title.value }-->
+<!-- ▼その他の決済情報 -->
+■<!--{$arrOther.title.name}-->情報<br>
+<!--{foreach key=key item=item from=$arrOther}-->
+<!--{if $key != "title"}-->
+<!--{if $item.name != ""}--><!--{$item.name}-->：<!--{/if}--><!--{$item.value|nl2br}--><br>
+<!--{/if}-->
+<!--{/foreach}-->
+<br>
+<!-- ▲その他の決済情報 -->
+<!--{/if}-->
+
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページに戻る</a><br>
+
+<br>
+<hr>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/set1.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/set1.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/set1.tpl	(revision 19665)
@@ -0,0 +1,76 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">お届け先登録</div>
+<hr>
+<form name="form1" method="post" action="<!--{$smarty.server.PHP_SELF|escape}-->">
+	<input type="hidden" name="mode" value="set2">
+
+	<font color="#FF0000">*は必須項目です。</font><br>
+	<br>
+
+	【都道府県】<font color="#FF0000">*</font><br>
+	<font color="#FF0000"><!--{$arrErr.pref}--></font>
+	<select name="pref">
+		<option value="">都道府県を選択</option>
+		<!--{html_options options=$arrPref selected=$arrForm.pref}-->
+	</select><br>
+
+	【市区町村】<font color="#FF0000">*</font><br>
+	<font color="#FF0000"><!--{$arrErr.addr01}--></font>
+	<input type="text" name="addr01" value="<!--{$arrForm.addr01|escape}-->" istyle="1"><br>
+
+	【番地】<font color="#FF0000">*</font><br>
+	<font color="#FF0000"><!--{$arrErr.addr02}--></font>
+	<input type="text" name="addr02" value="<!--{$arrForm.addr02|escape}-->" istyle="1"><br>
+
+	【電話番号】<font color="#FF0000">*</font><br>
+	<font color="#FF0000"><!--{$arrErr.tel01}--><!--{$arrErr.tel02}--><!--{$arrErr.tel03}--></font>
+	<!--{assign var="size" value="`$smarty.const.TEL_ITEM_LEN+2`"}-->
+	<input type="text" size="<!--{$size}-->" name="tel01" value="<!--{$arrForm.tel01|escape}-->" maxlength="<!--{$smarty.const.TEL_ITEM_LEN}-->" istyle="4">
+	&nbsp;-&nbsp;
+	<input type="text" size="<!--{$size}-->" name="tel02" value="<!--{$arrForm.tel02|escape}-->" maxlength="<!--{$smarty.const.TEL_ITEM_LEN}-->" istyle="4">
+	&nbsp;-&nbsp;
+	<input type="text" size="<!--{$size}-->" name="tel03" value="<!--{$arrForm.tel03|escape}-->" maxlength="<!--{$smarty.const.TEL_ITEM_LEN}-->" istyle="4"><br>
+
+	<br>
+
+	<div align="center"><input type="submit" name="submit" value="次へ"></div>
+	<div align="center"><input type="submit" name="return" value="戻る"></div>
+
+	<!--{foreach from=$list_data key=key item=item}-->
+		<input type="hidden" name="<!--{$key|escape}-->" value="<!--{$item|escape}-->">
+	<!--{/foreach}-->
+</form>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/confirm.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/confirm.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/confirm.tpl	(revision 19665)
@@ -0,0 +1,101 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>ご注文内容確認</center>
+
+<hr>
+
+<form method="post" action="<!--{$smarty.server.PHP_SELF|escape}-->">
+<input type="hidden" name="mode" value="confirm">
+<input type="hidden" name="uniqid" value="<!--{$tpl_uniqid}-->">
+
+下記のご注文内容に間違いはございませんか？<br>
+
+<br>
+
+【お届け先】<br>
+<!--{* 別のお届け先が選択されている場合 *}-->
+<!--{if $arrData.deliv_check >= 1}-->
+<!--{$arrData.deliv_name01|escape}--> <!--{$arrData.deliv_name02|escape}--><br>
+〒<!--{$arrData.deliv_zip01|escape}-->-<!--{$arrData.deliv_zip02|escape}--><br>
+<!--{$arrPref[$arrData.deliv_pref]}--><!--{$arrData.deliv_addr01|escape}--><!--{$arrData.deliv_addr02|escape}--><br>
+<!--{else}-->
+<!--{$arrData.order_name01|escape}--> <!--{$arrData.order_name02|escape}--><br>
+〒<!--{$arrData.order_zip01|escape}-->-<!--{$arrData.order_zip02|escape}--><br>
+<!--{$arrPref[$arrData.order_pref]}--><!--{$arrData.order_addr01|escape}--><!--{$arrData.order_addr02|escape}--><br>
+<!--{/if}-->
+
+<br>
+
+【お届け日時指定】<br>
+日：<!--{$arrData.deliv_date|escape|default:"指定なし"}--><br>
+時間：<!--{$arrData.deliv_time|escape|default:"指定なし"}--><br>
+
+<br>
+
+【お支払い方法】<br>
+<!--{$arrData.payment_method|escape}--><br>
+
+<br>
+
+【ご注文内容】<br>
+<!--{section name=cnt loop=$arrProductsClass}-->
+<!--{$arrProductsClass[cnt].name}--> <!--{$arrProductsClass[cnt].quantity|number_format}--><br>
+<!--{/section}-->
+
+<br>
+
+【購入金額】<br>
+商品合計：<!--{$tpl_total_pretax|number_format}--><br>
+送料：<!--{$arrData.deliv_fee|number_format}--><br>
+<!--{if $arrData.charge > 0}-->手数料：<!--{$arrData.charge|number_format}--><br><!--{/if}-->
+合計：<!--{$arrData.payment_total|number_format}--><br>
+(内消費税：<!--{$arrData.tax|number_format}-->)<br>
+
+<br>
+
+<center><input type="submit" value="注文"></center>
+</form>
+<form action="<!--{$smarty.const.MOBILE_URL_SHOP_PAYMENT}-->" method="post">
+<input type="hidden" name="mode" value="deliv_date">
+<input type="hidden" name="uniqid" value="<!--{$tpl_uniqid}-->">
+<input type="hidden" name="payment_id" value="<!--{$arrData.payment_id}-->">
+<input type="hidden" name="deliv_date" value="<!--{$arrData.deliv_date}-->">
+<input type="hidden" name="deliv_time_id" value="<!--{$arrData.deliv_time_id}-->">
+<!--{if $cartdown != 2}-->
+<input type="hidden" name="mode" value="deliv_date">
+<!--{/if}-->
+<center><input type="submit" value="戻る"></center>
+</form>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/deliv_addr.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/deliv_addr.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/deliv_addr.tpl	(revision 19665)
@@ -0,0 +1,80 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">お届け先登録</div>
+<hr>
+<form name="form1" method="post" action="<!--{$smarty.server.PHP_SELF|escape}-->">
+	<input type="hidden" name="mode" value="set1">
+
+	<font color="#FF0000">*は必須項目です。</font><br>
+	<br>
+
+	【お名前】<font color="#FF0000">※</font><br>
+	<font color="#FF0000"><!--{$arrErr.name01}--><!--{$arrErr.name02}--></font>
+	姓（例：渋谷）<br>
+	<input type="text" name="name01" value="<!--{$arrForm.name01|escape}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" istyle="1"><br>
+
+	名（例：花子）<br>
+	<input type="text" name="name02" value="<!--{$arrForm.name02|escape}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" istyle="1"><br>
+	<font color="#FF0000"><!--{$arrErr.kana01}--><!--{$arrErr.kana02}--></font>
+
+	カナ/姓（例：シブヤ）<br>
+	<input type="text" name="kana01" value="<!--{$arrForm.kana01|escape}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" istyle="2"><br>
+
+	カナ/名（例：ハナコ）<br>
+	<input type="text" name="kana02" value="<!--{$arrForm.kana02|escape}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" istyle="2"><br>
+
+	<br>
+
+	<!--{assign var=key1 value="zip01"}-->
+	<!--{assign var=key2 value="zip02"}-->
+	【郵便番号】<font color="#FF0000">*</font><br>
+	<font color="#FF0000"><!--{$arrErr[$key1]}--><!--{$arrErr[$key2]}--></font>
+	<!--{assign var="size1" value="`$smarty.const.ZIP01_LEN+2`"}-->
+	<!--{assign var="size2" value="`$smarty.const.ZIP02_LEN+2`"}-->
+	<input size="<!--{$size1}-->" type="text" name="zip01" value="<!--{if $arrForm.zip01 != ""}--><!--{$arrForm.zip01|escape}--><!--{else}--><!--{$zip01|escape}--><!--{/if}-->" maxlength="<!--{$smarty.const.ZIP01_LEN}-->" istyle="4">
+	&nbsp;-&nbsp;
+	<input size="<!--{$size2}-->" type="text" name="zip02" value="<!--{if $arrForm.zip02 != ""}--><!--{$arrForm.zip02|escape}--><!--{else}--><!--{$zip02|escape}--><!--{/if}-->" maxlength="<!--{$smarty.const.ZIP02_LEN}-->" istyle="4"><br>
+
+	<br>
+
+	<div align="center"><input type="submit" name="submit" value="次へ"></div>
+	<div align="center"><input type="submit" name="return" value="戻る"></div>
+
+	<!--{foreach from=$list_data key=key item=item}-->
+		<input type="hidden" name="<!--{$key|escape}-->" value="<!--{$item|escape}-->">
+	<!--{/foreach}-->
+</form>
+
+<br>
+
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/payment.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/payment.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/payment.tpl	(revision 19665)
@@ -0,0 +1,62 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>支払い方法指定</center>
+
+<hr>
+
+<form method="post" action="<!--{$smarty.server.PHP_SELF|escape}-->">
+<input type="hidden" name="mode" value="deliv_date">
+<input type="hidden" name="uniqid" value="<!--{$tpl_uniqid}-->">
+<input type="hidden" name="deliv_date" value="<!--{$arrForm.deliv_date.value}-->">
+<input type="hidden" name="deliv_time_id" value="<!--{$arrForm.deliv_time_id.value}-->">
+<!--<input type="hidden" name="message" value="">-->
+<!--{if $tpl_login == 1}-->
+<!--<input type="hidden" name="point_check" value="2">-->
+<!--{/if}-->
+
+<!--{assign var=key value="payment_id"}-->
+<!--{if $arrErr[$key] != ""}-->
+<font color="red"><!--{$arrErr[$key]}--></font>
+<!--{/if}-->
+<!--{section name=cnt loop=$arrPayment}-->
+<input type="radio" name="<!--{$key}-->" value="<!--{$arrPayment[cnt].payment_id}-->" <!--{$arrPayment[cnt].payment_id|sfGetChecked:$arrForm[$key].value}-->>
+<!--{$arrPayment[cnt].payment_method|escape}-->
+<br>
+<!--{/section}-->
+
+<center><input type="submit" value="次へ"></center>
+<center><input type="submit" name="return" value="戻る"></center>
+</form>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/set2.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/set2.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/set2.tpl	(revision 19665)
@@ -0,0 +1,54 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<div align="center">お届け先登録確認</div>
+<hr>
+<form name="form1" method="post" action="<!--{$smarty.server.PHP_SELF|escape}-->">
+	<input type="hidden" name="mode" value="complete">
+
+	【個人情報】<br>
+	<!--{$list_data.name01|escape}-->　<!--{$list_data.name02|escape}--><br>
+	<!--{$list_data.kana01|escape}-->　<!--{$list_data.kana02|escape}--><br>
+	〒<!--{$list_data.zip01|escape}--> - <!--{$list_data.zip02|escape}--><br>
+	<!--{$arrPref[$list_data.pref]|escape}--><!--{$list_data.addr01|escape}--><!--{$list_data.addr02|escape}--><br>
+	<!--{$list_data.tel01|escape}-->-<!--{$list_data.tel02|escape}-->-<!--{$list_data.tel03|escape}--><br>
+
+	<div align="center"><input type="submit" name="submit" value="次へ"></div>
+	<div align="center"><input type="submit" name="return" value="戻る"></div>
+
+	<!--{foreach from=$list_data key=key item=item}-->
+		<input type="hidden" name="<!--{$key|escape}-->" value="<!--{$item|escape}-->">
+	<!--{/foreach}-->
+</form>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/deliv_date.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/deliv_date.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/deliv_date.tpl	(revision 19665)
@@ -0,0 +1,77 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>お届け日時指定</center>
+
+<hr>
+
+<form method="post" action="<!--{$smarty.server.PHP_SELF|escape}-->">
+<input type="hidden" name="mode" value="confirm">
+<input type="hidden" name="uniqid" value="<!--{$tpl_uniqid}-->">
+<input type="hidden" name="payment_id" value="<!--{$arrForm.payment_id.value}-->">
+<!--<input type="hidden" name="message" value="">-->
+<!--{if $tpl_login == 1}-->
+<!--<input type="hidden" name="point_check" value="2">-->
+<!--{/if}-->
+
+■お届け日<br>
+<!--{assign var=key value="deliv_date"}-->
+<!--{if $arrErr[$key] != ""}-->
+<font color="red"><!--{$arrErr[$key]}--></font>
+<!--{/if}-->
+<!--{if $arrDelivDate}-->
+<select name="<!--{$key}-->">
+<option value="">指定なし</option>
+<!--{html_options options=$arrDelivDate selected=$arrForm[$key].value}-->
+</select>
+<!--{else}-->
+ご指定頂けません。
+<!--{/if}-->
+<br><br>
+
+■お届け時間<br>
+<!--{assign var=key value="deliv_time_id"}-->
+<!--{if $arrErr[$key] != ""}-->
+<font color="red"><!--{$arrErr[$key]}--></font>
+<!--{/if}-->
+<select name="<!--{$key}-->">
+<option value="">指定なし</option>
+<!--{html_options options=$arrDelivTime selected=$arrForm[$key].value}-->
+</select>
+<br>
+
+<center><input type="submit" value="次へ"></center>
+<center><input type="submit" name="return" value="戻る"></center>
+</form>
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/deliv.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/deliv.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/deliv.tpl	(revision 19665)
@@ -0,0 +1,72 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<center>お届け先指定</center>
+
+<hr>
+
+<!--{if $arrErr.deli != ""}-->
+<font color="#ff0000"><!--{$arrErr.deli}--></font>
+<!--{/if}-->
+
+<!--▼CONTENTS-->
+<!--{section name=cnt loop=$arrAddr}-->
+<form method="post" action="<!--{$smarty.server.PHP_SELF|escape}-->">
+<input type="hidden" name="uniqid" value="<!--{$tpl_uniqid}-->">
+<input type="hidden" name="deli" value="<!--{$smarty.section.cnt.iteration}-->">
+<!--{if $smarty.section.cnt.first}-->
+<input type="hidden" name="mode" value="customer_addr">
+<input type="hidden" name="other_deliv_id" value="">
+<!--{else}-->
+<input type="hidden" name="mode" value="other_addr">
+<input type="hidden" name="other_deliv_id" value="<!--{$arrAddr[cnt].other_deliv_id}-->">
+<!--{/if}-->
+■お届け先<!--{$smarty.section.cnt.iteration}--><br>
+〒<!--{$arrAddr[cnt].zip01}-->-<!--{$arrAddr[cnt].zip02}--><br>
+<!--{assign var=key value=$arrAddr[cnt].pref}--><!--{$arrPref[$key]}--><!--{$arrAddr[cnt].addr01|escape}--><br>
+<!--{if $arrAddr[cnt].addr02 != ""}-->
+<!--{$arrAddr[cnt].addr02|escape}--><br>
+<!--{/if}-->
+<center><input type="submit" value="ここに送る"></center>
+</form>
+<!--{/section}-->
+
+<br>
+
+■その他のお届け先を指定<br>
+<form method="get" action="deliv_addr.php">
+<center><input type="submit" value="新規登録"></center>
+</form>
+<!--▲CONTENTS-->
+
+<br>
+<hr>
+
+<a href="<!--{$smarty.const.MOBILE_URL_CART_TOP}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
+
+<br>
+
+<!-- ▼フッター ここから -->
+<!--{include file='footer.tpl'}-->
+<!-- ▲フッター ここまで -->
Index: branches/version-2_5-dev/data/Smarty/templates/mobile/error.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/mobile/error.tpl	(revision 19665)
+++ branches/version-2_5-dev/data/Smarty/templates/mobile/error.tpl	(revision 19665)
@@ -0,0 +1,31 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<!--▼CONTENTS-->
+<!--▼MAIN ONTENTS-->
+<!--★エラーメッセージ--><!--{$tpl_error}--><br>
+<!--{if $return_top}-->
+<a href="<!--{$smarty.const.MOBILE_URL_SITE_TOP}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a>
+<!--{/if}-->
+<!--▲MAIN ONTENTS-->
+<!--▲CONTENTS-->
