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

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

	--blk: 35, 24, 21;
	--wht: 255, 255, 255;
	--sky: 26, 190, 255;
	--blu: 111, 169, 218;

	--hokkaido: 238, 159, 128;
	--iwate: 232, 192, 41;
	--niigata: 154, 140, 213;
	--nagano: 98, 199, 154;
	--gunma: 123, 200, 209;

	--spgr: 157, 143, 80;

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

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

body {
	background: rgb(var(--wht));
	padding-top: min(11rem, 8.053vw);
	color: rgb(var(--blk));
	font-family: var(--gothic);
	line-height: 1.8;
	font-feature-settings: "palt"1;
	letter-spacing: 0.05em;
	font-weight: 500;
}

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

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