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

/* Margin reset */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dd,
figure,
blockquote {
	margin: 0;
}

/* List reset */
ul,
ol {
	padding: 0;
	list-style: none;
}

/* Image */
img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Link */
a {
	color: inherit;
	text-decoration: none;
}

/* Form */
input,
button,
textarea,
select {
	font: inherit;
}
button {
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
}
/* Body */
body {
	min-height: 100vh;
	line-height: 1.5;
	text-rendering: optimizeSpeed;
	font-family: 'FOT-筑紫ゴシック Pro B';
}
