@charset "UTF-8";

/* 
 * 21_colors v1.0.0
 *
 * Copyright (c) 2015 tsui - http://dithis.fem.jp/
 * Licensed under the MIT license - http://opensource.org/licenses/mit-license.php
 *
 */

/* ----- Reset
-------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
strike, strong, sub, sup, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, dropdown, output, ruby, section, summary,
time, mark, audio, video{
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
	border: 0;
	padding: 0;
	margin: 0;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section{
	display: block;
}
body{
	line-height: 1;
}
blockquote, q{
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after{
	content: '';
	content: none;
}
ol, ul{
	list-style: none;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td{
	font-weight: normal;
	text-align: left;
}
/* ----- Clearfix ----- */
.clearfix:before, .clearfix:after{
	content: "";
	display: table;
}
.clearfix:after{
	clear: both;
}
/* For IE 6/7 (trigger hasLayout) */
.clearfix{
	zoom: 1;
}
/* ----- 推奨カスタマイズ
-------------------------------------------------- */ 
/* ----- 全体的なレイアウト ----- */
body{
	color: #666;                               /* フォントの色 */
	font-size: 14px;                           /* フォントサイズ */
	line-height: 1.5;                          /* フォントの行間 */
	font-family: "メイリオ", Meiryo, sans-serif; /* フォントの種類 */
	background-color: #f2f2f2;                 /* 背景色 */
} 
/*----- 全体的なリンクの設定 -----*/
a{
	text-decoration: none;                     /* 下線が付かない */
	-webkit-transition: 0.5s ease;             /* リンク色がフェードするトランジション */
	-moz-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;
}
a:link{           
	color: #002233;                           /* 未訪問のリンク色 */
}
a:visited{
	color: #002233;                           /* 訪問済みのリンク色 */
}
a:hover, a:focus{
	color: #999;                              /* マウスカーソルを乗せたときのリンク色 */
}
a:active{
> 	color: #002233;                           /* 選択中のリンク色 */
}
/*----- ブログタイトルの設定 -----*/
h1{
	color: #fff;                               /* フォントの色 */
	font-size: 30px;                           /* フォントサイズ */
	font-family: "メイリオ", Meiryo, cursive;  /* フォントの種類 */
	font-weight: bold;                         /* フォントの太さ */
}
/*----- ブログタイトルのリンクの設定 -----*/
h1 a:link{
	color: #fff;                               /* 未訪問のリンク色 */
}
h1 a:visited{
	color: #fff;                               /* 訪問済みのリンク色 */
}
h1 a:hover, h1 a:focus{
	color: #999;                               /* マウスカーソルを乗せたときのリンク色 */
}
h1 a:active{
	color: #fff;                               /* 選択中のリンク色 */
}
/*----- 投稿記事タイトルの設定（トップページ） -----*/
.section1 h2{
	color: #002233;                            /* フォントの色 */
	font-size: 14px;                           /* フォントサイズ */
	font-family: "メイリオ", Meiryo, sans-serif;  /* フォントの種類 */
	font-weight: bold;                         /* フォントの太さ */
}
/*----- 投稿記事タイトルの設定（個別ページ） -----*/
.section2 h2{
	color: #002233;                            /* フォントの色 */
	font-size: 20px;                           /* フォントサイズ */
	font-family: "メイリオ", Meiryo, sans-serif;  /* フォントの種類 */
	font-weight: bold;                         /* フォントの太さ */
}
/*----- 投稿記事タイトルのリンクの設定 -----*/
h2 a:link{
                                                   /* 未訪問のリンク色 */
}
h2 a:visited{
                                                   /* 訪問済みのリンク色 */
}
h2 a:hover, h2 a:focus{
                                                   /* マウスカーソルを乗せたときのリンク色 */
}
h2 a:active{
                                                   /* 選択中のリンク色 */
}
/*----- プラグインタイトルの設定 -----*/
.sidebar h3{
display: none;
	color: #333;                               /* フォントの色 */
	font-size: 16px;                           /* フォントサイズ */
	font-family: "Oleo Script", "メイリオ", Meiryo, cursive; /* フォントの種類 */
	font-weight: normal;                       /* フォントの太さ */
}
/* ----- トップページメインコンテナの設定 ----- */
#container1{
	width: 90%;                                /* メインコンテナの横幅 */
	max-width: 1600px;                         /* メインコンテナの横幅の最大値 */
}
/* ----- 個別ページメインコンテナの設定 ----- */
#container2{
	width: 90%;                                /* メインコンテナの横幅 */
	max-width: 1200px;                         /* メインコンテナの横幅の最大値 */
}
/* ----- サイドバーの設定 ----- */
#secondary-column{
	font-size: 12px;                           /* フォントサイズ */
}
/* ----- Global
-------------------------------------------------- */
*, *:before, *:after{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html{
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	overflow-y: scroll;
}
body{
	word-wrap: break-word;
} 
/* ----- Headings
-------------------------------------------------- */
h1{
	margin: 0 0 10px 0;
}
h2{
	border-bottom: 1px solid #e5e5e5;
	padding: 0 0 5px 0;
	margin: 0 0 10px 0;
}
h3{
	font-weight: bold;
	position: relative;
	padding: 5px 1em;
	margin: 0 0 10px 0;
}
h3:before{
	width: 10px;
	height: 1px;
	background-color: #333;
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	margin: -1px 0 0 0;
}
/* ----- Blocks
-------------------------------------------------- */
.entry-content > p, .entry-more > p{
	margin: 0 0 20px 0;
}
p:before, p:after{
	content: "";
	display: table;
}
p:after{
	clear: both;
}
p{
	zoom: 1;
}
blockquote{
	background: #fff url(https://blog-imgs-47.fc2.com/d/i/t/dithis/rdquo06.png) no-repeat right bottom;
	padding: 0 50px 10px 0;
	margin: 0 0 20px 0;
}
blockquote[cite]:after{
	color: #e5a82e;
	font-size: 12px;
	text-align: right;
	content: attr(cite);
	display: block;
}
blockquote p{
	background: url(https://blog-imgs-47.fc2.com/d/i/t/dithis/ldquo06.png) no-repeat left top;
	padding: 10px 0 0 50px;
}
pre{
	font-family: Consolas, "Courier New", Courier, Monaco, monospace;
	line-height: 20px;
	background: url(https://blog-imgs-66.fc2.com/d/i/t/dithis/pre03.gif) repeat left top;
	white-space: -moz-pre-wrap;
	white-space: -pre-wrap;
	white-space: -o-pre-wrap;
	white-space: pre-wrap;
	word-wrap: break-word;
	margin: 0 0 20px 0;
}
hr{
	height: 1px;
	background-color: #333;
	border: none;
	display: block;
	margin: 20px 0;
}
/* ----- Lists
-------------------------------------------------- */
.entry-content > dl, .entry-more > dl{
	margin: 0 0 20px 0;
}
.entry-content > dl dt, .entry-more > dl dt{
	font-weight: bold;
	margin: 5px 0;
}
.entry-content > dl dd, .entry-more > dl dd{
	background-color: #f2f2f2;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 10px;
	margin: 0 0 0 1em;
}
.entry-content ul{
	list-style-type: disc;
}
.entry-content > ul, .entry-more > ul{
	margin: 0 0 20px 0;
}
.entry-content ol{
	list-style-type: decimal;
}
.entry-content > ol, .entry-more > ol{
	margin: 0 0 20px 0;
}
.entry-content ul ul, .entry-content ol ul{
	list-style-type: circle;
}
.entry-content ul li, .entry-content ol li{
	margin: 0 0 0 1em;
}
/* ----- Table
-------------------------------------------------- */
.entry-content > table, .entry-more > table{
	margin: 0 0 20px 0;
}
/* ----- Forms
-------------------------------------------------- */
input, textarea, select, button{
	color: #333;
	font-size: 14px;
	line-height: 1;
	font-family: "ＭＳ Ｐゴシック", "MS PGothic", san-seri;
	border: 1px solid #ccc;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 0 1px 3px #e5e5e5 inset;
	-moz-box-shadow: 0 1px 3px #e5e5e5 inset;
	box-shadow: 0 1px 3px #e5e5e5 inset;
	padding: 8px;
}
input:focus, textarea:focus{
	border: 1px solid #99bbff;
	-webkit-box-shadow: 0 0 5px #99bbff;
	-moz-box-shadow: 0 0 5px #99bbff;
	box-shadow: 0 0 5px #99bbff;
}
#name, #title, #mail, #url{
	width: 60%;
}
#comment{
	width: 80%;
}
#pass{
	width: 30%;
}
#trackback{
	width: 60%;
	margin: 0 0 10px 0;
}
input[type=submit], input[type=reset], input[type=button], button{
	color: #fff;
	background-color: #002233;
	border: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	cursor: pointer;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transform: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;
	padding: 8px;
}
#send, #delete{
	width: 30%;
}
input[type="submit"]:hover, input[type=reset]:hover, input[type=button]:hover, button:hover{
	background-color: #999;
}
input[type=checkbox], input[type=radio]{
	background-color: transparent;
	border: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
/* ----- Inline
-------------------------------------------------- */
.entry-content img{
	max-width: 100%;
	height: auto;
}
br{
	letter-spacing: normal;
}
em{
	color: #ff6666;
}
strong{
	font-weight: bold;
}
ins{
	text-decoration: underline;
}
del{
	color: #999;
	text-decoration: line-through;
}
q{
	background-color: #fff;
}
q:before{
	content: "\201C";
}
q:after{
	content: "\201D";
}
cite{
	font-style: italic;
}
/* ----- Layouts
-------------------------------------------------- */
/* ----- Wrapper ----- */
#wrapper{
	
}
/* ----- Header ----- */
#header{
	height: 160px;
	background: #002233 url(https://blog-imgs-72.fc2.com/d/i/t/dithis/color_line21.gif) repeat-x center bottom;
	-webkit-box-shadow: 0 0 10px 0 #666;
	-moz-box-shadow: 0 0 10px 0 #666;
	box-shadow: 0 0 10px 0 #666;
	margin: 0;
}
#blogname{
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	position: relative;
	top: 50%;
	padding: 0 50px;
}
#blogname p{
	color: #ccc;
	font-size: 12px;
}
#menu{
	position: absolute;
	top: 20px;
	right: 50px;
}
#menu i{
	font-size: 20px;
	line-height: 36px;
	text-shadow: -1px -1px 0 rgba(255, 255, 255, 0.5);
}
#menu ul{
	float: right;
}
#menu ul li{
	float: left;
	margin: 0 5px;
}
#menu a{
	width: 36px;
	height: 36px;
	color: #333;
	line-height: 36px;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.5);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0 0 5px #000;
	-moz-box-shadow: 0 0 5px #000;
	box-shadow: 0 0 5px #000;
	display: inline-block;
}
#menu a:hover{
	background-color: #fff;
}
/* ----- Container ----- */
#container1{
	margin: 0 auto;
}
#container2{
	margin: 0 auto;
}
/* ----- Primary-column ----- */
#primary-column2{
	width: 100%;
	float: left;
	margin: 0 -240px 0 0;
}
#inner2{
	margin: 0 280px 0 0;
}
#grid{
	margin: 0 auto;
}
.section1{
	width: 320px;
	background-color: #fff;
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	float: left;
	position: relative;
	margin: 0 10px 50px 10px;
}
.section1:nth-child(6n+1){
	border-top: 5px solid #cc6666;
}
.section1:nth-child(6n+2){
	border-top: 5px solid #cccc66;
}
.section1:nth-child(6n+3){
	border-top: 5px solid #66cc66;
}
.section1:nth-child(6n+4){
	border-top: 5px solid #66cccc;
}
.section1:nth-child(6n+5){
	border-top: 5px solid #6666cc;
}
.section1:nth-child(6n+6){
	border-top: 5px solid #cc66cc;
}
.section2{
	background-color: #fff;
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	position: relative;
	padding: 20px;
	margin: 0 auto 50px auto;
}
.entry-thumb{
	width: 318px;
	height: 213px;
}
.entry-thumb:after{
	width: 100%;
	height: 10px;
	background: url(https://blog-imgs-72.fc2.com/d/i/t/dithis/shadow21.png) no-repeat center top;
	content: "";
	position: absolute;
	top: 213px;
}
.entry-thumb a:empty{
	width: 318x;
	height: 213px;
	background: url(https://blog-imgs-72.fc2.com/d/i/t/dithis/noimage21.gif) no-repeat center center;
	display: block;
}
.entry-inner{
	padding: 20px;
}
.entry-title{
	margin: 0 0 10px 0;
}
.entry-summary{
	margin: 0 0 10px 0;
}
.entry-date1{
	width: 80px;
	height: 80px;
	color: #fff;
	line-height: 1;
	font-family: "Oleo Script", cursive;
	text-align: center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	position: absolute;
	top: -40px;
	left: 50%;
	padding: 12px 0 0 0;
	margin: 0 0 0 -40px;
}
.section1:nth-child(6n+1) .entry-date1{
	text-shadow: 1px 1px 0 #990000;
	background-color: #cc6666;
}
.section1:nth-child(6n+2) .entry-date1{
	text-shadow: 1px 1px 0 #999900;
	background-color: #cccc66;
}
.section1:nth-child(6n+3) .entry-date1{
	text-shadow: 1px 1px 0 #009900;
	background-color: #66cc66;
}
.section1:nth-child(6n+4) .entry-date1{
	text-shadow: 1px 1px 0 #009999;
	background-color: #66cccc;
}
.section1:nth-child(6n+5) .entry-date1{
	text-shadow: 1px 1px 0 #000099;
	background-color: #6666cc;
}
.section1:nth-child(6n+6) .entry-date1{
	text-shadow: 1px 1px 0 #990099;
	background-color: #cc66cc;
}
.day{
	font-size: 28px;
}
.month01:before{
	content: "Jan";
}
.month02:before{
	content: "Feb";
}
.month03:before{
	content: "Mar";
}
.month04:before{
	content: "Apr";
}
.month05:before{
	content: "May";
}
.month06:before{
	content: "Jun";
}
.month07:before{
	content: "Jul";
}
.month08:before{
	content: "Aug";
}
.month09:before{
	content: "Sep";
}
.month10:before{
	content: "Oct";
}
.month11:before{
	content: "Nov";
}
.month12:before{
	content: "Dec";
}
.extend a{
	color: #fff;
	line-height: 1;
	background-color: #002233;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	display: inline-block;
	padding: 10px;
	margin: 10px 0 0 0;
}
.extend a:hover{
	background-color: #999;
}
.entry-meta{
	font-size: 12px;
}
.entry-meta i{
	color: #002233;
	font-size: 14px;
}
.entry-meta ul{
	float: right;
}
.entry-meta ul li{
	float: left;
	margin: 0 0 0 10px;
}
.entry-content{
	margin: 20px 0;
}
.entry-more{
}
dl.relate_dl{
	background: none;
	background-color: transparent;
	border: none;
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
        /*padding: 20px*/
	padding: 0;
	margin: 20px 0 0 0;
}
dl.relate_dl dt.relate_dt{
      /*
        font-weight: normal;
	background: none;
	background-color: transparent;
	border: none;
	padding: 0;
	margin: 0;
      */
        font-weight: bold;
        color: white;
        background: #002233;
        padding: 3px 3px 3px 10px;
        margin: 0;
        border-radius: 5px 5px 0 0;
}
dl.relate_dl dd.relate_dd{
	background: none;
	background-color: transparent;
	border: none;
        /*padding: 0;*/
	padding: 10px 20px 10px 20px;
	margin: 0;
}
.relate_ul{
	list-style-type: disc;
}
.relate_li {
        font-weight: bold;
        font-size: 15px;
        border-bottom: 1px solid gainsboro;
}
.relate_li a:hover {
        background: #023;
        color: #fff;
}
.fc2_footer{
	margin: 20px 0;
}
.community{
	font-size: 12px;
	text-align: right;
}
.tag{
	font-size: 12px;
	text-align: right;
}
.tag span:after{
	content: ", ";
}
.tag span:last-child:after{
	content: "";
}
.category{
	font-size: 12px;
	text-align: right;
}
.alert{
	color: #cc3333;
	background-color: #ffe5e5;
	border: 1px solid #e67373;
	padding: 10px;
	margin: 0 0 20px 0;
}
.alert:before{
	content: "Error: ";
	display: inline;
}
.alert:empty{
 	display: none;
}
#comment_form dd{
	margin: 0 0 10px 0;
}
.date{
	font-size: 12px;
}
.cm-title, .tb-title, .list-title, .seach-title{
	font-weight: bold;
}
.cm-entry, .tb-entry{
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 20px;
	margin: 0 0 20px 0;
}
.cm-title{
	padding: 10px;
}
.cm-entry:nth-child(6n+1) .cm-title{
	border-left: 3px solid #cc6666;
}
.cm-entry:nth-child(6n+2) .cm-title{
	border-left: 3px solid #cccc66;
}
.cm-entry:nth-child(6n+3) .cm-title{
	border-left: 3px solid #66cc66;
}
.cm-entry:nth-child(6n+4) .cm-title{
	border-left: 3px solid #66cccc;
}
.cm-entry:nth-child(6n+5) .cm-title{
	border-left: 3px solid #6666cc;
}
.cm-entry:nth-child(6n+6) .cm-title{
	border-left: 3px solid #cc66cc;
}
.cm-entry p, .tb-entry p, .list-entry p, .search-entry p{
	margin: 10px 0;
}
.list-entry, .search-entry{
	border-bottom: 1px dotted #e5e5e5;
	padding: 0 0 5px 0;
	margin: 0 0 10px 0;
}
.tb-form{
	margin: 0 0 20px 0;
}
.pn-entry{
	font-size: 12px;
	text-align: center;
 	overflow: hidden;
 	position: relative;
	margin: 0 0 50px 0;
}
.pn-entry ul{
	float: left;
	position: relative;
	left: 50%;
}
.pn-entry ul li{
	float: left;
	position: relative;
	left: -50%;
	margin: 0 5px;
}
.preventry{
	border-right: 1px solid #ccc;
	padding: 0 10px 0 0;
        font-weight: bold;
}
.home{
        font-weight: bold;
}
.nextentry{
	border-left: 1px solid #ccc;
	padding: 0 0 0 10px;
        font-weight: bold;
}
.pn-page{
	font-size: 14px;
	line-height: 36px;
	font-family: "Oleo Script", cursive;
	text-align: center;
 	overflow: hidden;
 	position: relative;
	margin: 0 0 50px 0;
}
.pn-page ul{
	float: left;
	position: relative;
	left: 50%;
}
.pn-page li{
	float: left;
	position: relative;
	left: -50%;
	margin: 0 5px 5px 5px;
}
.pn-page span{
	width: 36px;
	background-color: #e5e5e5;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	display: inline-block;
}
.pn-page a{
	width: 36px;
	color: #fff;
	background-color: #002233;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	display: inline-block;
}
.pn-page a:hover{
	text-decoration: none;
	background-color: #999;
}
.pn-page:empty{
	display: none;
}
/* ----- Secondary-column ----- */
#secondary-column{
	width: 240px;
	float: right;
}
.sidebar{
	margin: 0 0 20px 0;
}
.sidebar h3{
	padding: 0;
}
.sidebar h3:before{
	background-color: transparent;
}
.sidebar a{
	color: #666;
}
.sidebar ul{
	list-style-type: disc;
}
.sidebar ul li{
	margin: 0 0 0 1em;
}
.sidebar ul ul{
	list-style-type: circle;
}
.calender{
	width: 210px;
	text-align: center;
	border-collapse: separate;
	border-spacing: 2px;
	margin: 0 auto;
}
.calender caption{
	text-align: center;
}
.calender th{
	width: 28px;
	line-height: 28px;
	text-align: center;
}
.calender th#sun{
	color: #ff6666;
}
.calender th#sat{
	color: #6666ff;
}
.calender td{
	width: 28px;
	line-height: 28px;
	text-align: center;
}
.calender td a{
	width: 28px;
	color: #002233;
	text-decoration: underline;
	display: block;
}
.plugin-tag a{
}
.plugin-search input[type=submit]{
	width: auto;
	padding: 8px;
}
/* ----- Footer ----- */
#footer{
	font-size: 12px;
	clear: both;
	padding: 0 0 20px 0;
}
#totop{
	font-size: 50px;
	line-height: 1;
	position: fixed;
	bottom: 30px;
	right: 50px;
}
#totop a{
	color: #333;
}
#totop a:hover{
	color: #ccc;
}
#totop span{
	display: none;
}
#rights{
	text-align: center;
}
/* ----- Misc. ----- */
img.emoji{
	box-shadow: none;
	vertical-align: middle;
}
.frame{
	border: 1px solid #ccc;
}
.photo{
	background-color: #fff;
	border-top: 1px solid #e5e5e5;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-left: 1px solid #e5e5e5;
	box-shadow: 2px 2px 5px 0 #ccc;
	padding: 10px;
}
.pull-right{
	display: inline;
	float: right;
	margin: 0 0 0 10px;
}
.pull-left{
	display: inline;
	float: left;
	margin: 0 10px 0 0;
}
.btn{
	color: #fff;
	text-shadow: 1px 1px 0 #243cb3;
	background-color: #527acc;
	background: -webkit-gradient(linear, left top, left bottom, from(#527acc), to(#5252cc));
	background: -webkit-linear-gradient(top, #527acc, #5252cc);
	background: -moz-linear-gradient(top, #527acc, #5252cc);
	background: -o-linear-gradient(top, #527acc, #5252cc);
	background: -ms-linear-gradient(top, #527acc, #5252cc);
	background: linear-gradient(to bottom, #527acc, #5252cc);
	border: 1px solid #243cb3;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding: 5px 10px;
}
.btn:hover{
	background: #5252cc;
}
a.btn{
	color: #fff;
}
.aa{
	font-size: 16px;
	line-height: 17px;
	font-family: "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	white-space: pre;
}
/* ----- Responsive ----- */
@media screen and (max-width: 800px){
#name, #title, #mail,#url, #comment, #pass, #trackback{
	width: 100%;
	margin: 0 0 5px 0;
}
.entry-content img{
	max-width: 100%;
	width /***/: auto;
	height: auto;
}
#menu{
	top: 10px;
	right: 10px;
}
#container1{
	width: 100%;
}
#container2{
	width: 100%;
}
#primary-column1{
	width: 100%;
	float: none;
	padding: 0 40px;
	margin: 0;
}
#primary-column2{
	width: 100%;
	float: none;
	padding: 0 40px;
	margin: 0;
}
#inner1{
	margin: 0;
}
#inner2{
	margin: 0;
}
dl.relate_dl{
	padding: 10px;
}
.cm-entry, .tb-entry{
	padding: 10px;
}
#secondary-column{
	width: 100%;
	float: none;
	padding: 0 50px;
	margin: 0;
}
#totop{
	bottom: 10px;
	right: 10px;
}
}
@media screen and (max-width: 480px){
#blogname{
	padding: 0 20px;
}
#grid{
	margin: 0 10px;
}
#primary-column1{
	padding: 0 10px;
}
#primary-column2{
	padding: 0 10px;
}
.section1{
	width: 100%;
	margin: 0 0 50px 0;
}
.section2{
	padding: 10px;
}
.entry-thumb{
	width: 100%;
}
.entry-thumb a:empty{
	width: 100%;
}
.entry-inner{
	padding: 10px;
}
#secondary-column{
	padding: 0 10px;
}
}


