/* ==================================================
  リセット：ボックスモデル
================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* ==================================================
  リセット：ドキュメント
================================================== */
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
}

/* ==================================================
  リセット：メディア
================================================== */
img,
picture,
svg,
video,
canvas {
	display: block;
	max-width: 100%;
}

/* ==================================================
  リセット：フォーム
================================================== */
button,
input,
textarea,
select {
	font: inherit;
}

button {
	cursor: pointer;
}

/* ==================================================
  リセット：リンク・リスト・テーブル
================================================== */
a {
	color: inherit;
	text-decoration: none;
}

ul,
ol {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}