<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css">
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>

<div id="product">
  <{if $product.id != ""}>
    <section class="section section--product">
      <div class="breadcrumblist">
        <span><a href="<{$home_url}>">ホーム</a></span>
        &nbsp;&gt;&nbsp;
        <{if $bid_name != ""}>
          <span><a href="<{$bid_link}>"><{$bid_name}></a></span>
        <{/if}>
        <{if $sid_name != ""}>
          &nbsp;&gt;&nbsp;
          <span><a href="<{$sid_link}>"><{$sid_name}></a></span>
        <{/if}>
      </div>
      <!-- 商品画像 -->
      <div class="imagelist">
        <{if $product.img_url == "" && $otherimg_num == 0}>
          <div>
            <img src="https://img.shop-pro.jp/s_tmpl_img/27/noimage.png">
          </div>
        <{else}>
          <{if $product.img_url != ""}>
            <div>
              <img src="<{$product.img_url}>">
            </div>
          <{else}>
            <div>
              <img src="https://img.shop-pro.jp/s_tmpl_img/27/noimage.png">
            </div>
          <{/if}>
          <{section name=num loop=$otherimg}>
            <{if $otherimg[num].url != ""}>
              <div>
                <img src="<{$otherimg[num].url}>">
              </div>
            <{/if}>
          <{/section}>
        <{/if}>
      </div>

      <!-- // 商品画像 -->
      <!-- 商品名 -->
      <h2><{$product_name}></h2>
      <!-- // 商品名 -->
      <div class="section-inner">
        <!-- 値段 -->
        <div class="prices">
          <{if $members_login_flg && $product.discount_flg}>
            <p><span class="regular"><{$product.regular_price}></span>
          <{/if}>
          <span class="price"><{$product.sales}></span></p>
          <!-- 何パーセントOFFか表示させたい場合はこのコメントアウトを消す
          <{if $members_login_flg == true && $product.discount_flg == true}>
            <p class="rate"><{$product.discount_rate}>OFF!!</p>
          <{/if}>
          -->
        </div>
        <!-- // 値段 -->
      </div>

      <!-- 購入フォーム -->
      <form name="product_form" method="post" action="<{$cart_url}>" class="productform">
        <div class="section-inner">
          <{if !$shop_stop_flg && $product.soldout_flg == 0 && !$product.login_sale_flg}>
            <div class="productform-inner">
              <p><label for="num">個数</label></p>
              <input type="number" name="product_num" value="<{$product.init_num}>" class="productnum">
              <{if $product.unit != ""}>
                <span><{$product.unit}></span>
              <{/if}>
            </div>

            <!-- 名入れ機能 -->
            <{if $product.product_text_titles}>
              <div class="productform-inner">
                <{foreach from=$product.product_text_titles key=key item=val}>
                   <p><label for="text_titles"><{$val|escape}></label></p>
                   <input type="text" name="product_text[<{$key|escape}>]" value="" class="name-title" /> <br />
                <{/foreach}>
              </div>
            <{/if}>
            <!-- // 名入れ機能 -->

            <!-- オプション情報 -->
            <{if $opt_url != ""}>
              <div class="productform-inner">
                <{section name=num loop=$option}>
                  <div>
                    <p><label for="option"><{$option[num].name}></label></p>
                    <select name="<{$option[num].select_name}>" class="pulldown">
                      <{html_options values=$option_value[num].id output=$option_value[num].name selected=$key}>
                    </select>
                  </div>
                <{/section}>
              </div>
            <{/if}>
            <!-- // オプション情報 -->

            <div class="productform-inner disable_cartin">
              <button class="button button--orange button--large" type="submit">カートに入れる</button>
            </div>
            <p class="stock_error"></p>
          <{else}>
            <div class="productform-inner">
              <{if $product.soldout_flg == 1}>
                <button class="button button--disabled button--large" type="button" disabled="disabled">SOLD OUT</button>
              <{elseif $product.login_sale_flg == true}>
                <div>会員のみ購入できます</div>
              <{/if}>
            </div>
          <{/if}>
          <{if $opt_url != ""}>
            <p id="modal-open" class="button button--medium button--line">
              <span class="wrap">オプションの値段詳細<img src="https://img.shop-pro.jp/s_tmpl_img/27/right_l.png" class="icon icon--right_l"></span>
            </p>
          <{/if}>
          <{$product.info}>
          <!-- タグリスト -->
            <{if $group_breadcrumb_list != ""}>
              <div class="taglist">
                <p>この商品に登録されているタグ</p>
                <{section name=cnt loop=$group_breadcrumb_list}>
                  <{section name=num loop=$group_breadcrumb_list[cnt].group_breadcrumb}>
                    <a href="<{$group_breadcrumb_list[cnt].group_breadcrumb[num].link_url}>" class="button button--tag button--line"><{$group_breadcrumb_list[cnt].group_breadcrumb[num].name}></a>
                  <{/section}>
                <{/section}>
              </div>
            <{/if}>
          <!-- // タグリスト -->
        </div>
      </form>
      <!-- // 購入フォーム -->
    </section>
    <section class="section section--product">
      <h2>商品の説明</h2>
      <!-- 商品説明文 -->
      <div class="section-inner">
        <p><{$product.explain}></p>
      </div>
      <!-- // 商品説明文 -->
    </section>
    <section class="section section--product">
      <!-- 価格・型番・定価・在庫 -->
      <h2>その他の詳細情報</h2>
      <div class="section-inner">
        <table class="table table--bordered">
          <{if $members_login_flg && $product.discount_flg}>
            <tr>
              <th>販売価格</th>
              <td><{$product.regular_price}></td>
            </tr>
          <{/if}>
          <tr>
            <th>
              <{if $members_login_flg && $product.discount_flg}>会員価格<{else}>販売価格<{/if}>
            </th>
            <td>
              <!-- 販売価格 -->
              <{$product.sales}>
              <!-- 割引率 -->
              <{if $members_login_flg && $product.discount_flg}>
                <span class="discount"><{$product.discount_rate}>OFF!!</span>
              <{/if}>
            </td>
          </tr>
          <{if $product.model != ""}>
            <tr>
              <th>型番</th>
              <td><{$product.model}></td>
            </tr>
          <{/if}>
          <{if $product.price_disp && $product.price != $product.sales}>
            <tr>
              <th>定価</th>
              <td><{$product.price}></td>
            </tr>
          <{/if}>
          <{if $product.stock_disp}>
            <tr>
              <th>在庫状況</th>
              <td><{$product.stock_str}></td>
            </tr>
          <{/if}>
        </table>
      <!-- // 価格・型番・定価・在庫 -->

      <!-- 商品関連リンク -->
        <ul class="otherlist cf">
          <{if $review_use_flg}>
            <li><a href="<{$review_lst_url}>" class="button button--line button--medium"><span class="wrap">レビューを見る(<{$review_item_num}>件)<img src="https://img.shop-pro.jp/s_tmpl_img/27/right_l.png" class="icon icon--right_l"></span></a></li>
            <li><a href="<{$review_send_url}>" class="button button--line button--medium"><span class="wrap">レビューを投稿<img src="https://img.shop-pro.jp/s_tmpl_img/27/right_l.png" class="icon icon--right_l"></span></a></li>
          <{/if}>
          <li><a href="<{$prod_teach_url}>" class="button button--line button--medium"><span class="wrap">この商品を友達に教える<img src="https://img.shop-pro.jp/s_tmpl_img/27/right_l.png" class="icon icon--right_l"></span></a></li>
          <li><a href="<{$prod_inq_url}>" class="button button--line button--medium"><span class="wrap">この商品について問い合わせる<img src="https://img.shop-pro.jp/s_tmpl_img/27/right_l.png" class="icon icon--right_l"></span></a></li>
          <li><a href="https://koroha.shop-pro.jp/?mode=f4" class="button button--medium button--line"><span class="wrap">配送・送料について<img src="https://img.shop-pro.jp/s_tmpl_img/27/right_l.png" class="icon icon--right_l"></span></a></li>
          <li><a href="https://koroha.shop-pro.jp/?mode=f7" class="button button--medium button--line"><span class="wrap">海外のお客様（Overseas）<img src="https://img.shop-pro.jp/s_tmpl_img/27/right_l.png" class="icon icon--right_l"></span></a></li>
          <li><a href="<{$sk_url}>#info" class="button button--medium button--line"><span class="wrap">返品について<img src="https://img.shop-pro.jp/s_tmpl_img/27/right_l.png" class="icon icon--right_l"></span></a></li>
          <li class="social"><{twitter_tweet}></li>
          <li class="social"><{facebook_like layout="button_count" width=150 action="like"}></li>
          <li class="social"><{$line_button}></li>
        </ul>
      </div>
      <!-- // 商品関連リンク -->
    </section>

  <{else}>
    <section class="section section--product">
      <div class="section-inner">
      <{if $product.hide_flg}>
        <h2>この商品を閲覧するにはログインが必要です。</h2>
      <{else}>
        <h2>現在、この商品は扱っておりません。</h2>
      <{/if}>
      </div>
    </section>
  <{/if}>
