/* ---------------------------------------------------
  :root カスタムプロパティ
--------------------------------------------------- */
:root {
	--gothic: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
	--mincho: "Yu Mincho Medium", "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
	--jost: "Jost", sans-serif;

	--blk: 73, 73, 73;
	--wht: 255, 255, 255;
	--grn: 62, 160, 94;
	--grn-light: 88, 195, 123;
	--blu: 32, 179, 201;
	--blu-light: 67, 192, 211;
	--line: 0, 185, 0;

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

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

@media screen and (max-width: 768px) {
	html {
		scroll-padding-top: 0;
	}
}

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