diff --git a/src/web/app/safe.js b/src/web/app/safe.js
index 327a034d1e..b37b89024c 100644
--- a/src/web/app/safe.js
+++ b/src/web/app/safe.js
@@ -1,6 +1,5 @@
 /**
- * 古いブラウザの検知を行う
- * ブートローダーとは隔離されているため互いに影響を及ぼすことはない
+ * ブラウザの検証
  */
 
 // Detect an old browser
@@ -12,3 +11,13 @@ if (!('fetch' in window)) {
 		'Your browser seems outdated. ' +
 		'To run Misskey, please update your browser to latest version or try other browsers.');
 }
+
+// Detect Edge
+if (navigator.userAgent.indexOf('Edge')) {
+	alert(
+		'現在、お使いのブラウザ(Microsoft Edge)ではMisskeyは正しく動作しません。' +
+		'サポートしているブラウザ: Google Chrome, Mozilla Firefox, Apple Safari など' +
+		'\n\n' +
+		'Currently, Misskey cannot run correctly on your browser (Microsoft Edge).' +
+		'Supported browsers: Google Chrome, Mozilla Firefox, Apple Safari, etc');
+}