/* CSP回避用：HTMLにstyle=""を書かないためのユーティリティ */

.is-hidden { display: none !important; }

.u-mt-16 { margin-top: 16px !important; }
.u-mt-4  { margin-top: 4px !important; }

.u-no-underline { text-decoration: none !important; }

/* blog系：初期は隠してJSで表示（FOUC対策） */
body.js-hide { display: none; }
body.js-show { display: block; }