ADVERTISEMENT

The Hino Plant Tour

Published Apr 12, 2018 04:05 pm
Text and photos by Chris Van Hoven 1 Hino Motors Philippines (HMP) has been engaged in the assembly and distribution of trucks and buses in the Philippines for more than 40 years now, earning a reputation for providing safe, durable and reliable vehicles that meet the transport needs of small and medium enterprises to big corporations. When the opportunity came to take a tour of their manufacturing plant in Calamba, Laguna, we were able to observe how Hino produces their new Euro-4 compliant trucks and buses while keeping safety as a top priority. The 5S principle The 5S campaign is Hino’s safety program that emphasizes certain standards and a level of discipline among all employees. There’s seiri, or sort tools and items; seiton, or straighten and arrange items for easier access and use; seiso, or shine to ensure regular cleaning of work areas and equipment; seiketsu, or standardize work and processes; and shitsuke, or sustain to continue improving clean and safe practices every day. The company-wide program hopes to make safety a way of life in Hino plants and among employees, and it was highly apparent that every employee working at the Hino plant were well versed with the system. We were able to observe workers routinely going through certain safety procedures no matter how mundane they would seem, such as looking (and pointing) at both directions before crossing a path, even though it would be much faster to cross without looking. Hino believes that increasing awareness on the importance of safety practices and encouraging the adoption of safety protocols benefits not only the employees, but the stakeholders as well. 2 Full safety gear Before entering the plant, we were all made to wear a full set of safety gear which included goggles, gloves, arm sleeves, and a hard cap. Employees working at the plant also get specialized shoes and ear muffs for added protection. Each worker is responsible for the gear issued to them, and is required to wear complete gear while at the production lines. Anyone found not wearing the complete gear is asked to leave the production line and is sent to the new Professional Safety Health Environment department, which coordinates with Human Resources in studying cases and implementing corresponding sanctions. It’s a rigid program that’s directly patterned from Hino Motors, Ltd. In Japan, and is instrumental in ensuring that each worker is protected from accidents and mishaps as much as possible. Strict regulations Besides providing personal safety equipment, Hino implements strict safety regulations in the production lines. As an example, employees working higher than two meters from the ground must use a harness, while those who handle lifting can only lift up to 20kg. Machines, factory equipment and vehicles have their own protocols as well. Revolving lamps and sound alerts warn workers about moving machines. Wheeled trucks are secured by locks, with drivers conducting comprehensive safety checks before moving the vehicles to alert anyone working underneath or nearby. 3 Truck driver for a day After the plant tour, we were given the chance to test drive some of Hino’s latest Euro-4 bus and truck models, which included cab and chassis trucks, tractor heads, wing vans, the Cerito and Grandeza buses, and the modern Hino jeepneys. As we progressed from the smallest container van to largest tractor head, we noticed that there was hardly any adjustment in moving up in size, besides the added length. The controls remained easily within reach, and the trucks were surprisingly easy to steer and control, while maintaining a consistently comfortable ride throughout the experience. The new Euro 4-powered vehicles from Hino promise improved engine durability at greater cost efficiency and less carbon footprint. HMP Chairman, Vicente T. Mills, Jr., acknowledges this new milestone as a reflection of Hino’s continuous support for the Filipino community. “Hino is grateful for this opportunity to offer an eco-friendly yet innovative transport solution that further expands the Hino range of quality of trucks and buses. We will continue to offer quality trucks and buses that meet the different needs of Filipinos, investing in new technologies that do not harm the environment,” he said.
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.