public void Initialize(ItemlistModel itemStoreModel, ItemlistManager checkUtils)
    {
        mModel = itemStoreModel;
        mItemlistCheckUtils = checkUtils;
        List <UIButton> list     = new List <UIButton>();
        ItemlistModel   listItem = checkUtils.GetListItem(57);

        if (listItem != null && 0 < listItem.Count)
        {
            if (4 <= listItem.Count)
            {
                mButton_Plan.isEnabled = true;
                list.Add(mButton_Plan);
            }
            else
            {
                mButton_Plan.isEnabled = false;
            }
            list.Add(mButton_Screw);
            list.Add(mButton_Materials);
            mFocasableButtons = list.ToArray();
            ChangeFocus(mFocasableButtons[0], needSe: false);
        }
        ((Component)mButton_Plan.transform.parent.FindChild("Label_Message")).GetComponent <UILabel>().text = "「資源」や「改修資材」に交換出来ます。\nまた、勲章4個を「改装設計図」1枚に交換可能です。";
    }