/* ==========================================================================
   footer.css — サイトフッター + ページトップボタン
   ========================================================================== */

/* ---------- フッター ---------- */
.site-footer {
	padding-block: var(--space-xl);
	background-color: transparent;
}

.site-footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-md);
}

/* ---------- SNSアイコン ---------- */
.site-footer__sns {
	display: flex;
	align-items: center;
	gap: var(--space-md);
}

.site-footer__sns-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: var(--color-black);
	color: var(--color-white);
	transition: opacity 0.2s ease;
}

.site-footer__sns-link:hover {
	opacity: 0.6;
}

.site-footer__sns-icon {
	width: 18px;
	height: 18px;
}

/* ---------- フッターリンク ---------- */
.site-footer__links {
	display: flex;
	align-items: center;
	gap: 0.25em;
	font-size: var(--font-size-xs);
}

.site-footer__links .separator {
	color: var(--color-black);
}

.site-footer__links a {
	color: var(--color-black);
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.site-footer__links a:hover {
	text-decoration: none;
}

/* ---------- コピーライト ---------- */
.site-footer__copyright {
	font-size: var(--font-size-xs);
	color: var(--color-black);
	text-align: center;
}

/* ==========================================================================
   ページトップボタン（右下固定）
   ========================================================================== */
.page-top-btn {
	position: fixed;
	right: var(--space-lg);
	bottom: var(--space-lg);
	z-index: 900;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: var(--color-accent-text);
	color: var(--color-white);
	transition: opacity 0.2s ease;
}

.page-top-btn:hover {
	opacity: 0.8;
}

.page-top-btn__arrow {
	width: 20px;
	height: 20px;
}

.page-top-btn__label {
	font-size: 0.625rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.05em;
	line-height: 1;
}

/* ==========================================================================
   スマホ（～767px）
   ========================================================================== */
@media (max-width: 767px) {
	.page-top-btn {
		width: 52px;
		height: 52px;
		right: var(--space-sm);
		bottom: var(--space-sm);
	}

	.page-top-btn__arrow {
		width: 16px;
		height: 16px;
	}

	.page-top-btn__label {
		font-size: 0.5rem;
	}
}
