@charset "utf-8";
/* CSS Document */


/* reset */
/* ---------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
	overflow-y: scroll;
	font-size:62.5%;
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
	margin-block-end: 0;
}
ul[role='list'], ol[role='list'] {
	list-style: none;
	padding:0;
}
body {
	min-height: 100vh;
}
h1, h2, h3, h4, button, input, label {
	line-height: 1.1; 
}
h1, h2, h4, h5, h6{
    font-size: 100%; 
    font-weight: normal;
}
a:not([class]) {
	text-decoration-skip-ink: auto;
	text-decoration:underline;
	color: currentColor;
	color:#000;
}

img, picture {
	max-width: 100%;
	display: block;
	border:0;
}
:target {
	scroll-margin-block: 5ex;
}

/* form reset */
/* ---------------- */
input, button, select, textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font-family: inherit;
	font-size: inherit;
	font: inherit;
	outline: none;
}
textarea {
	resize: vertical;
}
textarea:not([rows]) {
	min-height: 10em;
}
input[type='checkbox'], input[type='radio'] {
	display: none;
}
input[type='submit'], input[type='button'], label, button, select {
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}


