/*
 * ブラウザ標準スタイルの最小リセット。
 *
 * Tailwind Preflight に依存せず、テーマ内CSSが前提としている初期状態だけを明示する。
 * デザインやコンポーネント固有の指定はここへ追加しない。
 */

*,
*::before,
*::after {
	box-sizing: border-box;
}

blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
	margin: 0;
}

fieldset {
	padding: 0;
	margin: 0;
	border: 0;
}

legend {
	padding: 0;
}

menu,
ol,
ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

button,
input,
optgroup,
select,
textarea {
	margin: 0;
	font: inherit;
	color: inherit;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
}

button {
	padding: 0;
	background: transparent;
	border: 0;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
	display: block;
	vertical-align: middle;
}

img,
video {
	max-width: 100%;
	height: auto;
}

[hidden] {
	display: none !important;
}