<div class="content content-shop-detail">
    <div class="content-head">
        <h3>
            <img src="https://goishicha.jp/wp-content/themes/514/assets/images/second/h3_shop01.svg" alt="お買い物">
        </h3>
    </div>
    <div class="content-inner pmtop88">
        <{if $product.id != ""}>
        <form name="product_form" method="post" action="<{$cart_url}>">
            <div class="item-detail">
                <!-- 商品画像 -->
                <div class="item-detail-image">
                    <{if $product.img_url != "" || $otherimg[num].url != ""}>
                    <{if $product.img_url != ""}>
                    <img src="<{$product.img_url}>" />
                    <{/if}>
                    <{section name=num loop=$otherimg}>
                    <{if $otherimg[num].url != ""}>
                    <img src="<{$otherimg[num].url}>" />
                    <{/if}>
                    <{/section}>
                    <{/if}>
                </div>
                <!-- // 商品画像 -->
                <h2><{$product_name}></h2>
                <div class="item-detail-text">
                    <{$product.explain}>
                </div>
                <div class="hanbai-kakaku">
                    <span><{$product.price}></span>
                </div>

                <!-- 購入フォーム -->
                <div class="item-detal-order mar_b_50">
                    <{if $product.soldout_flg == false}>
                    <span class="btn02">
                                <button class="btn  btn-addcart" type="submit">
                                        <img class="btn02" src="https://goishicha.jp/wp-content/themes/514/assets/images/second/btn_buy_detail_.svg" alt="購入する">
                                </button>
                            </span>

                    <{else}>
                    <span class="btn02">
                                <!--SOLD OUT-->
                                                        <button class="btn  btn-addcart" type="submit">
                                        <img class="btn02" src="https://goishicha.jp/wp-content/themes/514/assets/images/second/btn_buy_detail_.svg" alt="購入する">
                                </button>

                            </span>

                    <{/if}>
                </div>
                <!-- // 購入フォーム -->

                <{$product.info}>

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