/************************************************************************************
RESET
*************************************************************************************/
html, body, address, blockquote, div, dl, form, h1, h2, h3, h4, h5, h6, ol, p, pre, table, ul,
dd, dt, li, tbody, td, tfoot, th, thead, tr, button, del, ins, map, object,
a, abbr, acronym, b, bdo, big, br, cite, code, dfn, em, i, img, kbd, q, samp, small, span,
strong, sub, sup, tt, var, legend, fieldset {
	margin: 0;
	padding: 0;
}

* {
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

fieldset {
	border: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* set image max width to 100% */
img {
    border: 0; /* 1 */
    -ms-interpolation-mode: bicubic; /* 2 */
	max-width: 100%;
	height: auto;
	width: auto\9; /* 3 */
}

img.image-effect{
	/* box shadow */
	-webkit-box-shadow:0 0px 7px rgba(0,0,0,.7);
	-moz-box-shadow:0 0px 7px rgba(0,0,0,.7);
	box-shadow:0 0px 7px rgba(0,0,0,.7);
}

/* set html5 elements to block */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display: block;
}

/************************************************************************************
GENERAL STYLING
*************************************************************************************/
body {
	background: #fffff5;
	font: .81em/150% Arial, Helvetica, sans-serif;
	color:#666;
}

a {
	color:#999;
	text-decoration: none;
	outline: none;
}

a:hover {
	color:#F90;
	text-decoration: underline;
}

a.comic {
	color:#0C6;
	text-decoration: none;
	outline: none;
}

a.comic:hover {
	text-decoration: underline;
}


p {
	margin: 0 0 1.2em;
	padding: 0;
}

/* list */
ul, ol {
	margin: 1em 0 1.4em 24px;
	padding: 0;
	line-height: 140%;
	list-style:none;
}
li {
	margin: 0 0 .5em 0;
	padding: 0;
}

/* headings */
h1, h2, h3, h4, h5, h6 {
	line-height: 1.4em;
	margin: 20px 0 .4em;
	color: #000;
}

h1 {
	font-size: 2em;
}
h2 {
	font-size: 1.6em;
}
h3 {
	font-size: 1.4em;
}
h4 {
	font-size: 1.2em;
}
h5 {
	font-size: 1.1em;
}
h6 {
	font-size: 1em;
}

/* reset webkit search input styles */
input[type=search] {
	-webkit-appearance: none;
	outline: none;
}
input[type="search"]::-webkit-search-decoration, 
input[type="search"]::-webkit-search-cancel-button {
	display: none;
}

/************************************************************************************
STRUCTURE
*************************************************************************************/
#pagewrap {
	width: 980px;
	margin: 0 auto;
}

/************************************************************************************
HEADER
*************************************************************************************/
#header {
	position: relative;
	height: 180px;
}

/* site logo */
#site-logo {
	position: absolute;
	top:10px
}

#site-logo a {
	font: bold 30px/100% Arial, Helvetica, sans-serif;
	color: #fff;
	text-decoration: none;
}

/* site description */
#site-description {
	font: italic 100%/130% "Times New Roman", Times, serif;
	color: #999;
	position: absolute;
	top: 95px;
}

.rain{
	border: #999 solid 1px;
	padding: 24px;
}

/* searchform */
#searchform {
	position: absolute;
	right: 10px;
	bottom: 6px;
	z-index: 100;
	width: 250px;
}
#searchform #s {
	width: 140px;
	float: right;
	background: #fff;
	border: none;
	padding: 6px 10px;
	/* border radius */
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	/* box shadow */
	-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
	box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
	/* transition */
	-webkit-transition: width .7s;
	-moz-transition: width .7s;
	transition: width .7s;
}

/************************************************************************************
MAIN NAVIGATION
*************************************************************************************/
#main-nav {
	width: 100%;
	background: #ccc;
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 100;
	/* gradient */
	background: #ff9900 url(images/nav-bar-bg.gif) repeat-x;
	background: -webkit-gradient(linear, left top, left bottom, from(#ffcc00), to(#ff9900));
	background: -moz-linear-gradient(top,  #ffcc00,  #ff9900);
	background: linear-gradient(-90deg, #ffcc00, #ff9900);
	/* rounded corner */
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	/* box shadow */
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 1px 1px rgba(0,0,0,.5);
	-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 1px 1px rgba(0,0,0,.5);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 1px 1px rgba(0,0,0,.5);
}

#main-nav li {
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	position: relative;
}

#main-nav li:first-child {
	margin-left: 10px;
}

#main-nav a {
	line-height: 100%;
	font-weight: bold;
	color: #fff;
	display: block;
	padding: 14px 15px;
	text-decoration: none;
	text-shadow: 0 -1px 0 rgba(0,0,0,.5);
}

