app/template/aneros2023/Product/ANE_39.twig line 1

Open in your IDE?
  1. <!-- ページ固有のスタイル -->
  2. <style>
  3.     .product-pleasure {background-image: url({{ asset('aneros/img/products/Prelude/prelude-bg1.jpg') }});}
  4.     .product-pleasure p {color:#333333;}
  5.     
  6.     .product-rewards-experience .desc-contr h3 {margin-left:-5px;}
  7.     
  8.     .product-rewards-experience {background: #000000 !important;}
  9.     .product-rewards-experience p {color:#ffffff;}
  10.     .product-rewards-experience img {margin-left:-120px;}
  11. @media only screen and (max-width: 999px){
  12.     .product-rewards-experience img {margin-left:inherit;}
  13. }
  14. </style>
  15. <!-- ▼メインコンテンツ -->
  16. <div class="breadcrumbs">
  17.     <div class="container">
  18.         <ul itemscope itemtype="http://schema.org/BreadcrumbList">
  19.             <li class="0" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
  20.                 <a itemprop="item" href="{{ url('homepage') }}" title="トップページに戻る">
  21.                     <span itemprop="name" style="padding:0">トップページ</span></a>
  22.                 <meta itemprop="position" content="1">
  23.                 <span>&gt;</span>
  24.             </li>
  25.             <li class="category" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
  26.                 <a itemprop="item" href="{{ url('homepage') }}accessories" title="アネロスアクセサリー"><span itemprop="name"
  27.                         style="padding:0">アネロスアクセサリー</span></a>
  28.                 <meta itemprop="position" content="2">
  29.                 <span>&gt;</span>
  30.             </li>
  31.             <li class="product">
  32.                 <strong>{{ Product.name }}</strong>
  33.             </li>
  34.         </ul>
  35.     </div>
  36. </div>
  37. <div itemscope itemtype="http://schema.org/Product">
  38.     <div class="aneros-product-page" id="product-detail-page">
  39.         <div class="product-detail-nav-section container flexbox" style="padding-bottom: 10px">
  40.             <div class="product-price-info flexbox-2 flexbox-right">
  41.                 <div class="price-box">
  42.                     <span class="regular-price" id="product-price-335">
  43.                         <!--★通常価格★-->
  44.                         {% if Product.hasProductClass -%}
  45.                             {% if Product.getPrice01Min is not null and Product.getPrice01IncTaxMin == Product.getPrice01IncTaxMax %}
  46.                                 <p id="detail_description_box__class_normal_price" class="normal_price"> 通常価格:<span
  47.                                     class="price price01_default">{{ Product.getPrice01IncTaxMin|price }}</span>
  48.                                     <span class="inctax">(税込)</span>
  49.                                 </p>
  50.                             {% elseif Product.getPrice01Min is not null and Product.getPrice01Max is not null %}
  51.                                 <p id="detail_description_box__class_normal_range_price" class="normal_price"> 通常価格:<span
  52.                                     class="price price01_default">{{ Product.getPrice01IncTaxMin|price }} ~ {{ Product.getPrice01IncTaxMax|price
  53.                                     }}</span>
  54.                                     <span class="inctax">(税込)</span>
  55.                                 </p>
  56.                             {% endif %}
  57.                             {% else -%}
  58.                             {% if Product.getPrice01Max is not null %}
  59.                                 <p id="detail_description_box__normal_price" class="normal_price"> 通常価格:<span
  60.                                     class="price price01_default">{{ Product.getPrice01IncTaxMin|price }}</span>
  61.                                     <span class="inctax">(税込)</span>
  62.                                 </p>
  63.                             {% endif %}
  64.                             {% endif -%}
  65.                         <!--★販売価格★-->
  66.                         <p itemprop="offers" itemscope itemtype="http://schema.org/Offer" id="detail_description_box__sale_price"
  67.                             class="sale_price text-primary"><span itemprop="priceCurrency" content="JPY"></span><span itemprop="price"
  68.                                 content="{{ Product.getPrice02IncTaxMin }}" class="price">{{ Product.getPrice02IncTaxMin|price }}<span id="with-tax"> (税込)</span></span></p>
  69.                     </span>
  70.                     {% if Product.getPrice02IncTaxMin >= 3000 %}
  71.                         <p class="paidy-price">
  72.                             <img src="{{ asset('aneros/img/products/paidy-small.jpg') }}" alt="Paidy" style="vertical-align:middle;display:inline-block;max-width:60px;margin-right:3px;">なら月々<b>{% if ( Product.getPrice02IncTaxMin >= 3000 ) and ( Product.getPrice02IncTaxMin < 6000 ) %}{{ Product.getPrice02IncTaxMin // 3 }}{% elseif ( Product.getPrice02IncTaxMin >= 6000 ) and ( Product.getPrice02IncTaxMin < 12000 ) %}{{ Product.getPrice02IncTaxMin // 6 }}{% elseif Product.getPrice02IncTaxMin >= 12000 %}{{ Product.getPrice02IncTaxMin // 12 }}{% endif %}円</b>から。<br />分割手数料無料 <a href="https://paidy.com/guide/#3pay" target="_blank"><i class="fas fa-info-circle"></i></i></a>
  73.                         </p>
  74.                     {% endif %}
  75.                     {# 会員ランクごとの取得ポイント表示↓ #}
  76.                         {{ include('Product/customer_rank_point.twig') }}
  77.                     {# 会員ランクごとの取得ポイント表示↑ #}
  78.                 </div>
  79.                 <div class="add-to-box">
  80.                     <div class="add-to-cart">
  81.                         <div class="add-to-cart-buttons">
  82.                             <form action="{{ url('product_add_cart', {id:Product.id}) }}" method="post" id="form1" name="form1">
  83.                                 {% if Product.stock_find %}
  84.                                     <div class="ec-productRole__actions">
  85.                                         {% if form.classcategory_id1 is defined %}
  86.                                             <div class="ec-select">
  87.                                                 {{ form_widget(form.classcategory_id1) }}
  88.                                                 {{ form_errors(form.classcategory_id1) }}
  89.                                             </div>
  90.                                             {% if form.classcategory_id2 is defined %}
  91.                                                 <div class="ec-select">
  92.                                                     {{ form_widget(form.classcategory_id2) }}
  93.                                                     {{ form_errors(form.classcategory_id2) }}
  94.                                                 </div>
  95.                                             {% endif %}
  96.                                         {% endif %}
  97.                                         <div class="ec-numberInput" style = "display: none;"><span>{{ '数量'|trans }}</span>
  98.                                             {{ form_widget(form.quantity) }}
  99.                                             {{ form_errors(form.quantity) }}
  100.                                         </div>
  101.                                     </div>
  102.                                     <div class="ec-productRole__btn">
  103.                                         <button type="submit" title="カゴに入れる" class="button btn-cart add-cart">
  104.                                             <span>
  105.                                                 <span>カゴに入れる</span>
  106.                                             </span>
  107.                                         </button>
  108.                                     </div>
  109.                                 {% else %}
  110.                                     <div class="ec-productRole__btn">
  111.                                         {% if arrivemail %}
  112.                                             <button type="button" data-productid="{{ Product.id }}" data-productname="{{ Product.name }}" title="入荷お知らせ" class="button btn-cart add-to-mail">
  113.                                                 <span>入荷お知らせ</span>
  114.                                             </button>
  115.                                         {% else %}
  116.                                             <button type="button" title="在庫切れ" class="button btn-cart add-to-cart-out">
  117.                                                 <span>在庫切れ</span>
  118.                                             </button>
  119.                                         {% endif %}
  120.                                     </div>
  121.                                 {% endif %}
  122.                                 {{ form_rest(form) }}
  123.                             </form>
  124.                         </div>
  125.                         {# {% if is_granted('ROLE_USER') %} #}
  126.                         {% if BaseInfo.option_favorite_product %}
  127.                         <form action="{{ url('product_add_favorite', {id:Product.id}) }}" method="post" id="form2">
  128.                             <div class="ec-productRole__btn favorite-button">
  129.                                 {% if is_favorite == false %}
  130.                                     {# <button type="submit" id="favorite" class="ec-blockBtn--cancel button">
  131.                                         {{ 'お気に入りに追加'|trans }}
  132.                                     </button> #}
  133.                                     
  134.                                     <button type="submit" id="favorite" class="favorite-heart">
  135.                                         {#{{ 'お気に入りに追加'|trans }}#}
  136.                                         <i class="fa fa-heart-o" title="お気に入りに追加"></i>
  137.                                     </button>
  138.                                 {% else %}
  139.                                     <button type="button" id="unfavorite" class="unfavorite-heart one-click-remove-favorite" data-action="{{ url('mypage_favorite_delete', { id : Product.id }) }}" data-method="delete" {{ csrf_token_for_anchor() }}>
  140.                                         {#{{ 'お気に入りに追加'|trans }}#}
  141.                                         <i class="fa fa-heart" title="お気に入りに追加済です"></i>
  142.                                     </button>
  143.                                     
  144.                                     {# <button type="button" id="unfavorite" class="ec-blockBtn--cancel button-favorited one-click-remove-favorite"
  145.                                     data-action="{{ url('mypage_favorite_delete', { id : Product.id }) }}" data-method="delete" {{ csrf_token_for_anchor() }}>
  146.                                         {{ 'お気に入りに追加済です。'|trans }}
  147.                                     </button> #}
  148.                                     
  149.                                 {% endif %}
  150.                             </div>
  151.                         </form>
  152.                         {% endif %}
  153.                         {# {% endif %} #}
  154.                     </div>
  155.                 </div>
  156.             </div>
  157.             <ul class="top-review-box flexbox-1">
  158.                 <li><a href="#review_area" class="top_review_score"></a></li>
  159.                 <li>
  160.                     <a href="#product-specs" style="display: none;">Specs</a>
  161.                 </li>
  162.                 <li class="userguide">
  163.                     <a href="{{ asset('aneros/guides/preludeInstructions.pdf') }}"
  164.                         target="_blank" class="user-guide-link">
  165.                         ユーザーガイド
  166.                         <i class="fa fa-file-text-o">
  167.                         </i>
  168.                     </a>
  169.                 </li>
  170.             </ul>
  171.             <!-- ▼レビュープラグインの記述▼ -->
  172.             {% if 0 < ProductReviewCount %}
  173.             <div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
  174.                 <span style="display:none" itemprop="ratingValue">{{ Reviews_avg|number_format(1, '.') }}</span>
  175.                 <span style="display:none" itemprop="reviewCount">{{ ProductReviewCount }}</span>
  176.             </div>
  177.             {% endif %}
  178.             <!-- ▲レビュープラグインの記述▲ -->
  179.                 
  180.         </div>
  181.         <div class="product-main-section container flexbox">
  182.             <div class="product-main-image">
  183.                 <img itemprop="image" width="400" src="{{ asset('aneros/img/products/Prelude/Prelude-main-image.jpg') }}"
  184.                     class="main-image" alt="アネロス プレリュード">
  185.                 <div class="pictogram-area">    
  186.                     <div class="pictogram">
  187.                         <img src="{{ asset('aneros/img/products/Pictogram/all-users.jpg') }}" alt="全レベル可" />
  188.                         <span class="pictogramtext">全レベル可</span>
  189.                     </div>
  190.                     <div class="pictogram">
  191.                         <img src="{{ asset('aneros/img/products/Pictogram/beginner-user.jpg') }}" alt="初心者にオススメ" />
  192.                         <span class="pictogramtext">初心者に<br>オススメ</span>
  193.                     </div>
  194.                     <div class="pictogram">
  195.                         <img src="{{ asset('aneros/img/products/Pictogram/medical-silicone.jpg') }}" alt="医療用シリコン" />
  196.                         <span class="pictogramtext">医療用シリコン</span>
  197.                     </div>
  198.                 </div>    
  199.             </div>
  200.             <div class="product-info">
  201.                 <h1 itemprop="name" class="qodef-single-product-title">
  202.                     <span class="syn">ANEROS</span><br>
  203.                     プレリュード™
  204.                 </h1>
  205.                 <ul class="features-list">
  206.                     <li>
  207.                         逆流しない安全性を最優先された衛生的な特殊ノズルを採用
  208.                     </li>
  209.                     <li>
  210.                         身体への安全性を配慮した、医療用メディカルシリコン100%
  211.                     </li>
  212.                     <li>
  213.                         アナル洗浄を簡単にする「スローフローシステム」
  214.                     </li>
  215.                     <li>
  216.                         温水を最後まで絞り出しやすいアコーディオンバルブ
  217.                     </li>
  218.                 </ul>
  219.             </div>
  220.         </div>
  221.         <div class="product-pleasure">
  222.             <div class="container flexbox">
  223.                 <div class="desc-contr" itemprop="description">
  224.                     <h3>ていねいに、安全に、アナル洗浄を。</h3>
  225.                     <p>
  226.                         「アネロスプレリュード」は他に類を見ない直腸専用のシリンジです。アネロス前立腺マッサージ器を使用する前に、安心・安全・簡単に直腸内を洗浄し、アネロス本来の性能を最大限に引き出します。直腸洗浄により蠕動運動をさらに誘発しやすくし、ドライオーガズムに達しやすくなります。
  227.                     </p>
  228.                     <p>
  229.                         この「アネロスプレリュード」は、特殊ノズルやバルブなど全体を100%医療用シリコンで製造しており、直腸内の安全性を徹底的に追求しています。
  230.                     </p>
  231.                     <p>
  232.                         従来のプラスチック製と異なり、医療用シリコン製を採用した特殊ノズルはプラスチック製品製造時にあるテーパーラインがないため、挿入時の危険性がありません。柔らかいシリコンノズルはデリケートな直腸部分を安全に守り、肛門への負担を軽減します。
  233.                     </p>
  234.                     <p>
  235.                         バルブは290mlの容量があり、温水を補充することなく3~4回の洗浄で簡単に洗い流すことが可能です。バルブにアコーディオンプリーツを入れたことによって握りやすくなり、さらにスクイーズ性を加味。バルブに温水が残らず全て絞り出せるように設計されています。
  236.                     </p>
  237.                     <p>
  238.                         直腸洗浄を安全・安心・簡単に、そして気分を盛り上げてくれる全く新しい「アネロスプレリュード」。あなたのアネロス使用時に欠かせない存在となってくれることでしょう。
  239.                     </p>
  240.                     <div class="product-feature-icons">
  241.                         <img src="{{ asset('aneros/img/products/velvet-touch-dark.png') }}" class="animate fda-silicone" data-animate="fadeIn"
  242.                             data-duration="1.0s" data-delay="0.4s" alt="ベルベットタッチ医療用シリコン">
  243.                         <img src="{{ asset('aneros/img/products/fda-dark.png') }}" class="animate fda-silicone" data-animate="fadeIn"
  244.                             data-duration="1.0s" data-delay="0.4s" alt="医療用材質承認">
  245.                     </div>
  246.                 </div>
  247.                 <div class="product-pleasure-image">
  248.                     <img src="{{ asset('aneros/img/products/Prelude/Prelude-box.png') }}" class="animate"
  249.                         data-animate="fadeIn" data-duration="1.0s" data-delay="0.4s" alt="プレリュード箱">
  250.                 </div>
  251.             </div>
  252.         </div>
  253.         <div id="relatedproduct_area"></div>
  254.         <div class="product-rewards-experience">
  255.             <div class="container flexbox">
  256.                 <div class="desc-contr flexbox-2 flexbox-right">
  257.                     <h3>スローフローシステム</h3>
  258.                     <p>
  259.                         バルブを握ると他のシリンジより硬く感じますが、これは「アネロスプレリュード」の「スローフローシステム」(逆流せずにゆっくり注入する)の特長です。一般のエネマシリンジではバルブ内の温水を数秒で注入できますが「アネロスプレリュード」は30秒程度かかります。これは直腸内の安全性を考え、ゆっくり注入させ、お腹に圧迫を感じさせないようにするためです。バルブの絞り具合で注入した温水の量をおおよそ確認できます。
  260.                     </p>
  261.                     <p>
  262.                         バルブに空気を入れる場合は、ノズルの先端部分を軽く摘まみます。効果的な洗浄を行うためには、柔らかいシリコンノズルを5~7cmほど挿入して行うとよいでしょう。ノズルはフランジ(円筒形のディスク部分)手前まで肛門に挿入できます。ノズル部全体を挿入しないようご注意ください。
  263.                     </p>
  264.                     <p>
  265.                         また、ノズルの特殊なデザインによって注入途中に「アネロスプレリュード」をはずしても空気を吸い込みません。そのため直腸内の液体を吸い込むような逆流がなく、安全かつ清潔に使用できます。再度ノズル先端にローションを付け、引き続き使用することも可能です。
  266.                     </p>
  267.                 </div>
  268.                 <div class="product-rewards-experience-image flexbox-1">
  269.                     <img src="{{ asset('aneros/img/products/Prelude/prelude-slow-flow.jpg') }}" class="animate"
  270.                         data-animate="zoomIn" data-duration="1.0s" data-delay="0.4s" alt="スローフローシステム採用">
  271.                 </div>
  272.             </div>
  273.         </div>
  274.         <div class="product-spec" id="product-specs">
  275.             <div class="container flexbox">
  276.                 <div class="product-spec-image">
  277.                     <img src="{{ asset('aneros/img/products/Prelude/prelude-size.jpg') }}" class="animate"
  278.                         alt="プレリュードサイズ" data-animate="fadeInLeft" data-duration="1.5s" data-delay="0.4s" width="461">
  279.                 </div>
  280.                 <div class="desc-contr animate" data-animate="fadeInRight" data-duration="1.5s" data-delay="0.4s">
  281.                     <h3>サイズ</h3>
  282.                     <ul>
  283.                         <li>
  284.                             <span class="ps-name">最大容量:</span>
  285.                             <span class="ps-value">290ml</span>
  286.                         </li>
  287.                         <li>
  288.                             <span class="ps-name">先端横幅:</span>
  289.                             <span class="ps-value">8mm</span>
  290.                         </li>
  291.                         <li>
  292.                             <span class="ps-name">挿入可能長さ:</span>
  293.                             <span class="ps-value">75mm</span>
  294.                         </li>
  295.                     </ul>
  296.                 </div>
  297.             </div>
  298.         </div>
  299.         <div class="shopping-experiernce-tile" id="shopping-experience-tile">
  300.             <div class="container flexbox">
  301.                 <div class="tile-bg">
  302.                     <img src="{{ asset('aneros/img/products/shopping-experience-tile-bg.png') }}" class="img-tile-bg"
  303.                         alt="中身がわからい発送">
  304.                 </div>
  305.                 <div class="fast-shipping flexbox-center">
  306.                     <img src="{{ asset('aneros/img/products/fast-shipping-rect-dark.png') }}" class="img-fast-shipping"
  307.                         alt="即日出荷">
  308.                 </div>
  309.                 <div class="secure-cc-processing flexbox-center">
  310.                     <img src="{{ asset('aneros/img/products/secure-cc-processing-rect-dark.png') }}"
  311.                         class="img-secure-cc-processing" alt="貴重な個人情報は全てSSL保護">
  312.                 </div>
  313.                 <div class="money-back-gurantee flexbox-center">
  314.                     <img src="{{ asset('aneros/img/products/money-back-guarantee-rect-dark.png') }}"
  315.                         class="img-money-back-gurantee" alt="100%返金保証">
  316.                 </div>
  317.             </div>
  318.         </div>
  319.         <!-- ▼item_detail▼ -->
  320.         <div id="item_detail">
  321.             <div id="review_area">
  322.             </div>
  323.             <div id="detail_wrap" class="row">
  324.                 <section id="item_detail_area" class="col-sm-6">
  325.                     <div id="detail_description_box__body" class="item_detail">
  326.                         <!--★商品説明★-->
  327.                         <p id="detail_not_stock_box__description_detail" class="item_comment"></p>
  328.                     </div>
  329.                     <!-- /.item_detail -->
  330.                 </section>
  331.                 <!--詳細ここまで-->
  332.             </div>
  333.         </div>
  334.         <!-- ▲item_detail▲ -->
  335.         <div class="product-dont-forget-lubricant">
  336.             <div class="container flexbox">
  337.                 <div class="desc-contr flexbox-2 flexbox-right">
  338.                     <h3>ローションを忘れずに!</h3>
  339.                     <p>
  340.                         前立腺マッサージで、最も効果的に快楽を得るためには十分な潤滑が重要となります。最適なローションを使用すれば、アネロスの挿入もスムーズになり正しく自由な動きを誘発します。本体を劣化させる心配もなく後片付けもラクな水溶性のローションがおすすめです。アネロス社のマークスマンとセッションズは、アネロス利用のために作られた専用の水溶性のローションです。
  341.                     </p>
  342.                     <a href="{{ url('homepage') }}lubricants" class="more-link">ローションはこちらからご覧ください &gt;</a>
  343.                 </div>
  344.                 <div class="lubricant-images flexbox-1">
  345.                     <img src="{{ asset('aneros/img/products/donot-forget-lubricant-image.png') }}" class="lb-img animate"
  346.                         data-animate="fadeIn" data-duration="1.0s" data-delay="0.4s" alt="セッションズを忘れずに!">
  347.                 </div>
  348.             </div>
  349.         </div>
  350.         <div class="product-other-products container flexbox">
  351.             <div class="item">
  352.                 <a href="{{ url('product_detail', {'id': 72}) }}">
  353.                     <img src="{{ asset('aneros/img/products/category_vice-2.jpg') }}" alt="ヴァイス 2 - メンズバイブレーション" class="animate"
  354.                         data-animate="zoomIn" data-duration="1.0s" data-delay="0.4s">
  355.                 </a>
  356.             </div>
  357.             <div class="item">
  358.                 <a href="{{ url('product_detail', {'id': 81}) }}">
  359.                     <img src="{{ asset('aneros/img/products/category_progasm_black_ice.jpg') }}" alt="プロガスムブラックアイス - サイズを求める男性に"
  360.                         class="animate center" data-animate="zoomIn" data-duration="1.0s" data-delay="0.4s">
  361.                 </a>
  362.             </div>
  363.             <div class="item">
  364.                 <a href="{{ url('product_detail', {'id': 70}) }}">
  365.                     <img src="{{ asset('aneros/img/products/category_HST.jpg') }}" alt="ヒリックスシントライデント - シン定番のフラグシップモデル"
  366.                         class="animate" data-animate="zoomIn" data-duration="1.0s" data-delay="0.4s">
  367.                 </a>
  368.             </div>
  369.         </div>
  370.         <div class="product-compare-prostate-massagers container flexbox">
  371.             <div class="product-compare-prostate-massagers-image">
  372.                 <img src="{{ asset('aneros/img/products/compare_prostate_massagers_image.jpg') }}" class="animate"
  373.                     data-animate="zoomIn" data-duration="1.0s" data-delay="0.4s" alt="私にあっているアネロスはどれでしょうか??">
  374.             </div>
  375.             <div class="desc-contr">
  376.                 <h3>私にあっているアネロスはどれでしょうか??</h3>
  377.                 <a href="{{ url('homepage') }}prostate-massagers" class="more-link">
  378.                     前立腺マッサージ器はこちら
  379.                     <span>&gt;</span>
  380.                 </a>
  381.             </div>
  382.         </div>
  383.     </div>
  384. </div>
  385. <!-- ▲メインコンテンツ -->
  386. <div class="swooth-wrapper grey-swooth">
  387. </div>