/* base.css：タイポの基準（デザイン合わせの根っこ） */
html{ font-size: 16px; font-family: "Noto Sans JP", sans-serif;}

body{
	font-size: 16px;
	line-height: 1.7;
	letter-spacing: 0.02em;
}

:root{
	--max: 1048px;
	--gutter: 15px;

	--c-text: #1b1b1b;
	--c-muted: #666;
	--c-white: #fff;
	--c-bg: #ffffff;
	--c-light: #e8ecf2;
	--c-beige: #fbf7ef;
	--c-light-green: #f3fdf5;
	--c-green: #23ac38;
	--c-green-weak: #e7f5ea;
	--c-green-text: #23ac38;
	--c-primary: #e46b66; /* 赤系CTA */

	--radius: 12px;

	--s-1: 8px;
	--s-2: 12px;
	--s-3: 16px;
	--s-4: 24px;
	--s-5: 32px;
	--s-6: 48px;
	--s-7: 100px;	

	--shadow: 0 6px 18px rgba(0,0,0,.06);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
	margin:0;
	color:var(--c-text);
	background:var(--c-bg);
	font-family: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	line-height:1.7;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
p,h1,h2,h3{ margin:0; }
ol{ margin:0; padding-left:1.25em; }

/* base.css：PCの基準タイポを底上げ（理想デザイン寄せ） */
@media (min-width: 769px){
	body{
		font-size: 17px;			/* 16→17（全体を1段上げる） */
		line-height: 1.75;
	}
}