/*各ページ共通　基本*/


body{
  background-color: #FFFFFF; /*全体の背景*/
  background-image: url("images/bg.gif");   /*全体の背景(画像)*/
  margin: 0;
  padding: 0;
  height: 100%;
}




.header{
  margin: 0;
  padding: 0;
  height: 50px;
  background-color: #FF9933; /*ヘッダー背景*/
  box-shadow: 5px 5px 5px 5px  rgba(0,0,0,0.6);
  position: relative;
  margin-bottom: 30px;  /*headerとその下の要素との間余白*/
}

.header h1{
    padding-left: 10px;
    padding-bottom: 1.5px;
    color:white;
    position: absolute;
    bottom:0;
    text-align: left;
    text-decoration: none;
}

.header h1 a{
    text-decoration: none;
    color: white;
}



footer{
  width: 100%;
  margin: 0;
  padding: 5px 0 0 0;
  height: 30px;
  background-color: #FF9933; /*ヘッダー背景*/
  position: relative;
  margin-top: 30px;  /*headerとその下の要素との間余白*/
  
}


#page_top{
    width: 55px;
    height: 42px;
    position: fixed;
    right: 0;
    bottom: 20px;
    opacity: 1;
    
    padding-bottom: 60px;
    
}


#page_top a{
  display: block;  /*a要素はインライン要素の見た目を持っている。背景画像を調整する為の指定*/
  float: right;/*右寄せ*/
  background-image: url(images/top2.gif);  /*画像*/
  background-repeat: no-repeat;
  background-position: left center ;  /*画像の位置　文字の左　垂直方向の真ん中*/
  padding-left: 550px;  /*文字の左の余白　文字と画像が重ならないように*/
  min-height: 55px;   /*画像の高さ*/
  margin-top: 42px;

}
    
