/* ---------------------------------------------------
  :root カスタムプロパティ
--------------------------------------------------- */
:root {
	--gothic: "Noto Sans JP", sans-serif;
	--base: "Noto Serif JP", serif;
	--title: "Lusitana", serif;
	--shippori: "Shippori Mincho", serif;

	--mincho:
		/* 日本語（明朝体） */
		"Hiragino Mincho ProN", "Hiragino Mincho Pro", "Hiragino Mincho",
		"Yu Mincho", "MS PMincho", "MS Mincho",

		/* 韓国語（明朝風 serif） */
		"Batang", "AppleMyungjo",

		/* 繁体字 */
		"PMingLiU", "MingLiU", "DFKai-SB",

		/* 簡体字 */
		"SimSun", "NSimSun",

		/* 英語等の欧文 serif */
		"Times New Roman", Times, serif;

	--blk: 0, 0, 0;
	--wht: 255, 255, 255;
	--grn: 67, 108, 51;
	--brn: 94, 76, 63;
	--beg: 201, 167, 143;

	--navBg: 229, 216, 190;
	--footerBg: 234, 243, 230;

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

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

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

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