@charset "shift_jis";

@media screen and (min-width: 769px){
img{
	max-width: 100%;
height: auto;
width /***/:auto;　
}
body{
	color : black;	/*全体の文字色*/
	background-color : #ffffff;	/*全体の背景色*/
	margin: 0px;
	padding: 0px;
	text-align: center;
	font : normal normal normal;line-height : 2;font-family : "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  width : 100%;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form{
	margin: 0px;
	padding: 0px;
  width : 100%;
}
ul{
	list-style-type: none;
}
img{
	border: none;
}
input,textarea,select{
	font-size: 1em;
}
form{
	margin: 0px;
}
#column{
	width : 15%;
  float : left;
  margin-top : 500px;
  font-size : x-small;
}
table{
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a{
	color : blue;
}
a:hover{
	color: #FFFF00;			/*カーソルオーバー時の文字色*/
	text-decoration: none;	/*カーソルオーバー時に下線を消す設定*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container{
	text-align: left;
	width : 65%;	/*コンテナー幅*/
	margin-right: auto;
	margin-left: auto;
  float : left;
}

/*ヘッダー（ロゴなどが入っているHP上部ブロック）
---------------------------------------------------------------------------*/
#header{
	height : 100px;	/*ヘッダーの高さ*/
	position : static;
	background : none 0% 0% / auto auto no-repeat scroll padding-box border-box black;	/*ヘッダー背景画像の読み込み*/
}
/*h1タグ設定*/
#header h1{
	font-size: 10px;		/*文字サイズ*/
	line-height: 14px;		/*行間*/
	font-weight: normal;	/*文字の太さをデフォルトの太字から通常に変更*/
	position: absolute;
	left: 30px;	/*ヘッダーブロックに対して左から30pxの位置に配置*/
	top: 110px;	/*ヘッダーブロックに対して上から110pxの位置に配置*/
}
#header h1 a{
	text-decoration: none;
}
/*ロゴ画像設定*/
#header #logo{
	position: absolute;
	left: 30px;	/*ヘッダーブロックに対して左から20pxの位置に配置*/
	top: 60px;	/*ヘッダーブロックに対して上から60pxの位置に配置*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
ul#menu{
	height: 60px;
	width: 934px;
	position: absolute;
	left: 5px;	/*ヘッダーブロックに対して左から5pxの位置に配置*/
	top: 185px;	/*ヘッダーブロックに対して上から185pxの位置に配置*/
	padding-left: 26px;
}
/*メニュー１個単位の設定*/
ul#menu li{
	float: left;
	text-align: center;
	border-left: 1px solid #000;	/*メニューの左側に入る線の幅、線種、色*/
}
ul#menu li.last{
	border-right: 1px solid #000;	/*メニューの最後の１個だけ、右側に線を追加*/
}
ul#menu li a{
	color: #FFFFFF;	/*メニューの文字色*/
	text-decoration: none;
	display: block;
	width: 150px;
	height: 60px;
	line-height: 60px;
	overflow: hidden;
}
ul#menu li a:hover{
	font-weight: bold;	/*マウスオン時に文字を太字にする設定*/
	color: #333;

}
/*１つ目（HOME）のメニューオン時の設定*/
ul#menu li#menu1 a:hover{
	background : url(images/menu_on.jpg) -35px -185px / auto auto no-repeat scroll padding-box border-box transparent;
	height: 60px;
	width: 150px;
}
/*２つ目（ABOUT）のメニューオン時の設定*/
ul#menu li#menu2 a:hover{
	background : url(images/menu_on.jpg) -185px -185px / auto auto no-repeat scroll padding-box border-box transparent;
	height: 60px;
	width: 150px;
}
/*３つ目（GALLERY1）のメニューオン時の設定*/
ul#menu li#menu3 a:hover{
	background : url(images/menu_on.jpg) -335px -185px / auto auto no-repeat scroll padding-box border-box transparent;
	height: 60px;
	width: 150px;
}
/*４つ目（GALLERY2）のメニューオン時の設定*/
ul#menu li#menu4 a:hover{
	background : url(images/menu_on.jpg) -485px -185px / auto auto no-repeat scroll padding-box border-box transparent;
	height: 60px;
	width: 150px;
}
/*５つ目（LINK）のメニューオン時の設定*/
ul#menu li#menu5 a:hover{
	background : url(images/menu_on.jpg) -635px -185px / auto auto no-repeat scroll padding-box border-box transparent;
	height: 60px;
	width: 150px;
}
/*６つ目（CONTACT）のメニューオン時の設定*/
ul#menu li#menu6 a:hover{
	background : url(images/menu_on.jpg) -785px -185px / auto auto no-repeat scroll padding-box border-box transparent;
	height: 60px;
	width: 150px;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents{
	clear: left;
	width: 100%;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main{
	width : 100%;	/*メインコンテンツ幅*/
	padding-top: 30px;
	padding-bottom: 50px;
	margin-right: auto;
	margin-left: auto;
  background-color : silver;
}
/*h2タグ設定*/
#main h2{
	font-size: 120%;				/*文字サイズ*/
	padding: 0px 0px 0px 20px;		/*左から、上、右、下、左への余白*/
	color : black;					/*文字色*/
	line-height: 50px;
	height: 50px;
	overflow: hidden;
	background : url(images/bg1.gif) 0% 0% / auto auto no-repeat scroll padding-box border-box lime;	/*背景画像の読み込み*/
	width : 100%;
	clear: both;
}
#main h3{
	font-size: 100%;				/*文字サイズ*/
	padding: 0px 0px 0px 20px;		/*左から、上、右、下、左への余白*/
	color : black;					/*文字色*/
	line-height : 30px;
	height : 30px;
	overflow: hidden;
	background : url(images/bg1.gif) 0% 0% / auto auto no-repeat scroll padding-box border-box #ffffff;	/*背景画像の読み込み*/
	width : 100%;
	clear: both;
}
/*段落タグの余白設定*/
#main p{
	padding: 0.5em 20px 1em;	/*左から、上、左右、下への余白*/

  width : 100%;
}