#toppage-haed-box {
    width: 100%;
    margin: 0 0 15px 0;
    border-bottom: 2px solid #002233;
}
#toppage-haed-box a:hover {
    background: #002233;
    color: white;
}
table.thb-contents {
    width: 100%;
}
table.thb-contents th {
    border-top: 2px solid #002233;
    border-right: 2px solid #002233;
    border-left: 2px solid #002233;
    border-bottom: 1px solid #002233;
    background: whitesmoke;
    padding: 3px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.page-bottom-box {
    width: 100%;
    margin: 20px 0 30px 0;
}
.page-bottom-box .contents {
    width: 90%;
    margin: 0 auto;
    background: whitesmoke;
}
.page-bottom-box .contents table {
    margin: 0 auto;
}
.page-bottom-box .contents td {
    padding: 5px;
}

.home-bottom-ninreco {
    width:90%;
    margin:0 auto;
}

.my-box {
    background: white;
    padding: 3px;
    border: 1px solid #002233;
}

.blogroll-area {
    width: 100%;
}
.blogroll-body {
    width: 95%;
    margin: 0 auto;
}
.blogroll-channel {
    height: 300px !important;
}
.blogroll-channel .blogroll-list-wrap li {
    font-size: 14px;
}
.blogroll-channel .blogroll-list-wrap li:nth-child(odd) {
    background: whitesmoke;
}

.blogroll-channel a:hover {
    background: #002233;
    color: white;
}

.ninreco {
    width: 100%;
    margin-bottom: 50px;
    text-align:center;
}
.ninreco #reco-top {
    width: 100%;
    /*margin: 0 auto;*/
}
.ninreco2 {
    width:100%;
    background: white;
    border: 1px solid gainsboro;
    overflow: hidden;
}
.ninreco2 table {
    margin: 5px 5px 5px 10px;

}
.ninreco2 a {
    font-weight: bold;
    font-size: 14px;
    color: midnightblue;
}
.ninreco2 a:hover {
    background: #002233;
    color: white;
}


