@charset "utf-8";

/*~~*/

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	vertical-align: top;
}

html {
	scroll-behavior: smooth;
}

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

a {
	color: #000;
	text-decoration: none;
}

a:hover {
	cursor: pointer;
}

ul,
ol {
	list-style: none;
}

img,
picture {
	max-width: 100%;
	border: 0;
}

input,
button,
textarea,
select {
	font: inherit;
}

/*~~*/