/* box model */
*,
*::before,
*::after {
	box-sizing: border-box;
}

/* margin reset */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dd,
figure {
	margin: 0;
}

/* list */
ul,
ol {
	padding: 0;
	list-style: none;
}

/* body */
body {
	line-height: 1.6;
}

/* media */
img,
picture,
video,
canvas {
	max-width: 100%;
	display: block;
}

/* form */
input,
button,
textarea,
select {
	font: inherit;
}