</section>

<!-- 組合せ購入 -->
<{if $together_product_num != 0}>
  <div class="section">
    <h2>あなたにおすすめの商品</h2>
    <div class="slidelist">
      <{section name=num loop=$together_product}>
        <div class="slide">
          <a href="<{$together_product[num].link_url}>" class="slide-inner">
            <div class="slide-image">
              <{if $together_product[num].img_url != ""}>
                <img src="<{$together_product[num].img_url}>" alt="<{$together_product[num].name}>">
              <{else}>
                <img src="https://img.shop-pro.jp/s_tmpl_img/27/noimage.png" alt="<{$together_product[num].name}>">
              <{/if}>
            </div>
            <p class="slide-title"><{$together_product[num].name}></p>
            <{if $together_product[num].soldout_flg == false}>
              <p class="slide-price"><{$together_product[num].price}></p>
            <{else}>
              <p class="slide-price slide-price--soldout">SOLD OUT</p>
            <{/if}>
          </a>
        </div>
      <{/section}>
    </div>
  </div>
<{/if}>
<!-- // 組合せ購入 -->

      <!-- おすすめ品（テスト） -->
      <{if $recommend_num != 0}>
        <div class="section">
          <h2>新入荷商品</h2>
          <div class="slidelist">
            <{section name=num loop=$recommend}>
              <div class="slide">
                <a href="<{$recommend[num].link_url}>" class="slide-inner">
                  <div class="slide-image">
                    <{if $recommend[num].img_url != ""}>
                      <img src="<{$recommend[num].img_url}>" alt="<{$recommend[num].name}>">
                    <{else}>
                      <img src="https://img.shop-pro.jp/s_tmpl_img/27/noimage.png" alt="<{$recommend[num].name}>">
                    <{/if}>
                  </div>
                  <p class="slide-title"><{$recommend[num].name}></p>
                  <{if $recommend[num].soldout_flg == false}>
                    <p class="slide-price"><{$recommend[num].price}></p>
                  <{else}>
                    <p class="slide-price slide-price--soldout">SOLD OUT</p>
                  <{/if}>
                </a>
              </div>
            <{/section}>
          </div>
        </div>
      <{/if}>

      <!-- おすすめ品（テスト） -->
      <{if $recommend_num != 0}>
        <div class="section">
          <h2>おすすめ商品</h2>
          <div class="slidelist">
            <{section name=num loop=$seller}>
              <div class="slide">
                <a href="<{$seller[num].link_url}>" class="slide-inner">
                  <div class="slide-image">
                    <{if $seller[num].img_url != ""}>
                      <img src="<{$seller[num].img_url}>" alt="<{$seller[num].name}>">
                    <{else}>
                      <img src="https://img.shop-pro.jp/s_tmpl_img/27/noimage.png" alt="<{$seller[num].name}>">
                    <{/if}>
                  </div>
                  <p class="slide-title"><{$seller[num].name}></p>
                  <{if $seller[num].soldout_flg == false}>
                    <p class="slide-price"><{$seller[num].price}></p>
                  <{else}>
                    <p class="slide-price slide-price--soldout">SOLD OUT</p>
                  <{/if}>
                </a>
              </div>
            <{/section}>
          </div>
        </div>
      <{/if}>



