:root {
	--color-text: #212121;
	--color-primary: #149833;
	--color-blue: #2963e3;
	--color-red: #e94152;
	--color-yellow: #f3d12e;
	--color-muted: #c6c6c6;
	--color-surface: #f7f7f7;
	--mobile-canvas: 402px;
	--mobile-content: 372px;
	--desktop-breakpoint: 1024px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--color-text);
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.3;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

h1,
h2,
h3,
h4,
p {
	margin: 0;
}

.p-front-page {
	overflow: hidden;
}

.l-mobile-section {
	width: 100%;
	padding: 40px 15px;
	text-align: center;
}

.l-default-page {
	width: min(100% - 32px, 960px);
	margin-inline: auto;
	padding-block: 48px;
}

@media (min-width: 1024px) {
	.p-front-page > section:not(.p-hero) {
		width: var(--mobile-canvas);
		max-width: 100%;
		margin-inline: auto;
		zoom: 1.2;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

