<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/****************************************************/
/*                 TOP SCROLL                    */
/****************************************************/
html,body{
    height:100%; /* ブラウザ画面の高さをめいっぱいに */-webkit-text-size-adjust: 100%;
}
#container{
	position: relative; /* フッターを位置指定（底辺に）する時に使う基準設定 */
	min-height: 100%;
	width: 100%;
	margin: 0px;
	padding-bottom: 100px;
}
* html div#container{
    height:100%; /* IE6用 */
}
/* Topボタン */
div.gotop {
	position: fixed;
	bottom: 0px;
	right: 10%;
	line-height: 1px;
	z-index: 100;
	width: 66px;
	text-align: right;
	margin: 0px 0px 10px;
	box-sizing: border-box;
}
div.gotop div {
	width: 100%;
	max-width: 1280px;
	text-align: right;
	margin: auto;
}
div.gotop div a{
	width: 66px;
	height: 66px;
	display: inline-block;
	line-height: 1px;
	margin: auto 20px auto auto;
	text-align: right;
}

@media print{

div.gotop {
display: none;
}
}
</pre></body></html>