<!-- //会員機能説明 -->
<div align="center">
<a href="https://members.shop-pro.jp/?mode=members_regi&shop_id=PA01380047&shop_back_url=https%3A%2F%2Fkoroha.shop-pro.jp%2F"><img src="https://img07.shop-pro.jp/PA01380/047/etc/top_pointinfo_%B2%A3%C4%B9.jpg?cmsp_timestamp=20220605192407" width="95%" alt=""></a>
</div>
<br />
<!-- //会員機能説明 -->



<!-- //展示会情報 -->
<div align="center"><h2>次回開催の展示会</h2></div>
  <div class="hero2">
	<div align="center">
	<a href="https://koroha.net/?mode=grp&gid=2930224"><img src="https://img07.shop-pro.jp/PA01380/047/etc_base64/MjMxMruwv83FuF9iYW5uZXJfd2ViX7KjxLk.jpg?cmsp_timestamp=20231216150758" width="100%" alt=""></a><br />
	<strong>【WEB展示】うつわを愉しむ、冬のしつらえ展<br />
	会期：2023年12月16日(土)18:00〜12月26日(火)23:59</strong><br />
	参加作家：ＳＵＩＹＯ［陶芸］/村上直子［陶芸］
	</div>
  </div>
<!-- //展示会情報 -->


