/* ---------------------------------------------------
  :root カスタムプロパティ
--------------------------------------------------- */
:root {
	--gothic: "Noto Sans JP", sans-serif;
	--mincho: "Noto Serif JP", serif;
	--average: "Average", serif;

	--blk: 0, 0, 0;
	--wht: 255, 255, 255;
	--nvy: 7, 5, 42;
	--ppl: 104, 101, 178;

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

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

/* @media screen and (max-width: 768px) {
	html {
		scroll-padding-top: 21.33333vw;
	}
} */

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

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