/*フッター
---------------------------------------------------------------------------*/
#footer{
	text-align: center;	/*センタリング*/
	padding-top: 10px;
	padding-bottom: 10px;
  float : left;
  width : 100%;
}
/*フッター内にリンク設定した場合用*/
#footer a{
	text-decoration: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
#main .new{
	overflow: auto;
	height: 150px;			/*ボックスの高さ*/
	width: 860px;
	padding-left: 20px;
}
#main .new dl{
	clear: left;
	width: 840px;
	border-bottom: 1px solid #666;	/*日付ごとに入る下線の幅、線種、色*/
	overflow: hidden;
}
#main .new dt{
	font-weight: bold;	/*日付を太字に*/
	float: left;
	width: 100px;
}
#main .new dd{
	float: left;
	width: 740px;
}
#main .new dd img{
	vertical-align: middle;
}
* html #main .new dd img{
	margin-top:0.5em;
	vertical-align: baseline;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1{
	width: 860px;	/*テーブル幅*/
	margin-right: auto;
	margin-left: auto;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #333;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	width: 577px;
	padding: 10px;
	vertical-align: top;
	background: #FFF;	/*背景色*/
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 240px;
	padding: 10px;
	text-align: center;
	background: #d2d2d2;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background: #FFF45C;	/*背景色*/
	color: #313131;			/*文字色*/
}

/*写真ボックス
---------------------------------------------------------------------------*/
#main .box1{
	background : none 0% 0% / auto auto repeat scroll padding-box border-box #ffffff;	/*背景色*/
	height : 450px;		/*ボックスの高さ*/
	width : 225px;		/*ボックスの幅*/
	padding : 20px;		/*ボックス内の余白*/
	float: left;		/*ボックスを左へ回り込みさせる*/
	display: inline;	/*IE6対策*/
	margin : 0px 10px 15px;	/*左から、上、左右、下へのマージン（ボックス間のスペース）*/
	color : #333333;		/*文字色*/
}
/*ボックス内の段落タグ*/
#main .box1 p{
	font-size : 11px;	/*文字サイズ*/
	padding: 0px;		/*余白のリセット*/
	text-align : center;	/*文字をセンタリング*/
}

/*その他
---------------------------------------------------------------------------*/
.look{
	background-color: #CCCCCC;
}
.mb1em{
	margin-bottom: 1em;
}
.clear{
	clear: both;
}
ul.disc{
	padding: 0em 25px 1em;
	list-style: disc;
	text-align: left;
}
.color1{
	color: #FFFF00;
}
.pr{
	font-size: 10px;
}
.btn{
	font-size: 13px;
}
.wl{
	width: 96%;
}
.ws{
	width: 50%;
}
.c{
	text-align: center;
}}
@charset "shift_jis";

