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

Open in your IDE?
  1. <!-- ページ固有のスタイル -->
  2. <style>
  3. .product-pleasure {background-image: url({{ asset('aneros/img/products/Helix-Syn-V/hsv_bg1.jpg') }});}
  4. .product-pleasure p {color:#333333;}
  5. .qodef-single-product-title img {max-width:350px; width:100%;}
  6. .product-rewards-experience {background-image: url({{ asset('aneros/img/products/Helix-Syn-V/hsv-bg-red.jpg') }}); background-position: center; background-repeat: no-repeat; background-size: cover;}
  7. .product-rewards-experience h3 {text-align: center; padding: 40px 0 20px 0; color: #000; font-family: メイリオ,ヒラギノ角ゴ Pro W3,MS Pゴシック,Osaka,Meiryo,sans-serif; font-size: 42px; font-weight: normal; }
  8. .product-rewards-experience span {color:#fff; width:65%; display:inline-block; font-size:18px; vertical-align:top; margin-left:5px;}
  9. .product-rewards-experience p {color:#ffffff;}
  10. .product-rewards-experience .pictogram {width:90px; max-width:100%; display:inline-block;}
  11. .product-rewards-experience .picto-area {display:inline-block; vertical-align:top;}
  12. .product-rewards-experience .picto-area div {margin-bottom:50px;}
  13. .product-rewards-experience .product-rewards-experience-image {padding:10px;}
  14. .product-rewards-experience .product-rewards-experience-image img {padding:10px;}
  15. .product-developed {background-image: url({{ asset('aneros/img/products/Helix-Syn-V/hsv_bg2.jpg') }}); background-position: center; background-repeat: no-repeat; background-size: cover;}
  16. .product-developed .product-developed-image img {width:380px; max-width:100%;}
  17. .product-developed .helix-syn-v-icons img {width:40%; display:inline-block;}
  18. .product-developed .helix-syn-v-icons img:first-child {margin-right:5%;}
  19. @media only screen and (max-width: 999px){
  20. .product-rewards-experience h3 {font-size:36px; padding-left: 25px; padding-right:25px;}
  21. .product-rewards-experience .picto-area {display:block; margin: 0 auto;}
  22. .product-rewards-experience .product-rewards-experience-image {display:block; margin: 0 auto;}
  23. .product-rewards-experience .pictogram {width:60px; max-width:100%; display:block; margin-bottom:10px;}
  24. .product-rewards-experience span {width:inherit; display:block; font-size:18px; vertical-align:top; margin-left:0; text-align:center;}
  25. }
  26. </style>
  27. <!-- ▼メインコンテンツ -->
  28. <div class="breadcrumbs">
  29.     <div class="container">
  30.         <ul itemscope itemtype="http://schema.org/BreadcrumbList">
  31.             <li class="0" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
  32.                 <a itemprop="item" href="{{ url('homepage') }}" title="トップページに戻る">
  33.                     <span itemprop="name" style="padding:0">トップページ</span></a>
  34.                 <meta itemprop="position" content="1">
  35.                 <span>&gt;</span>
  36.             </li>
  37.             <li class="category" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
  38.                 <a itemprop="item" href="{{ url('homepage') }}prostate-massagers" title="前立腺マッサージ器"><span itemprop="name"
  39.                         style="padding:0">前立腺マッサージ器</span></a>
  40.                 <meta itemprop="position" content="2">
  41.                 <span>&gt;</span>
  42.             </li>
  43.             <li class="product">
  44.                 <strong>{{ Product.name }}</strong>
  45.             </li>
  46.         </ul>
  47.     </div>
  48. </div>
  49. <div itemscope itemtype="http://schema.org/Product">
  50.     <div class="aneros-product-page" id="product-detail-page">
  51.         <div class="product-detail-nav-section container flexbox" style="padding-bottom: 10px">
  52.             <div class="product-price-info flexbox-2 flexbox-right">
  53.                 <div class="price-box">
  54.                     <span class="regular-price" id="product-price-335">
  55.                         <!--★通常価格★-->
  56.                         {% if Product.hasProductClass -%}
  57.                             {% if Product.getPrice01Min is not null and Product.getPrice01IncTaxMin == Product.getPrice01IncTaxMax %}
  58.                                 <p id="detail_description_box__class_normal_price" class="normal_price"> 通常価格:<span
  59.                                     class="price price01_default">{{ Product.getPrice01IncTaxMin|price }}</span>
  60.                                     <span class="inctax">(税込)</span>
  61.                                 </p>
  62.                             {% elseif Product.getPrice01Min is not null and Product.getPrice01Max is not null %}
  63.                                 <p id="detail_description_box__class_normal_range_price" class="normal_price"> 通常価格:<span
  64.                                     class="price price01_default">{{ Product.getPrice01IncTaxMin|price }} ~ {{ Product.getPrice01IncTaxMax|price
  65.                                     }}</span>
  66.                                     <span class="inctax">(税込)</span>
  67.                                 </p>
  68.                             {% endif %}
  69.                             {% else -%}
  70.                             {% if Product.getPrice01Max is not null %}
  71.                                 <p id="detail_description_box__normal_price" class="normal_price"> 通常価格:<span
  72.                                     class="price price01_default">{{ Product.getPrice01IncTaxMin|price }}</span>
  73.                                     <span class="inctax">(税込)</span>
  74.                                 </p>
  75.                             {% endif %}
  76.                             {% endif -%}
  77.                         <!--★販売価格★-->
  78.                         <p itemprop="offers" itemscope itemtype="http://schema.org/Offer" id="detail_description_box__sale_price"
  79.                             class="sale_price text-primary"><span itemprop="priceCurrency" content="JPY"></span><span itemprop="price"
  80.                                 content="{{ Product.getPrice02IncTaxMin }}" class="price">{{ Product.getPrice02IncTaxMin|price }}<span id="with-tax"> (税込)</span></span></p>
  81.                     </span>
  82.                     {% if Product.getPrice02IncTaxMin >= 3000 %}
  83.                         <p class="paidy-price">
  84.                             <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>
  85.                         </p>
  86.                     {% endif %}
  87.                     {# 会員ランクごとの取得ポイント表示↓ #}
  88.                         {{ include('Product/customer_rank_point.twig') }}
  89.                     {# 会員ランクごとの取得ポイント表示↑ #}
  90.                 </div>
  91.                 <div class="add-to-box">
  92.                     <div class="add-to-cart">
  93.                         <div class="add-to-cart-buttons">
  94.                             <form action="{{ url('product_add_cart', {id:Product.id}) }}" method="post" id="form1" name="form1">
  95.                                 {% if Product.stock_find %}
  96.                                     <div class="ec-productRole__actions">
  97.                                         {% if form.classcategory_id1 is defined %}
  98.                                             <div class="ec-select">
  99.                                                 {{ form_widget(form.classcategory_id1) }}
  100.                                                 {{ form_errors(form.classcategory_id1) }}
  101.                                             </div>
  102.                                             {% if form.classcategory_id2 is defined %}
  103.                                                 <div class="ec-select">
  104.                                                     {{ form_widget(form.classcategory_id2) }}
  105.                                                     {{ form_errors(form.classcategory_id2) }}
  106.                                                 </div>
  107.                                             {% endif %}
  108.                                         {% endif %}
  109.                                         <div class="ec-numberInput" style = "display: none;"><span>{{ '数量'|trans }}</span>
  110.                                             {{ form_widget(form.quantity) }}
  111.                                             {{ form_errors(form.quantity) }}
  112.                                         </div>
  113.                                     </div>
  114.                                     <div class="ec-productRole__btn">
  115.                                         <button type="submit" title="カゴに入れる" class="button btn-cart add-cart">
  116.                                             <span>
  117.                                                 <span>カゴに入れる</span>
  118.                                             </span>
  119.                                         </button>
  120.                                     </div>
  121.                                 {% else %}
  122.                                     <div class="ec-productRole__btn">
  123.                                         {% if arrivemail %}
  124.                                             <button type="button" data-productid="{{ Product.id }}" data-productname="{{ Product.name }}" title="入荷お知らせ" class="button btn-cart add-to-mail">
  125.                                                 <span>入荷お知らせ</span>
  126.                                             </button>
  127.                                         {% else %}
  128.                                             <button type="button" title="在庫切れ" class="button btn-cart add-to-cart-out">
  129.                                                 <span>在庫切れ</span>
  130.                                             </button>
  131.                                         {% endif %}
  132.                                     </div>
  133.                                 {% endif %}
  134.                                 {{ form_rest(form) }}
  135.                             </form>
  136.                         </div>
  137.                         {# {% if is_granted('ROLE_USER') %} #}
  138.                         {% if BaseInfo.option_favorite_product %}
  139.                         <form action="{{ url('product_add_favorite', {id:Product.id}) }}" method="post" id="form2">
  140.                             <div class="ec-productRole__btn favorite-button">
  141.                                 {% if is_favorite == false %}
  142.                                     {# <button type="submit" id="favorite" class="ec-blockBtn--cancel button">
  143.                                         {{ 'お気に入りに追加'|trans }}
  144.                                     </button> #}
  145.                                     
  146.                                     <button type="submit" id="favorite" class="favorite-heart">
  147.                                         {#{{ 'お気に入りに追加'|trans }}#}
  148.                                         <i class="fa fa-heart-o" title="お気に入りに追加"></i>
  149.                                     </button>
  150.                                 {% else %}
  151.                                     <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() }}>
  152.                                         {#{{ 'お気に入りに追加'|trans }}#}
  153.                                         <i class="fa fa-heart" title="お気に入りに追加済です"></i>
  154.                                     </button>
  155.                                     
  156.                                     {# <button type="button" id="unfavorite" class="ec-blockBtn--cancel button-favorited one-click-remove-favorite"
  157.                                     data-action="{{ url('mypage_favorite_delete', { id : Product.id }) }}" data-method="delete" {{ csrf_token_for_anchor() }}>
  158.                                         {{ 'お気に入りに追加済です。'|trans }}
  159.                                     </button> #}
  160.                                     
  161.                                 {% endif %}
  162.                             </div>
  163.                         </form>
  164.                         {% endif %}
  165.                         {# {% endif %} #}
  166.                     </div>
  167.                 </div>
  168.             </div>
  169.             <ul class="top-review-box flexbox-1">
  170.                 <li><a href="#review_area" class="top_review_score"></a></li>
  171.                 <li>
  172.                     <a href="#product-specs" style="display: none;">Specs</a>
  173.                 </li>
  174.                 <li class="userguide">
  175.                     <a href="{{ asset('aneros/guides/helix-syn-v-instructions.pdf') }}"
  176.                         target="_blank" class="user-guide-link">
  177.                         ユーザーガイド
  178.                         <i class="fa fa-file-text-o">
  179.                         </i>
  180.                     </a>
  181.                 </li>
  182.             </ul>
  183.             <!-- ▼レビュープラグインの記述▼ -->
  184.             <div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
  185.                 <span style="display:none" itemprop="ratingValue">{{ Reviews_avg|number_format(1, '.') }}</span>
  186.                 <span style="display:none" itemprop="reviewCount">{{ ProductReviewCount }}</span>
  187.             </div>
  188.             <!-- ▲レビュープラグインの記述▲ -->
  189.                 
  190.         </div>
  191.         <div class="product-main-section container flexbox">
  192.             <div class="product-main-image">
  193.                 <img itemprop="image" width="400" src="{{ asset('aneros/img/products/Helix-Syn-V/Helix-Syn-V-main-image.jpg') }}"
  194.                     class="main-image" alt="ヒリックスシンV">
  195.                 <div class="pictogram-area">    
  196.                     <div class="pictogram">
  197.                         <img src="{{ asset('aneros/img/products/Pictogram/intermediate-user.jpg') }}" alt="中級者向け" />
  198.                         <span class="pictogramtext">中級者向け</span>
  199.                     </div>
  200.                     <div class="pictogram">
  201.                         <img src="{{ asset('aneros/img/products/Pictogram/expert-user.jpg') }}" alt="上級者向け" />
  202.                         <span class="pictogramtext">上級者向け</span>
  203.                     </div>
  204.                     <div class="pictogram">
  205.                         <img src="{{ asset('aneros/img/products/Pictogram/MAXA.jpg') }}" alt="多軸動構造" />
  206.                         <span class="pictogramtext">多軸動構造</span>
  207.                     </div>
  208.                     <div class="pictogram">
  209.                         <img src="{{ asset('aneros/img/products/Pictogram/syn-coating.jpg') }}" alt="シリコンコーティング" />
  210.                         <span class="pictogramtext">シリコン<br>コーティング</span>
  211.                     </div>
  212.                     <div class="pictogram">
  213.                         <img src="{{ asset('aneros/img/products/Pictogram/medically-patented.jpg') }}" alt="医療用特許取得" />
  214.                         <span class="pictogramtext">医療用特許取得</span>
  215.                     </div>
  216.                     <div class="pictogram">
  217.                         <img src="{{ asset('aneros/img/products/Pictogram/w-base.jpg') }}" alt="Wベース" />
  218.                         <span class="pictogramtext">Wベース</span>
  219.                     </div>
  220.                     <div class="pictogram">
  221.                         <img src="{{ asset('aneros/img/products/Pictogram/vibrating.jpg') }}" alt="振動機能付き" />
  222.                         <span class="pictogramtext">振動機能付き</span>
  223.                     </div>
  224.                 </div>    
  225.             </div>
  226.             <div class="product-info">
  227.                 <h1 class="qodef-single-product-title">
  228.                     <img src="{{ asset('aneros/img/products/Helix-Syn-V/Helix-Syn-V-logo.jpg') }}" alt="ヒリックスシンV ロゴ">
  229.                 </h1>
  230.                     <span itemprop="name" style="display: none;" >ヒリックスシンV</span>
  231.                 <ul class="features-list">
  232.                     <li>
  233.                         大好評ヒリックスシリーズの最新第5世代モデル
  234.                     </li>
  235.                     <li>
  236.                         バイブレーション機能追加により、中〜上級者以上にもさらなるプレジャーの体感を促進
  237.                     </li>
  238.                     <li>
  239.                         頭部サイズと重量がアップし、ダイナミズムに満ちたフォルム
  240.                     </li>
  241.                     <li>
  242.                         Wベースの硬度アップにより、会陰部と仙骨への作用がより効率的に
  243.                     </li>
  244.                     <li>
  245.                         信頼性の高い医療用素材を採用し、安全かつ贅沢で優しい使い心地
  246.                     </li>
  247.                     <li>
  248.                         防水対応(IPX7)のため、バスルームなどでも利用可能
  249.                     </li>
  250.                 </ul>
  251.             </div>
  252.         </div>
  253.         <div class="product-pleasure">
  254.             <div class="container flexbox">
  255.                 <div class="desc-contr" itemprop="description">
  256.                     <h3>ドライオーガズムのその先へ</h3>
  257.                     <p>
  258.                         2004年に登場して以来、世界で最も売れた製品ヒリックスシリーズの第5世代モデルとして、細部にわたって改良を図り、より魅力的な製品となっています。
  259.                     </p>
  260.                     <p>
  261.                         アネロスの特長である、挿入時の肛門括約筋とPC筋の収縮により直腸内全方向に刺激を与える多軸動構造はそのままに、バイブレーション機能を追加。新開発されたバイブレーション機能は、24種類のバリエーション(8パターンで3段階の強弱)で、自分にベストなマッサージを選択可能。多軸動構造によるハンズフリーのナチュラルな動きにバイブレーション機能を加え、さらにクオリティの高い刺激を誘発することで、中級者~上級者にも、よりご満足いただける製品に仕上りました。
  262.                     </p>
  263.                     <p>
  264.                         また、頭部のサイズアップに伴い、重量もアップ。ダイナミズムに満ちた特長的なフォルムにより、前立腺および直腸内全方向へのアプローチを増強。さらにWベースの硬度アップによりバイブレーション機能の効果を最大化し、会陰と仙骨へより効率的に振動を伝えます。
  265.                     </p>
  266.                     <p>
  267.                         ダイナミズムに満ちたデザインと共に、世界初のハンズフリー器具にバイブレーション機能を追加した「ヒリックスシンV」はヒリックスシリーズの特長である「腸がねじれるような強いオーガズム」を、より推し進めたプレジャーの体感を促します。
  268.                     </p>
  269.                     <p>
  270.                         前立腺マッサージによる上質なエクスタシーを、より多くの男性に。「ヒリックスシンV」がお届けする“最高のひととき”をお試しください。
  271.                     </p>
  272.                     <div class="product-feature-icons">
  273.                         <img src="{{ asset('aneros/img/products/velvet-touch-dark.png') }}" class="animate fda-silicone" data-animate="fadeIn"
  274.                             data-duration="1.0s" data-delay="0.4s" alt="ベルベットタッチ医療用シリコン">
  275.                         <img src="{{ asset('aneros/img/products/hand-free-pleasure-dark.png') }}" class="animate hands-free"
  276.                             data-animate="fadeIn" data-duration="1.0s" data-delay="0.4s" alt="ハンズフリー快楽">
  277.                         <img src="{{ asset('aneros/img/products/fda-dark.png') }}" class="animate fda-silicone" data-animate="fadeIn"
  278.                             data-duration="1.0s" data-delay="0.4s" alt="医療用材質承認">
  279.                     </div>
  280.                 </div>
  281.                 <div class="product-pleasure-image">
  282.                     <img src="{{ asset('aneros/img/products/Helix-Syn-V/Helix-Syn-V-box.png') }}" class="animate"
  283.                         data-animate="fadeIn" data-duration="1.0s" data-delay="0.4s" alt="ヒリックスシンVと箱">
  284.                 </div>
  285.             </div>
  286.         </div>
  287.         <div id="relatedproduct_area"></div>
  288.         <div class="product-rewards-experience">
  289.             <h3>バイブレーションの「<span style="color:#fff; font-size:56px; width:inherit; vertical-align:middle; display:inline-block;"> V</span>」が登場!</h3>
  290.             <div class="container flexbox">
  291.                 <div class="flexbox-1 picto-area">
  292.                     <div>
  293.                         <img src="{{ asset('aneros/img/products/Pictogram/vibrating-model.png') }}" alt="振動機能付き" class="pictogram" />
  294.                         <span><b>振動機能付き</b><br />自由自在のバイブレーション</span>
  295.                     </div>
  296.                     <div>
  297.                         <img src="{{ asset('aneros/img/products/Pictogram/performance-up.png') }}" alt="性能向上" class="pictogram" />
  298.                         <span><b>性能向上</b><br />下半身の筋肉を鍛え、性機能をパワーアップ</span>
  299.                     </div>
  300.                     <div>
  301.                         <img src="{{ asset('aneros/img/products/Pictogram/MAXA.png') }}" alt="多軸動構造" class="pictogram" />
  302.                         <span><b>多軸動構造</b><br />直腸内をかき回すように動く</span>
  303.                     </div>
  304.                 </div>
  305.                 <div class="product-rewards-experience-image flexbox-2">
  306.                     <img src="{{ asset('aneros/img/products/Helix-Syn-V/Helix-Syn-V-angle.png') }}" class="animate"
  307.                         data-animate="zoomIn" data-duration="1.0s" data-delay="0.4s" alt="バイブレーションのヒリックスシンV">
  308.                 </div>
  309.                 <div class="flexbox-3 picto-area">
  310.                     <div>
  311.                         <img src="{{ asset('aneros/img/products/Pictogram/8-patterns.png') }}" alt="8種類の振動パターン" class="pictogram" />
  312.                         <span><b>8種類の振動パターン</b><br />3段階の強弱で24種類のバリエーション</span>
  313.                     </div>
  314.                     <div>
  315.                         <img src="{{ asset('aneros/img/products/Pictogram/2-hr-charge.png') }}" alt="2時間でフル充電" class="pictogram" />
  316.                         <span><b>2時間以上利用可能</b><br />最速の充電スピード、2時間でフル充電</span>
  317.                     </div>
  318.                     <div>
  319.                         <img src="{{ asset('aneros/img/products/Pictogram/syn-coating.png') }}" alt="シリコンコーティング" class="pictogram" />
  320.                         <span><b>医療用シリコン</b><br />医療用シリコンコーティング、表面に特殊加工</span>
  321.                     </div>
  322.                 </div>
  323.             </div>
  324.         </div>
  325.         <div class="product-developed">
  326.             <div class="container flexbox">
  327.                 <div class="desc-contr">
  328.                     <h3>短時間の充電で長時間の使用</h3>
  329.                     <p>高品質リチウム電池を搭載し、一回の充電だけでハイスピードのバイブレーションが2時間以上も持続します。ミディアムスピードは4時間持続し、ロースピードで6時間も利用できます。</p>
  330.                     <p>また、素材は高精度の加工が可能な医療用プラスチックフレームに、ベルベットタッチの医療用シリコンをコーティングした贅沢な使用感。防水対応(IPX7)のため、バスルームなどでも利用可能です。</p>
  331.                     <p>※振動パターンにより、充電の持続時間が異なります。</p>
  332.                     <div class="helix-syn-v-icons">
  333.                         <img src="{{ asset('aneros/img/products/Helix-Syn-V/8-patterns-icon.png') }}" class="img-with-animation2" data-animation="grow-in" data-delay="200" alt="8種類の振動パターン" />
  334.                         <img src="{{ asset('aneros/img/products/Helix-Syn-V/3-speeds-icon.png') }}" class="img-with-animation2" data-animation="grow-in" data-delay="200" alt="3段階の強弱設定" />
  335.                     </div>
  336.                 </div>
  337.                 <div class="product-developed-image">
  338.                     <img src="{{ asset('aneros/img/products/Helix-Syn-V/Helix-Syn-V-charging.png') }}" class="right animate"
  339.                         data-animate="fadeIn" data-duration="1.0s" data-delay="0.4s" alt="充電式のヒリックスシンV">
  340.                 </div>
  341.             </div>
  342.         </div>
  343.         <div class="product-spec" id="product-specs">
  344.             <div class="container flexbox">
  345.                 <div class="product-spec-image">
  346.                     <img src="{{ asset('aneros/img/products/Helix-Syn-V/Helix-Syn-V-size.jpg') }}" class="animate"
  347.                         alt="プロガスムアニバーサリーモデルサイズ" data-animate="fadeInLeft" data-duration="1.5s" data-delay="0.4s" width="461">
  348.                 </div>
  349.                 <div class="desc-contr animate" data-animate="fadeInRight" data-duration="1.5s" data-delay="0.4s">
  350.                     <h3>サイズ</h3>
  351.                     <ul>
  352.                         <li>
  353.                             <span class="ps-name">頭部横幅:</span>
  354.                             <span class="ps-value">26mm</span>
  355.                         </li>
  356.                         <li>
  357.                             <span class="ps-name">柄の部分横幅:</span>
  358.                             <span class="ps-value">22mm</span>
  359.                         </li>
  360.                         <li>
  361.                             <span class="ps-name">アバットメントの中心から柄の中心の距離:</span>
  362.                             <span class="ps-value">40mm</span>
  363.                         </li>
  364.                         <li>
  365.                             <span class="ps-name">挿入可能長さ:</span>
  366.                             <span class="ps-value">92mm</span>
  367.                         </li>
  368.                         <li>
  369.                             <span class="ps-name">頭部縦幅:</span>
  370.                             <span class="ps-value">24mm</span>
  371.                         </li>
  372.                     </ul>
  373.                 </div>
  374.             </div>
  375.         </div>
  376.         <div class="shopping-experiernce-tile" id="shopping-experience-tile">
  377.             <div class="container flexbox">
  378.                 <div class="tile-bg">
  379.                     <img src="{{ asset('aneros/img/products/shopping-experience-tile-bg.png') }}" class="img-tile-bg"
  380.                         alt="中身がわからい発送">
  381.                 </div>
  382.                 <div class="fast-shipping flexbox-center">
  383.                     <img src="{{ asset('aneros/img/products/fast-shipping-rect-dark.png') }}" class="img-fast-shipping"
  384.                         alt="即日出荷">
  385.                 </div>
  386.                 <div class="secure-cc-processing flexbox-center">
  387.                     <img src="{{ asset('aneros/img/products/secure-cc-processing-rect-dark.png') }}"
  388.                         class="img-secure-cc-processing" alt="貴重な個人情報は全てSSL保護">
  389.                 </div>
  390.                 <div class="money-back-gurantee flexbox-center">
  391.                     <img src="{{ asset('aneros/img/products/money-back-guarantee-rect-dark.png') }}"
  392.                         class="img-money-back-gurantee" alt="100%返金保証">
  393.                 </div>
  394.             </div>
  395.         </div>
  396.         <!-- ▼item_detail▼ -->
  397.         <div id="item_detail">
  398.             <div id="review_area">
  399.             </div>
  400.             <div id="detail_wrap" class="row">
  401.                 <section id="item_detail_area" class="col-sm-6">
  402.                     <div id="detail_description_box__body" class="item_detail">
  403.                         <!--★商品説明★-->
  404.                         <p id="detail_not_stock_box__description_detail" class="item_comment"></p>
  405.                     </div>
  406.                     <!-- /.item_detail -->
  407.                 </section>
  408.                 <!--詳細ここまで-->
  409.             </div>
  410.         </div>
  411.         <!-- ▲item_detail▲ -->
  412.         <div class="about-prostate-massagers-block">
  413.             <div class="container flexbox warp">
  414.                 <h2>前立腺マッサージとは</h2>
  415.                 <div class="item item-left">
  416.                     <img src="{{ asset('aneros/img/products/prostate-massagers-how-it-works.jpg') }}" alt="前立腺マッサージとは">
  417.                     <h3>従来のやり方</h3>
  418.                     <p>
  419.                         アネロスが開発される前、有効な前立腺マッサージを行うためには第三者にしてもらわないとできませんでした。身体がよほど柔らかくない限り、自分自身の指で刺激するのは困難です。パートナーがいればベストですがいない限り、アネロスがないと効果的な前立腺マッサージはできませんでした。
  420.                     </p>
  421.                 </div>
  422.                 <div class="item item-middle">
  423.                     <img src="{{ asset('aneros/img/products/prostate-massagers-easy-to-use-helix-syn-v.jpg') }}" alt="アネロスの仕方">
  424.                     <h3>アネロスの仕方</h3>
  425.                     <p>
  426.                         アネロス前立腺マッサージ器を使用することでラクに前立腺をマッサージすることができます。PC筋と括約筋を締めたり、緩めたりするだけでアネロスが効果的に前立腺と会陰部を交互に刺激します。全てハンズフリーのため、安全で空いた手でほかの部分を刺激するのも自由自在です。
  427.                     </p>
  428.                 </div>
  429.                 <div class="item item-right">
  430.                     <img src="{{ asset('aneros/img/products/prostate-massagers-easy-to-use-helix-syn-v-movement.jpg') }}" alt="ドライオーガズムイメージ画像">
  431.                     <h3>快楽の支点</h3>
  432.                     <p>
  433.                         従来のアネロスモデルは肛門括約筋を収縮することにより、アバットメントが会陰部に刺激を与えます。この水平運動がアネロスの動きの基になり、外部会陰から、そして直腸前壁から前立腺マッサージを行い、ドライオーガズムを誘発させます。アネロスの使用は完全にハンズフリーで使用時の姿勢も自由自在で、様々の体勢で様々の快楽が体験できます。
  434.                     </p>
  435.                 </div>
  436.             </div>
  437.             <div class="container flexbox warp">
  438.                 <h2>使用のメリット</h2>
  439.                 <div class="item item-left">
  440.                     <img src="{{ asset('aneros/img/products/prostate-massagers-progressively-rewarding.jpg') }}" alt="使用のメリット">
  441.                     <h3>ドライオーガズム</h3>
  442.                     <p>
  443.                         アネロスの使用により未知の快楽と呼ばれるドライオーガズムを体験できますが、多少の訓練が必要です。毎回の使用でアネロスの刺激を覚えていき、経験を重ねるごとにより強烈なドライオーガズムが達成できます!
  444.                     </p>
  445.                 </div>
  446.                 <div class="item item-middle">
  447.                     <img src="{{ asset('aneros/img/products/apple_Ts.png') }}" alt="性の健康増進">
  448.                     <h3>性の健康増進</h3>
  449.                     <p>
  450.                         アネロスを使用するたびに下半身の筋肉、特にPC筋が鍛えられます。ダンベル運動などと同じようにアネロスでのトレーニングを重ねるとPC筋等に力を持たせることができます。性器、肛門を八の字に取り囲むPC筋の増強はセックス時に大活躍し、鍛えられた下半身の筋肉によりセックスの持続時間が長くなり、勃起力が強化され、ウェットオーガズムの満足度が大幅にアップします。
  451.                     </p>
  452.                 </div>
  453.                 <div class="item item-right">
  454.                     <img src="{{ asset('aneros/img/products/betters.png') }}" alt="セックス時の使用">
  455.                     <h3>セックス時の使用</h3>
  456.                     <p>
  457.                         セックスの時にアネロスを使用すると、性交時に頭部が自然に直腸前壁に向け、ペニスへの刺激と同時に前立腺をマッサージします。また、アバットメントは会陰部を効果的に刺激します。これがアネロスの基本原理です。通常、ペニス一点へ刺激が、会陰部への刺激、直腸前壁から前立腺への刺激が加わることにより三点に増え、射精が更に気持ちよく、強くなり、通常のオーガズムを超えたウェットオーガズムが体験できます。
  458.                     </p>
  459.                 </div>
  460.             </div>
  461.         </div>
  462.         <div class="product-dont-forget-lubricant">
  463.             <div class="container flexbox">
  464.                 <div class="desc-contr flexbox-2 flexbox-right">
  465.                     <h3>ローションを忘れずに!</h3>
  466.                     <p>
  467.                         前立腺マッサージで、最も効果的に快楽を得るためには十分な潤滑が重要となります。最適なローションを使用すれば、アネロスの挿入もスムーズになり正しく自由な動きを誘発します。本体を劣化させる心配もなく後片付けもラクな水溶性のローションがおすすめです。アネロス社のマークスマンとセッションズは、アネロス利用のために作られた専用の水溶性のローションです。
  468.                     </p>
  469.                     <a href="{{ url('homepage') }}lubricants" class="more-link">ローションはこちらからご覧ください &gt;</a>
  470.                 </div>
  471.                 <div class="lubricant-images flexbox-1">
  472.                     <img src="{{ asset('aneros/img/products/donot-forget-lubricant-image.png') }}" class="lb-img animate"
  473.                         data-animate="fadeIn" data-duration="1.0s" data-delay="0.4s" alt="セッションズを忘れずに!">
  474.                 </div>
  475.             </div>
  476.         </div>
  477.         <div class="product-other-products container flexbox">
  478.             <div class="item">
  479.                 <a href="{{ url('product_detail', {'id': 72}) }}">
  480.                     <img src="{{ asset('aneros/img/products/category_vice-2.jpg') }}" alt="ヴァイス 2 - メンズバイブレーション" class="animate"
  481.                         data-animate="zoomIn" data-duration="1.0s" data-delay="0.4s">
  482.                 </a>
  483.             </div>
  484.             <div class="item">
  485.                 <a href="{{ url('product_detail', {'id': 81}) }}">
  486.                     <img src="{{ asset('aneros/img/products/category_progasm_black_ice.jpg') }}" alt="プロガスムブラックアイス - サイズを求める男性に"
  487.                         class="animate center" data-animate="zoomIn" data-duration="1.0s" data-delay="0.4s">
  488.                 </a>
  489.             </div>
  490.             <div class="item">
  491.                 <a href="{{ url('product_detail', {'id': 70}) }}">
  492.                     <img src="{{ asset('aneros/img/products/category_HST.jpg') }}" alt="ヒリックスシントライデント - シン定番のフラグシップモデル"
  493.                         class="animate" data-animate="zoomIn" data-duration="1.0s" data-delay="0.4s">
  494.                 </a>
  495.             </div>
  496.         </div>
  497.         <div class="product-compare-prostate-massagers container flexbox">
  498.             <div class="product-compare-prostate-massagers-image">
  499.                 <img src="{{ asset('aneros/img/products/compare_prostate_massagers_image.jpg') }}" class="animate"
  500.                     data-animate="zoomIn" data-duration="1.0s" data-delay="0.4s" alt="私にあっているアネロスはどれでしょうか??">
  501.             </div>
  502.             <div class="desc-contr">
  503.                 <h3>私にあっているアネロスはどれでしょうか??</h3>
  504.                 <a href="{{ url('homepage') }}prostate-massagers" class="more-link">
  505.                     前立腺マッサージ器はこちら
  506.                     <span>&gt;</span>
  507.                 </a>
  508.             </div>
  509.         </div>
  510.     </div>
  511. </div>
  512. <!-- ▲メインコンテンツ -->
  513. <div class="swooth-wrapper grey-swooth">
  514. </div>