<!-- //TOP1（スライド箇所） -->
<div align="center"><h2>新着</h2></div>
  <div class="hero2">
    <div>
	<table border="0" align="center">
	<!-- 1ページ目の1段目　-->
	<tr>
	<!-- 鳥井金網工芸 --><td width="50%"><div style="background: #fff; border: none; padding: 1px 1px;"><a href="https://koroha.shop-pro.jp/?mode=grp&gid=2586058&view=smartphone"><img src="https://img07.shop-pro.jp/PA01380/047/etc_base64/dG9wX3Rvcmlpa2FuYWFtaV9zcF9z.jpg?cmsp_timestamp=20231020110359" width="100%" alt=""></a></div></td>
	<!-- 藤村佳澄 --><td width="50%"><div style="background: #fff; border: none; padding: 1px 1px;"><a href="https://koroha.shop-pro.jp/?mode=grp&gid=1614708&sort=n&view=smartphone"><img src="https://img21.shop-pro.jp/PA01380/047/etc/top_fujimura_sp_s.jpg?cmsp_timestamp=20200729191143" width="100%" alt=""></a></div></td>
	</tr>
	<!-- 1ページ目の2段目　-->
	<tr>
	<!-- 山本直毅 --><td width="50%"><div style="background: #fff; border: none; padding: 1px 1px;"><a href="https://koroha.shop-pro.jp/?mode=grp&gid=1780651&sort=n&view=smartphone"><img src="https://img07.shop-pro.jp/PA01380/047/etc_base64/dG9wX3lhbWFtb3RvbmFvX3NwX3M.jpg?cmsp_timestamp=20230812150442" width="100%" alt=""></a></div></td>
	<!-- 公長斎小菅 --><td width="50%"><div style="background: #fff; border: none; padding: 1px 1px;"><a href="https://koroha.shop-pro.jp/?mode=grp&gid=2072569&sort=n&view=smartphone"><img src="https://img07.shop-pro.jp/PA01380/047/etc/top_bamboo_sp_s.jpg?cmsp_timestamp=20221128183827" width="100%" alt=""></a></div></td>
	</tr>
	</table>
    </div>
    <div>
	<table border="0" align="center">
	<!-- 2ページ目の1段目　-->
	<tr>
	<!-- 石川理恵 --><td width="50%"><div style="background: #fff; border: none; padding: 1px 1px;"><a href="https://koroha.net/?mode=grp&gid=2499091&view=smartphone"><img src="https://img07.shop-pro.jp/PA01380/047/etc_base64/dG9wX2lzaGlrYXdhX3NwX3M.jpg?cmsp_timestamp=20230730135107" width="100%" alt=""></a></div></td>
	<!-- 桑田智香子 --><td width="50%"><div style="background: #fff; border: none; padding: 1px 1px;"><a href="https://koroha.net/?mode=grp&gid=2853761&view=smartphone"><img src="https://img07.shop-pro.jp/PA01380/047/etc_base64/dG9wX2t1d2F0YV9zcF9z.jpg?cmsp_timestamp=20230726175421" width="100%" alt=""></a></div></td>
	</tr>
	<!-- 2ページ目の2段目　-->
	<tr>
	<!-- icura工房 --><td width="50%"><div style="background: #fff; border: none; padding: 1px 1px;"><a href="https://koroha.shop-pro.jp/?mode=grp&gid=1623450&view=smartphone"><img src="https://img07.shop-pro.jp/PA01380/047/etc_base64/dG9wX2ljdXJhX3NwX3M.jpg?cmsp_timestamp=20230601172907" width="100%" alt=""></a></div></td>
	<!-- 降幡未来 --><td width="50%"><div style="background: #fff; border: none; padding: 1px 1px;"><a href="https://koroha.shop-pro.jp/?mode=grp&gid=2637546&view=smartphone"><img src="https://img07.shop-pro.jp/PA01380/047/etc/top_furuhata_sp_s.jpg?cmsp_timestamp=20210903163846" width="100%" alt=""></a></div></td>
	</tr>
	</table>
    </div>
    <div>
	<table border="0" align="center">
	<!-- 3ページ目の1段目　-->
	<tr>
	<!-- 近藤文 --><td width="50%"><div style="background: #fff; border: none; padding: 1px 1px;"><a href="https://koroha.net/?mode=grp&gid=2832480&view=smartphone"><img src="https://img07.shop-pro.jp/PA01380/047/etc/top_kondo_sp_s.jpg?cmsp_timestamp=20230217163450" width="100%" alt=""></a></div></td>
	<!-- 加藤裕章 --><td width="50%"><div style="background: #fff; border: none; padding: 1px 1px;"><a href="https://koroha.net/?mode=grp&gid=2832481&view=smartphone"><img src="https://img07.shop-pro.jp/PA01380/047/etc/top_katohiroaki_sp_s.jpg?cmsp_timestamp=20230217163450" width="100%" alt=""></a></div></td>
	</tr>
	<!-- 3ページ目の2段目　-->
	<tr>
	<!-- 福井亜紀 --><td width="50%"><div style="background: #fff; border: none; padding: 1px 1px;"><a href="https://koroha.net/?mode=grp&gid=2832483&view=smartphone"><img src="https://img07.shop-pro.jp/PA01380/047/etc/top_fukui_sp_s.jpg?cmsp_timestamp=20230217163450" width="100%" alt=""></a></div></td>
	<!-- 大森由貴奈 --><td width="50%"><div style="background: #fff; border: none; padding: 1px 1px;"><a href="https://koroha.shop-pro.jp/?mode=grp&gid=2673011&view=smartphone"><img src="https://img07.shop-pro.jp/PA01380/047/etc/top_omori_sp.jpg?cmsp_timestamp=20211203135856" width="100%" alt=""></a></div></td>
	</tr>
	</table>
    </div>
  </div>

