/* global React, Icon */ const { useEffect: useEffect3, useRef: useRef3, useState: useState3 } = React; /* =================== WHY KAMEDA =================== */ function WhyKameda() { const facts = [ { n: '01', big: '74', bigPrefix: '#', bigSuffix: ' globally', title: 'Ranked 4th in Japan', sub: 'Newsweek\u2019s World\u2019s Best Hospitals 2026 ranked Kameda 74th globally and 4th in Japan \u2014 a recognition of long-term clinical excellence.', chips: [ { k: 'Global', v: '#74' }, { k: 'Japan', v: '#4' }, { k: 'Source', v: 'Newsweek 2026' } ] }, { n: '02', big: '4,015', bigSuffix: ' full-time staff', title: 'A complete care team', sub: 'A comprehensive general hospital covering every major discipline \u2014 from internal medicine and surgery to emergency, oncology and rehabilitation.', chips: [ { k: 'Physicians & Dentists', v: '595' }, { k: 'Nurses', v: '1,326' }, { k: 'Full-time staff', v: '4,015' } ] }]; return (
03 · Why Kameda

Many patients come to
{' '} us
{' '} when treatment is
{' '} difficult elsewhere.

{facts.map((f, i) => (
{f.n} · {i === 0 ? 'Ranking' : 'Capacity'}
{i === 0 && ( Newsweek 2026 )}
{f.bigPrefix && {f.bigPrefix}} {f.big}
{f.bigSuffix.trim()}
{f.title}

{f.sub}

{f.chips.map((c, j) => (
{c.k}
{c.v}
))}
))}
{/* Secondary row: JCI + 24/7 */}
{[ { num: 'JCI', label: 'Accredited', sub: 'Joint Commission International \u2014 the gold standard for global healthcare quality.' }, { num: '24/7', label: 'Care', sub: 'Always-on multilingual patient support \u2014 reach a coordinator anytime, in any timezone.' } ].map((s, i) => (
{s.num}
{s.label}

{s.sub}

))}
Get Your Heart Check Plan How it works
); } /* =================== DOCTORS =================== */ function Doctors() { const docs = [ { name: 'Dr. Akira Mizukami', dept: 'Speciality: Cardiology, Arrhythmia', img: 'assets/doctors/mizukami.jpg', points: [ 'Advanced expertise in TAVI, PCI, and catheter ablation.', 'Full-suite electrophysiology lab with pulsed-field, radiofrequency, and cryoablation.', 'High-precision cardiac imaging with MRI / CT / Echo.', 'Multidisciplinary cardiac care with ICU and rehabilitation integration.' ] }, { name: 'Dr. Daisuke Ueshima', dept: 'Speciality: Interventional Cardiology', img: 'assets/doctors/ueshima.jpg' }, { name: 'Dr. Maki Ono', dept: 'Speciality: Cardiology, Arrhythmia', img: 'assets/doctors/ono.jpg' }]; return (
04 · Top cardiologists

Specialists who have
seen everything.

{docs.map((d, i) =>
{d.name} e.currentTarget.style.transform = 'scale(1.04)'} onMouseLeave={(e) => e.currentTarget.style.transform = 'scale(1)'} />
0{i + 1} · Cardiologist
{d.name}
{d.dept}
{d.points && (
    {d.points.map((p, k) => (
  • {p}
  • ))}
)}
)}
); } /* =================== SUPPORT =================== */ function Support() { return (
05 · Patient support

We speak your
language — around the clock.

English-speaking coordinators support you from first message to discharge. Indonesian patients are supported via our medical translation devices.

{[ { icon: , label: '24/7 patient support', sub: 'Reach a coordinator any time, any timezone.' }, { icon: , label: 'WhatsApp first-line', sub: 'Most patients prefer it — so do we.' }, { icon: , label: 'English-speaking team', sub: 'No translation app required.' }, { icon: , label: 'Indonesian via translation device', sub: 'On-site medical translation.' }]. map((b, i) =>
{b.icon}
{b.label}
{b.sub}
)}
); } /* =================== PROCESS =================== */ function Process() { const steps = [ { n: '01', t: 'Contact us', d: 'Reach out via WhatsApp or our online form. No commitment.' }, { n: '02', t: 'Share your info', d: 'Symptoms, medical history, prior reports. We review confidentially.' }, { n: '03', t: 'Consultation', d: 'Consult with our coordinator.' }, { n: '04', t: 'Get your plan', d: 'A personalized screening plan with cost estimate and timeline.' }, { n: '05', t: 'Visit Japan', d: 'Arrive, screen, get answers — typically in 1–2 days.' }]; return (
06 · How it works

From first message
to final answer.

{steps.map((s, i) =>
{s.n}
{s.t}
{s.d}
)}
); } /* =================== STAY =================== */ function Stay() { const spots = [ { name: 'Kamogawa Sea World', label: '[marine park]', d: 'Iconic marine park with dolphin and orca shows — perfect for families.' }, { name: 'Maehara Beach', label: '[white-sand beach]', d: 'Scenic white-sand beach with calm waters, ideal for swimming and sunset views.' }, { name: 'Oyama Senmaida', label: '[terraced rice paddies]', d: 'Stunning terraced rice paddies changing with the seasons — a designated cultural landscape.' }, { name: 'Kamogawa SEASIDE BASE', label: '[beachfront cafe complex]', d: 'A beachfront complex with seafood BBQ, craft beer, baked goods and an oceanfront terrace — open all day, pet-friendly.' }, ]; return (
{/* Left: title, intro + numbered list */}
07 · Experience Japan

Make your visit more than a check-up — experience Japan.

From strolling along the serene Kamogawa Coastal Promenade, to enjoying the freshest local seafood and exploring lively morning markets, Kamogawa offers a perfect blend of oceanfront leisure and cultural charm. Just around two hours from Tokyo by train, this coastal city combines warm hospitality, scenic landscapes, and a welcoming atmosphere — making it an ideal getaway alongside world-class care at Kameda Medical Center.

{spots.map((s, i) => (
0{i + 1}
{s.name}

{s.d}

))}
{/* Right: two photos */}
{[ { src: 'assets/stay/maehara-beach.jpg', name: 'Maehara Beach' }, { src: 'assets/stay/seaside.png', name: 'Kamogawa SEASIDE BASE' }, ].map((im, i) => (
{im.name} e.currentTarget.style.transform = 'scale(1.05)'} onMouseLeave={(e) => e.currentTarget.style.transform = 'scale(1)'} />
{im.name}
))}
); } /* =================== FINAL CTA + FOOTER =================== */ function FinalCTA() { return (
Get started in 30 seconds

Your heart is worth
a second look.

We respond within 30 minutes — even at midnight, even on holidays.

); } function Footer() { return ( ); } Object.assign(window, { WhyKameda, Doctors, Support, Process, Stay, FinalCTA, Footer });