/* ======================================
   Footer - 移管元サイト完全一致
   DevTools解析値に基づく完全再現
   ====================================== */

.site-footer {
	width: 100%;
	max-width: 100%;
	height: auto;
	background-color: #fdf9f3;
	padding: 80px 0;
	margin: 0;
	box-sizing: border-box;
	/* トップ含む全ページ：フッターは共通フォント */
	font-family: "Zen Maru Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
}

.footer-wrapper {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.footer-inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-top {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 48px;
	margin-bottom: 40px;
	width: 100%;
}

.footer-logo-section {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.footer-logo-link {
	display: inline-block;
}

.footer-logo {
	width: 280px;
	height: 65px;
	max-width: 100%;
	object-fit: contain;
}

.footer-instagram {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 32px;
	color: #333333;
	text-decoration: none;
	border: none;
	line-height: 1;
	transition: color 0.2s ease;
}

.footer-instagram .fa-instagram {
	width: 28px;
	height: 32px;
	font-size: 28px;
	line-height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-instagram:hover,
.footer-instagram:focus,
.footer-instagram:active {
	color: #E4405F;
	text-decoration: none;
}

.footer-nav-section {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 80px;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}

.footer-nav-column {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.footer-nav-column-left,
.footer-nav-column-right {
	align-items: flex-start;
}

.footer-nav-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.footer-nav-menu .menu-item {
	margin: 0;
	padding: 0;
}

.footer-nav-link {
	color: #000000;
	text-decoration: none;
	font-family: inherit;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6;
	transition: color 0.2s ease;
	text-align: left;
	display: block;
}

.footer-nav-link:hover {
	color: #1C9B6E;
}

.footer-bottom {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 24px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	width: 100%;
}

.footer-copyright {
	color: #333333;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.6;
	margin: 0;
	text-align: center;
}


/* スクロールトップボタン */
.footer-scroll-top {
	position: fixed;
	bottom: 40px;
	right: 40px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #FFD700;
	border: none;
	color: #ffffff;
	font-size: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s ease, transform 0.2s ease;
	z-index: 10050;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.footer-scroll-top:hover {
	background-color: #FFC700;
	transform: translateY(-2px);
}

/* ======================================
   Responsive
   ====================================== */

@media screen and (max-width: 768px) {
	.site-footer {
		padding: 60px 0;
	}

	.footer-inner {
		padding: 0 24px;
	}

	.footer-top {
		gap: 40px;
		margin-bottom: 32px;
	}

	.footer-nav-section {
		flex-direction: column;
		gap: 32px;
		align-items: flex-start;
	}

	.footer-logo {
		width: 200px;
		height: auto;
		max-height: 48px;
	}

	.footer-scroll-top {
		bottom: 24px;
		right: 24px;
		width: 60px;
		height: 60px;
		font-size: 24px;
	}
}

@media screen and (max-width: 480px) {
	.site-footer {
		padding: 48px 0;
	}

	.footer-inner {
		padding: 0 20px;
	}

	.footer-top {
		gap: 32px;
		margin-bottom: 24px;
	}

	.footer-logo {
		width: 180px;
		height: auto;
		max-height: 44px;
	}

	.footer-nav-link {
		font-size: 14px;
	}

	.footer-copyright {
		font-size: 13px;
	}

	.footer-scroll-top {
		bottom: 20px;
		right: 20px;
		width: 60px;
		height: 60px;
		font-size: 24px;
	}
}

