@charset "UTF-8";

/* ページトップへ戻る */
.pageTop {
	display:none;
	position:relative;
	height:0;
	margin:0 auto;
}
.pageTop a {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: block;
	background-color: #666;
	background-image: url("/img/icon-pagetop.png");
	background-size:25px 25px;
	background-position: center center;
	background-repeat: no-repeat;
	color: #fff;
	width: 50px;
	height:50px;
	padding: 20px 0;
	text-align: center;
	display: block;
	border-radius: 5px;
}
.pageTop a:hover {
	background: #999;
	background-image: url("/img/icon-pagetop.png");
	background-size:25px 25px;
	background-position: center center;
	background-repeat: no-repeat;
	text-decoration: none;
}

/* =====================
	タブレット向け
======================= */
@media screen and (min-width: 480px) and (max-width: 959px) {

.pageTop {
	width:100%;
}
.pageTop a {
	left:-70px;
	margin-left:100%;
}

/* タブレット向けここまで */ }

/* =====================
	スマホ向け
======================= */
@media screen and (max-width: 479px) {

.pageTop {
	width:100%;
}
.pageTop a {
	left:-70px;
	margin-left:100%;
}

/* スマホ向けここまで */ }