public void OnInitialized()
    {
        SaveDataInformation.InitilizeSystemValue();
        KeyControlInformation.Info    = new KeyControlModel();
        SoundInformation.Sound.Volume = 0.7f;
        MusicInformation.Music.Volume = 0.7f;
        VoiceInformation.Voice.Volume = 0.7f;

        GameObject.Find("SystemText").GetComponent <Text>().text =
            "設定情報が初期化されました。";
        GameObject.Find("PushEnter").GetComponent <Text>().text = string.Format("Push {0}", KeyControlModel.GetName(KeyControlInformation.Info.MenuOk).Trim());
    }