:root {
	--font-sans: "Noto Sans JP",sans-serif;
}
html {
	overflow-y: scroll;
	background-color: #fff;
	> body {
		margin: 0;
		font-family: var(--font-sans);
		font-feature-settings: "palt" 1;
		line-break: strict;
		background-color: #fff9ef;
		min-height: 100vh;
		scroll-behavior: smooth;
		text-rendering: optimizeSpeed;
	}
}

input#browsercaution[type="checkbox"] {
	display: none;
}
label[for="browsercaution"] {
	position: fixed;
	text-align: center;
	font-size: 1.3rem;
	padding: 20px;
	color: #fff;
	width: 100%;
	box-sizing: border-box;
	opacity: 0.7;
	transition: all 0.5s;
	max-height: 100px;
	overflow: hidden;
	@media print {
		display: none;
	}
	&:hover {
		opacity: 1;
	}
}
label[for="browsercaution"] {
	bottom: 0;
	z-index: 500;
	background-color: #f00;
	cursor: pointer;
}
input#browsercaution[type="checkbox"]:checked + label[for="browsercaution"] {
	padding: 0;
	max-height: 0;
}

section.movepagetop {
	user-select: none;
	position: fixed;
	right: -40px;
	bottom: 10px;
	z-index: 500;
	opacity: 0.4;
	transition: right 0.3s, opacity 0.3s;
	@media print {
		display: none;
	}
	&:hover {
		opacity: 1;
	}
	&.on {
		right: 5px;
	}
	> a {
		> img {
			cursor: pointer;
			@media (width < 900px) {
				width: 25px;
			}
		}
	}
}
