/*!-- Reset
- ブラウザのリセットを定義
--------------------------------------------------!*/
*, *::before, *::after {
	box-sizing: border-box;
}
html {
	font-size: 100%;
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}
body {
	margin: 0;
	font-family: var(--font-sans);
	font-feature-settings: "palt";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.7;
	letter-spacing: 0.02em;
}
h1, h2, h3, h4, p, figure, blockquote, dl, dd {
	margin: 0;
}
h1, h2, h3, h4, h5 {
	font-family: var(--font-serif);
}
ul, ol {
	list-style: none;
	padding: 0;
	margin: 0;
}
a:not([class]) {
	color: currentColor;
	text-decoration-skip-ink: auto;
}
img, picture {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	line-height: 0;
}
input, button, textarea, select {
	font: inherit;
}
button {
	cursor: pointer;
}
textarea:not([rows]) {
	min-height: 10rem;
}
:target {
	scroll-margin-block: 5rem;
}
hr {
	height: 0;
	border: 0;
	margin: 0;
	padding: 0;
}
:focus-visible {
	outline: 0.1875rem solid rgba(31, 51, 68, 0.28);
	outline-offset: 0.1875rem;
}