/* global React, Icon */ const { useEffect: useEffect2, useRef: useRef2, useState: useState2 } = React; /* =================== HERO =================== */ function Hero() { const ecgRef = useRef2(null); // Mouse parallax for orbs const wrapRef = useRef2(null); useEffect2(() => { const w = wrapRef.current; if (!w) return; const onMove = (e) => { const rect = w.getBoundingClientRect(); const x = (e.clientX - rect.left) / rect.width - 0.5; const y = (e.clientY - rect.top) / rect.height - 0.5; w.style.setProperty('--mx', x); w.style.setProperty('--my', y); }; w.addEventListener('mousemove', onMove); return () => w.removeEventListener('mousemove', onMove); }, []); return (
{/* Floating orbs */}
{/* Subtle grid */}
Newsweek World’s Best Hospitals 2026 #74

Heart problems
can be silent.
Get checked
before it's too late.

Complete heart screening in Japan at Kameda Medical Center,
a world-class heart institution.

・Complete diagnosis in 1–2 days
・Trusted by international patients across Asia.

Online consultation available We respond 24/7
{/* Right: ECG + image card */}
{/* Exterior — landscape */}
Kameda Medical Center · main campus
KAMEDA MEDICAL CENTER · CHIBA, JAPAN
{/* Cath lab — landscape */}
Cardiac catheterization · advanced imaging
REIMAGINED CARDIOLOGY
{/* Floating stat card removed */} {/* ECG strip removed */}
{/* Bottom marquee strip */}
Trusted by international patients from
{Array(4).fill(['China', 'Vietnam', 'Philippines', 'South Korea', 'USA']).flat().map((c, i) => {c} )}
); } /* =================== TRUST INTRO =================== */ function TrustIntro() { return (
A second opinion that matters

Even when other hospitals
{' '} cannot treat
{' '} our specialists
provide advanced solutions.

Chat on WhatsApp See why patients trust us
); } /* =================== SYMPTOMS =================== */ function Symptoms() { const symptoms = [ { label: 'Chest pain', sub: 'Pressure, tightness, squeezing — even brief episodes matter.' }, { label: 'Shortness of breath', sub: 'Difficulty breathing during light activity, or at rest.' }, { label: 'Irregular heartbeat', sub: 'Fluttering, racing, or skipped beats — recurring or persistent.' }]; return (
01 · Recognize the signs

Do you have
any of these?

Heart conditions can be silent  until they become serious.

{symptoms.map((s, i) =>
0{i + 1}
{s.label}
{s.sub}
)}
); } /* =================== SOLUTION + SCREENING =================== */ function Screening() { return (
02 · Heart Screening Package

Complete heart check
in Japan — 1 to 2 days.

Note

The 1-Day course focuses on initial heart investigation. The 2-Day course includes 24-hour arrhythmia check-up. Both courses include CT scan with contrast. Therefore, patients with worsened kidney function need modification of the course. Please share your kidney function or blood test result if you already know it.

{/* 1-Day */}
Express · Day 01

1-Day Heart Check

01
Included examinations
    {[ 'Blood test including heart failure marker', 'Electrocardiogram (ECG)', 'Cardiac ultrasound (Echocardiography)', 'Coronary and whole-body CT scan with contrast', 'Blood pressure measurement', 'Physical measurement', 'Medical examination by cardiologist']. map((it, i) =>
  • {it}
  • )}
From
¥113,000
{/* 2-Day */}
{/* recommended ribbon */}
Recommended
Comprehensive · Day 01–02

2-Day Heart Check

02
Included examinations
    {[ { t: 'Blood test including heart failure marker' }, { t: 'Electrocardiogram (ECG)' }, { t: 'Cardiac ultrasound (Echocardiography)' }, { t: 'Coronary and whole-body CT scan with contrast' }, { t: '24-hour Patched ECG monitoring', new: true }, { t: 'Blood pressure measurement' }, { t: 'Physical measurement' }, { t: 'Medical examination by cardiologist' }]. map((it, i) =>
  • {it.t}{it.new && added}
  • )}
From ¥160,000
); } Object.assign(window, { Hero, TrustIntro, Symptoms, Screening });