@charset "utf-8";

/********* HTML再定義 ***********************************************/

body {
	padding: 0px;                                  /* （周りの余白） */
	background-color: #FFFfff;                     /* （周りの色　サイトに合わせて変更　28行目と一緒がいいと思う） */
    color:#333333;                                 /* （基本の文字色） */
}

h2, h3, h4, h5, h6 {
	font-size: 120%;
}
h2 {                                               
	margin: 15px 0;
	padding: 5px 0;
	border-top: 1px solid #ff0000;
	border-bottom: 1px solid #ff0000;
	font-weight: bold;
}

/********* 全体 *****************************************************/
div#container {
	width: 780px;                                   /* ！全体の横幅！441行目* html div#containerも同じく変更（たぶん）*/
	margin: 5px auto;
	padding: 10px;                                  /* （本体の周りの余白） */
	border-bottom: 0px solid #ffffff;               /* （一番下の線　太さ　色） */
	background-color: #FFFfff;                      /* （背景色　サイトに合わせて変更） */
}

/********* ヘッダー *************************************************/

div#header {
	clear: both;
}
div#header h1 {
	line-height: 1.0;
	margin: 0;
}
div#header h1 a:link, div#header h1 a:visited {
	color: #222222;
	text-decoration: none;
}
div#header h1 a:active, div#header h1 a:hover {
	color: #777777;
	text-decoration: none;
}


/********* フッター *************************************************/

div#footer {
	clear: both;
}
div#footer address {
	padding-top: 10px;
	border-top: 1px solid #999999;
}

/********* メニュー *************************************************/

div#menu {
	background-color: #FFFfff;                      /* メニューバーの背景色 */
}
div#menu h2 {
	display: none;
}
div#menu ul {
	margin: 0;
	padding: 0px 0px;
}
div#menu ul li {
	display: inline;
	list-style: none;
	margin-right: 10px;
}

div#menu a:link, div#menu a:visited {
	color: #E9967A;                                 /* メニューバーの文字色 visited */
	text-decoration: none;
}
div#menu a:active, div#menu a:hover {
	color: #E9967A;                                 /* メニューバーの文字色 hover*/
	text-decoration: underline;
}
ul.h2{                                              /* メニュー header.htmlのclass="h2" 設定！*/
    text-align:right;

}

/********* 内容 *****************************************************/

div#content {                                               
	float: left;                                    /* left or right*/
	width: 625px;                                   /* 内容の横幅！*/
}
div#content a:link, div#content a:visited {
	color: #CC0066;                                 /* 文字色 link,visited*/
	text-decoration: none;
}
div#content a:active, div#content a:hover {
	color: #cc6666;                                 /* 文字色 active,horver*/
	text-decoration: none;
}

/********* エントリー ***********************************************/

div#entry h2 {
	display: none;
}
div#entry div.entry {
	width:625px;                                   /* エントリーの横幅（内容の横幅に合わせる）*/
	margin: 15px 0;
	border: 2px dotted #B0E0E6;                     /* エントリーの枠　太さ　種類（直線：solid/点線：dotted/破線：dashed）　色 */
}
div#entry div.entry h3 {
	margin: 0;
	padding: 10px 10px 0 10px;
}
div#entry div.entry h3 a:link, div#entry div.entry h3 a:visited {
	color: #191970;                                 /* エントリータイトルの文字色 visited*/
	text-decoration: none;
}
div#entry div.entry h3 a:active, div#entry div.entry h3 a:hover {
	color: #4682B4;                                 /* エントリータイトルの文字色 hover*/
	text-decoration: none;
}
div#entry div.entry div.content {
	margin: 0 10px;
}
div#entry div.entry ul.information {
	margin: 2px 10px 15px 10px;
	padding-top: 2px;
	border-top: 2px solid #87CEEB;                   /* タイトル下線　太さ　種類（直線：solid/点線：dotted/破線：dashed）　色 */
	font-size: 90%;
}
div#entry div.entry ul.information li {
	display: inline;
	margin-right: 5px;
}
div#entry div.entry ul.link {
	margin: 0;
	padding: 10px;
	text-align: right;
}
div#entry div.entry ul.link li {
	display: inline;
	margin-left: 5px;
}