@media screen and (max-width: 768px){
img{
	max-width: 100%;
height: auto;
width /***/:auto;　
}
body{
	color : black;	/*全体の文字色*/
	background-color : #ffffff;	/*全体の背景色*/
	margin: 0px;
	padding: 0px;
	text-align: center;
	font : normal normal normal;line-height : 2;font-family : "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  width : 100%;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form{
	margin: 0px;
	padding: 0px;
  width : 100%;
}
ul{
	list-style-type: none;
}
img{
	border: none;
}
input,textarea,select{
	font-size: 1em;
}
form{
	margin: 0px;
}
#column{
	width : 100%;
  float : left;

  font-size : x-small;
}
table{
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a{
	color : blue;
}
a:hover{
	color: #FFFF00;			/*カーソルオーバー時の文字色*/
	text-decoration: none;	/*カーソルオーバー時に下線を消す設定*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container{
	text-align: left;
	width : 100%;	/*コンテナー幅*/
	margin-right: auto;
	margin-left: auto;
  float : left;
}

/*ヘッダー（ロゴなどが入っているHP上部ブロック）
---------------------------------------------------------------------------*/
#header{
	height : 100px;	/*ヘッダーの高さ*/
      width : 100%;
	position : static;
	background : none 0% 0% / auto auto no-repeat scroll padding-box border-box black;	/*ヘッダー背景画像の読み込み*/
}
/*h1タグ設定*/
#header h1{
	font-size: 10px;		/*文字サイズ*/
	line-height: 14px;		/*行間*/
	font-weight: normal;	/*文字の太さをデフォルトの太字から通常に変更*/
	position: absolute;
	left: 30px;	/*ヘッダーブロックに対して左から30pxの位置に配置*/
	top: 110px;	/*ヘッダーブロックに対して上から110pxの位置に配置*/
}
#header h1 a{
	text-decoration: none;
}
/*ロゴ画像設定*/
#header #logo{
	position: absolute;
	left: 30px;	/*ヘッダーブロックに対して左から20pxの位置に配置*/
	top: 60px;	/*ヘッダーブロックに対して上から60pxの位置に配置*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
ul#menu{
	height: 60px;
	width: 934px;
	position: absolute;
	left: 5px;	/*ヘッダーブロックに対して左から5pxの位置に配置*/
	top: 185px;	/*ヘッダーブロックに対して上から185pxの位置に配置*/
	padding-left: 26px;
}
/*メニュー１個単位の設定*/
ul#menu li{
	float: left;
	text-align: center;
	border-left: 1px solid #000;	/*メニューの左側に入る線の幅、線種、色*/
}
ul#menu li.last{
	border-right: 1px solid #000;	/*メニューの最後の１個だけ、右側に線を追加*/
}
ul#menu li a{
	color: #FFFFFF;	/*メニューの文字色*/
	text-decoration: none;
	display: block;
	width: 150px;
	height: 60px;
	line-height: 60px;
	overflow: hidden;
}
ul#menu li a:hover{
	font-weight: bold;	/*マウスオン時に文字を太字にする設定*/
	color: #333;

}
/*１つ目（HOME）のメニューオン時の設定*/
ul#menu li#menu1 a:hover{
	background : url(images/menu_on.jpg) -35px -185px / auto auto no-repeat scroll padding-box border-box transparent;
	height: 60px;
	width: 150px;
}
/*２つ目（ABOUT）のメニューオン時の設定*/
ul#menu li#menu2 a:hover{
	background : url(images/menu_on.jpg) -185px -185px / auto auto no-repeat scroll padding-box border-box transparent;
	height: 60px;
	width: 150px;
}
/*３つ目（GALLERY1）のメニューオン時の設定*/
ul#menu li#menu3 a:hover{
	background : url(images/menu_on.jpg) -335px -185px / auto auto no-repeat scroll padding-box border-box transparent;
	height: 60px;
	width: 150px;
}
/*４つ目（GALLERY2）のメニューオン時の設定*/
ul#menu li#menu4 a:hover{
	background : url(images/menu_on.jpg) -485px -185px / auto auto no-repeat scroll padding-box border-box transparent;
	height: 60px;
	width: 150px;
}
/*５つ目（LINK）のメニューオン時の設定*/
ul#menu li#menu5 a:hover{
	background : url(images/menu_on.jpg) -635px -185px / auto auto no-repeat scroll padding-box border-box transparent;
	height: 60px;
	width: 150px;
}
/*６つ目（CONTACT）のメニューオン時の設定*/
ul#menu li#menu6 a:hover{
	background : url(images/menu_on.jpg) -785px -185px / auto auto no-repeat scroll padding-box border-box transparent;
	height: 60px;
	width: 150px;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents{
	clear: left;
	width: 100%;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main{
	width : 100%;	/*メインコンテンツ幅*/
	padding-top: 30px;
	padding-bottom: 50px;
	margin-right: auto;
	margin-left: auto;
  background-color : silver;
}
/*h2タグ設定*/
#main h2{
	font-size: 120%;				/*文字サイズ*/
	padding: 0px 0px 0px 20px;		/*左から、上、右、下、左への余白*/
	color : black;					/*文字色*/
	line-height: 50px;
	height: 50px;
	overflow: hidden;
	background : url(images/bg1.gif) 0% 0% / auto auto no-repeat scroll padding-box border-box lime;	/*背景画像の読み込み*/
	width : 100%;
	clear: both;
}
#main h3{
	font-size: 100%;				/*文字サイズ*/
	padding: 0px 0px 0px 20px;		/*左から、上、右、下、左への余白*/
	color : black;					/*文字色*/
	line-height : 30px;
	height : 30px;
	overflow: hidden;
	background : url(images/bg1.gif) 0% 0% / auto auto no-repeat scroll padding-box border-box #ffffff;	/*背景画像の読み込み*/
	width : 100%;
	clear: both;
}
/*段落タグの余白設定*/
#main p{
	padding: 0.5em 20px 1em;	/*左から、上、左右、下への余白*/

  width : 100%;
}

