@charset "UTF-8";

/* Josh's Custom CSS Reset  https://www.joshwcomeau.com/css/custom-css-reset/ */
*,*::before,*::after{box-sizing:border-box}*{margin:0}html,body{height:100%}body{line-height:1.5;-webkit-font-smoothing:antialiased}img,picture,video,canvas,svg{display:block;max-width:100%}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}#root,#__next{isolation:isolate}

/* https://ellyloel.com/ */
* {line-height: calc(.25rem + 1em + .25rem);}

/* my custom */
:root {
/*font-size: var(--16px);*/
	--10px: .625rem;
	--12px: .75rem;
	--13px: .8125rem;
	--14px: .875rem;
	--15px: .9375rem;
	--16px: 1rem;
	--18px: 1.125rem;
	--20px: 1.25rem;
	--22px: 1.375rem;
	--24px: 1.5rem;
	--26px: 1.625rem;
	--28px: 1.75rem;
	--32px: 2rem;
}

html {
	font-family: sans-serif;
}
body {
	color: #252525;
	font-family: YakuHanJP, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, "Hiragino Sans", "Yu Gothic Medium", Meiryo, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
*:focus {
	outline: none;
}

nav ul, nav ol {
	list-style: none;
	padding: 0;
}
ul, ol {
	padding-left: 1.5em
}
p {
	margin-top: 1em;
}
a {
	text-decoration: none;
}
img {
	height: auto;
}
