$(document).ready(function () {
  $('.inline-i').mouseenter(function () {
    $(this).find('.notice-popup').show();
  });
  $('.inline-i').mouseleave(function () {
    $(this).find('.notice-popup').hide();
  });
});
