@charset "UTF-8";
/* CSS Document */

/* reset */
* {
	margin: 0;
	padding: 0;
}

/* common */
body {
	background-image: url(../img/bg-body.jpg);
	color: #363636;
	font-family:"ヒラギノ丸ゴ Pro W4", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
}

.rmv {
	position: absolute;
	top: -99999px;
	left: -999999px;
}

.required {
	color: #ff6767;
}

p.center {
	text-align: center;
}

.mb20 {
	margin-bottom: 20px;
}

/* header */
#header {
	height: 200px;
	background: #999999 url(../img/bg-header.jpg) no-repeat top right;
	color: #ffffff;
}

#header h1 {
	margin: 60px 10px 10px 30px;
	font-size: 24px;
}

#header h1 a,
#header h1 a:hover {
	color: #ffffff;
}

#header p {
	margin: 0 33px;
	font-size: 16px;
}

/* navbar */
.navbar {
	font-family: 'Comfortaa', cursive;
}

/* contents */
#contents {
	overflow: hidden;
	margin-bottom: 20px;
	background-image: url(../img/bg-contents.jpg);

	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

#contents .post {
	margin: 10px;
	padding: 10px;
	background-color: #ffffff;
	border: 1px #c9c9c9 dashed;
	line-height: 1.6;

	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

#contents .post .post-title {
	font-size: 20px;
	line-height: 1.0;
}

#contents .post .post-title a {
	padding: 5px 0 5px 32px;
	background: url(../img/icon-footprint.png) no-repeat center left;
	color: #5f6f77;
}

#contents .post .date {
	margin-bottom: 15px;
	padding: 5px;
	background-color: #d7d5a2;
	color: #3D474C;
	text-align: right;
}

#contents .post .date p {
	margin: 0;
}

#contents .post .text {
	margin-bottom: 20px;
	text-align: center;
}

#contents .post .text img {
	margin: 5px;
	padding: 5px;
	border: 1px #c9c9c9 solid;
}

#contents .post .text .aligncenter {
	margin: 0 auto;
}

#contents .post .post-info {
	overflow: hidden;
	padding: 5px;
	background-color: #d7d5a2;
	border: 1px #C4C292 solid;
	color: #3D474C;
}

#contents .post .post-info p {
	display: block;
	float: right;
	margin: 0 8px;
	padding: 0;
}

#contents .search-title {
	margin: 20px 0;
	color: #795932;
	font-size: 18px;
	font-family: 'Comfortaa', cursive;
	text-align: center;
}

/* page navi */
.wp-pagenavi {
	margin-bottom: 30px;
	text-align: center;
}

.wp-pagenavi .pages {
	border-width: 0;
}

.wp-pagenavi .current {
	background-color: #d7d5a2;
	border: 1px #c4c292 solid !important;
}

.wp-pagenavi a,
.wp-pagenavi .extend {
	background-color: #f4f3ea;
	border: 1px #c4c292 solid !important;
}

/* comments */
#comments-box h3 {
	margin: 0 0 10px 0;
	padding: 8px;
	color: #795932;
	font-size: 16px;
	line-height: 1.0;
	font-family: 'Comfortaa', cursive;

	background-color: #fafafa;
	background-image: -moz-linear-gradient(top, #ffffff, #d7d5a2);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#d7d5a2));
	background-image: -webkit-linear-gradient(top, #ffffff, #d7d5a2);
	background-image: -o-linear-gradient(top, #ffffff, #d7d5a2);
	background-image: linear-gradient(to bottom, #ffffff, #d7d5a2);
	background-repeat: repeat-x;
	border: 1px solid #c4c292;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

#comments-box ul#comments-list {
	margin: 0 0 30px 0;
	padding: 0 10px;
}

#comments-box ul#comments-list li {
	padding: 10px;
	border-bottom: 1px #cdcdcd solid;
	list-style: none;
}

#comments-box ul#comments-list li p.cominfo {
	margin-bottom: 0;
	color: #795932;
	text-align: right;
}

#comments-box p#no-comment {
	margin: 0 0 30px 0;
	padding: 0 10px;
}

#comments-box #commentform {
	padding: 0 10px;
}

/* sidebar */
#sidebar .side-box {
	margin-bottom: 20px;
}

#sidebar .side-box h2 {
	margin: 0;
	padding: 8px;
	color: #795932;
	font-size: 16px;
	line-height: 1.0;
	font-family: 'Comfortaa', cursive;

	background-color: #fafafa;
	background-image: -moz-linear-gradient(top, #ffffff, #fdf3da);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#fdf3da));
	background-image: -webkit-linear-gradient(top, #ffffff, #fdf3da);
	background-image: -o-linear-gradient(top, #ffffff, #fdf3da);
	background-image: linear-gradient(to bottom, #ffffff, #fdf3da);
	background-repeat: repeat-x;
	border: 1px solid #cdcdcd;
	-webkit-border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0;
}

#sidebar .side-box .side-body {
	overflow: hidden;
	padding: 10px;
	background-color: #ffffff;
	border: 1px solid #cdcdcd;
	border-top-width: 0;
	
	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	border-radius: 0 0 4px 4px;
}

#sidebar .side-box .side-body ul {
	margin: 0 0 10px 0;
}

#sidebar .side-box .side-body ul li {
	list-style: none;
	border-bottom: 1px #cdcdcd solid;
}

#sidebar .side-box .side-body ul li a {
	display: block;
	padding: 10px 5px 8px 5px;
}

#side-social ul {
	overflow: hidden;
	margin: 0 !important;
}

#sidebar #side-social ul li {
	display: block;
	float: left;
	width: 32px;
	height: 32px;
	margin-right: 10px;
	border-bottom-width: 0;
}

#sidebar #side-social ul li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
}

#sidebar #side-social ul li#sb-twitter {
	background: url(../img/icon-twitter.png) no-repeat top left;
}

#sidebar #side-social ul li#sb-rss {
	background: url(../img/icon-rss.png) no-repeat top left;
}

#sidebar #side-show-cats .item-box {
	overflow: hidden;
}

#sidebar #side-show-cats .item-box.ponte {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px #cdcdcd solid;
}

#sidebar #side-show-cats .item-box p.photo,
#sidebar #side-show-cats .item-box p.text {
	float: left;
	margin-bottom: 0;
}

#sidebar #side-show-cats .item-box p.photo {
	margin-right: 10px;
}

#sidebar #side-show-cats .item-box p.text {
	font-size: 12px;
}

#sidebar .twitter-timeline {
	margin-bottom: 20px;
}

#sidebar #side-satooya img {
	border: 1px #cdcdcd solid;
	padding: 2px;
}

/* footer */
#footer {
	margin-bottom: 30px;
	padding: 10px;
	background-color: #f4f3ea;
	text-align: right;

	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

#footer p {
	margin: 0;
}

/* bootstrap custamaise */
.navbar-inner {
  background-image: -moz-linear-gradient(top, #ffffff, #d7d5a2);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#d7d5a2));
  background-image: -webkit-linear-gradient(top, #ffffff, #d7d5a2);
  background-image: -o-linear-gradient(top, #ffffff, #d7d5a2);
  background-image: linear-gradient(to bottom, #ffffff, #d7d5a2);
}

.navbar .nav > .current-menu-item > a,
.navbar .nav > .current-menu-item > a:hover,
.navbar .nav > .current-menu-item > a:focus {
  color: #555555;
  text-decoration: none;
  background-color: #d7d5a2;
  -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
     -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
          box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
}
