/*
Theme Name: HN Base
Author: peko
Version: 1.0
*/
.site-header {
	background: #fff;
	border-bottom: 1px solid #e5e5e5;
}

.site-header__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-header__logo a {
	display: inline-flex;
	align-items: center;
	color: #222;
	font-weight: 700;
	font-size: 22px;
	text-decoration: none;
}

.site-header__logo img {
	max-height: 56px;
	width: auto;
	display: block;
}

.global-menu,
.sp-menu,
.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.global-menu {
	display: flex;
	align-items: center;
	gap: 28px;
}

.global-menu a {
	color: #222;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
}

.site-header__hamburger {
	display: none;
	width: 42px;
	height: 42px;
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
}

.site-header__hamburger span {
	display: block;
	width: 26px;
	height: 2px;
	background: #222;
	margin: 6px auto;
}

.site-header__sp-menu {
	display: none;
	background: #fff;
	border-top: 1px solid #e5e5e5;
}

.sp-menu a {
	display: block;
	padding: 14px 20px;
	color: #222;
	text-decoration: none;
	border-bottom: 1px solid #eee;
	font-weight: 600;
}

.site-main {
	min-height: 60vh;
}

.site-footer {
	background: #f7f7f7;
	border-top: 1px solid #e5e5e5;
	margin-top: 60px;
}

.site-footer__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.footer-menu li + li {
	margin-top: 10px;
}

.footer-menu a {
	color: #333;
	text-decoration: none;
	font-size: 14px;
}

.site-footer__copy {
	padding: 18px 20px;
	text-align: center;
	font-size: 13px;
	color: #666;
	border-top: 1px solid #e5e5e5;
}

@media (max-width: 767px) {
	.site-header__nav {
		display: none;
	}

	.site-header__hamburger {
		display: block;
	}

	.site-header__sp-menu.is-open {
		display: block;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}