/* ---------------------------------------------------
  :root カスタムプロパティ
--------------------------------------------------- */
@import url("https://use.typekit.net/ylz3isj.css");

:root {
	--gothic: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--mincho: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;

	--ivypresto: "ivypresto-display", serif;

	--blk: 0, 0, 0;
	--wht: 255, 255, 255;
	--ppl: 135, 74, 145;
	--yel: 209, 197, 86;

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

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

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

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

.object {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	z-index: -1;
	content: "";
}