@charset "utf-8";

/*====================================================================
#page-top <!-- ページ上部へ戻る -->
====================================================================*/

#page-top {
	display: block;
	position: fixed;
	bottom: 60px;
	right: 60px;
	z-index: 2;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 40px 40px;
	border-color: transparent transparent #e5dfd3;
	cursor: pointer;
}

#page-top i {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, -20%);
	width: 3px;
	height: 50px;
	background: #c4d7d1;
}

@media screen and (min-width: 1367px) {
	#page-top:hover {
		transition: all 0.25s ease;
		border-width: 0 40px 80px;
	}
}

@media screen and (max-width: 1366px) {
	#page-top {
		right: 20px;
		bottom: 25px;
		border-width: 0 20px 40px;
	}
}

