// Pricing function Pricing() { const [cycle, setCycle] = React.useState('month2'); const plans = [ { id:'light', name:'Light', en:'月2回プラン', price:{ month2:'11,000', month4:'—' }, per:'¥/月', tax:'税込', bullets:['50分 × 月2回','予約キャンセル無料(前日まで)','レッスン後の練習メモ共有','発表会参加 可'], best:false, ctaNote:'まず始めてみる' }, { id:'standard', name:'Standard', en:'月4回プラン', price:{ month2:'—', month4:'19,800' }, per:'¥/月', tax:'税込', bullets:['50分 × 月4回','予約キャンセル無料(前日まで)','個別練習メニュー作成','録音チェック 月1回','発表会参加 + 優先枠'], best:true, ctaNote:'一番人気' }, { id:'pro', name:'Pro Hobby', en:'月4回 + DTMプラン', price:{ month2:'—', month4:'28,600' }, per:'¥/月', tax:'税込', bullets:['ボイトレ 50分 × 月4回','DTM 60分 × 月2回','作品制作ロードマップ作成','録音チェック 月2回','作品リリースサポート','発表会 + 発表動画制作'], best:false, ctaNote:'本気で残したい人に' }, ]; return (
#05 料金プラン

迷わない、
シンプルな3プラン。

入会金は¥11,000(体験当日入会で¥0)。追加費用は発生しません。月途中からの入会は日割り計算。月単位の変更・休会もOK。

{/* toggle */}
{[ { id:'month2', label:'月2回' }, { id:'month4', label:'月4回〜' }, ].map(t => ( ))}
{plans.map(p => { const price = p.price[cycle]; const disabled = price === '—'; return (
{p.best && (
{p.ctaNote}
)}
{p.en}
{p.name}
¥ {disabled ? '—' : price} / 月 ({p.tax})
    {p.bullets.map(b => (
  • {b}
  • ))}
{p.name}で体験する
); })}
{[ { k:'入会金', v:'¥11,000', n:'体験当日入会で無料' }, { k:'事務手数料', v:'¥0', n:'初月以降も発生しません' }, { k:'契約期間', v:'月単位', n:'休会・退会いつでも' }, { k:'お支払い', v:'カード / 口座', n:'手数料なし' }, ].map(f => (
{f.k}
{f.v}
{f.n}
))}
); } window.Pricing = Pricing;