:root {
	--color-bg: #f7f7f5;
	--color-surface: #ffffff;
	--color-text: #2b2b2b;
	--color-muted: #6b6b6b;
	--color-accent: #3a6351;
	--color-border: #e3e2de;
	--max-width: 760px;
}

* {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
	background: var(--color-bg);
	color: var(--color-text);
	line-height: 1.8;
}

header.site-header {
	border-bottom: 1px solid var(--color-border);
	background: var(--color-surface);
}

.site-header .inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 1.25rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.35rem 1rem;
}

.site-header .logo {
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--color-text);
	text-decoration: none;
	letter-spacing: 0.02em;
}

.site-header nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 1.25rem;
}

.site-header nav a {
	color: var(--color-muted);
	text-decoration: none;
	font-size: 0.95rem;
}

.site-header nav a:hover {
	color: var(--color-accent);
	text-decoration: underline;
}

main {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 2.5rem 1.5rem 4rem;
}

main.hero {
	padding-top: 4rem;
	padding-bottom: 5rem;
	text-align: center;
}

.hero h1 {
	font-size: 1.9rem;
	margin-bottom: 0.75rem;
}

.hero p.tagline {
	color: var(--color-muted);
	margin-bottom: 2.5rem;
}

.hero .links a {
	display: inline-block;
	margin: 0.35rem 0.5rem;
	padding: 0.7rem 1.4rem;
	border: 1px solid var(--color-accent);
	border-radius: 4px;
	color: var(--color-accent);
	text-decoration: none;
	font-size: 0.95rem;
}

.hero .links a:hover {
	background: var(--color-accent);
	color: #fff;
}

.hero .services {
	margin: 3.5rem 0 0;
	text-align: left;
}

.hero .services h2 {
	text-align: center;
	margin-bottom: 1.5rem;
}

.service-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1rem;
}

.service {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 4px;
	padding: 1.5rem;
}

.service h3 {
	font-size: 1rem;
	margin: 0 0 0.5rem;
	color: var(--color-accent);
}

.service p {
	margin: 0;
	font-size: 0.95rem;
}

h1 {
	font-size: 1.6rem;
	margin-bottom: 1.75rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--color-accent);
}

h2 {
	font-size: 1.15rem;
	margin-top: 2.25rem;
	margin-bottom: 0.75rem;
	color: var(--color-accent);
}

p {
	margin: 0 0 1rem;
}

table.info-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1rem;
	background: var(--color-surface);
}

table.info-table th,
table.info-table td {
	text-align: left;
	padding: 0.85rem 1rem;
	border-bottom: 1px solid var(--color-border);
	vertical-align: top;
}

table.info-table th {
	width: 9em;
	color: var(--color-muted);
	font-weight: 500;
	white-space: nowrap;
}

ul.plain {
	padding-left: 1.4rem;
	margin: 0 0 1rem;
}

ul.plain li {
	margin-bottom: 0.4rem;
}

a {
	color: var(--color-accent);
}

footer.site-footer {
	border-top: 1px solid var(--color-border);
	text-align: center;
	padding: 2rem 1.5rem;
	color: var(--color-muted);
	font-size: 0.85rem;
}

footer.site-footer a {
	color: var(--color-muted);
	margin: 0 0.5rem;
}
