/* ---------------------------------------------------
  :root カスタムプロパティ
--------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap');

:root {
	--gothic: "Noto Sans JP", sans-serif;
	--zain: "Zain", sans-serif;

	--blk: 0, 0, 0;
	--wht: 255, 255, 255;
	--gry: 102, 102, 102;
	--orn: 230, 108, 44;
	--beg: 252, 237, 230;
	--yel: 219, 180, 0;
	--lmn: 255, 218, 42;
	--light-lmn: 255, 251, 234;
	--nvy: 58, 75, 146;
	--blu: 49, 155, 173;
	--aqu: 235, 237, 244;

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

/* ---------------------------------------------------
  HTML / BODY 基本
--------------------------------------------------- */
html {
	scroll-behavior: smooth;
	scroll-padding-top: min(7.7rem, 6.016vw);
	font-size: 62.5%;
}

body {
	background: rgb(var(--wht));
	color: rgb(var(--blk));
	font-family: var(--gothic);
	line-height: 1.8;
	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;
}