@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;
}


#mainImgBox {
   position: relative;
   text-align: left;
   overflow: hidden;
   width:  894px; /* 画像の横幅に合わせて記述 */
   height: 381px; /* 画像の高さに合わせて記述 */
   margin:0 auto ;
   background:#fff;
}
#mainImgBox img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8;
	opacity: 0.0;
	margin: 3px;
	width: 894px;
	height: 371px;
}
#mainImgBox img.active {
   z-index: 10;
   opacity: 1.0;
}
#mainImgBox img.last-active {
   z-index: 9;
}

/*============================================
サブメニュー（左カラム）
============================================*/
div#submenu {
	width:240px;			/*幅の指定*/
	margin:10px 10px 10px 10px;	/*位置調整（IE6のバグに注意）*/
	display:inline;			/*IE6のマージン算出のバグ対策*/
	float:left;			/*サブメニューのカラムを左寄せにする*/
}

/*サブメニューのヘッダ部分（余白調整・背景画像・背景色・文字サイズなど）*/
div#submenu_header {
	height: 26px;
	padding: 4px 0px 0px 0px;
	background-repeat: no-repeat;
	background-position: top;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #a1ff9e), color-stop(0.52, #186d1f), color-stop(0.00, #00cc17));
	background: -webkit-linear-gradient(top, #00cc17 0%, #186d1f 52%, #a1ff9e 100%);
	background: -moz-linear-gradient(top, #00cc17 0%, #186d1f 52%, #a1ff9e 100%);
	background: -o-linear-gradient(top, #00cc17 0%, #186d1f 52%, #a1ff9e 100%);
	background: -ms-linear-gradient(top, #00cc17 0%, #186d1f 52%, #a1ff9e 100%);
	background: linear-gradient(to bottom, #00cc17 0%, #186d1f 52%, #a1ff9e 100%);
	font-size: 90%;
	font-weight: bold;
	text-align: center;
	color: #FFF;
}

/*サブメニューのボディ部分（余白調整・背景画像・背景色）*/
ul#submenu_body {
	padding-bottom: 1px;
	background-repeat: no-repeat;
	background-position: bottom;
	background-color: #8AF352;
}
ul#submenu_body li {
	font-size:100%;			/*文字サイズを90%にする*/
	list-style-type:none;		/*リストマーカー無しにする*/
	display:inline;			/*リスト項目をインライン表示にする*/
}
ul#submenu_body li a {
	display: block;			/*リンクをブロック表示にする*/
	margin: 0px 1px 1px 1px;		/*サブメニュー項目のマージン*/
	padding: 2px 0px 1px 20px;	/*サブメニュー項目のパディング*/
	background-color: #D7FAB8;	/*サブメニュー項目の背景色*/
	text-decoration: none;		/*リンクの下線を無くす*/
}
ul#submenu_body li a:hover {
	background-color: #ffffff;
}

ul#submenu_body li a.on {
	background-color: #ffffff;
}

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


#submenu_body2 {
    padding-bottom: 10px;
    background-repeat: no-repeat;
    background-position: bottom;
    background-color: #8AF352;
    margin-top: 10px;
}
#submenu_body2 li {
	font-size: 100%;
	list-style-type: none;		/*リストマーカー無しにする*/
	display: inline;
} 
    



#submenu_body2 li a {
	display: block;			/*リンクをブロック表示にする*/
	margin: 0px 1px 1px 1px;		/*サブメニュー項目のマージン*/
	padding: 2px 0px 1px 20px;	/*サブメニュー項目のパディング*/
	background-color: #D7FAB8;	/*サブメニュー項目の背景色*/
	text-decoration: none;		/*リンクの下線を無くす*/
}
#submenu_body2 li a:hover {
    background-color: #ffffff;

}

#submenu_body2 h2{
    padding-top: 10px;
    padding-right: 5px;
    padding-left: 10px;
    font-size: 14px;
    background-color: #018106;
    padding-bottom: 5px;
    color: #FFFFFF;
	}

#submenu_body2 ul li a.on {
	background-color:#ffffff;
}






/*============================================
コンテンツ（中央と右の2カラム全体）
============================================*/
div#content {
	width: 630px;	/*幅の指定と位置調整*/
	float: right;				/*2カラム全体を右寄せにする*/
	height: 380px;
	margin-top: 10px;
	margin-right: 5px;
	margin-bottom: 10px;
	margin-left: 0px;
}

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


/*見出し・段落・水平線のスタイル指定*/
h2 {
	font-size:100%;
}
h3 {
	font-size: 95%;
}
#content #content_body h3 {
    margin-bottom: 7px;
    margin-left:4px;
    float: left;
}
#content #content_body ul {
	margin-left: 10px;
	padding-top: 4px;
	clear: left;
}
#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;
}
#content_body ul li {
	position: relative;
}

#content_body ul li a:hover span {
	color: #0C3;
}

#content_body ul li a:hover {
	text-decoration: underline;
	color: #0C3;
}


#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: 12px;
	padding-top: 10px;
	padding-right: 0px;
	padding-left: 30px;
	padding-bottom: 0px;	/*要素内容の位置調整*/
}
#content_header {
	height: 30px;
	background-color: #CBF9C6;
	padding-top: 15px;
	padding-left: 20px;
	border-left: 10px solid #090;
	}

#content_header h2{
	float:left;
}


#content_header p{
    float: right;
    margin-right: 5px;
    margin-top: 5px;
	
}

