/* ==================================================
   base.css
================================================== */

:root {
	--bw-max-width: 1100px;
	--color-text: #111;
	--color-muted: #6E6E6E;
	--color-yellow: #ffef2b;
}

/* Base */

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
		"Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
		"Yu Gothic", Meiryo, sans-serif;
	color: var(--color-text);
	background: #fff;
	line-height: 1.6;
}

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

a {
	color: inherit;
	text-decoration: none;
}

/* Container */

.bw-container {
	max-width: var(--bw-max-width);
	margin: 0 auto;
}

/* Button */

.bw-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	font-weight: 700;
	background: var(--color-yellow);
	color: var(--color-muted);
}

/* Footer */

.bw-footer {
	height: 150px;
	background: #efefef;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bw-footer__inner {
	text-align: center;
}

.bw-footer__company {
	font-size: 24px;
	font-weight: 700;
	margin: 0;
}

.bw-footer__copyright {
	margin: 0;
	font-size: 16px;
}
