﻿/* -------------------------------------------------------------- */
/* 名称　　　　　　　 : ページトップへ戻るボタン                  */
/* 影響範囲　　　　　 : 全ページ                                  */
/* 影響範囲のページ名 : 全ページ                                  */
/* -------------------------------------------------------------- */

/* パソコン・スマホ共通のCSS */
#gotop {
    position: fixed;	/*配置場所固定*/
    left: 0;	/*配置場所指定*/
    top:-20px;
    height:10px;
    opacity: 0.8;
    margin: 0;
    z-index: 100; 
/* z軸方向の一番手前側に配置(値100に深い意味はないです) */
}

#gotop:hover {
	opacity: 1;
}

#gotop a {
    display: block;	/*配置の調整*/
}

#gotop a:hover {
    text-decoration: none;
}