/* ---------------------------------------------------
  :root カスタムプロパティ
--------------------------------------------------- */
:root {
	/* --gothic: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; */
	--mincho: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
	--garamond: "garamond-premier-pro", serif;
	/* 400, 500, 600,i 700 */

	--blk: 0, 0, 0;
	--wht: 255, 255, 255;
	--brn: 52, 27, 20;
	--beg: 240, 238, 232;

	--bg: 55, 37, 30;
	--bg-hover: 179, 150, 131;
	--title: 153, 99, 75;
	--link: 230, 226, 219;
	--link-hover: 152, 134, 116;

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

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

body {
	padding-top: min(8rem, 6.25vw);
	color: rgb(var(--wht));
	font-family: var(--mincho);
	line-height: 1.8;
	font-feature-settings: "palt"1;
	letter-spacing: 0.05em;
	font-weight: 400;
}

.body__bg {
	background: rgb(var(--blk));
	background-image: url(../img/bg.webp);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
}

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

	body {
		padding-top: 0;
	}

	.body__bg {
		background-image: url(../img/bg_sp.webp);
	}
}

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