/* 初回設定（下線あり） */
.mod-p a[href="/password_reminder"]::before {
    content: "\Aパスワードを初回設定される方";
    display: block;
    white-space: pre-line;

    font-size: 0.9em;
    color: inherit;   /* ←ここ変更（親リンクと同じ色になる） */
    margin-top: 2px;

    text-decoration: underline;
}

/* 注意書き（下線なし） */
.mod-p a[href="/password_reminder"]::after {
    content:
        "\A\A※キヤノンS&S マイポータルのパスワードではログインできません"
        "\A※初回ログイン時はパスワード設定後、ログインが可能となります";

    display: block;
    white-space: pre-line;

    font-size: 0.7em;
    line-height: 1.5;
    color: inherit;   /* ←ここも変更 */

    text-decoration: none;
}