diff --git a/gulpfile.ts b/gulpfile.ts
index dd8fc7a63..cb7227213 100644
--- a/gulpfile.ts
+++ b/gulpfile.ts
@@ -210,7 +210,10 @@ gulp.task('build:client:pug', [
 				// 属性の値がデフォルトと同じなら省略する e.g.
 				// <input type="text"> to
 				// <input>
-				removeRedundantAttributes: true
+				removeRedundantAttributes: true,
+
+				// CSSも圧縮する
+				minifyCSS: true
 			}))
 			.pipe(gulp.dest('./built/web/app/'))
 );