div#entry div#entry_link h3 {
	display: none;
}
div#entry div#entry_link ul.entry_link {
	margin: 0;
}
div#entry div#entry_link ul.entry_link li {
	display: inline;
	list-style: none;
	margin-right: 10px;
}
div#entry div#entry_link ul.entry_link li.home {
	padding-right: 10px;
	padding-left: 10px;
	border-right: 1px solid #D2691E;
	border-left: 1px solid #D2691E;
}
div#entry div#entry_link ul.entry_link li.previous:before {
	content: "<< ";
}
div#entry div#entry_link ul.entry_link li.next:after {
	content: " >>";
}

/********* ページ移動 ***********************************************/

div#page h2 {
	display: none;
}
div#page ul.order {
	margin: 10px 0;
}
div#page ul.order li {
	display: inline;
	list-style: none;
	margin-right: 10px;
}
div#page ul.direct {
	margin: 10px 0;
	text-align: right;
}
div#page ul.direct li {
	display: inline;
	list-style: none;
	margin-left: 10px;
}

/********* コメント *************************************************/

div#comment div.comment ul.information {
	margin: 15px 0 0 0;
	text-align: right;
}
div#comment div.comment ul.information li {
	display: inline;
	margin-left: 5px;
}

/********* トラックバック *******************************************/

div#trackback div.trackback ul.information {
	margin: 15px 0 0 0;
	text-align: right;
}
div#trackback div.trackback ul.information li {
	display: inline;
	margin-left: 5px;
}

/********* インフォメーション ***************************************/

div#information {
	margin-bottom: 30px;
}
div#information ul.continue {
	margin: 0;
	text-align: right;
}
div#information ul.continue li {
	display: inline;
}

/********* ユーティリティ *******************************************/
div#utility {                                              
	float: right;                                   /* left or right*/
	width: 145px;                                   /* サイドメニューの横幅！*/
	margin-left: 10px;
	margin-bottom: 20px;
}
div#utility a:link, div#utility a:visited {
	color: #CC0066;                                 /* 文字色 link,visited*/
	text-decoration: none;
}
div#utility a:active, div#utility a:hover {
	color: #cc6666;                                 /* 文字色 active,horver*/
	text-decoration: none;
}
div#utility h2 {
	display: none;
}
div#utility div.utility {
	margin: 15px 0;
	padding-bottom: 10px;
	background-color: #F0F8FF;                      /* サイドメニューの背景色*/
}
div#utility div.utility h3 {                        /* タイトル設定*/
	padding: 10px 10px 0 10px;
}
div#utility div.utility div.content {
	margin: 0 10px;
}
div#utility div.utility ul {
	margin-right: 0;
}
div#utility div.utility ul li ul {
	margin-top: 0;
	margin-bottom: 0;
}
div#utility div.utility form {
	margin: 0;
}
div#utility div.utility form dl {
	margin: 0;
}
div#utility div.utility form dl dt {
	display: none;
}
div#utility div.utility form dl dd {
	margin: 0;
}
div#utility div.utility form dl dd input {
	width: 130px;                                   /* 検索ボックス横幅！*/
}
div#utility div.utility form p {
	margin: 0 0 10px 0;
}

div#utility div.utility table.calender {
	margin: 0;
	border: 0px solid #000000;
}
                                                    /* カレンダーの設定↓*/
