/* ---------------------------------------------------
  :root カスタムプロパティ
--------------------------------------------------- */
:root {
	--gothic: "Noto Sans JP", sans-serif;
	--mincho: "Zen Antique", serif;
	/* .zen-antique-regular {
		font-family: "Zen Antique", serif;
		font-weight: 400;
		font-style: normal;
	} */

	--yusei: "Yusei Magic", sans-serif;
	/* .yusei-magic-regular {
		font-family: "Yusei Magic", sans-serif;
		font-weight: 400;
		font-style: normal;
	} */

	--outfit: "Outfit", sans-serif;
	/* .outfit-<uniquifier> {
		font-family: "Outfit", sans-serif;
		font-optical-sizing: auto;
		font-weight: <weight>;
		font-style: normal;
	} */

	--blk: 0, 0, 0;
	--wht: 255, 255, 255;
	--blu: 0, 96, 176;
	--blh: 57, 126, 183;
	--lbl: 3, 147, 225;
	--aqa: 0, 179, 191;
	--aqh: 89, 205, 213;
	--mob: 122, 89, 94;
	--cor: 219, 134, 124;
	--brh: 179, 101, 93;
	--yel: 243, 192, 74;
	--grn: 0, 155, 110;

	--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(--wht));
	color: rgb(var(--blk));
	font-family: var(--gothic);
	font-optical-sizing: auto;
	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;
}