@charset "shift_jis";


/*共通設定
■文字サイズを変更したい場合、body項目内のfontにある「12px」を変更する。
■strong(強調文字)色を変更したい場合、strong項目内の「#993300」を変更する。現在は赤色になっている。
----------------------------------------------------------------------------------*/
body {
	color: #333333;
	margin: 0px;
	padding: 0px;
	text-align: center;
	background: #dfdda5 url(../images/bg1.gif) repeat-x top;
	/*下１行テストbackground: #ffdab9;*/
	background: #89ba7a;
	font: 14px "メイリオ", "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
}
h1,h2,h3,p,ul,li{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
	vertical-align: bottom;
}
strong {
	color: #333333;
	/*font-weight: normal;*/
}
p {
	padding-bottom: 5px;
	padding-top: 5px;
}



/*ヘッダー
■h1タグの文字色を白以外にしたい場合、#header-container h1項目内にある「#FFFFFF」を変える。
■h1タグの文字サイズを変更したい場合、#header-container h1項目内にある「11px」を変える。
----------------------------------------------------------------------------------*/
#header-container {
	width: 917px;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-right: auto;
	margin-left: auto;
	text-align: left;
}
#header-container h1 {
	font-size: 13px;
	/*color: #FFFFFF;*/
	color: #1c3700;
	/*下１行テストbackground: #C5B74C url(../images/header_bg.jpg);*/
	background: #ffffff;
	/*height: 190px;
	padding-top: 11px;
	padding-left: 10px;*/
}


/*メインメニュー（画像を横並びにする為の設定なので変更しない）
----------------------------------------------------------------------------------*/
#menu li {
	float: left;
	padding-bottom: 5px;
}


/*コンテナー
----------------------------------------------------------------------------------*/
#container {
	width: 913px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 5px;
	background: url(../images/container_bg.gif) repeat-y left;
	clear: left;
}

#right {
	text-align: right;
}








/*商品の各テーブル設定
■テーブルのフチを変えたい場合、.t1項目内の「double」を変える。単なる直線なら「solid」。
　破線なら「dashed」、点線なら「dotted」。他にも色々あるので試すといいでしょう。
■テーブルのフチ色を変えたい場合、.t1項目内の「#CCCCCC」を変える。現在はグレー色。
■写真のフチ色を変えたい場合、.t1 img項目内の「#CCCCCC」を変える。現在はグレー色。
　また、写真とフチの間のスペースにも色を付けられる。.t1 img項目内の「#FFFFFF」で変える。現在は白。
----------------------------------------------------------------------------------*/
/*写真付き一覧表示用
----------------------------------------------------------------------------------*/
.t1 {
	border: 3px double #808000;
	padding: 5px;
	margin-top: 9px;
	margin-right: 5px;
	width: 655px;
	background: url(../images/item_bg.gif) repeat-x bottom;
}

.t1 td {
	vertical-align: top;
}

.t1 strong {
	background: url(../images/arrow1.gif) no-repeat left top;
	padding-left: 20px;
	border-bottom: 1px dotted #5b710e;
	display: block;
	margin-bottom: 10px;
}
.t1 h4 {
	color: #808000;
	background: url(../images/arrow3.gif) no-repeat  10px center;
	font-size: 		90%;				/*文字サイズ*/
	padding-left: 30px;
	border-bottom: 1px dotted #5b710e;
	display: block;
	margin-bottom: 5px;
}

.t1 img {
	border: 1px solid #CCCCCC;
	padding: 4px;
	margin-right: 5px;
	margin-bottom: 5px;
	background: #FFFFFF;
}
/*写真なし一覧表示用
----------------------------------------------------------------------------------*/
.t2 {
	padding: 5px;
	margin-top: 9px;
	margin-right: 5px;
	width: 655px;
	background: url(../images/item_bg.gif) repeat-x bottom;
}

.t2 td {
	vertical-align: top;
}

.t2 h4 {
	background: url(../images/arrow1.gif) no-repeat left top;
	font-size: 		90%;				/*文字サイズ*/
	padding-left: 20px;
	border-bottom: 1px dotted #5b710e;
	display: block;
	margin-bottom: 0px;
}
.t2 h5 {
	color: #808000;
	background: url(../images/arrow3.gif) no-repeat  10px center;
	padding-left: 30px;
	display: block;
	margin-bottom: 0px;
}
/*記事用テーブル設定
----------------------------------------------------------------------------------*/

.t0 {
	padding: 5px;
	margin-top: 9px;
	margin-right: 5px;
	width: 655px;
	background: url(../images/item_bg.gif) repeat-x bottom;
}

