@charset "utf-8";


/*全体
---------------------------------------------------------------------------*/
body {
	background: url(none);
}

/*h1タグ
---------------------------------------------------------------------------*/
h1 {
	display: none;
}

/*container
---------------------------------------------------------------------------*/
#container {
	width: auto;
	padding: 5px;	/*ボックス内の余白*/
	border-radius: 0px;	/*角丸のサイズ*/
	-webkit-box-shadow: none;
	box-shadow: none;
}

/*header
---------------------------------------------------------------------------*/
header {
	margin-bottom: 0px;
}

/*smartphone用menubar
---------------------------------------------------------------------------*/
/*メニュー１個ごと*/
#menubar ul li {
	float: none;
	width: 100%;
}
#menubar ul li a {
	text-decoration: none;
	text-align: center;	/*文字をセンタリング*/
	display: block;
	border-bottom: 2px dotted #8c8c8c;	/*下線の幅、線種、色*/
	padding: 5px 0px;			/*上下、左右への余白*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間 0.5秒。*/
	transition: 0.5s;			/*同上*/
}
#menubar ul li a:hover {
	background-color: #dfeccd;	/*マウスオン時の背景色*/
}
/*最後のメニュー*/
#menubar ul li:last-child {
	margin-bottom: 20px;
}

/*contents
---------------------------------------------------------------------------*/
#contents {
	width: auto;
}

/*main,sub
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}
#blog {
	overflow: auto;
    width: 100%;
    height:1800px;
}
#blog iframe {
	-o-transform:scale(0.45);
	-webkit-transform:scale(0.45);
	-moz-transform:scale(0.45);
	-ms-transform:scale(0.45);
	transform-origin:0 0;
	-o-transform-origin:0 0;
	-webkit-transform-origin:0 0;
	-moz-transform-origin:0 0;
	-ms-transform-origin:0 0;
}

/*main
---------------------------------------------------------------------------*/
/*mainのh1タグ*/
#main h2 {
	padding: 0px 10px 0px 10px;	/*左から、上、右、下、左側への余白*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#bbd890), to(#5fa003));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#bbd890, #6da220 49%, #5fa003 50%);	/*同上*/
	background-image: linear-gradient(#bbd890, #6da220 49%, #5fa003 50%);			/*同上*/
}
/*mainの段落タグ*/
#main p {
	padding: 0.5em 5px 1em;
}

/*homeメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	height: auto;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	margin-bottom: 20px;
}
#mainimg img {
	border: 5px solid #FFF;
}
#slide_image {
	height: auto;
	width: 100%;
	position: relative;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
#slide_image2 {
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/*footer
---------------------------------------------------------------------------*/
footer {
	background-color: #dfeccd;
	border-top: 1px solid #CCC;
}

/*home更新情報・お知らせ
---------------------------------------------------------------------------*/
/*ブロック全体*/
#new dl {
	height: auto;
	padding-left: 0;
}
/*日付*/
#new dt {
	float: none;
	width: auto;
}
/*記事*/
#new dd {
	padding-left: 0;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
/*テーブル内の右側*/
.ta1 td{
	width: auto;
	padding: 2px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 100px;
	padding: 2px;
}

/*その他
---------------------------------------------------------------------------*/
/*写真*/
img.wa {
	width: 100%;
	height: auto;
}
#sub #submenu {
	display: none;
}
#menubar {
	display: block;
}
/*メニュー折りたたみ*/
#top #menubar_hdr {
	display: none;
}
#menubar_hdr {
	display: inline;
	position: absolute;
	top: 0px;
	right: 10px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
	background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
	background-image: linear-gradient(#fbfbfb, #e5e5e5);
	padding: 10px;
	border: 1px solid #cfcfcf;
	border-radius: 0px 0px 6px 6px;
	z-index: 10;
}
