<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*画像サイズ*/
.normal img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
@media only screen and (max-width: 480px) {
.normal img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
}
</pre></body></html>