.t0 td {
	vertical-align: top;
}

.t0 strong {
	background: url(../images/arrow1.gif) no-repeat left top;
	padding-left: 20px;
	border-bottom: 1px dotted #5b710e;
	display: block;
	margin-bottom: 10px;
}

.t0 img {
	border: 1px solid #CCCCCC;
	padding: 4px;
	margin-right: 5px;
	margin-bottom: 5px;
	background: #FFFFFF;
}



/*メインコンテンツ
----------------------------------------------------------------------------------*/
#main {
	background:#ffffff;
	float: left;
	width: 662px;
	text-align: left;
	padding: 9px 9px 50px;
	line-height: 1.5;
	border-top: 1px solid #CCCCCC;
}
#main h2 {
	background: 	#ffffff url(../images/midashi.gif) no-repeat;	/*h2見出しの背景画像と背景色設定。*/
	height: 		30px;
	font-size: 		90%;				/*文字サイズ*/
	color: 			#ffffff;			/*文字色*/
	padding-left: 	20px;
	line-height: 	35px;
}
#main h3 {
	width: 			640px;
	height: 		20px;
	border-bottom: 	1px solid #808000;	/*商品名の下に1px幅の#004A39色の直線を入れる*/
	border-left: 	4px solid #808000;	/*商品名の左に4px幅の#004A39色の直線を入れる*/
	padding-left: 	15px;
	color: 			#666666;			/*文字色*/
	font-size: 		90%;				/*文字サイズ*/
	position: 		relative;
}

/*What's new欄の矢印とアンダーライン
■下線の色を変えたい場合、#CCCCCCを希望色にする。ちなみに、dottedは点線なので直線にしたいならsolidにする。
----------------------------------------------------------------------------------*/
.u-line li {
	border-bottom: 1px dotted #CCCCCC;
	background: url(../images/arrow2.gif) no-repeat left top;
	padding-left: 15px;
}
.date {
	color: #993300;
	font-weight: normal;
}


/*サイドコンテンツ
----------------------------------------------------------------------------------*/
#side {
	float: right;
	width: 192px;
	text-align: left;
	padding: 9px 9px 50px;
	line-height: 2;
	border-top: 1px solid #CCCCCC;
}
#side h2 {
	background: 	#ffffff url(../images/midashi_sub.gif) no-repeat;	/*h2見出しの背景画像と背景色設定。*/
	height: 		30px;
	font-size: 		90%;				/*文字サイズ*/
	color: 			#ffffff;			/*文字色*/
	padding-left: 	20px;
	line-height: 	35px;
}
#side h3 {
	width: 			170px;
	height: 		20px;
	border-bottom: 	1px solid #808000;	/*商品名の下に1px幅の#004A39色の直線を入れる*/
	border-left: 	4px solid #808000;	/*商品名の左に4px幅の#004A39色の直線を入れる*/
	padding-left: 	15px;
	color: 			#666666;			/*文字色*/
	font-size: 		90%;				/*文字サイズ*/
	position: 		relative;
}
#side img {
	padding-bottom: 5px;
}


/*フッター
----------------------------------------------------------------------------------*/
#footer {
	color: 			#ffffff;			/*文字色*/
	clear: both;
	width: 913px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 10px;
	/*background: url(../images/footer_bg.gif) no-repeat left top;*/
	background: #6b8e23;
}


/*clearfix（変更しないこと）
----------------------------------------------------------------------------------*/
#container:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
#container { display: inline-block; }

/* Hides from IE-mac \*/
*html #container { height: 1%; }
#container { display: block; }
/* End hide from IE-mac */

/*2013/8/21 以下追加
----- サイド−料金テーブル----------*/
.t10 {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	width: 192px;
}

.t10 td {
	vertical-align: center;
	background: url(../images/bn_ryokin.gif) no-repeat left top;
	text-align: center;
	font-size: 		120%;				/*文字サイズ*/
	height: 120px;
}

.t10 strong {
	background: url(../images/arrow1.gif) no-repeat left top;
	padding-left: 20px;
	border-bottom: 1px dotted #5b710e;
	display: block;
	margin-bottom: 10px;
}
a.lnk:link {/*リンクされた文字*/
    color:000000;
    text-decoration:none;
}
a.lnk:visited {/*訪問後のリンク*/
    color:000000;
    text-decoration:none;
}
a.lnk:hover {/*マウスをのせたとき*/
    color:#ff0000;
    text-decoration:none;
}
.t0 img.img1 {
	border: 0px;
}
