// site-blackhair.jsx — Black-hair feature, light variant // White-based redesign: soft pink-tinted surface with gold rule accents. // Photos remain on warm placeholders; the "BLACK HAIR" word becomes the // dramatic typographic element instead of a dark background. const BH_TECHNIQUES = [ { en: 'Cornrows', jp: 'コーンロウ', desc: '頭皮に沿って編み込む、ブラックヘアーの基礎技術。' }, { en: 'Braids', jp: 'ブレイズ', desc: '長さ・太さ・編み方の組み合わせで多彩な表現を実現。' }, { en: 'Dreads', jp: 'ドレッド', desc: '質感づくりとケア技術。素材選びから装着までを学ぶ。' }, { en: 'Afro', jp: 'アフロ', desc: 'テクスチャーを最大限活かす、立体的なシルエット設計。' }, ]; function BHCard({ t, idx }) { const [hov, setHov] = useState(false); const num = String(idx + 1).padStart(2, '0'); return (
setHov(true)} onMouseLeave={() => setHov(false)} style={{ flex: '0 0 360px', scrollSnapAlign: 'start', position: 'relative', display: 'flex', flexDirection: 'column', }}>
{/* Pink + gold L-bracket */}
BH · {num}
{t.en}
{t.jp}

{t.desc}

); } function BlackHair() { return (
{/* Huge faint italic word — typographic background, not a dark fill */}
Specialty — 06

コーンロウ・ブレイズ・ドレッド・アフロ ——
日本ではまだ専門領域として扱う場所が限られる技術を、
YuHouseでは体系的に学べる環境として整えています。

04 TECHNIQUES
{/* Horizontal scroll row */}
{BH_TECHNIQUES.map((t, i) => )}
→ A specialty rarely taught in Japan.
専門講習を見る
); } window.BlackHair = BlackHair;