<!-- slickの設定 -->
<script type="text/javascript">
	$(function() {
    $('.hero2').slick({
      accessibility: true,
      autoplay: true,
      autoplaySpeed: 3500,
      speed: 500,
dots: true
    }); 
  });

</script>
<br /><br />
<!-- //TOP1（スライド箇所） -->



<!-- //TOP2（スライド箇所） -->
<div align="center"><h2>特集</h2></div>
  <div class="hero4">
    <div>
	<table border="0" align="center">
	<!-- 1ページ目の1段目　-->
	<tr>
	<!-- 1月特集 --><td width="50%"><div style="background: #fff; border: none; padding: 1px 1px;"><a href="https://koroha.net/?mode=grp&gid=2823746"><img src="https://img07.shop-pro.jp/PA01380/047/etc/top_2301_s.jpg?cmsp_timestamp=20230203142148" width="100%" alt=""></a></div></td>
	<!-- 12月特集 --><td width="50%"><div style="background: #fff; border: none; padding: 1px 1px;"><a href="https://koroha.net/?mode=grp&gid=2808863"><img src="https://img07.shop-pro.jp/PA01380/047/etc/top_event_2212.jpg?cmsp_timestamp=20221218103957" width="100%" alt=""></a></div></td>
	</tr>
	<!-- 1ページ目の2段目　-->
	<tr>
	<!-- 11月特集 --><td width="50%"><div style="background: #fff; border: none; padding: 1px 1px;"><a href="https://koroha.net/?mode=grp&gid=2670485"><img src="https://img07.shop-pro.jp/PA01380/047/etc/top_2111.jpg?cmsp_timestamp=20221106142726" width="100%" alt=""></a></div></td>
	<!-- 10月特集 --><td width="50%"><div style="background: #fff; border: none; padding: 1px 1px;"><a href="https://koroha.net/?mode=grp&gid=2784770"><img src="https://img07.shop-pro.jp/PA01380/047/etc/top_2210_s.jpg?cmsp_timestamp=20221021143100" width="100%" alt=""></a></div></td>
	</tr>
	</table>
    </div>
    <div>
	<table border="0" align="center">
	<!-- 2ページ目の1段目　-->
	<tr>
	<!-- 8月特集 --><td width="50%"><div style="background: #fff; border: none; padding: 1px 1px;"><a href="https://koroha.shop-pro.jp/?mode=grp&gid=2764984"><img src="https://img07.shop-pro.jp/PA01380/047/etc/top_2208_s.jpg?cmsp_timestamp=20220828115633" width="100%" alt=""></a></div></td>
	<!-- 7月特集 --><td width="50%"><div style="background: #fff; border: none; padding: 1px 1px;"><a href="https://koroha.net/?mode=grp&gid=2754113"><img src="https://img07.shop-pro.jp/PA01380/047/etc/top_2207_s.jpg?cmsp_timestamp=20230203142148" width="100%" alt=""></a></div></td>
	</tr>
	<!-- 2ページ目の2段目　-->
	<tr>
	<!-- 豆皿と箸置き --><td width="50%"><div style="background: #fff; border: none; padding: 1px 1px;"><a href="https://koroha.shop-pro.jp/?mode=grp&gid=2592979&sort=n&view=smartphone"><img src="https://img07.shop-pro.jp/PA01380/047/etc/top_event2106_s.jpg?cmsp_timestamp=20210528115957" width="100%" alt=""></a></div></td>
	<!-- こだわりの台所道具 --><td width="50%"><div style="background: #fff; border: none; padding: 1px 1px;"><a href="https://koroha.shop-pro.jp/?mode=grp&gid=2586073&view=smartphone"><img src="https://img07.shop-pro.jp/PA01380/047/etc/top_kitchen2_sp_s.jpg?cmsp_timestamp=20210521162525" width="100%" alt=""></a></div></td>
	</tr>
	</table>
    </div>
  </div>

