body {
	margin: 0;
	font-family: Arial, sans-serif;
}

.content {
	margin-top: 60px;
	margin-bottom: 60px; /* フッターの高さ分の余白を確保 */
}


/* navbar */
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #333;
	padding: 0.5rem;
	color: white;

	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999; /* 他の要素より上に表示する */
}

.navbar li:last-child {
	margin-right: 40px;
}


.image-link {
	display: flex;
	align-items: center; /* 垂直方向中央揃え */
	text-decoration: none; /* アンダーライン消すなら */
	gap: 8px; /* 画像と文字の間にスペース */
	color: white;
}

.image-link img {
	height: 40px; /* 高さはお好みで */
}


.logo {
	font-size: 1.5rem;
	font-weight: bold;
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 1rem;
}

.nav-links li a {
	color: white;
	text-decoration: none;
	padding: 0.5rem;
	transition: background 0.3s;
}

.nav-links li a:hover {
	background-color: #555;
	border-radius: 5px;
}

.toggle {
	display: none;
	font-size: 1.5rem;
	background: none;
	border: none;
	color: white;
	cursor: pointer;
}


/* footer */
.site-footer {
	background-color: #333;   /* フッターの背景色 */
	color: white;             /* テキストの色 */
	text-align: center;       /* テキストを中央揃え */
	padding: 10px 0;          /* 上下の余白 */
	position: fixed;          /* 固定位置 */
	bottom: 0;                /* ウィンドウの下部に配置 */
	width: 100%;              /* フッターの幅を画面いっぱいに */
	height: 30px; /* フッターの高さ */
}


/* レスポンシブ */
@media (max-width: 768px) {
	.toggle {
		display: block;
	}

	.nav-links {
		flex-direction: column;
		width: 100%;
		display: none;
		background-color: #333;
	}

	.nav-links.active {
		display: flex;
	}

	.nav-links li {
		text-align: center;
		padding: 0.5rem 0;
	}
  
	.navbar li:last-child {
		margin-right: 0px;
	}
}