#acrp11_na2ka4 a:hover {
   background: #002233;
   color: white;
}
table.acr_ranking_sys {
    width: 100%;
}
table.acr_ranking_sys td {
   padding: 2px 2px 3px 3px;
   border: 1px solid #002233;
}
#acrr_na2ka4 a:hover {
    background: #002233;
    color: white;
}

#recent-kiji td {
    border: 1px solid #002233;
    padding: 2px 2px 3px 3px;
    background: white;
}
#recent-kiji a:hover {
    background: #002233;
    color: white;
}
#recent-kiji td.kiji-date {
    background: lavender;
    font-weight: bold;
}

.kiji-search {
    background: #002233;
    color: #ffffff;
    padding: 3px;
    margin-bottom: 5px;
    font-size: 16px;
    border-radius: 5px;
}
.plugin-title {
    background: #002233;
    color: #ffffff;
    padding: 3px 3px 3px 5px;
    font-size: 14px;
    border-radius: 5px 5px 0 0;
}
.plugin-subtitle {
    border-left: 1px solid #002233;
    border-right: 1px solid #002233;
    background: lavender;
    color: #002233;
    padding: 3px;
}
.plugin-subtitle img {
    vertical-align: middle;
}
.plugin-box {
    background: white;
    border: 1px solid #002233;
    padding: 3px 5px 3px 5px;
}
.table-list {
    width: 100%;
}
.table-list td {
    border: 1px solid #002233;
    padding: 2px 2px 3px 3px;
    background: white;
}
.table-list a:hover {
    background: #002233;
    color: white;
}
.table-list td.highlight {
    background: lavender;
    font-weight: bold;
}
.ul-list {
    background: white;
    border: 1px solid #002233;
    padding: 3px 3px 3px 8px;
}
.ul-list a:hover {
    background: #002233;
    color: white;
}
.kiji-table {
    border: 1px solid gray;
}
.kiji-table td {
    margin: 0;
    padding: 2px;
    border: 1px solid gray;
}
.title-ichiran {
    width: 100%;
}
.title-ichiran td {
    border: 1px solid gray;
    padding: 3px;
    vertical-align: top;
}
.title-ichiran ul {
    margin-left: 10px !important;
}
.title-ichiran a:hover {
    background: #002233;
    color: white;
}

.matome-table {
    border-collapse:separate;
    border-spacing: 5px;
}
.matome-table td {
   font-weight: bold;
}
.matome-table td.td-mid {
    vertical-align: middle;
    padding-left: 5px;
}
.matome-table a:hover {
    background: lavender;
    color: darkblue;
}
.link-table {
    width: 100%;
    border-collapse:separate;
    border-spacing:3px;
}
.link-table td {
    border: 1px solid #002233;
    border-radius: 5px;
    padding: 3px;
    font-weight: bold;
    text-align: center;
}

.kanso {
    margin:0 5px;
    padding:10px 5px;
    border:2px solid gainsboro;
    border-radius:10px;
    background:white;
}
iframe {
    max-width: 100%;
}