div#utility div.utility table.calender tr th, table.calender tr td {
	padding: 5px;
	border: 0px solid #000000;
	background-color: #F0F8FF;                      /* カレンダー背景色*/
	font-weight: normal;
	text-align: center;
	font-size:10.5px                                /* カレンダー文字サイズ*/
}
div#utility div.utility table.calender tr th, table.calender tr td a:link,
div#utility div.utility table.calender tr th, table.calender tr td a:visited,
div#utility div.utility table.calender tr th, table.calender tr td a:active, 
div#utility div.utility table.calender tr th, table.calender tr td a:hover{
    font-weight: 800;
}
div#utility div.utility table.calender tr td span.day {
	color: #D2691E;                                 /* 平日文字色*/
}
div#utility div.utility table.calender tr td span.satday {
	color: #336699;                                 /* 土曜文字色*/
}
div#utility div.utility table.calender tr td span.sunday {
	color: #CC3366;                                 /* 日曜文字色*/
}
div#utility div.utility ul.calender {
	margin: 10px 0;
    text-align:center;                              /* 先月来月位置 */
}
div#utility div.utility ul.calender li {
	display: inline;
	list-style: none;
	margin-right: 0px;
}

div#utility div.utility ul.gallery {
	margin: 0;
	padding: 0;
}
div#utility div.utility ul.gallery li {
	list-style: none;
}
div#utility div.utility ul.gallery li img {
	max-width: 140px;                               /* ギャラリー最大横幅*/
	max-height: 130px;                              /* ギャラリー最大縦幅*/
	margin-bottom: 5px;
}

/********* ギャラリー ***********************************************/

div#gallery {
	overflow: hidden;
}
div#gallery div.gallery {
	float: left;
	margin-right: 12px;
	margin-bottom: 20px;
}
div#gallery div.gallery p.picture {
	overflow: hidden;
	width: 140px;
	height: 100px;
	margin: 0;
}
div#gallery div.gallery p.picture a {
	color: #FFFFFF;
	text-decoration: none;
}
div#gallery div.gallery p.picture a img {
	min-width: 140px;
	min-height: 100px;
}
div#gallery div.gallery p.picture a span.empty {
	display: block;
	line-height: 100px;
	width: 140px;
	height: 100px;
	background-color: #AAAAAA;
	text-align: center;
}
div#gallery div.gallery p.comment {
	overflow: hidden;
	width: 140px;
	margin: 3px 0 0;
	font-size: 80%;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
}

div#gallery ul {
	margin: 10px 0 20px 0;
}
div#gallery ul li {
	display: inline;
}
div#gallery ul li img {
	margin: 0 2px 10px 0;
}

/********* 個別指定 *************************************************/

div#page_link ul.page_link {
	margin: 0 0 20px 0;
}
div#page_link ul.page_link li {
	display: inline;
	list-style: none;
	margin-right: 10px;
}
div#page_link ul.page_link li.home {
	padding-right: 10px;
	padding-left: 10px; 
	border-right: 1px solid #8B4513;                /* リンク右線 */
	border-left: 1px solid #8B4513;                 /* リンク左線 */
}
div#page_link ul.page_link li.previous:before {
	content: "<< ";
}
div#page_link ul.page_link li.next:after {
	content: " >>";
}

ul.link {
	margin: 0;
	padding: 10px;
	text-align: right;
}
ul.link li {
	display: inline;
	margin-left: 5px;
}

/********* レスポンシブ *********************************************/

@media (max-width: 480px) {
	body {
		padding: 5px;
	}
	form textarea {
		width: 95%;
	}
	img {
		max-width : 100%;
		height: auto;
	}
	div#container {
		width: 90%;
		padding: 15px;
	}
	div#content {
		float: none;
		width: 100%;
	}
	div#entry div.entry {
		width: 100%;
		border-right: 0;
		border-left: 0;
	}
	div#utility {
		float: none;
		width: 100%;
		margin: 0;
	}
}

/********* IE6用設定 ************************************************/

* html body {
	text-align: center;
}
* html div#container {
	width: 800px;                                   /* 全体の横幅！*/
	text-align: left;
}
* html pre {
	width: 100%;
}
* html table tr th, * html table tr td {
	font-size: 80%;
}