<!-- slickの設定 -->
<script type="text/javascript">
	$(function() {
    $('.hero4').slick({
      accessibility: true,
      autoplay: true,
      autoplaySpeed: 4000,
      speed: 500,
dots: true
    }); 
  });

</script>
<br />
<!-- //TOP2（スライド箇所） -->



<!-- ころはの台所道具 -->
<!--
<div align="center"><h2>ころはの台所道具</h2></div>
<table border="0" align="center">
	<!-- 1段目　-->
	<tr>
	<td width="50%"><div style="background: #fff; border: none; padding: 1px 1px;"><a href="https://koroha.shop-pro.jp/?mode=grp&gid=2412503&sort=n&view=smartphone"><img src="https://img21.shop-pro.jp/PA01380/047/etc/top2_kitchen_ceramics.jpg?cmsp_timestamp=20200719165713" width="100%" alt=""></a></div></td>
	<td width="50%"><div style="background: #fff; border: none; padding: 1px 1px;"><a href="https://koroha.shop-pro.jp/?mode=grp&gid=2412506&sort=n&view=smartphone"><img src="https://img21.shop-pro.jp/PA01380/047/etc/top2_kitchen_bamboo.jpg?cmsp_timestamp=20200719165736" width="100%" alt=""></a></div></td>
	</tr>
	<!-- 2段目　-->
	<tr>
	<td width="50%"><div style="background: #fff; border: none; padding: 1px 1px;"><a href="https://koroha.shop-pro.jp/?mode=grp&gid=2412505&sort=n&view=smartphone"><img src="https://img21.shop-pro.jp/PA01380/047/etc/top2_kitchen_wood.jpg?cmsp_timestamp=20200719165750" width="100%" alt=""></a></div></td>
	<td width="50%"><div style="background: #fff; border: none; padding: 1px 1px;"><a href="https://koroha.shop-pro.jp/?mode=grp&gid=2412507&sort=n&view=smartphone"><img src="https://img21.shop-pro.jp/PA01380/047/etc/top2_kitchen.jpg?cmsp_timestamp=20200719165804" width="100%" alt=""></a></div></td>
	</tr>

</table>
<br /><br />-->
<!-- ころはの台所道具 -->


