/* ----------------------------------------------
  ナビゲーション
---------------------------------------------- */
.logo img { /*ロゴマーク*/
	width: 250px;
	height: auto;
	margin: 1rem 2rem 0 2rem;
}
.nav-wrap {
	position: fixed;
	display: flex; /* ←これ超大事！ */
	box-sizing: border-box;
	width: 100%;
	height: 100px; /* ナビの高さ（必要なら調整） */
	padding: 0 2rem;
	font-size: 1rem;
	line-height: 1.3rem;
	top: 0;
	left: 0;
	z-index: 1000;
	justify-content: space-between; /* ロゴとナビを左右にきれいに */
	transition: all 0.3s ease;
	align-items: center;
}
.nav-wrap.scrolled {
	top: 0; /* スクロールしたら上にくっつく！ */
	height: 60px;
	font-size: 0.9rem;
	background: #f1d3cc;
}
.nav-wrap.scrolled .logo img {
	width: 150px;
	margin-top: 0.5rem;
}
.main-nav{
	margin-top: 0.5rem;
}
.nav-list {
	display: flex;
	justify-content: space-between;
	align-items: center; /* ← 垂直方向の中央揃え */
	gap: 0;
	list-style: none;
	padding: 0;
	margin: 0;
}
.nav-list li {
	text-align: center;
}
.nav-list a {
	display: inline-block; /* ここをblock→inline-blockに直す！ */
	padding: 0.3rem 0.7rem;
	text-decoration: none;
	color: #666;
	position: relative; /* ここもnav-list aに持ってきてもOK！ */
	overflow: hidden;
}
.nav-list .nav-sns a {
	padding: 0.3rem 0.5rem;
}
/* ハンバーガーメニュー */
.hamburger {
	display: none;
	cursor: pointer;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 22px;
	z-index: 1101;
}
.hamburger span {
	display: block;
	height: 3px;
	background: #666;
	border-radius: 2px;
	transition: all 0.3s;
}
/* ハンバーガー開閉アニメ */
.hamburger.active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

/* モバイル用ナビスタイル */
@media screen and (max-width: 768px) {
	.nav-wrap {
		padding: 0 1rem; /* スマホでは左右余白を少なめに */
		height: 80px; /* ナビの高さ（必要なら調整） */
	}
	.logo img {
		width: 200px; /* 小さめに調整 */
		margin: 0.5rem 0 0 0.5rem;
	}
	.hamburger {
		display: flex;
	}
	.main-nav {
		position: fixed;
		top: 0;
		right: 0;
		width: 75%;
		max-width: 300px;
		height: 100vh;
		margin-top: 1.2rem;
		background: #fff;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		flex-direction: column;
		align-items: center;
		padding-top: 100px;
		z-index: 1100;
		box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
	}
	.main-nav.open {
		transform: translateX(0);
	}
	.nav-list {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}
	.nav-sns-group {
		display: flex;
		justify-content: center;
		gap: 0.5rem;
		margin-top: 1rem;
	}
	.nav-sns-group a img {
		width: 30px;
		height: 30px;
	}
}