/*---  ヘッダー固定  ----*/
#ceiling {
  position: fixed; /* 固定 */
  top: 0; /* 一番上に表示 */
  width: 100%; /* 中央に表示 */
   background-color: #FFFFFF
}
/*---  メインコンテンツの余白設定  ----*/
#maincontents {
    margin: 0;         
    padding:144px 0 16px 0;        /* 余白 */
    width:100%;
    height:100%;
    background: linear-gradient(#e0f5c4 10%, #fff 50%);	/*グラデーション*/
    text-align: center;
}
/*---  メインコンテンツの余白設定（ピクチャエリアが存在する用）  ----*/
#main2contents {
    margin: 0;         
    padding:76px 0 16px 0;        /* 余白 */
    width:100%;
    height:100%;
}
/*---  フッター固定  ----*/
#floor {
  position: fixed; /* 固定 */
  bottom: 0; /* 一番下に表示 */
  width: 100%; /* 中央に表示 */
}