/*
config
*/
:root {
	--font-sans: "Noto Sans JP",sans-serif;
	--font-serif: "Noto Serif JP",serif;

	--color-accent: #a62126;		/*赤*/
}
/*
html
*/
html {
	overflow-y: scroll;
	overflow-x: hidden;
	background-color: #fff;
	> body {
		margin: 0;
		font-family: var(--font-sans);
		font-feature-settings: "palt" 1;
		line-break: strict;
		overflow-x: hidden;
		background-color: #fff;
		min-height: 100vh;
		scroll-behavior: smooth;
		text-rendering: optimizeSpeed;
	}
}
/*
footer
*/
footer.copyright {
	padding: 20px 5% 20px 5%;
	background-color: #683464;
	> div {
		max-width: 1200px;
		margin-inline: auto;
		text-align: center;
		> small {
			display: inline-block;
			font-size: 0.9em;
			line-height: 1.3;
			color: rgba(255,255,255,0.5);
		}
	}
}
