app/template/osechi/Rental/index.twig line 1

Open in your IDE?
  1. {% extends 'default_frame.twig' %}
  2. {% set body_class = 'product_page' %}
  3. {% block javascript %}
  4. <script src="{{ asset('assets/js/lazyload.min.js') }}"></script> 
  5. <script>
  6. $(function(){
  7.     api_url="{{ url('products_calendar_infomation') }}";
  8.     calendar_start_date="{{ calendar_start_date }}";
  9.     calendar_end_date="{{ calendar_end_date }}";
  10.     $('.ec-topicpath a').on('click',function(){
  11.         $('.ec-topicpath div').removeClass('active');
  12.         $(this).parent().addClass('active');
  13.         tid=$(this).attr('id');
  14.          if('all' == tid) {
  15.              $('.ec-shelfRole.list').show();
  16.          } else {
  17.             $('.ec-shelfRole.list').hide();
  18.             $('.ec-shelfRole.list#'+tid).show();
  19.          }
  20.     });
  21.     $('a[href^="#"]').click(function(e) {
  22.         var href = $(this).attr("href");
  23.         var target = $(href == "#" || href == "" ? 'html' : href);
  24.         var position = target.offset().top;
  25.         
  26.         console.log("in");
  27.         $.when(
  28.             $("html, body").animate({
  29.                 scrollTop: position
  30.             }, 400, "swing"),
  31.             e.preventDefault(),
  32.         ).done(function() {
  33.             var diff = target.offset().top;
  34.             if (diff === position) {
  35.             } else {
  36.                 $("html, body").animate({
  37.                     scrollTop: diff
  38.                 }, 10, "swing");
  39.             }
  40.         });
  41.     });
  42.     $('p.category').on('click',function(){
  43.         if(!$(this).data('id')) {
  44.             $('p.category').removeClass('active');
  45.             $(this).addClass('active');
  46.             $('li.product_li').fadeIn()
  47.         } else {
  48.             //allのactive削除
  49.             $('p.category').each(function(index, element) {
  50.                 if($(element).text()=='ALL' && $(element).hasClass('active')) {
  51.                         $(element).removeClass('active');
  52.                         $('li.product_li').fadeOut()
  53.                 }
  54.             })
  55.             //自分を追加
  56.             if($(this).hasClass('active')) {
  57.                 $(this).removeClass('active');
  58.                 $('.category_'+$(this).data('id')).fadeOut();
  59.             } else {
  60.                 $(this).addClass('active');
  61.                 $('.category_'+$(this).data('id')).fadeIn();
  62.             }
  63.             
  64.         }
  65.         if($('p.category.active').length == 0) {
  66.             $('li.product_li').fadeIn()
  67.             $('p.category').each(function(index, element) {
  68.                 if($(element).text()=='ALL') {
  69.                     $(element).addClass('active');
  70.                 }
  71.             })
  72.         }
  73.     });
  74.     $('li.item_category').on('click',function(){
  75.         //allのactive削除
  76.         $('.lineupmsg').fadeOut();
  77.         $('li.product_li').fadeOut();
  78.         //自分を追加
  79.         if($(this).hasClass('active')) {
  80.             $('.category_'+$(this).data('id')).fadeOut();
  81.         } else {
  82.             $('.category_'+$(this).data('id')).fadeIn();
  83.         }
  84.           $('html, body').animate({
  85.             scrollTop: $('#car-lineup').offset().top
  86.           }, 500); // 500 はスクロール時間(ミリ秒)
  87. /*
  88.         if($('p.category.active').length == 0) {
  89.             $('li.product_li').fadeIn()
  90.             $('p.category').each(function(index, element) {
  91.                 if($(element).text()=='ALL') {
  92.                     $(element).addClass('active');
  93.                 }
  94.             })
  95.         }
  96. */
  97.     });
  98.     $('li.product_li').fadeOut()
  99.     $("img.lazy").lazyload();
  100. });
  101. </script>
  102.     <script src="//unpkg.com/flatpickr"></script>
  103.     <!-- 日本語の言語ファイル -->
  104.     <script src="//unpkg.com/flatpickr/dist/l10n/ja.js"></script>
  105.     <script src="{{ asset('assets/js/rental.js') }}?{{ env('JS_PARAM') }}"></script>
  106.     <script src="{{ asset('assets/js/rental_common.js') }}?{{ env('JS_PARAM') }}"></script>
  107.     <script src="{{ asset('assets/js/slick.js') }}?{{ env('JS_PARAM') }}"></script>
  108. {% endblock %}
  109. {% block stylesheet %}
  110.     <link rel="stylesheet" href="//unpkg.com/flatpickr/dist/flatpickr.min.css">
  111.     <!-- カスタムテーマ -->
  112.     <link rel="stylesheet" href="//unpkg.com/flatpick/dist/themes/airbnb.css">
  113.     <link rel="stylesheet" href="{{ asset('assets/css/common.css') }}?{{ env('CSS_PARAM') }}">
  114.     <link rel="stylesheet" href="{{ asset('assets/css/rental.css') }}?{{ env('CSS_PARAM') }}">
  115.     <style>
  116.         @media (max-width: 767px) {
  117.             .ec-shelfGrid > * {
  118.                 margin-left: 7px;
  119.             }
  120.         }
  121.         @media (max-width: 767px) {
  122.             .ec-shelfGrid > *:nth-child(2n+1) {
  123.                 margin-left: 7px;
  124.             }
  125.         }
  126.         @media (min-width: 980px) and (max-width: 1279px) {
  127.             .ec-shelfGrid.col_max5 > * {
  128.                 margin-left: 15px;
  129.             }
  130.         }
  131.         @media (min-width: 980px) and (max-width: 1279px) {
  132.             .ec-shelfGrid.col_max5 > *:nth-child(4n+1) {
  133.                 margin-left: 15px;
  134.             }
  135.         }
  136.         @media (min-width: 1280px) {
  137.             .ec-shelfGrid.col_max5 > *:nth-child(5n+1) {
  138.                 margin-left: 15px;
  139.             }
  140.         }
  141.         @media (min-width: 1280px) {
  142.             .ec-shelfGrid.col_max5 > * {
  143.                 margin-left: 15px;
  144.             }
  145.         }
  146.         
  147.     </style>
  148.     <link rel="stylesheet" href="{{ asset('assets/css/slick.css') }}?{{ env('CSS_PARAM') }}">
  149. {% endblock %}
  150. {% set MainCar = 
  151.     [
  152. 5,
  153. 6,
  154. 30,
  155. 8,
  156.     ]
  157. %}
  158. {% set ProductsSuperCar = 
  159.     [
  160. 5,
  161. 6,
  162. 30,
  163. 20,
  164. 1,
  165. 4,
  166. 25,
  167. 63,
  168. 77,
  169. 72,
  170. 73,
  171. 76,
  172. 74,
  173. 75,
  174. 71,
  175. 47,
  176. 53,
  177. 21,
  178. 19,
  179. 24,
  180. 22,
  181. 23,
  182. 57,
  183. 27,
  184. 26,
  185. 11,
  186. 13,
  187. 2,
  188. 12,
  189. 8,
  190. 10,
  191. 37,
  192. 9,
  193. 68,
  194. 64,
  195. 66,
  196. 69,
  197. 32,
  198. 7,
  199. 29,
  200. 28,
  201. 33,
  202. 50,
  203. 65,
  204. 51,
  205. 48,
  206. 49,
  207.     ]
  208. %}
  209. {% block main %}
  210. <div class="ec-layoutRole__contents">
  211.     <main class="ec-layoutRole__main">
  212.         <form name="form1" id="form1" method="get" action="?">
  213.             <input type="hidden" id="mode" name="mode">
  214.             <input type="hidden" id="category_id" name="category_id">
  215.             <input type="hidden" id="name" name="name">
  216.             <input type="hidden" id="pageno" name="pageno">
  217.             <input type="hidden" id="disp_number" name="disp_number" value="20">
  218.             <input type="hidden" id="orderby" name="orderby" value="1">
  219.         </form>
  220.         <!-- ▼ カテゴリヘッド -->
  221.         <div class="ec-categoryHeadRole">
  222.             <div class="ec-categoryHeadRole__image" style="display: block;">
  223.                 <picture>
  224.                     <source media="(max-width:767px)" srcset="{{ asset('assets/img/rental/rental_sp.webp') }}">
  225.                     <source media="(min-width:768px)" srcset="{{ asset('assets/img/rental/rental_pc.webp') }}">
  226.                     <img src="{{ asset('assets/img/rental/rental_pc.webp') }}" alt="CAR RENTAL">
  227.                 </picture>
  228.                 <div class="ec-categoryHeadRole__content image-text">
  229.                     <h1 class="title">Luxury Car Rental in Tokyo</h1>
  230.                     <div class="description fade-in-from-bottom">
  231.                         <p>
  232.                         "A Wonderful Day" is a mobility concierge service designed to enhance the experience of foreign visitors in Japan. Choose your preferred car from our lineup. We offer a complimentary 15-minute tutorial for first-time drivers in Japan, <span class="pcOnly">conducted by our staff who will explain traffic rules. Additionally, we provide lead car options led by professional bilingual staff.</span>
  233.                         </p>
  234.                     </div>
  235.                 </div>
  236.             </div>
  237.         </div>
  238.         <!-- ▲ カテゴリヘッド -->
  239.         <!-- ▼ 商品一覧 -->
  240.         <div class="ec-shelfRole list anchor" id="supercar">
  241.             <div class="">
  242.                 <div class="-inner">
  243.                 </div>
  244.             </div>
  245.             <div class="category-title">
  246.                 <h2>Checking availability</h2>
  247.             </div>
  248.             <details class="accordion-006 filter" open>
  249.                 <summary>Filter available cars by date</summary>
  250.                 <input type="text" name="datepicker" placeholder="{{ calendar_start_date }}" id="fromCal" class="Form-Item-Input">~<input type="text" name="datepicker"  placeholder="{{ calendar_start_date }}" id="toCal" class="Form-Item-Input">
  251.                 <button class="button btn-clear">×</button>
  252.                 <div>
  253.                 <button class="button btn-search loading" id="btn_rental_search">Search</button>
  254.                 </div>
  255.             </details>
  256.             <div id="overlay">
  257.               <div class="cv-spinner">
  258.                 <span class="spinner"></span>
  259.               </div>
  260.             </div>
  261.             <div class="category-title">
  262.                 <h2>Category</h2>
  263.                 <p>Choose a category to explore our cars!</p>
  264.             </div>
  265.             <ul class="ec-shelfGrid col_max5 ready product">
  266.                 <!-- ▼ 商品単位 -->
  267.                 <li class="ec-shelfGrid__item item_category" data-id="8">
  268.                     <div class="ec-productItemRole appearEffect is-appear">
  269.                         <div class="ec-productItemRole__image">
  270.                             <img src="/awd/html/upload/save_image/0918145814_6507e6f637fac.JPG" width="280" height="186" alt="Lamborghini Urus " class="lazy">
  271.                         </div>
  272.                         <div class="ec-productItemRole__content">
  273.                             <h3 class="ec-productItemRole__title"><span>Super Car</span></h3>
  274.                         </div>
  275.                     </div>
  276.                 </li>
  277.                 <li class="ec-shelfGrid__item item_category" data-id="16">
  278.                     <div class="ec-productItemRole appearEffect is-appear">
  279.                         <div class="ec-productItemRole__image">
  280.                             <img src="/awd/html/upload/save_image/1026150431_653a016f14c0a.webp" width="280" height="186" alt="Lamborghini Urus " class="lazy">
  281.                         </div>
  282.                         <div class="ec-productItemRole__content">
  283.                             <h3 class="ec-productItemRole__title"><span>JDM</span></h3>
  284.                         </div>
  285.                     </div>
  286.                 </li>
  287.                 <li class="ec-shelfGrid__item item_category" data-id="9">
  288.                     <div class="ec-productItemRole appearEffect is-appear">
  289.                         <div class="ec-productItemRole__image">
  290.                             <img src="/awd/html/upload/save_image/0918151652_6507eb54a430f.JPG?20240118" width="280" height="186" alt="Lamborghini Urus " class="lazy">
  291.                         </div>
  292.                         <div class="ec-productItemRole__content">
  293.                             <h3 class="ec-productItemRole__title"><span>SUV</span></h3>
  294.                         </div>
  295.                     </div>
  296.                 </li>
  297.                 <li class="ec-shelfGrid__item item_category" data-id="10">
  298.                     <div class="ec-productItemRole appearEffect is-appear">
  299.                         <div class="ec-productItemRole__image">
  300.                             <img src="/awd/html/upload/save_image/0918144516_6507e3ec731a8.JPG" width="280" height="186" alt="Lamborghini Urus " class="lazy">
  301.                         </div>
  302.                         <div class="ec-productItemRole__content">
  303.                             <h3 class="ec-productItemRole__title"><span>Classic car</span></h3>
  304.                         </div>
  305.                     </div>
  306.                 </li>
  307.                 <!-- ▲ 商品単位 -->
  308.             </ul>
  309.             <div class="customers-link">
  310.                 <p>
  311.                     <a href="#testimonials">
  312.                         Please take a look at the feedback from our rental customers. Click here.
  313.                     </a>
  314.                 </p>
  315.             </div>
  316. {#
  317.             <div class="category-title">
  318.                 <h2>Category</h2>
  319.             </div>
  320.             <div>
  321.               <p class="category active" data-id="">ALL</p>
  322.               <p class="category" data-id="8">Super Car</p>
  323.               <p class="category" data-id="16">JDM</p>
  324.               <p class="category" data-id="9">SUV</p>
  325.               <p class="category" data-id="10">Classic car</p>
  326.             </div>
  327. #}
  328.             <div class="category-title" id="car-lineup">
  329.                 <h2>Lineup</h2>
  330.                 <p class="lineupmsg">Selecting a category will display the car lineup.</p>
  331.             </div>
  332.             <ul class="ec-shelfGrid col_max5 ready product">
  333. {% for id in ProductsSuperCar %}
  334.                 <!-- ▼ 商品単位 -->
  335.                 <li class="ec-shelfGrid__item product_li category_{{products[id].category_id}}" id="product-{{ products[id].id }}" data-id="{{ products[id].item13 }}">
  336.                     <div class="ec-productItemRole appearEffect">
  337.                         <div class="ec-productItemRole__image">
  338.                             <a href="{{ url('rental_detail', {'id': products[id].id}) }}" class="">
  339. {#
  340. {% if products[id].id==64 or products[id].id==66 or products[id].id==68 or products[id].id==69 %}
  341.                                 <span class="sell-icon off-rate" style="background-color: #f4352d;position: absolute;padding: 0 5px;z-index: 10;color: #fff;font-size: 1rem;bottom: 0;right: 0;
  342. ">New Snow tire!</span>
  343. {% endif %}
  344. #}
  345.                                 <img src="/awd/html/upload/save_image/{{ products[id].file_name }}?{{ env('JS_PARAM') }}"  width="280" height="186" alt="{{ products[id].name }} {{ products[id].search_word }}" class="lazy">
  346.                                 <span class="status-icon">unavailable</span>
  347.                             </a>
  348.                         </div>
  349.                         <div class="ec-productItemRole__content">
  350.                             <h3 class="ec-productItemRole__title"><span>{{ products[id].name }}</span></h3>
  351.                             <div class="ec-price">
  352.                             
  353. {% if id in env('AskCar') %}
  354.                                 <span class="ec-price__price">ASK</span>
  355.                                 
  356. {% else %}
  357.                                     <span class="ec-price__price">6Hours &yen;{{ (products[id].item18+(products[id].item17*6)+(products[id].item16*40))|number_format }}~ </span>
  358. {% endif %}
  359.                             </div>
  360.                         </div>
  361.                     </div>
  362.                 </li>
  363.                 <!-- ▲ 商品単位 -->
  364. {% endfor %}
  365.             </ul>
  366.         </div>
  367.         <div class="ec-pagerRole"> </div>
  368.         <!-- ▲ 商品一覧 -->
  369.         
  370.         <section class="ec-categoryHeadRole">
  371.         </section>
  372.         <section class="ec-categoryHeadRole">
  373.             <div>
  374.             <h2>Requirements / Benefits</h2>
  375.             </div>
  376.             <div class="description benefits">
  377.                 <ul class="container-flex">
  378.                     <li class="item">
  379.                         <img src="{{ asset('assets/img/rental/Requirements01.webp') }}"  width="280" height="186" alt="Minimum age: 26+" class="lazy">
  380.                         <p>Minimum age: 26+</p>
  381.                     </li>
  382.                     <li class="item">
  383.                         <img src="{{ asset('assets/img/rental/Requirements02.webp') }}"  width="280" height="186" alt="48-hour advance booking" class="lazy">
  384.                         <p>48-hour advance booking</p>
  385.                     </li>
  386.                     <li class="item">
  387.                         <img src="{{ asset('assets/img/rental/Requirements03.webp') }}"  width="280" height="186" alt="Security deposit" class="lazy">
  388.                         <p>Security deposit</p>
  389.                     </li>
  390.                     <li class="item">
  391.                         <img src="{{ asset('assets/img/rental/Requirements04.webp') }}"  width="280" height="186" alt="International driving permit<br>(IDP)" class="lazy">
  392.                         <p>International driving permit<br>(IDP)</p>
  393.                     </li>
  394.                     <li class="item">
  395.                         <img src="{{ asset('assets/img/rental/Requirements05.webp') }}"  width="280" height="186"  alt="Insurance included" class="lazy">
  396.                         <p>Insurance included</p>
  397.                     </li>
  398.                     <li class="item">
  399.                         <img src="{{ asset('assets/img/rental/Requirements06.webp') }}"  width="280" height="186" alt="No need to return<br>with a full tank" class="lazy">
  400.                         <p>No need to return<br>with a full tank</p>
  401.                     </li>
  402.                     <li class="item">
  403.                         <img src="{{ asset('assets/img/rental/Requirements07.webp') }}"  width="280" height="186" alt="Highway Free" class="lazy">
  404.                         <p>Highway Free</p>
  405.                     </li>
  406.                     <li class="item">
  407.                         <img src="{{ asset('assets/img/rental/Requirements08.webp') }}"  width="280" height="186" alt="Free delivery to your hotel" class="lazy">
  408.                         <p>Free delivery to your hotel</p>
  409.                     </li>
  410.                     <li class="item">
  411.                         <img src="{{ asset('assets/img/rental/Requirements09.webp') }}"  width="280" height="186" alt="Driving instruction" class="lazy">
  412.                         <p>Driving instruction</p>
  413.                     </li>
  414.                 </ul>
  415.             </div>
  416.         </section>
  417.         <section class="ec-categoryHeadRole">
  418.             <div>
  419.             <h2>Recommended Spots</h2>
  420.             </div>
  421.             <div class="description">
  422. <p>
  423. {#            
  424. Our rentals are flexible, ranging from 3 hours to 48 hours, so if you're unsure which plan to choose, consider our recommended routes. There are various destinations to choose from, and plans can be customized based on time and distance. Tailor your drive to your schedule and create memorable moments.
  425. #}
  426. </p>
  427.             </div>
  428.             <ul class="ec-shelfGrid col_max5 ready">
  429.                 <li class="ec-shelfGrid__item">
  430.                     <div class="ec-productItemRole appearEffect">
  431.                         <div class="ec-productItemRole__image">
  432.                             <img src="{{ asset('assets/img/rental/rental_spot01.webp') }}"  width="280" height="186" alt="Tokyo Road Trip" class="lazy">
  433.                         </div>
  434.                         <div class="ec-productItemRole__content">
  435.                             <h3 class="ec-productItemRole__title"><span>Tokyo City Drive<br><span>Total Distance 40km~</span></span></h3>
  436.                         </div>
  437.                     </div>
  438.                 </li>
  439.                 <li class="ec-shelfGrid__item">
  440.                     <div class="ec-productItemRole appearEffect">
  441.                         <div class="ec-productItemRole__image">
  442.                             <img src="{{ asset('assets/img/rental/rental_spot09.webp') }}"  width="280" height="186" alt="Daikoku PA Tour" class="lazy">
  443.                         </div>
  444.                         <div class="ec-productItemRole__content">
  445.                             <h3 class="ec-productItemRole__title"><span>Daikoku PA Tour<br><span>Total Distance 70km~</span></span></h3>
  446.                         </div>
  447.                     </div>
  448.                 </li>
  449.                 
  450.                 <li class="ec-shelfGrid__item">
  451.                     <div class="ec-productItemRole appearEffect">
  452.                         <div class="ec-productItemRole__image">
  453.                             <img src="{{ asset('assets/img/rental/rental_spot08.webp') }}"  width="280" height="186" alt="Yokohama Road Trip" class="lazy">
  454.                         </div>
  455.                         <div class="ec-productItemRole__content">
  456.                             <h3 class="ec-productItemRole__title"><span>Yokohama Road Trip<br><span>Total Distance 80km~</span></span></h3>
  457.                         </div>
  458.                     </div>
  459.                 </li>
  460.                 <li class="ec-shelfGrid__item">
  461.                     <div class="ec-productItemRole appearEffect">
  462.                         <div class="ec-productItemRole__image">
  463.                             <img src="{{ asset('assets/img/rental/rental_spot10.webp') }}"  width="280" height="186" alt="Kamakura Round Trip" class="lazy">
  464.                         </div>
  465.                         <div class="ec-productItemRole__content">
  466.                             <h3 class="ec-productItemRole__title"><span>Kamakura Round Trip<br><span>Total Distance 100km~</span></span></h3>
  467.                         </div>
  468.                     </div>
  469.                 </li>
  470.                 
  471.                 <li class="ec-shelfGrid__item">
  472.                     <div class="ec-productItemRole appearEffect">
  473.                         <div class="ec-productItemRole__image">
  474.                             <img src="{{ asset('assets/img/rental/rental_spot04.webp') }}"  width="280" height="186" alt="ATAMI Round Trip" class="lazy">
  475.                         </div>
  476.                         <div class="ec-productItemRole__content">
  477.                             <h3 class="ec-productItemRole__title"><span>ATAMI Round Trip<br><span>Total Distance 200km~</span></span></h3>
  478.                         </div>
  479.                     </div>
  480.                 </li>
  481.                 <li class="ec-shelfGrid__item">
  482.                     <div class="ec-productItemRole appearEffect">
  483.                         <div class="ec-productItemRole__image">
  484.                             <img src="{{ asset('assets/img/rental/rental_spot02.webp') }}"  width="280" height="186" alt="HAKONE Round Trip" class="lazy">
  485.                         </div>
  486.                         <div class="ec-productItemRole__content">
  487.                             <h3 class="ec-productItemRole__title"><span>HAKONE Round Trip<br><span>Total Distance 220km~</span></span></h3>
  488.                         </div>
  489.                     </div>
  490.                 </li>
  491.                 
  492.                 <li class="ec-shelfGrid__item">
  493.                     <div class="ec-productItemRole appearEffect">
  494.                         <div class="ec-productItemRole__image">
  495.                             <img src="{{ asset('assets/img/rental/rental_spot03.webp') }}"  width="280" height="186" alt="FUJI Round Trip" class="lazy">
  496.                         </div>
  497.                         <div class="ec-productItemRole__content">
  498.                             <h3 class="ec-productItemRole__title"><span>FUJI Round Trip</span><br><span>Total Distance 200km~</span></h3>
  499.                         </div>
  500.                     </div>
  501.                 </li>
  502.                 <li class="ec-shelfGrid__item">
  503.                     <div class="ec-productItemRole appearEffect">
  504.                         <div class="ec-productItemRole__image">
  505.                             <img src="{{ asset('assets/img/rental/rental_spot05.webp') }}"  width="280" height="186" alt="KAWAGUCHIKO Round Trip" class="lazy">
  506.                         </div>
  507.                         <div class="ec-productItemRole__content">
  508.                             <h3 class="ec-productItemRole__title"><span>KAWAGUCHIKO Round Trip<br><span>Total Distance 220km~</span></span></h3>
  509.                         </div>
  510.                     </div>
  511.                 </li>
  512.                 <li class="ec-shelfGrid__item">
  513.                     <div class="ec-productItemRole appearEffect">
  514.                         <div class="ec-productItemRole__image">
  515.                             <img src="{{ asset('assets/img/rental/rental_spot06.webp') }}"  width="280" height="186" alt="NIKKO Round Trip" class="lazy">
  516.                         </div>
  517.                         <div class="ec-productItemRole__content">
  518.                             <h3 class="ec-productItemRole__title"><span>NIKKO Round Trip<br><span>Total Distance 320km~</span></span></h3>
  519.                         </div>
  520.                     </div>
  521.                 </li>
  522.                 <li class="ec-shelfGrid__item">
  523.                     <div class="ec-productItemRole appearEffect">
  524.                         <div class="ec-productItemRole__image">
  525.                             <img src="{{ asset('assets/img/rental/rental_spot07.webp') }}"  width="280" height="186" alt="KARUIZAWA Round Trip" class="lazy">
  526.                         </div>
  527.                         <div class="ec-productItemRole__content">
  528.                             <h3 class="ec-productItemRole__title"><span>KARUIZAWA Round Trip<br><span>Total Distance 350km~</span></span></h3>
  529.                         </div>
  530.                     </div>
  531.                 </li>
  532.             </ul>
  533.         </section>
  534.         <section id="testimonials" class="ec-categoryHeadRole testimonials">
  535.             <div>
  536.             <h2>Customer Testimonials</h2>
  537.             </div>
  538.             <div class="description">
  539.                 <p>
  540.                 </p>
  541.             </div>
  542.             <ul class="ec-shelfGrid col_max4 ready">
  543.                 <li class="ec-shelfGrid__item">
  544.                     <div class="title">
  545.                         <img src="{{ asset('assets/img/rental/customer-001.webp') }}" alt="Customer Testimonials 1" class="lazy">
  546.                         <p>
  547.                             Car Rental<br class="pcOnly">
  548.                             from United Arab 
  549.                         </p>
  550.                     </div>
  551.                     <div class="description">
  552.                         <p>
  553.                             Thank you alot for the amazing car and experience. It was my pleasure to rent the R34 with your company.I hope we meet again soon.Highly recommend while visiting tokyo!!!
  554.                         </p>
  555.                     </div>
  556.                 </li>
  557.                 <li class="ec-shelfGrid__item">
  558.                     <div class="title">
  559.                         <img src="{{ asset('assets/img/rental/customer-002.webp') }}" alt="Customer Testimonials 2" class="lazy">
  560.                         <p>
  561.                             Car Rental<br class="pcOnly">
  562.                             from Australia 
  563.                         </p>
  564.                     </div>
  565.                     <div class="description">
  566.                         <p>
  567.                         Amazing experience! The staff were so friendly, the car was incredible and the recommended drive was perfect! Mad my husbands birthday so special I highly recommend.
  568.                         </p>
  569.                     </div>
  570.                 </li>
  571.                 <li class="ec-shelfGrid__item">
  572.                     <div class="title">
  573.                         <img src="{{ asset('assets/img/rental/customer-003.webp') }}" alt="Customer Testimonials 3" class="lazy">
  574.                         <p>
  575.                             Car Rental<br class="pcOnly">
  576.                             from United States 
  577.                         </p>
  578.                     </div>
  579.                     <div class="description">
  580.                         <p>
  581.                         We rented an R35 GTR for a few hours to see the Daikoku parking area. It was so much fun. The car was immaculate and an absolute blast to drive......
  582.                         </p>
  583.                     </div>
  584.                 </li>
  585.                 <li class="ec-shelfGrid__item">
  586.                     <div class="title">
  587.                         <img src="{{ asset('assets/img/rental/customer-004.webp') }}" alt="Customer Testimonials 4" class="lazy">
  588.                         <p>
  589.                             Car Rental<br class="pcOnly">
  590.                             from Australia 
  591.                         </p>
  592.                     </div>
  593.                     <div class="description">
  594.                         <p>
  595.                         can’t describe how amazing the experience was. A Wonderful Day has such a curated selection of luxury/ supercars that there’s a choice for everyone.......
  596.                         </p>
  597.                     </div>
  598.                 </li>
  599.             </ul>
  600.             <div class="googlereviews">
  601.                 <p>
  602.                 <a href="https://www.google.com/local/business/11411074037040869232/customers/reviews?knm=0&ih=lu&origin=https%3A%2F%2Fwww.google.com" target="_blank">
  603.                     Google Reviews
  604.                 </a>
  605.                 </p>
  606.             </div>
  607.         </section>
  608. </div>
  609. {% endblock %}