private void RenewalUI_StageButton()
 {
     if (MainController.Instance.UserInfo.GetUserIsStageOpen(m_StageKind) == true &&
         MainController.Instance.UserInfo.GetUserStageBossShow(m_StageKind) == true)
     {
         Btn_Stage.FineButNotUsedButton();
     }
     else if (MainController.Instance.UserInfo.GetUserIsStageOpen(m_StageKind) == true &&
              MainController.Instance.UserInfo.GetUserStageBossShow(m_StageKind) == false)
     {
         Btn_Stage.UseableButton();
     }
     else if (MainController.Instance.UserInfo.GetUserIsStageOpen(m_StageKind) == false &&
              MainController.Instance.UserInfo.GetUserStageBossShow(m_StageKind) == false)
     {
         Btn_Stage.DisableButton();
     }
 }