/*フッター
---------------------------------------------------------------------------*/
#footer{
	text-align: center;	/*センタリング*/
	padding-top: 10px;
	padding-bottom: 10px;
  float : left;
  width : 100%;
}
/*フッター内にリンク設定した場合用*/
#footer a{
	text-decoration: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
#main .new{
	overflow: auto;
	height: 150px;			/*ボックスの高さ*/
	width : 100%;
	padding-left: 20px;
}
#main .new dl{
	clear: left;
	width : 100%;
	border-bottom: 1px solid #666;	/*日付ごとに入る下線の幅、線種、色*/
	overflow: hidden;
}
#main .new dt{
	font-weight: bold;	/*日付を太字に*/
	float: left;
	width: 100px;
}
#main .new dd{
	float: left;
	width : 100%;
}
#main .new dd img{
	vertical-align: middle;
}
* html #main .new dd img{
	margin-top:0.5em;
	vertical-align: baseline;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1{
	width: 860px;	/*テーブル幅*/
	margin-right: auto;
	margin-left: auto;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #333;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	width: 577px;
	padding: 10px;
	vertical-align: top;
	background: #FFF;	/*背景色*/
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 240px;
	padding: 10px;
	text-align: center;
	background: #d2d2d2;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background: #FFF45C;	/*背景色*/
	color: #313131;			/*文字色*/
}

/*写真ボックス
---------------------------------------------------------------------------*/
#main .box1{
	background : none 0% 0% / auto auto repeat scroll padding-box border-box #ffffff;	/*背景色*/
	height : 400px;		/*ボックスの高さ*/
	width : 225px;		/*ボックスの幅*/
	padding: 20px;		/*ボックス内の余白*/
	float: left;		/*ボックスを左へ回り込みさせる*/
	display: inline;	/*IE6対策*/
	margin: 0px 15px 15px;	/*左から、上、左右、下へのマージン（ボックス間のスペース）*/
	color : #333333;		/*文字色*/
}
/*ボックス内の段落タグ*/
#main .box1 p{
	font-size : 12px;	/*文字サイズ*/
	padding: 0px;		/*余白のリセット*/
	text-align : center;	/*文字をセンタリング*/
}

/*その他
---------------------------------------------------------------------------*/
.look{
	background-color: #CCCCCC;
}
.mb1em{
	margin-bottom: 1em;
}
.clear{
	clear: both;
}
ul.disc{
	padding: 0em 25px 1em;
	list-style: disc;
	text-align: left;
}
.color1{
	color: #FFFF00;
}
.pr{
	font-size: 10px;
}
.btn{
	font-size: 13px;
}
.wl{
	width: 96%;
}
.ws{
	width: 50%;
}
.c{
	text-align: center;
}}