/* ---------------------------------------------------
  :root カスタムプロパティ
--------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Shippori+Mincho&display=swap');

:root {
	--font-jp: "Shippori Mincho", serif;
	--font-en: "EB Garamond", serif;

	--blk: 0, 0, 0;
	--wht: 255, 255, 255;
	--gry: 100, 100, 100;
	--orn: 240, 105, 40;
	--grn: 0, 167, 123;

	--pageTop-right: 1rem;
	--pageTop-bottom: 1rem;
}

/* ---------------------------------------------------
  HTML / BODY 基本
--------------------------------------------------- */
html {
	font-size: 62.5%;
	overflow-x: hidden;
}

body {
	background: rgb(var(--blk));
	color: rgb(var(--wht));
	font-family: var(--font-jp);
	line-height: 1.8;
	font-feature-settings: "palt"1;
	font-weight: 400;
	overflow-x: hidden;
}

:where(input, select, textarea, button, label) {
	font: inherit;
	color: inherit;
	background: none;
	border: none;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

:where(a) {
	color: inherit;
	text-decoration: underline;
	transition: all 0.5s ease 0s;
}

:where(a:hover) {
	text-decoration: none;
	opacity: 0.6;
}