/*
 * Noside Base Theme - layout.css
 * サイト共通の枠(ヘッダー / フッター)。全ページ共通の最小chrome。
 * LP白紙テンプレートもこのヘッダー/フッターを共有する。
 * 装飾は足さない。罫線は意味的境界の hairline のみ。
 */

.site-header {
	border-bottom: 1px solid var(--wp--preset--color--line);
}

.site-header__inner,
.site-footer__inner {
	max-width: 1100px;
	margin-inline: auto;
	padding: 16px 20px;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.site-branding {
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1.2;
}

.site-branding a {
	text-decoration: none;
}

.site-branding img {
	max-height: 44px;
	width: auto;
}

.site-nav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 20px;
	font-size: 0.95rem;
}

.site-nav__list a {
	text-decoration: none;
}

.site-nav__list a:hover {
	text-decoration: underline;
}

.site-footer {
	margin-top: 3rem;
	border-top: 1px solid var(--wp--preset--color--line);
}

.site-footer__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 24px;
}

.site-footer-nav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 18px;
	font-size: 0.9rem;
}

.site-footer-nav__list a {
	text-decoration: none;
}

.site-footer__copy {
	font-size: 0.85rem;
	color: var(--wp--preset--color--sub);
}

@media (max-width: 600px) {
	.site-header__inner {
		flex-wrap: wrap;
		gap: 10px;
	}
}
