diff --git a/locales/ja.yml b/locales/ja.yml
index 12cdb29395..df9836ac76 100644
--- a/locales/ja.yml
+++ b/locales/ja.yml
@@ -406,6 +406,7 @@ mobile:
       following: "フォロー"
       followers: "フォロワー"
       posts: "タイムライン"
+      posts-count: "ポスト"
       media: "メディア"
 
     mk-users-list:
diff --git a/src/web/app/desktop/tags/user-profile.tag b/src/web/app/desktop/tags/user-profile.tag
index e6def9ffa8..546ccf7325 100644
--- a/src/web/app/desktop/tags/user-profile.tag
+++ b/src/web/app/desktop/tags/user-profile.tag
@@ -10,7 +10,8 @@
 	<div class="twitter" if={ user.twitter }>
 		<p><i class="fa fa-twitter"></i><a href={ 'https://twitter.com/' + user.twitter.screen_name } target="_blank">@{ user.twitter.screen_name }</a></p>
 	</div>
-	<div class="friends">
+	<div class="status">
+	  <p class="posts-count"><i class="fa fa-angle-right"></i><a>{ user.posts_count }</a><b>ポスト</b></p>
 		<p class="following"><i class="fa fa-angle-right"></i><a onclick={ showFollowing }>{ user.following_count }</a>人を<b>フォロー</b></p>
 		<p class="followers"><i class="fa fa-angle-right"></i><a onclick={ showFollowers }>{ user.followers_count }</a>人の<b>フォロワー</b></p>
 	</div>
@@ -66,7 +67,7 @@
 					> i
 						margin-right 8px
 
-			> .friends
+			> .status
 				padding 16px
 				color #555
 				border-top solid 1px #eee
diff --git a/src/web/app/mobile/tags/user.tag b/src/web/app/mobile/tags/user.tag
index 8f0d21b44e..b91935aa6a 100644
--- a/src/web/app/mobile/tags/user.tag
+++ b/src/web/app/mobile/tags/user.tag
@@ -23,7 +23,11 @@
 						<i class="fa fa-birthday-cake"></i>{ user.profile.birthday.replace('-', '年').replace('-', '月') + '日' } ({ age(user.profile.birthday) }歳)
 					</p>
 				</div>
-				<div class="friends">
+				<div class="status">
+				  <a>
+				    <b>{ user.posts_count }</b>
+						<i>%i18n:mobile.tags.mk-user.posts-count%</i>
+					</a>
 					<a href="{ user.username }/following">
 						<b>{ user.following_count }</b>
 						<i>%i18n:mobile.tags.mk-user.following%</i>
@@ -132,7 +136,7 @@
 								> i
 									margin-right 4px
 
-						> .friends
+						> .status
 							> a
 								color #657786