@charset "Shift_JIS";

/*============================================
全般的なスタイル
============================================*/
* {
	margin:0; padding:0; 	/*全要素のマージン・パディングをリセット*/
	line-height:1.5;	/*全要素の行の高さを1.5倍にする*/
	color:#333333;		/*文字色*/

} 
body {
	background-color: #FFFFFF;	/*ページ全体の背景色*/
	text-align: center;		/*IE6以下でセンタリングするための対策*/
}
div#pagebody {
	width:900px; margin:0 auto;	/*内容全体をセンタリング*/
	text-align:left;	/*テキストの配置を左揃えにする*/
	background-image:url("images/bg_pagebody.gif");	/*内容全体の背景*/
	background-repeat:repeat-y;		/*背景画像を縦方向に繰り返す*/
	background-color:#ffffff;		/*内容全体の背景色*/
}

/*============================================
ヘッダ
============================================*/
header {
	height: 77px;	/*背景画像のサイズに合わせてボックスの高さを指定*/
	background-repeat: no-repeat;		/*背景画像を繰り返さない*/
	padding-bottom: 10px;
    border-top:#197A03 solid 20px;

	/*ヘッダ部分の背景色*/
}
h1 {
    font-size: 18px;
    padding: 20px 0px 0px 30px;		/*見出し内容の位置調整*/
    font-family: "ＭＳ ゴシック", "MS Gothic", "Osaka－等幅", Osaka-mono, monospace;	/*フォントの種類*/
    font-style: normal;
    font-weight: bold;
    }
h1 a {
    text-decoration: none;
    font-family: "ＭＳ ゴシック", "MS Gothic", "Osaka－等幅", Osaka-mono, monospace;
    color: #007527;
} 			/*リンクの下線を無くす*/
/*============================================
メインメニュー
============================================*/
ul#menu {
	height:42px; background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #02a715), color-stop(0.00, #50f202));
background: -webkit-linear-gradient(top, #50f202 0%,  #02a715 100%);
background: -moz-linear-gradient(top, #50f202 0%,  #02a715 100%);
background: -o-linear-gradient(top, #50f202 0%,  #02a715 100%);
background: -ms-linear-gradient(top, #50f202 0%, #02a715 100%);
background: linear-gradient(to bottom, #50f202 0%, #02a715 100%);
border-radius: 7px;	
font-weight:bold;
}
li#menu01,li#menu02,li#menu03,li#menu04,li#menu05,li#menu06 {
	float: left;			/*リスト項目を横に並べる*/
	display: inline;			/*リスト項目をインライン表示にする*/
	list-style-type: none;		/*リストマーカー無しにする*/
	background-repeat: no-repeat; 	/*背景画像を繰り返さない*/
	border: 1px solid #FBFBFC;
}

/*ボタン01～05にはそれぞれ異なる背景画像を指定する*/
li#menu01 {
	width: 148px;height:42px;
}
li#menu02 {
	width:148px; height:42px;	
}
li#menu03 {
	width:148px; height:42px;	
}
li#menu04 {
	width:148px; height:42px;	
}
li#menu05 {
	width:148px; height:42px;	
}
li#menu06 {
	width:148px; height:42px;	
}
ul#menu a {
	display: block;				/*リンクをブロック表示にする*/
	height: 42px;
	padding-top: 10px;
	text-align: center;
	text-decoration: none; 			/*リンクの下線を無くす*/
	font-family: Arial, Helvetica, sans-serif;
}
ul#menu a:hover {
	color: #F9F5F6;
}


/*============================================
サブメニュー（左カラム）
============================================*/

/*============================================
コンテンツ（中央と右の2カラム全体）
============================================*/
div#content {
	width: 890px;				/*2カラム全体を右寄せにする*/
	height: 545px;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 5px;
}

/*============================================
ニュース（中央カラム）
============================================*/


