<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/** ***************************************************************************
 * noscript エラーメッセージ
 * ************************************************************************* */

noscript {
  width: fit-content;
	margin: 2em auto;
	padding: 2em;
	border-radius: 4px;
	border: solid 3px #f00;
	display: block;
}

/** ***************************************************************************
 * エラーメッセージ
 * ************************************************************************* */

error {
	margin: 2em auto;
	padding: 2em;
  text-align: center;
	border-radius: 4px;
	border: solid 3px #f00;
	display: block;
}

error ul,
error ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

error ul {
  width: fit-content;
	margin: 1.5em auto 0;
  text-align: left;
}

error ul li ~ li {
  margin-top: 0.5em;
}
</pre></body></html>