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

:root {
	/* 300,400,500 */
	--gothic: "Noto Sans JP", sans-serif;
	/* 500,600,700 */
	--mincho: "Noto Serif JP", serif;
	--futura: "futura-pt", sans-serif;

	--blk: 0, 0, 0;
	--wht: 255, 255, 255;
	--brn: 65, 45, 50;
	--kha: 195, 185, 150;
	--lsb: 160, 179, 190;
	--cam: 199, 149, 105;
	--lav: 198, 174, 188;

	--base: 62, 57, 57;

	--line: 0, 185, 0;

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

/* ---------------------------------------------------
  HTML / BODY 基本
--------------------------------------------------- */
html {
	scroll-behavior: smooth;
	font-size: 62.5%;
}

body {
	background: rgb(var(--wht));
	color: rgb(var(--base));
	font-family: var(--gothic);
	font-optical-sizing: auto;
	line-height: 1.8;
	font-feature-settings: "palt"1;
	letter-spacing: 0.05em;
	font-weight: 400;
}

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