/* =======================================
LP共通：トップへ戻るボタン
======================================= */

#lp-page-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 48px;
	height: 48px;
	background: #333;
	z-index: 9999;
	cursor: pointer;
	opacity: 0.6;
}

/* 矢印（CSS描画） */
#lp-page-top::before {
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(-45deg);
	top: 50%;
	left: 50%;
	margin-left: -6px;
	margin-top: -2px;
}

#lp-page-top {
	transition: opacity 0.6s ease;
}

#lp-page-top:hover {
	opacity: 0.7;
}
