'use client'; 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'; import CompanyImage001 from './images/irie.webp'; import CompanyImage002 from './images/kou.webp'; import CompanyImage003 from './images/yamano.webp'; 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 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 && ( )}
); }