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

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