<!-- 商品カテゴリ -->
<style>
div.category table {
margin: 0 20px;
}
div.category table {
border: none;
}
div.category table tr {
border: none;
}
div.category table td {
border-top:1px #fff solid;
border-right:1px #fff solid;
border-left:1px #fff solid;
padding: 4px 3px 2px 2px;
}
div.category table a {
color: #000000;
}
div.category {
font-size: 110%;
}
</style>
<div align="center"><h2>商品カテゴリ</h2></div>
<div class="category" align="center">
<table border="1" align="center">
	<!-- 1段目　-->
	<tr>
	<td width="32%" align="center" style="border-bottom:1px #ccc solid;"><a href="https://koroha.shop-pro.jp/?mode=cate&cbid=2573011&csid=0&sort=n">お皿<br /><img src="https://img21.shop-pro.jp/PA01380/047/etc/cat_dish.jpg?cmsp_timestamp=20200115011604" width="35%" alt=""></a></td>
	<td width="2%" style="border-bottom:1px #fff solid;"></td>
	<td width="32%" align="center" style="border-bottom:1px #ccc solid;"><a href="https://koroha.shop-pro.jp/?mode=cate&cbid=2275543&csid=0&sort=n">鉢・ボウル<br /><img src="https://img21.shop-pro.jp/PA01380/047/etc/cat_bowl.jpg?cmsp_timestamp=20200115012731" width="35%" alt=""></a></td>
	<td width="2%" style="border-bottom:1px #fff solid;"></td>
	<td width="32%" align="center" style="border-bottom:1px #ccc solid;"><a href="https://koroha.shop-pro.jp/?mode=cate&cbid=2251152&csid=0&sort=n">飯碗・汁椀<br /><img src="https://img21.shop-pro.jp/PA01380/047/etc/cat_ricebowl.jpg?cmsp_timestamp=20200115012804" width="35%" alt=""></a></td>
	</tr>
	<!-- 2段目　-->
	<tr>
	<td width="32%" align="center" style="border-bottom:1px #ccc solid;"><a href="https://koroha.shop-pro.jp/?mode=cate&cbid=2251155&csid=0&sort=n">湯呑・そば猪口<br /><img src="https://img21.shop-pro.jp/PA01380/047/etc/cat_cup2.jpg?cmsp_timestamp=20200115013850" width="35%" alt=""></a></td>
	<td width="2%" style="border-bottom:1px #fff solid;"></td>
	<td width="32%" align="center" style="border-bottom:1px #ccc solid;"><a href="https://koroha.shop-pro.jp/?mode=cate&cbid=2251151&csid=0&sort=n">ﾏｸﾞ・ｽｰﾌﾟｶｯﾌﾟ<br /><img src="https://img21.shop-pro.jp/PA01380/047/etc/cat_mugcup2.jpg?cmsp_timestamp=20200115013931" width="35%" alt=""></a></td>
	<td width="2%" style="border-bottom:1px #fff solid;"></td>
	<td width="32%" align="center" style="border-bottom:1px #ccc solid;"><a href="https://koroha.shop-pro.jp/?mode=cate&cbid=2251158&csid=0&sort=n">ポット・急須<br /><img src="https://img21.shop-pro.jp/PA01380/047/etc/cat_pot.jpg?cmsp_timestamp=20200115014021" width="35%" alt=""></a></td>
	</tr>
	<!-- 3段目　-->
	<tr>
	<td width="32%" align="center" style="border-bottom:1px #ccc solid;"><a href="https://koroha.shop-pro.jp/?mode=cate&cbid=2251156&csid=0&sort=n">片口・酒器<br /><img src="https://img21.shop-pro.jp/PA01380/047/etc/cat_sake.jpg?cmsp_timestamp=20200115014548" width="35%" alt=""></a></td>
	<td width="2%" style="border-bottom:1px #fff solid;"></td>
	<td width="32%" align="center" style="border-bottom:1px #ccc solid;"><a href="https://koroha.shop-pro.jp/?mode=cate&cbid=2251160&csid=0&sort=n">ｶﾄﾗﾘｰ・箸置き<br /><img src="https://img21.shop-pro.jp/PA01380/047/etc/cat_gourmet2_hoso.jpg?cmsp_timestamp=20200115014702" width="35%" alt=""></a></td>
	<td width="2%" style="border-bottom:1px #fff solid;"></td>
	<td width="32%" align="center" style="border-bottom:1px #ccc solid;"><a href="https://koroha.shop-pro.jp/?mode=cate&cbid=2296749&csid=0&sort=n">台所道具<br /><img src="https://img21.shop-pro.jp/PA01380/047/etc/cat_kitchen.jpg?cmsp_timestamp=20200115014735" width="35%" alt=""></a></td>
	</tr>
	<!-- 4段目　-->
	<tr>
	<td width="32%" align="center" style="border-bottom:1px #ccc solid;"><a href="https://koroha.shop-pro.jp/?mode=cate&cbid=2286693&csid=0&sort=n">小物・雑貨<br /><img src="https://img21.shop-pro.jp/PA01380/047/etc/cat_zakka.jpg?cmsp_timestamp=20200115015328" width="35%" alt=""></a></td>
	<td width="2%" style="border-bottom:1px #fff solid;"></td>
	<td width="32%" align="center" style="border-bottom:1px #ccc solid;"><a href="https://koroha.shop-pro.jp/?mode=cate&cbid=2573074&csid=0&sort=n">花器<br /><img src="https://img21.shop-pro.jp/PA01380/047/etc/cat_170_t_hoso.jpg?cmsp_timestamp=20200115015403" width="35%" alt=""></a></td>
	<td width="2%" style="border-bottom:1px #fff solid;"></td>
	<td width="32%" align="center" style="border-bottom:1px #ccc solid;"><a href="https://koroha.shop-pro.jp/?mode=cate&cbid=2334950&csid=0&sort=n">その他<br /><img src="https://img21.shop-pro.jp/PA01380/047/etc/cat_other.jpg?cmsp_timestamp=20200115015441" width="35%" alt=""></a></td>
	</tr>
