/* Aifit — mid parts: JourneySection, SupportSection */ (function () { const Icon = window.Icon; function JourneySection({ cards, accents, onSelect }) { return (
Aifit Life Journey

人生の節目に、
いつでも寄り添う
存在でありたい。

迷いや不安があるとき、まずは Aifit にご相談ください。経験豊富なスタッフが、最適なご提案をいたします。

Aifitの想いを見る
{cards.map((c, i) => (
{c.tag}

{c.title}

{c.desc}

詳しく見る
))}
); } function SupportSection({ cards, halls, contact }) { const [hall, setHall] = React.useState(""); const go = () => { if (hall) window.location.href = hall; }; return (

Aifitの
安心サポート

すべての不安を、
ひとつの安心へ。

詳しく見る
{cards.map((c, i) => (

{c.title}

{c.desc}

))}

会場を探す

東広島・呉・三原の会場から、お近くをお選びいただけます。

会場一覧・アクセスを見る
); } Object.assign(window, { JourneySection, SupportSection }); })();