#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;
}
.clover1{
    background-color: #51D338;
    margin-left: -25px;
    margin-top: 15px;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
   
}
.twitter-follow-button{
	margin-left: 150px;
	
}

.insta_btn2{/*ボタンの下地*/
    color: #ffffff;/*文字・アイコン色*/
    border-radius: 5px;/*角丸に*/
    position: relative;
    display: inline-block;
    height: 25px;/*高さ*/
    width: 150px;/*幅*/
    text-align: center;/*中身を中央寄せ*/
    font-size: 15px;/*文字のサイズ*/
    line-height: 10px;/*高さと合わせる*/
    vertical-align: middle;/*垂直中央寄せ*/
    background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
    background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;/*グラデーション①*/
    overflow: hidden;/*はみ出た部分を隠す*/
    text-decoration: none;/*下線は消す*/
    margin-bottom: 15px;
}

.insta_btn2:before{/*グラデーション②*/
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;/*全体を覆う*/
  height: 100%;/*全体を覆う*/
  background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.insta_btn2 .fa-instagram{/*アイコン*/
  color:#fff; 	
  font-size: 20px;/*アイコンサイズ*/
  position: relative;
  top: 2px;/*アイコン位置の微調整*/
}

.insta_btn2 span {/*テキスト*/
  color:#fff;	
  display:inline-block;
  position: relative;
  transition: .5s
}

.insta_btn2:hover span{/*ホバーで一周回転*/
  -webkit-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  transform: rotateX(360deg);
}
#pagebody footer ul {
	list-style-type: none;
	font-size: 12px;
	margin-top: 10px;
	margin-left: 20px;
	text-align: left;
	float: left;
}
#pagebody footer address {
	text-align: center;
}
#pagebody footer ul li a:hover  {
	color: #FFF;
}
#pagebody #submenu .ad1 {
	padding-top: 40px;
	font-size: 14px;
}

.pagetop{
	text-align: right;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 12px;
	margin-left: 0;
}

.pagetop a{
padding:0 0 0 16px;
background:url(img/all_arw01t.gif) no-repeat left center;
}

div#content1 {
	width: 630px;
	margin: 10px 5px 10px 0px;	/*幅の指定と位置調整*/
	float: right;				/*2カラム全体を右寄せにする*/
	height: 710px;
}

#content1 #content_body1 h3 {
	margin-bottom: 7px;
}
#content1 #content_body1 ul {
	margin-left: 10px;
	padding-top: 4px;
}
#content_body1 ul li {
	list-style-type: none;
	border-bottom: thin dashed #8C8C8C;
	margin-top: 3px;
	font-size:12px;
	
}

#content_body1 ul li span {
	padding-right: 15px;
}
#content_body1 ul li a {
	/* [disabled]list-style-type: none; */
	text-decoration: none;
}
#content_body1 ul li {
	position: relative;
}

#content_body1 ul li a:hover span {
	color: #0C3;
}

#content_body1 ul li a:hover {
	text-decoration: underline;
	color: #0C3;
}


#content_body1 ul li::after,

#content_body1 ul li::before {
	display: block;
	content: '';
	position: absolute;
}

#content_body1 ul .month {
    font-size: 14px;
    margin-left: 5px;
    color: #3C3;
    font-weight: bold;
    margin-top: 5px;
}


.pagetop1{
	text-align: right;
	margin-left: 240px;
}

.pagetop1 a{
padding:0 0 0 16px;
background:url(img/all_arw01t.gif) no-repeat left center;
}

.rightbtn{
    font-size: 14px;
    background-color: #04D54B;
    border-radius: 3px;
    width: 100px;
    float: right;
    margin-right: 5px;
    margin-top: 1px;
}

ul#submenu_body1 li {
	/* 非表示にする */
    visibility:hidden;
	/* 表示する  
	visibility: visible;*/
	font-size: 90%;			/*文字サイズを90%にする*/
	list-style-type: none;		/*リストマーカー無しにする*/
	display: inline;
	text-align: center;
				/*リスト項目をインライン表示にする*/
}

ul#submenu_body1 li a {
	color:#fff;
    font-weight: bolder;
	box-shadow: 3px 3px 10px 0px rgba(255,255,255,0.75) inset,-3px -3px 10px 0px rgba(0,0,0,0.75) inset;
	text-shadow:0.5px 0.5px 0 #000,
               -0.5px 0.5px 0 #000,
               0.5px -0.5px 0 #000,
               -0.5px -0.5px 0 #000; 
		display: block;	/*サブメニュー項目のパディング*/
	background-color:#b4e391; /* Old browsers */
background: -moz-linear-gradient(top, #b4e391 0%, #61c419 29%, #339b11 44%, #b4e391 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #b4e391 0%,#61c419 29%,#339b11 44%,#b4e391 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #b4e391 0%,#61c419 29%,#339b11 44%,#b4e391 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b4e391', endColorstr='#b4e391',GradientType=0 ); /* IE6-9 */
		/*サブメニュー項目の背景色*/
	text-decoration: none;		/*リンクの下線を無くす*/
	margin-top: -3px;
	margin-right: 1px;
	margin-bottom: 1px;
	margin-left: 1px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 15px;
	border-radius:2px;
}

ul#submenu_body1 li a:hover {
	font-size: 100%;
	color: #CFC;
	background-color: #060;
	text-decoration: underline;
}


#pagebody #submenu #cloverbnr {
	margin-top: 10px;
}
