@charset "Shift_JIS";
/* CSS Document */
/*
	説明　: 基本スタイルシート
	更新日: 2011年10月21日
	制作者: 酒本真希    
                                  */


/* ===== 目次 =============================================

	1: 基本構造
	

説明:特になし

==========================================================*/


/* ===== 1: 基本構造 ========================================*/

       /* 全体 */
body {
   /* 画像ファイルの指定 */
  background: url(../img/4-2.jpg) ;
   
   /* 画像を常に天地左右の中央に配置 */
  background-position: center center;
   
  /* 画像をタイル状に繰り返し表示しない */
  background-repeat: no-repeat;
   
  /* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
  background-attachment: fixed;
   
  /* 表示するコンテナの大きさに基づいて、背景画像を調整 */
  background-size: cover; 
}     