/*見出し・段落・水平線のスタイル指定*/
h2 {
	font-size:100%;
}
h3 {
	font-size: 90%;
}
#content #content_body h3 {
	margin-bottom: 7px;
}
#content #content_body ul {
	margin-left: 10px;
	padding-top: 4px;
}
#content_body ul li {
	list-style-type: square;
	border-bottom: thin dashed #8C8C8C;
	margin-top: 3px;
}
ul li span {
	padding-right: 15px;
}
ul li a {
    /* [disabled]list-style-type: none; */
    text-decoration: none;
    font-family: "ＭＳ ゴシック", "MS Gothic", "Osaka－等幅", Osaka-mono, monospace;
}
#content_body ul li {
	position: relative;
}
#content_body ul li::after,
#content_body ul li::before {
	display: block;
	content: '';
	position: absolute;
}
#content_body ul li::after {
	top: .35em;
	left: -1.2em;
	width: 14px;
	height: 14px;
	background-color: #908F8F;
	border-radius: 100%;
}
#content_body ul li::before {
	z-index: 2;
	top: .625em;
	left: -.975em;
	width: 4px;
	height: 4px;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}






p {font-size:90%; margin:10px 0px 10px 10px; text-indent:10px;}
hr {height:1px; border:solid 1px #cccccc; margin-bottom:30px;}




/*============================================
フッタ
============================================*/
footer {
	height: 42px;
	text-align: center;
	clear: both;					/*回り込みを解除する*/
	background-image: url("images/bg_footer.jpg");	/*フッタ部分の背景画像*/
	background-repeat: no-repeat;			/*背景画像を繰り返さない*/
	background-color: #5BE74C;			/*フッタ部分の背景色*/
}
address {
	font-style: normal;			 /*フォントスタイルを標準にする*/
	font-size: small;			 /*フォントサイズを小さくする*/
	padding-top: 15px;
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 5px;	/*要素内容の位置調整*/
}#content_header {
	height: 30px;
	background-color: #CBF9C6;
	padding-top: 10px;
	border-left: 10px solid #090;
	padding-left: 15px;
	}
#content_body {
	height: 30px;
	background-image: -webkit-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(113,223,147,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(113,223,147,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(113,223,147,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(255,255,255,1.00) 0%,rgba(113,223,147,1.00) 100%);
	padding-left: 10px;
	padding-top: 10px;
}
h1 a img {
	padding-right: 10px;
}
header .navi {
	width: 220px;
	float: right;
	padding-left: 40px;
	padding-top: 40px;
	}
.navi strong .tel {
    font-size: 17px;
    color: #018E08;
    padding-left: 10px;
    font-family: "ＭＳ ゴシック", "MS Gothic", "Osaka－等幅", Osaka-mono, monospace;
    font-weight: bold;
	}

header h1 {
	float: left;
}

#content p{
    margin-left: -25px;
	
}
.gallery{
	width:218px; 
	height:160px;
    padding-top: 12px;
    margin-bottom: -12px;		
}
#content1{
    width: 415px;
    float: left;
    margin-top: 15px;

}

#content1 ul {
	padding-left: 20px;
	
}

#content2{
	width: 350px;
	float: right;
	margin-top: 10px;
	
}
.kyositu1{
    margin-left: 50px;
	width:230px;
	height:350px; 
	
}

.gallery1{
	width:132px;
    height:110px;  
	margin-top:30px;
	
}
.gallery2{
	width:112px;
	height:80px;
}


.clover1{
	margin-bottom: -8px;
	width: 300px;
	background-color: #20C30D;
	border-radius: 3px;
	padding-left: 10px;
	padding-top: 2px;
	padding-bottom: 2px;
}

.privacy1{
	font-family: "ＭＳ ゴシック", "MS Gothic", "Osaka－等幅", Osaka-mono, monospace;
	font-size: 12px;
	padding-left: 20px;
	
}

#pagebody footer ul {
	list-style-type: none;
	font-size: 12px;
	margin-top: 15px;
	margin-left: 20px;
	text-align: left;
	float: left;
}
#pagebody footer address {
	text-align: center;
}
#pagebody footer ul li a:hover  {
	color: #FFF;
}
