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

Open in your IDE?
  1. <!-- ページ固有のスタイル -->
  2. <style>
  3.     .product-pleasure p {color:#919191;}
  4.     .product-rewards-experience p {color:#ffffff;}
  5.     .product-rewards-experience img {padding: 20px 0;}
  6. </style>
  7. <!-- ▼メインコンテンツ -->
  8. <div class="breadcrumbs">
  9.     <div class="container">
  10.         <ul itemscope itemtype="http://schema.org/BreadcrumbList">
  11.             <li class="0" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
  12.                 <a itemprop="item" href="{{ url('homepage') }}" title="トップページに戻る">
  13.                     <span itemprop="name" style="padding:0">トップページ</span></a>
  14.                 <meta itemprop="position" content="1">
  15.                 <span>&gt;</span>
  16.             </li>
  17.             <li class="category" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
  18.                 <a itemprop="item" href="{{ url('homepage') }}sex-toys-for-couples" title="カップル用品"><span itemprop="name"
  19.                         style="padding:0">カップル用品</span></a>
  20.                 <meta itemprop="position" content="2">
  21.                 <span>&gt;</span>
  22.             </li>
  23.             <li class="product">
  24.                 <strong>{{ Product.name }}</strong>
  25.             </li>
  26.         </ul>
  27.     </div>
  28. </div>
  29. <div itemscope itemtype="http://schema.org/Product">
  30.     <div class="aneros-product-page" id="product-detail-page">
  31.         <div class="product-detail-nav-section container flexbox" style="padding-bottom: 10px">
  32.             <div class="product-price-info flexbox-2 flexbox-right">
  33.                 <div class="price-box">
  34.                     <span class="regular-price" id="product-price-335">
  35.                         <!--★通常価格★-->
  36.                         {% if Product.hasProductClass -%}
  37.                             {% if Product.getPrice01Min is not null and Product.getPrice01IncTaxMin == Product.getPrice01IncTaxMax %}
  38.                                 <p id="detail_description_box__class_normal_price" class="normal_price"> 通常価格:<span
  39.                                     class="price price01_default">{{ Product.getPrice01IncTaxMin|price }}</span>
  40.                                     <span class="inctax">(税込)</span>
  41.                                 </p>
  42.                             {% elseif Product.getPrice01Min is not null and Product.getPrice01Max is not null %}
  43.                                 <p id="detail_description_box__class_normal_range_price" class="normal_price"> 通常価格:<span
  44.                                     class="price price01_default">{{ Product.getPrice01IncTaxMin|price }} ~ {{ Product.getPrice01IncTaxMax|price
  45.                                     }}</span>
  46.                                     <span class="inctax">(税込)</span>
  47.                                 </p>
  48.                             {% endif %}
  49.                             {% else -%}
  50.                             {% if Product.getPrice01Max is not null %}
  51.                                 <p id="detail_description_box__normal_price" class="normal_price"> 通常価格:<span
  52.                                     class="price price01_default">{{ Product.getPrice01IncTaxMin|price }}</span>
  53.                                     <span class="inctax">(税込)</span>
  54.                                 </p>
  55.                             {% endif %}
  56.                             {% endif -%}
  57.                         <!--★販売価格★-->
  58.                         <p itemprop="offers" itemscope itemtype="http://schema.org/Offer" id="detail_description_box__sale_price"
  59.                             class="sale_price text-primary"><span itemprop="priceCurrency" content="JPY"></span><span itemprop="price"
  60.                                 content="{{ Product.getPrice02IncTaxMin }}" class="price">{{ Product.getPrice02IncTaxMin|price }}<span id="with-tax"> (税込)</span></span></p>
  61.                     </span>
  62.                     {% if Product.getPrice02IncTaxMin >= 3000 %}
  63.                         <p class="paidy-price">
  64.                             <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>
  65.                         </p>
  66.                     {% endif %}
  67.                     {# 会員ランクごとの取得ポイント表示↓ #}
  68.                         {{ include('Product/customer_rank_point.twig') }}
  69.                     {# 会員ランクごとの取得ポイント表示↑ #}
  70.                 </div>
  71.                 <div class="add-to-box">
  72.                     <div class="add-to-cart">
  73.                         <div class="add-to-cart-buttons">
  74.                             <form action="{{ url('product_add_cart', {id:Product.id}) }}" method="post" id="form1" name="form1">
  75.                                 {% if Product.stock_find %}
  76.                                     <div class="ec-productRole__actions">
  77.                                         {% if form.classcategory_id1 is defined %}
  78.                                             <div class="ec-select">
  79.                                                 {{ form_widget(form.classcategory_id1) }}
  80.                                                 {{ form_errors(form.classcategory_id1) }}
  81.                                             </div>
  82.                                             {% if form.classcategory_id2 is defined %}
  83.                                                 <div class="ec-select">
  84.                                                     {{ form_widget(form.classcategory_id2) }}
  85.                                                     {{ form_errors(form.classcategory_id2) }}
  86.                                                 </div>
  87.                                             {% endif %}
  88.                                         {% endif %}
  89.                                         <div class="ec-numberInput" style = "display: none;"><span>{{ '数量'|trans }}</span>
  90.                                             {{ form_widget(form.quantity) }}
  91.                                             {{ form_errors(form.quantity) }}
  92.                                         </div>
  93.                                     </div>
  94.                                     <div class="ec-productRole__btn">
  95.                                         <button type="submit" title="カゴに入れる" class="button btn-cart add-cart">
  96.                                             <span>
  97.                                                 <span>カゴに入れる</span>
  98.                                             </span>
  99.                                         </button>
  100.                                     </div>
  101.                                 {% else %}
  102.                                     <div class="ec-productRole__btn">
  103.                                         {% if arrivemail %}
  104.                                             <button type="button" data-productid="{{ Product.id }}" data-productname="{{ Product.name }}" title="入荷お知らせ" class="button btn-cart add-to-mail">
  105.                                                 <span>入荷お知らせ</span>
  106.                                             </button>
  107.                                         {% else %}
  108.                                             <button type="button" title="在庫切れ" class="button btn-cart add-to-cart-out">
  109.                                                 <span>在庫切れ</span>
  110.                                             </button>
  111.                                         {% endif %}
  112.                                     </div>
  113.                                 {% endif %}
  114.                                 {{ form_rest(form) }}
  115.                             </form>
  116.                         </div>
  117.                         {# {% if is_granted('ROLE_USER') %} #}
  118.                         {% if BaseInfo.option_favorite_product %}
  119.                         <form action="{{ url('product_add_favorite', {id:Product.id}) }}" method="post" id="form2">
  120.                             <div class="ec-productRole__btn favorite-button">
  121.                                 {% if is_favorite == false %}
  122.                                     {# <button type="submit" id="favorite" class="ec-blockBtn--cancel button">
  123.                                         {{ 'お気に入りに追加'|trans }}
  124.                                     </button> #}
  125.                                     
  126.                                     <button type="submit" id="favorite" class="favorite-heart">
  127.                                         {#{{ 'お気に入りに追加'|trans }}#}
  128.                                         <i class="fa fa-heart-o" title="お気に入りに追加"></i>
  129.                                     </button>
  130.                                 {% else %}
  131.                                     <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() }}>
  132.                                         {#{{ 'お気に入りに追加'|trans }}#}
  133.                                         <i class="fa fa-heart" title="お気に入りに追加済です"></i>
  134.                                     </button>
  135.                                     
  136.                                     {# <button type="button" id="unfavorite" class="ec-blockBtn--cancel button-favorited one-click-remove-favorite"
  137.                                     data-action="{{ url('mypage_favorite_delete', { id : Product.id }) }}" data-method="delete" {{ csrf_token_for_anchor() }}>
  138.                                         {{ 'お気に入りに追加済です。'|trans }}
  139.                                     </button> #}
  140.                                     
  141.                                 {% endif %}
  142.                             </div>
  143.                         </form>
  144.                         {% endif %}
  145.                         {# {% endif %} #}
  146.                     </div>
  147.                 </div>
  148.             </div>
  149.             <ul class="top-review-box flexbox-1">
  150.                 <li><a href="#review_area" class="top_review_score"></a></li>
  151.                 <li>
  152.                     <a href="#product-specs" style="display: none;">Specs</a>
  153.                 </li>
  154.                 <li class="userguide">
  155.                     <a href="{{ asset('aneros/guides/anerosTridentInstructions.pdf') }}"
  156.                         target="_blank" class="user-guide-link">
  157.                         ユーザーガイド
  158.                         <i class="fa fa-file-text-o">
  159.                         </i>
  160.                     </a>
  161.                 </li>
  162.             </ul>
  163.             <!-- ▼レビュープラグインの記述▼ -->
  164.             {% if 0 < ProductReviewCount %}
  165.             <div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
  166.                 <span style="display:none" itemprop="ratingValue">{{ Reviews_avg|number_format(1, '.') }}</span>
  167.                 <span style="display:none" itemprop="reviewCount">{{ ProductReviewCount }}</span>
  168.             </div>
  169.             {% endif %}
  170.             <!-- ▲レビュープラグインの記述▲ -->
  171.                 
  172.         </div>
  173.         <div class="product-main-section container flexbox">
  174.             <div class="product-main-image">
  175.                 <img itemprop="image" width="400" src="{{ asset('aneros/img/products/Peridise/Peridise-main-image.jpg') }}"
  176.                     class="main-image" alt="ペリダイス">
  177.                 <div class="pictogram-area">    
  178.                     <div class="pictogram">
  179.                         <img src="{{ asset('aneros/img/products/Pictogram/all-users.jpg') }}" alt="全レベル可" />
  180.                         <span class="pictogramtext">全レベル可</span>
  181.                     </div>
  182.                     <div class="pictogram">
  183.                         <img src="{{ asset('aneros/img/products/Pictogram/medical-plastic.jpg') }}" alt="医療用プラスチック" />
  184.                         <span class="pictogramtext">医療用<br>プラスチック</span>
  185.                     </div>
  186.                     <div class="pictogram">
  187.                         <img src="{{ asset('aneros/img/products/Pictogram/medically-patented.jpg') }}" alt="医療用特許取得" />
  188.                         <span class="pictogramtext">医療用特許取得</span>
  189.                     </div>
  190.                     <div class="pictogram">
  191.                         <img src="{{ asset('aneros/img/products/Pictogram/unisex.jpg') }}" alt="男女兼用" />
  192.                         <span class="pictogramtext">男女兼用</span>
  193.                     </div>
  194.                 </div>    
  195.             </div>
  196.             <div class="product-info">
  197.                 <h1 itemprop="name" class="qodef-single-product-title">
  198.                     ペリダイス<br>
  199.                     <span class="syn">2本セット</span>
  200.                 </h1>
  201.                 <ul class="features-list">
  202.                     <li>
  203.                         誰でも使えるユニセックスモデル
  204.                     </li>
  205.                     <li>
  206.                         思いのほか、強烈なオーガズム
  207.                     </li>
  208.                     <li>
  209.                         医療用非多孔性プラスチック素材
  210.                     </li>
  211.                     <li>
  212.                         米国FDAの材質承認を得ているので安心
  213.                     </li>
  214.                 </ul>
  215.             </div>
  216.         </div>
  217.         <div class="product-pleasure">
  218.             <div class="container flexbox">
  219.                 <div class="desc-contr" itemprop="description">
  220.                     <h3>男性も女性も楽しめる<br>
  221.                     世界初の男女兼用モデル</h3>
  222.                     <p>
  223.                         ペリダイスにはアバットメントがなく、直腸前壁のみで強烈なオーガズムを誘発させる男女兼用の製品です。このデザインにより、男性だけでなく女性の方でもプレイを楽しむことができるモデルになりました。
  224.                     </p>
  225.                     <p>
  226.                         大きいサイズは初心者向きとされ、小さくなるにつれて上級者向きになります。最初は22mmから挑戦し、使用を重ねるごとに小さいサイズへとステップアップしていくことをおすすめします。男性・女性を問わず素晴らしいオーガズムを体験していただけます。
  227.                     </p>
  228.                     <p>
  229.                         そしてカップルとのセックスをより一層盛り上げてくれることでしょう。ひとりでも、またパートナーと一緒に、未知なる世界へ足を踏み入れてみませんか?
  230.                     </p>
  231.                     <div class="product-feature-icons">
  232.                         <img src="{{ asset('aneros/img/products/hand-free-pleasure-dark.png') }}" class="animate hands-free"
  233.                             data-animate="fadeIn" data-duration="1.0s" data-delay="0.4s" alt="ハンズフリー快楽">
  234.                         <img src="{{ asset('aneros/img/products/fda-dark.png') }}" class="animate fda-silicone" data-animate="fadeIn"
  235.                             data-duration="1.0s" data-delay="0.4s" alt="医療用材質承認">
  236.                     </div>
  237.                 </div>
  238.                 <div class="product-pleasure-image">
  239.                     <img src="{{ asset('aneros/img/products/Peridise/peridise-2pk-case.jpg') }}" class="animate"
  240.                         data-animate="fadeIn" data-duration="1.0s" data-delay="0.4s" alt="ペリダイスケース">
  241.                 </div>
  242.             </div>
  243.         </div>
  244.         
  245.         <div id="relatedproduct_area"></div>
  246.         <div class="product-rewards-experience">
  247.             <div class="container flexbox">
  248.                 <div class="desc-contr flexbox-2 flexbox-right">
  249.                     <h3>類のない製品</h3>
  250.                     <p>
  251.                     ペリダイスのふたつの凹凸は身体の蠕動運動のみで直腸を刺激します。人間の身体は直腸にものが挿入されると、自然に排除するような運動を起こします。
  252.                     </p>
  253.                     <p>
  254.                     この蠕動運動がペリダイス本体を排除しようと動くと、ペリダイスの全体のデザインは逆に直腸に進もうとします。このプッシュプルの繰り返しによる蠕動運動が強烈なドライオーガズムを誘発させます。
  255.                     </p>
  256.                 </div>
  257.                 <div class="product-rewards-experience-image flexbox-1">
  258.                     <img src="{{ asset('aneros/img/products/Peridise/peridise-2pk-rewards-image.png') }}" class="animate"
  259.                         data-animate="zoomIn" data-duration="1.0s" data-delay="0.4s" alt="ペリダイス デザインの特長">
  260.                 </div>
  261.             </div>
  262.         </div>
  263.         <div class="product-spec" id="product-specs">
  264.             <div class="container flexbox">
  265.                 <div class="product-spec-image">
  266.                     <img src="{{ asset('aneros/img/products/Peridise/peridise-size.png') }}" class="animate"
  267.                         alt="ペリダイスサイズ" data-animate="fadeInLeft" data-duration="1.5s" data-delay="0.4s" width="461">
  268.                 </div>
  269.                 <div class="desc-contr animate" data-animate="fadeInRight" data-duration="1.5s" data-delay="0.4s">
  270.                     <h3>サイズ</h3>
  271.                     <ul>
  272.                         <li>
  273.                             <span class="ps-name">頭部直径:</span>
  274.                             <span class="ps-value">18mm</span>
  275.                         </li>
  276.                         <li>
  277.                             <span class="ps-name">挿入可能長さ:</span>
  278.                             <span class="ps-value">86mm</span>
  279.                         </li>
  280.                         <li>
  281.                             <span class="ps-name">頭部直径:</span>
  282.                             <span class="ps-value">22mm</span>
  283.                         </li>
  284.                         <li>
  285.                             <span class="ps-name">挿入可能長さ:</span>
  286.                             <span class="ps-value">86mm</span>
  287.                         </li>
  288.                     </ul>
  289.                 </div>
  290.             </div>
  291.         </div>
  292.         <div class="shopping-experiernce-tile" id="shopping-experience-tile">
  293.             <div class="container flexbox">
  294.                 <div class="tile-bg">
  295.                     <img src="{{ asset('aneros/img/products/shopping-experience-tile-bg.png') }}" class="img-tile-bg"
  296.                         alt="中身がわからい発送">
  297.                 </div>
  298.                 <div class="fast-shipping flexbox-center">
  299.                     <img src="{{ asset('aneros/img/products/fast-shipping-rect-dark.png') }}" class="img-fast-shipping"
  300.                         alt="即日出荷">
  301.                 </div>
  302.                 <div class="secure-cc-processing flexbox-center">
  303.                     <img src="{{ asset('aneros/img/products/secure-cc-processing-rect-dark.png') }}"
  304.                         class="img-secure-cc-processing" alt="貴重な個人情報は全てSSL保護">
  305.                 </div>
  306.                 <div class="money-back-gurantee flexbox-center">
  307.                     <img src="{{ asset('aneros/img/products/money-back-guarantee-rect-dark.png') }}"
  308.                         class="img-money-back-gurantee" alt="100%返金保証">
  309.                 </div>
  310.             </div>
  311.         </div>
  312.         <!-- ▼item_detail▼ -->
  313.         <div id="item_detail">
  314.             <div id="review_area">
  315.             </div>
  316.             <div id="detail_wrap" class="row">
  317.                 <section id="item_detail_area" class="col-sm-6">
  318.                     <div id="detail_description_box__body" class="item_detail">
  319.                         <!--★商品説明★-->
  320.                         <p id="detail_not_stock_box__description_detail" class="item_comment"></p>
  321.                     </div>
  322.                     <!-- /.item_detail -->
  323.                 </section>
  324.                 <!--詳細ここまで-->
  325.             </div>
  326.         </div>
  327.         <!-- ▲item_detail▲ -->
  328.         <div class="about-prostate-massagers-block">
  329.             <div class="container flexbox warp">
  330.                 <h2>使用のメリット</h2>
  331.                 <div class="item item-left">
  332.                     <img src="{{ asset('aneros/img/products/prostate-massagers-progressively-rewarding.jpg') }}" alt="使用のメリット">
  333.                     <h3>ドライオーガズム</h3>
  334.                     <p>
  335.                         アネロスの使用により未知の快楽と呼ばれるドライオーガズムを体験できますが、多少の訓練が必要です。毎回の使用でアネロスの刺激を覚えていき、経験を重ねるごとにより強烈なドライオーガズムが達成できます!
  336.                     </p>
  337.                 </div>
  338.                 <div class="item item-middle">
  339.                     <img src="{{ asset('aneros/img/products/apple_Ts.png') }}" alt="性の健康増進">
  340.                     <h3>性の健康増進</h3>
  341.                     <p>
  342.                         アネロスを使用するたびに下半身の筋肉、特にPC筋が鍛えられます。ダンベル運動などと同じようにアネロスでのトレーニングを重ねるとPC筋等に力を持たせることができます。性器、肛門を八の字に取り囲むPC筋の増強はセックス時に大活躍し、鍛えられた下半身の筋肉によりセックスの持続時間が長くなり、勃起力が強化され、ウェットオーガズムの満足度が大幅にアップします。
  343.                     </p>
  344.                 </div>
  345.                 <div class="item item-right">
  346.                     <img src="{{ asset('aneros/img/products/betters.png') }}" alt="セックス時の使用">
  347.                     <h3>セックス時の使用</h3>
  348.                     <p>
  349.                         セックスの時にアネロスを使用すると、性交時に頭部が自然に直腸前壁に向け、ペニスへの刺激と同時に前立腺をマッサージします。また、アバットメントは会陰部を効果的に刺激します。これがアネロスの基本原理です。通常、ペニス一点へ刺激が、会陰部への刺激、直腸前壁から前立腺への刺激が加わることにより三点に増え、射精が更に気持ちよく、強くなり、通常のオーガズムを超えたウェットオーガズムが体験できます。
  350.                     </p>
  351.                 </div>
  352.             </div>
  353.         </div>
  354.         <div class="product-dont-forget-lubricant">
  355.             <div class="container flexbox">
  356.                 <div class="desc-contr flexbox-2 flexbox-right">
  357.                     <h3>ローションを忘れずに!</h3>
  358.                     <p>
  359.                         前立腺マッサージで、最も効果的に快楽を得るためには十分な潤滑が重要となります。最適なローションを使用すれば、アネロスの挿入もスムーズになり正しく自由な動きを誘発します。本体を劣化させる心配もなく後片付けもラクな水溶性のローションがおすすめです。アネロス社のマークスマンとセッションズは、アネロス利用のために作られた専用の水溶性のローションです。
  360.                     </p>
  361.                     <a href="{{ url('homepage') }}lubricants" class="more-link">ローションはこちらからご覧ください &gt;</a>
  362.                 </div>
  363.                 <div class="lubricant-images flexbox-1">
  364.                     <img src="{{ asset('aneros/img/products/donot-forget-lubricant-image.png') }}" class="lb-img animate"
  365.                         data-animate="fadeIn" data-duration="1.0s" data-delay="0.4s" alt="セッションズを忘れずに!">
  366.                 </div>
  367.             </div>
  368.         </div>
  369.         <div class="product-other-products container flexbox">
  370.             <div class="item">
  371.                 <a href="{{ url('product_detail', {'id': 72}) }}">
  372.                     <img src="{{ asset('aneros/img/products/category_vice-2.jpg') }}" alt="ヴァイス 2 - メンズバイブレーション" class="animate"
  373.                         data-animate="zoomIn" data-duration="1.0s" data-delay="0.4s">
  374.                 </a>
  375.             </div>
  376.             <div class="item">
  377.                 <a href="{{ url('product_detail', {'id': 81}) }}">
  378.                     <img src="{{ asset('aneros/img/products/category_progasm_black_ice.jpg') }}" alt="プロガスムブラックアイス - サイズを求める男性に"
  379.                         class="animate center" data-animate="zoomIn" data-duration="1.0s" data-delay="0.4s">
  380.                 </a>
  381.             </div>
  382.             <div class="item">
  383.                 <a href="{{ url('product_detail', {'id': 70}) }}">
  384.                     <img src="{{ asset('aneros/img/products/category_HST.jpg') }}" alt="ヒリックスシントライデント - シン定番のフラグシップモデル"
  385.                         class="animate" data-animate="zoomIn" data-duration="1.0s" data-delay="0.4s">
  386.                 </a>
  387.             </div>
  388.         </div>
  389.         <div class="product-compare-prostate-massagers container flexbox">
  390.             <div class="product-compare-prostate-massagers-image">
  391.                 <img src="{{ asset('aneros/img/products/compare_prostate_massagers_image.jpg') }}" class="animate"
  392.                     data-animate="zoomIn" data-duration="1.0s" data-delay="0.4s" alt="私にあっているアネロスはどれでしょうか??">
  393.             </div>
  394.             <div class="desc-contr">
  395.                 <h3>私にあっているアネロスはどれでしょうか??</h3>
  396.                 <a href="{{ url('homepage') }}prostate-massagers" class="more-link">
  397.                     前立腺マッサージ器はこちら
  398.                     <span>&gt;</span>
  399.                 </a>
  400.             </div>
  401.         </div>
  402.     </div>
  403. </div>
  404. <!-- ▲メインコンテンツ -->
  405. <div class="swooth-wrapper grey-swooth">
  406. </div>