/* ---------------------------------------------------
  :root カスタムプロパティ
--------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho:wght@400;500;600&display=swap');

:root {
	--gothic: "Noto Sans JP", sans-serif;
	--mincho: "Zen Old Mincho", serif;

	--blk: 0, 0, 0;
	--wht: 255, 255, 255;
	--gra: 244, 244, 238;
	--gld: 153, 133, 66;

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

/* ---------------------------------------------------
  HTML / BODY 基本
--------------------------------------------------- */
html {
	scroll-behavior: smooth;
	font-size: 62.5%;
}

body {
	background: rgb(var(--wht));
	color: rgb(var(--blk));
	font-family: var(--mincho);
	line-height: 1.8;
	font-feature-settings: "palt"1;
	letter-spacing: 0.05em;
	font-weight: 400;
}

: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;
}