/* 1. 三本線ボタン（画面左上に固定） */
.menu-trigger {
	position: fixed;
	top: 20px;
	left: 20px;
	width: 30px;
	height: 24px;
	cursor: pointer;
	z-index: 1000;
	background: none;
	border: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
/* 三本線の各線のスタイル */
.menu-trigger span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #333;
	transition: all 0.3s;
}
/* クリック時に三本線を「×」に変形 */
.menu-trigger.active span:nth-of-type(1) {
	transform: translateY(10.5px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
	transform: translateY(-10.5px) rotate(45deg);
}

/* 2. メニュー本体（デフォルトは画面左外に隠す） */
.navigation-menu {
	position: fixed;
	top: 0;
	left: -260px; /* メニューの横幅分、左に隠す */
	width: 250px;
	height: 100%;
	background-color: #f7f7f7;
	box-shadow: 2px 0 5px rgba(0,0,0,0.15);
	transition: all 0.3s;
	z-index: 999;
	padding-top: 70px; /* ボタンと重ならないように調整 */
	box-sizing: border-box;
	text-align: left;
}
/* メニュー表示時のクラス */
.navigation-menu.active {
	left: 0;
}
.navigation-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.navigation-menu li a {
	display: block;
	padding: 15px 20px;
	color: #333;
	text-decoration: none;
	border-bottom: 1px solid #ddd;
}
.navigation-menu li a:hover {
	background-color: #eee;
}
