'use client'; import AlisaImage from '@images/company-images/sb_profile_photo_alisa.webp'; import IrieImage from '@images/company-images/sb_profile_photo_irie.webp'; import SundbergImage from '@images/company-images/sb_profile_photo_kou.webp'; import MasaImage from '@images/company-images/sb_profile_photo_masa.webp'; import NishikawaImage from '@images/company-images/sb_profile_photo_nishikawa.webp'; import ShinyaImage from '@images/company-images/sb_profile_photo_shinya.webp'; import TakaImage from '@images/company-images/sb_profile_photo_taka.webp'; import clsx from 'clsx'; import VideoPlayer from 'components/video/video-player'; import { useTranslations } from 'next-intl'; import Image from 'next/image'; import { useEffect, useState } from 'react'; export default function CompanyDetail() { const t = useTranslations('Index'); const [hasWindow, setHasWindow] = useState(false); useEffect(() => { if (typeof window !== 'undefined') { setHasWindow(true); } }, []); return (

{t('company.title')}

{t('company.subtitle001')}

  • {t('company.name.label')}
    {t('company.name.value')}
  • {t('company.director.label')}
    {t('company.director.value')}
  • {t('company.since.label')}
    {t('company.since.value')}
  • {t('company.address.label')}
    {t('company.address.value')}
  • {t('company.telephone.label')}
    {t('company.telephone.value')}

{t('company.subtitle002')}

A picture of Irie Masayuki.
{t('company.irie.japanese')}
{t('company.irie.english')}
{t('company.irie.role')}
A picture of Masataka Nishikawa.
{t('company.nishikawa.japanese')}
{t('company.nishikawa.english')}
{t('company.nishikawa.role')}
A picture of Kou Sundberg.
{t('company.sundberg.japanese')}
{t('company.sundberg.english')}
{t('company.sundberg.role')}
A picture of Masanori Komatsu.
{t('company.masa.japanese')}
{t('company.masa.english')}
{t('company.masa.role')}
A picture of Takatoshi Yamano.
{t('company.yamano.japanese')}
{t('company.yamano.english')}
{t('company.yamano.role')}
A picture of Alisa Yoshida.
{t('company.yoshida.japanese')}
{t('company.yoshida.english')}
{t('company.yoshida.role')}
A picture of Shinya Ikegaya.
{t('company.ikegaya.japanese')}
{t('company.ikegaya.english')}
{t('company.ikegaya.role')}

{t('company.subtitle003')}

{hasWindow && ( )}
); }