diff --git a/CHANGELOG.md b/CHANGELOG.md
index f6e78485c5..72601b7dd2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,7 +4,8 @@ ChangeLog (Release Notes)
 
 unreleased
 ----------
-* New: モバイル版のアクティビティチャートを変更
+* New: モバイル版のユーザーページのアクティビティチャートを変更
+* New: モバイル版のユーザーページに最終ログイン日時を表示するように
 
 2503 (2017/08/30)
 -----------------
diff --git a/locales/en.yml b/locales/en.yml
index 231fc640ec..29a6a764d3 100644
--- a/locales/en.yml
+++ b/locales/en.yml
@@ -480,6 +480,7 @@ mobile:
       recent-posts: "Recent posts"
       images: "Images"
       activity: "Activity"
+      last-used-at: "Latest used at"
 
     mk-user-overview-posts:
       loading: "Loading"
diff --git a/locales/ja.yml b/locales/ja.yml
index 651f529fb8..21a07640d0 100644
--- a/locales/ja.yml
+++ b/locales/ja.yml
@@ -481,6 +481,7 @@ mobile:
       recent-posts: "最近の投稿"
       images: "画像"
       activity: "アクティビティ"
+      last-used-at: "最終ログイン"
 
     mk-user-overview-posts:
       loading: "読み込み中"
diff --git a/src/web/app/mobile/tags/user.tag b/src/web/app/mobile/tags/user.tag
index 3ed186de9e..269acdaf3d 100644
--- a/src/web/app/mobile/tags/user.tag
+++ b/src/web/app/mobile/tags/user.tag
@@ -233,6 +233,7 @@
 			<mk-weekly-activity-chart user={ user }/>
 		</div>
 	</section>
+	<p>%i18n:mobile.tags.mk-user-overview.last-used-at%: <b><mk-time time={ user.last_used_at }/></b></p>
 	<style>
 		:scope
 			display block
@@ -263,6 +264,12 @@
 				> div
 					padding 8px
 
+			> p
+				display block
+				margin 16px
+				text-align center
+				color #cad2da
+
 	</style>
 	<script>
 		this.user = this.opts.user;