</table>
</div>
<br /><br />
<div align="center">
<table align="center">
	<tr>
	<td align="center"><a href="https://koroha.shop-pro.jp/?mode=grp&gid=2367182&sort=n"><img src="https://img21.shop-pro.jp/PA01380/047/etc/top_price_1.png?cmsp_timestamp=20200415150003" width="75%" alt=""></a></td><td align="center"><a href="https://koroha.shop-pro.jp/?mode=grp&gid=2367183&sort=n"><img src="https://img21.shop-pro.jp/PA01380/047/etc/top_price_2.png?cmsp_timestamp=20200415150012" width="75%" alt=""></a></td>
	</tr>
	<tr><td align="center"><img src="https://img21.shop-pro.jp/PA01380/047/etc/space.gif?cmsp_timestamp=20200415152711" alt=""></td><td align="center"><img src="https://img21.shop-pro.jp/PA01380/047/etc/space.gif?cmsp_timestamp=20200415152711" alt=""></td></tr>
	<tr>
	<td align="center"><a href="https://koroha.shop-pro.jp/?mode=grp&gid=2367184&sort=n"><img src="https://img21.shop-pro.jp/PA01380/047/etc/top_price_3.png?cmsp_timestamp=20200415150019" width="75%" alt=""></a></td><td align="center"><a href="https://koroha.shop-pro.jp/?mode=grp&gid=2367185&sort=n"><img src="https://img21.shop-pro.jp/PA01380/047/etc/top_price_4.png?cmsp_timestamp=20200415150026" width="75%" alt=""></a></td>
	</tr>
	<tr><td align="center"><img src="https://img21.shop-pro.jp/PA01380/047/etc/space.gif?cmsp_timestamp=20200415152711" alt=""></td><td align="center"><img src="https://img21.shop-pro.jp/PA01380/047/etc/space.gif?cmsp_timestamp=20200415152711" alt=""></td></tr>
	<tr>
	<td align="center"><a href="https://koroha.shop-pro.jp/?mode=grp&gid=2367186&sort=n"><img src="https://img21.shop-pro.jp/PA01380/047/etc/top_price_5.png?cmsp_timestamp=20200415150034" width="75%" alt=""></a></td><td align="center"><a href="https://koroha.shop-pro.jp/?mode=grp&gid=2367187&sort=n"><img src="https://img21.shop-pro.jp/PA01380/047/etc/top_price_6.png?cmsp_timestamp=20200415150042" width="75%" alt=""></a></td>
	</tr>
	<tr><td align="center"><img src="https://img21.shop-pro.jp/PA01380/047/etc/space.gif?cmsp_timestamp=20200415152711" alt=""></td><td align="center"><img src="https://img21.shop-pro.jp/PA01380/047/etc/space.gif?cmsp_timestamp=20200415152711" alt=""></td></tr>
	<tr>
	<td align="center"><a href="https://koroha.shop-pro.jp/?mode=grp&gid=2367188&sort=n"><img src="https://img21.shop-pro.jp/PA01380/047/etc/top_price_7.png?cmsp_timestamp=20200415150047" width="75%" alt=""></a></td><td align="center"></td>
	</tr>
</table>
</div>
<br /><br />
<!-- 商品カテゴリ -->

<div id="modal-content">
  <p><a id="modal-close" class="button--blue modal-close"><img src="https://img.shop-pro.jp/s_tmpl_img/27/close.png" class="icon icon--close"></a></p>
   <!-- モーダルウィンドウのコンテンツ開始 -->
  <div>
    <{if $option_view_data}>
      <div>
        <{foreach from=$option_view_data item=op2_row}>
          <{if $op2_row.name}>
            <h4><{$op2_row.op_name}>:<{$op2_row.name}></h4>
          <{else}>
            <h4><{$op2_row.data[0].op_name}></h4>
          <{/if}>

          <table class="table table--bordered">
            <{foreach from=$op2_row.data item=op1_row}>
              <tr>
                <th>
                  <{if $op2_row.name}>
                    <{$op1_row.op_name}>:
                  <{/if}>
                  <{$op1_row.name}>
                </th>
                <td><{$op1_row.sales}><br />
                  <{if $op1_row.stock_disp }>
                    <span><{$op1_row.stock_str}></span>
                  <{/if}>
                </td>
              </tr>
            <{/foreach}>
          </table>
        <{/foreach}>
      </div>
    <{/if}>
  </div>
   <p><a class="button button--blue button--medium modal-close">閉じる</a></p>
   <!-- //モーダルウィンドウのコンテンツ終了 -->
</div>

<script>
$(function(){
  $('.imagelist').slick({
    dots: true, //点を消したい場合は、「true」を「false」に変更してください。
    infinite: false,
    speed: 300,
    arrows: true,
    slidesToShow: 1,
    adaptiveHeight: true
  });
});
</script>