/* 基本フォント設定 */
html {
	scroll-behavior: smooth;
}

/* レスポンシブフォントサイズの設定 */
:root {
	font-size: calc(100vw / 24);
}

@media screen and (min-width: 1024px) {
	/* PCは1440px基準 */
	:root {
		font-size: clamp(14px, calc(1000vw / 1024), 22px);
	}
}