#main-nav a:hover {
	color: #fff;
	background: #474747;
	/* gradient */
	background: -webkit-gradient(linear, left top, left bottom, from(#ff6600), to(#ff9900));
	background: -moz-linear-gradient(top,  #ff6600,  #ff9900);
	background: linear-gradient(-90deg, #ff6600, #ff9900);
}

/************************************************************************************
UPPER CONTENT NAVI
*************************************************************************************/
#up-content-navi{
	width: 100%;
	margin: 0;
	padding: 0;
	left: 0;
	bottom: 0;
	z-index: 100;
}

#up-content-navi li {
	margin: 0 20px 0 0;
	padding: 0;
	list-style: none;
	float: left;
	position: relative;
}

a.current{
	color:#F90;
	text-decoration:underline;
}

a.current:hover{
	text-decoration:none;
}

#up-content-navi li:first-child {
	margin-left: 10px;
}

/************************************************************************************
CONTENT
*************************************************************************************/
#content {
	background: #fff;
	margin: 10px 0 30px;
	padding: 20px 35px;
	width: 680px;
	float: right;
	/* rounded corner */
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	/* box shadow */
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,.5);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,.5);
	box-shadow: 0 1px 3px rgba(0,0,0,.5);
}

#information {
	background: #fff;
	margin: 30px 0 30px;
	padding: 20px 35px;
	width: 680px;
	float: right;
	/* rounded corner */
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	/* box shadow */
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,.5);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,.5);
	box-shadow: 0 1px 3px rgba(0,0,0,.5);
}

#content article h1 {
	border-left:20px #FF9900 solid;
	border-bottom:2px #FFCC33 solid;
	padding-left:10px;
	margin-bottom:20px;
}

#content article h2 {
	border-left:10px #FFCC33 solid;
	padding-left:10px;
	margin-bottom:10px;
}

#content article h3.fb {
	border-left:10px #FF9900 solid;
	padding-left:10px;
	margin-bottom:10px;
}

/* post */
.post {
	margin-bottom: 40px;
}
.post-title {
	margin: 0 0 5px;
	padding: 0;
	font: bold 26px/120%;
}
.post-title a {
	text-decoration: none;
	color: #000;
}
.post-meta {
	margin: 0 0 10px;
	font-size: 90%;
}

/* post image */
.post-image {
	margin: 0 0 15px;
}

/************************************************************************************
SIDEBAR
*************************************************************************************/
#sidebar {
	width: 200px;
	float: left;
	margin: 10px 0 30px;
}
.sidecontent {
	border:#FC3 solid 1px;
	background: #fff;
	margin: 0 0 30px;
	padding: 10px 20px;
	/* rounded corner */
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	/* box shadow */
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,.5);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,.5);
	box-shadow: 0 1px 3px rgba(0,0,0,.5);
}
.sidetitle {
	margin: 0 0 5px;
	padding: 0;	
}
.sidecontent ul {
	margin: 0;
	padding: 0;
}
.sidecontent li {
	margin: 0;
	padding: 6px 0;
	list-style: none;
	clear: both;
	border-top: solid 1px #eee;
}

.sidecontent h4 a{
	color:#000;
}

.sidecontent h4 a:hover {
	color:#F90;
	text-decoration: underline;
}


/************************************************************************************
sharing tag
*************************************************************************************/
.to_pagetop{
	text-align:right;
}

.to_toppage{
	text-align:center;
}

.to_toppage a{
	color:#ff9900;
	font-size:1.2em;
}

.to_toppage a:hover{
	text-decoration:underline;
}

a.camp {
	color:#F00;
}
/************************************************************************************
FOOTER
*************************************************************************************/
#footer {
	border-top:#Fc0 solid 1px;
	border-bottom:#Fc0 solid 1px;
	padding-top:15px;
	margin-bottom:1px;
	clear: both;
	color: #777;
	font-size: 85%;
	text-indent:10px;
}

#footer a {
	color: #fff;
}

/************************************************************************************
CLEARFIX
*************************************************************************************/
.clearfix:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
.clearfix { display: inline-block; }
.clearfix { display: block; zoom: 1; }