@charset "UTF-8";

/* 
 * 31_silhouette v1.0.1
 *
 * Copyright (c) 2015 tsui - https://dithis.fem.jp/
 * Licensed under the MIT license - https://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,
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;
}
/* ----- Clearfix ----- */
.clearfix:before, .clearfix:after{
	content: "";
	display: table;
}
.clearfix:after{
	clear: both;
}
/* For IE 6/7 (trigger hasLayout) */
.clearfix{
	zoom: 1;
}
/* ----- 推奨カスタマイズ
-------------------------------------------------- */ 
/* ----- 全体的なレイアウト ----- */
body{
	color: #000;                               /* フォントの色 */
	font-size: 14px;                           /* フォントサイズ */
	line-height: 1.5;                          /* フォントの行間 */
	/*font-family: "メイリオ", Meiryo, san-seri;*/ /* フォントの種類 */

font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;

	background-color: #fff;                    /* 背景 */
} 
/*----- 全体的なリンクの設定 -----*/
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: #1a5e80;                            /* 未訪問のリンク色 */

}
a:visited{
	color: #1a5e80;                            /* 訪問済みのリンク色 */
}
a:hover, a:focus{
	color: #999;                               /* マウスカーソルを乗せたときのリンク色 */
}
a:active{
 	color: #1a5e80;                            /* 選択中のリンク色 */
}
/* ----- メインコンテナ（個別ページ） ----- */
#container{
	width: 60%;                                /* メインコンテナの横幅 */
	max-width: 800px;                          /* メインコンテナの横幅の最大値 */
}
/*----- ブログタイトルの設定 -----*/
h1{
	color: #333;                               /* フォントの色 */
	font-size: 30px;                           /* フォントサイズ */
	font-family: "Parisienne", "メイリオ", Meiryo, san-seri; /* フォントの種類 */
	font-weight: bold;                         /* フォントの太さ */
	text-shadow: -1px -1px 0 #fff;             /* テキストシャドウ */
}
/*----- ブログタイトルのリンクの設定 -----*/
h1 a:link{
	color: #333;                               /* 未訪問のリンク色 */
}
h1 a:visited{
	color: #333;                               /* 訪問済みのリンク色 */
}
h1 a:hover, h1 a:focus{
	color: #999;                               /* マウスカーソルを乗せたときのリンク色 */
}
h1 a:active{
	color: #333;                               /* 選択中のリンク色 */
}
/*----- ブログ説明文の設定 -----*/
#blogname p{
	font-size: 12px;                           /* フォントサイズ */
}
/*----- 投稿記事タイトルの設定（トップページ） -----*/
.section1 h2{
	color: #000;                               /* フォントの色 */
	font-size: 16px;                           /* フォントサイズ  14>16 mori*/
	/*font-weight: bold; */                         /* フォントの太さ */

	text-align: center;

/*----タイトルの下に線-----mori----*/
  border-top:    solid 1px gray;
  border-bottom: solid 1px gray;


  /*border-top:    solid 1px #333333;
  border-bottom: solid 1px #333333;*/



padding-top: 10px;
padding-bottom: 10px;
/*----タイトルの下に線-----mori----*/


}
/*----- 投稿記事タイトルの設定（個別ページ） -----*/
.section2 h2{
	color: #000;                               /* フォントの色 */
	font-size: 20px;                           /* フォントサイズ */
	/*font-weight: bold;  */                       /* フォントの太さ */
}
/*----- 投稿記事タイトルのリンクの設定 -----*/
h2 a:link{
 
                                                   /* 未訪問のリンク色 */
}
h2 a:visited{
                                                   /* 訪問済みのリンク色 */
}
h2 a:hover, h2 a:focus{
                                                   /* マウスカーソルを乗せたときのリンク色 */
}
h2 a:active{
                                                   /* 選択中のリンク色 */
}




/*-------タイトルを黒に-mori-------------*/
.section1 h2 a{
        color: #333333;                            /* 未訪問のリンク色 */
}

.section1 h2 a:visited{
	color: #333333;                            /* 訪問済みのリンク色 */
}

.section1 h2 a:hover, a:focus{
	color: #999;                               /* マウスカーソルを乗せたときのリンク色 */
}


.section2 h2 a{
        color: #333333;                            /* 未訪問のリンク色 */
}

.section2 h2 a:visited{
	color: #333333;                            /* 訪問済みのリンク色 */
}

.section2 h2 a:hover, a:focus{
	color: #999;                               /* マウスカーソルを乗せたときのリンク色 */
}


/*---------------------------------------*/




/*----- サイドバーの設定 -----*/
#secondary-column{
	color: #fff;                               /* フォントの色 */
	font-size: 14px;                           /* フォントサイズ */
}
/*----- サイドバータイトルの設定 -----*/
.box h3{
	color: #fff;                               /* フォントの色 */
	font-size: 14px;                           /* フォントサイズ */
}
/*----- サイドバーリンクの設定 -----*/
.box a:link{
	color: #ccc;                               /* 未訪問のリンク色 */
}
.box a:visited{
	color: #ccc;                               /* 訪問済みのリンク色 */
}
.box a:hover, h1 a:focus{
	color: #999;                               /* マウスカーソルを乗せたときのリンク色 */
}
.box a:active{
	color: #ccc;                               /* 選択中のリンク色 */
}
/* ----- 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 20px 0;
}
h2{
	margin: 0 0 20px 0;
}
h3{
	font-weight: bold;
	border-bottom: 2px solid #000;
	padding: 10px 0;
	margin: 0 0 10px 0;
}
h4{
	font-weight: bold;
	position: relative;
	padding: 10px 0 10px 15px;
	margin: 0 0 10px 0;
}
h4:before{
	width: 10px;
	height: 1px;
	background-color: #000;
	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: 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: #1a5e80;
	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;
	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 1.5em;
}
/* ----- Table
-------------------------------------------------- */
.entry-content > table, .entry-more > table{
	margin: 0 0 20px 0;
}
/* ----- Forms
-------------------------------------------------- */
input, textarea, select, button{
	color: #000;
	font-size: 14px;
	line-height: 1;
	font-family: "ＭＳ Ｐゴシック", "MS PGothic", san-seri;
	border: 1px solid #000;
	background-color: #fff;
	padding: 10px;
}
input:focus, textarea:focus{
	border: 1px solid #9bf;
	-webkit-box-shadow: 0 0 5px #9bf;
	-moz-box-shadow: 0 0 5px #9bf;
	box-shadow: 0 0 5px #9bf;
}
#name, #title, #mail, #url{
	width: 60%;
}
#comment{
	width: 80%;
}
#pass{
	width: 30%;
}
#trackback{
	width: 60%;
	margin: 0 0 10px 0;
}
#send-btn, #delete-btn{
	width: 30%;
}
input[type=submit], input[type=reset], input[type=button], button{
	color: #fff;
	background: none;
	background-color: #1a5e80;
	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;
}
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{
}
q:before{
	content: "\201C";
}
q:after{
	content: "\201D";
}
cite{
	font-style: italic;
}
/* ----- Layouts
-------------------------------------------------- */
/* ----- Wrapper ----- */
/* ----- Header ----- */


/* ----- Header ----- */




#header{



}
#social{
	width: 100%;
	background-color: #000;
	padding: 5px 20px;
}
#social i{
	font-size: 14px;
	line-height: 30px;
}
#social ul{
	float: right;
}
#social ul li{
	float: left;
	margin: 0 5px;
}
#social a{
	color: #fff;
}
#social a:hover{
	color: #999;
}
.search{
	position: relative;
}
.search-input{
	width: 30px;
	height: 30px;
	background-color: transparent;
	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;
	-o-transition: 0.5s ease;
	transition: 0.5s ease; 
	z-index: 1;
	position: absolute;
	right: 0;
	padding: 0;
}
.search-input:focus{
	width: 200px;
	background-color: #fff;
	border: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	cursor: text;
	padding: 10px;
}
.search-btn{
	cursor: pointer;
	position: relative;
}
.search-btn{
	color: #fff;
}
.search-btn:hover{
	color: #999;
}
#blogname{
	width: 90%;
	max-width: 1200px;
	text-align: center;
	padding: 100px;
	margin: 0 auto;

/*background: url(https://blog-imgs-54.fc2.com/u/m/i/umimita/logoz_n12.png) no-repeat center center;*/




}
#blogname h1{
	position: relative;
	padding: 0 0 15px 0;
	margin: 0 0 10px 0;
}
#blogname h1:after{
	width: 200px;
	height: 5px;
	content: "";
	background: url(https://blog-imgs-82.fc2.com/d/i/t/dithis/stripe-black31.gif) repeat left top;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin: 0 0 0 -100px;
}
#sp-menu{
	text-align: center;
	display: none;
}
#sp-menu a{
	color: #fff;
	background-color: #000;
	border-radius: 10px;
	display: inline-block;
	padding: 10px;
	margin: 0 0 50px 0;
}
/* ----- Container ----- */
#grid1{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
#grid2{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
#container{
	margin: 0 auto;
}
/* ----- Primary-column ----- */
#primary-column{
	width: 100%;
	float: left;
}
.grid-item1{
	width: -webkit-calc(25% - 10px);
	width: -moz-calc(25% - 10px);
	width: calc(25% - 10px);
	margin: 0 5px 10px 5px;


        margin: 0 5px 30px 5px;   /*mori 10>20 下余白を広げる-----*/


}
.section1{
	font-size: 14px;   /*メイン記事　12>14 mori*/
	/*border: 1px solid #000; ---角の丸いをとるmori ---*/
	/*border-radius: 10px;    ---角の丸いをとるmori ---*/
	cursor: pointer;
}
.section2, .section3{
	border: 1px solid #000;
	border-radius: 10px;
	padding: 30px;
	margin: 0 0 50px 0;
}
.entry-thumb img{
	width: 100%;
	height: auto;
	vertical-align: bottom;
	/*-webkit-border-top-right-radius: 10px;
	-webkit-border-top-left-radius: 10px;
	-moz-border-radius-topright: 10px;
	-moz-border-radius-topleft: 10px;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px; --- 角の丸いをとるmori ---*/
}
.entry-date1{
	font-size: 20px;
	/*font-family: "Parisienne", cursive;*/
	text-align: center;
	margin: 10px 0;


}
.entry-date2{
	font-size: 20px;
	/*font-family: "Parisienne", cursive; mori*/
	text-align: center;
	margin: -43px 0 20px 0;
}
.date-inner{
	background-color: #fff;
	display: inline-block;
	padding: 0 10px;
}
.month01:before{
	content: "January";
}
.month02:before{
	content: "February";
}
.month03:before{
	content: "March";
}
.month04:before{
	content: "April";
}
.month05:before{
	content: "May";
}
.month06:before{
	content: "June";
}
.month07:before{
	content: "July";
}
.month08:before{
	content: "August";
}
.month09:before{
	content: "September";
}
.month10:before{
	content: "October";
}
.month11:before{
	content: "November";
}
.month12:before{
	content: "December";
}
.section1 h2{
	margin: 0 0 10px 0;
}
.section2 h2{
	text-align: center;
	position: relative;
	padding: 0 0 10px 0;
}
.section2 h2:after{
	width: 200px;
	height: 1px;
	content: "";
	background-color: #000;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin: 0 0 0 -100px;
}
.entry-summary{
	padding: 0 10px 10px 10px;
}
.entry-summary p{
	margin: 0 0 10px 0;
}
.extend{
}
.extend a{
}
.entry-meta1{
}
.entry-meta1 i{
	font-size: 14px;
}
.entry-meta1 ul{
	float: right;
}
.entry-meta1 ul li{
	float: left;
	margin: 0 0 0 10px;
}
.entry-meta2{
	font-size: 12px;
}
.entry-meta2 i{
	font-size: 14px;
}
.entry-meta2 i{
	font-size: 14px;
}
.entry-meta2 ul{
	float: right;
}
.entry-meta2 ul li{
	float: left;
	margin: 0 0 0 10px;
}
.deny{
	color: #ccc;
}
.entry-content{
	margin: 0 0 20px 0;
}
.entry-more{
}
dl.relate_dl{
	background: none;
	background-color: transparent;
	border: none;
	border: 1px dotted #000;
	padding: 20px;
	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;
}
dl.relate_dl dd.relate_dd{
	background: none;
	background-color: transparent;
	border: none;
	padding: 0;
	margin: 0;
}
.relate_ul{
	list-style-type: disc;
}
.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;
}
.title{
	font-size: 20px;
	font-family: "Parisienne", cursive;
	text-align: center;
	margin: -43px 0 20px 0;
}
.title span{
	background-color: #fff;
	display: inline-block;
	padding: 0 10px;
}
.cm-form dt{
	width: 36px;
	line-height: 1;
	text-align: center;
	padding: 11px 0;
	display: inline-block;
}
.cm-form dd{
	margin: -36px 0 10px 36px;
}
.secret{
	line-height: 1;
	padding: 10px 0;
}
.date{
	font-size: 12px;
}
.date ul li{
	float: left;
	border-right: 1px solid #000;
	padding: 0 5px 0 0;
	margin: 0 5px 0 0;
}
.date ul li:last-child{
	border: none;
}
.cm-title, .tb-title, .list-title, .search-title{
	font-weight: bold;
}
.cm-entry p, .tb-entry p, .list-entry p, .search-entry p{
	margin: 10px 0;
}
.cm-entry, .tb-entry{
	border-bottom: 1px dotted #000;
	padding: 0 0 10px 0;
	margin: 0 0 20px 0;
}
.cm-entry:last-child, .tb-entry:last-child{
	margin: 0;
}
.list-entry, .search-entry{
	border-bottom: 1px dotted #000;
	padding: 0 0 10px 0;
	margin: 0 0 10px 0;
}
.tb-form{
	margin: 0 0 20px 0;
}
.recent-entry{
	border-bottom: 1px dotted #000;
	padding: 0 0 10px 0;
	margin: 0 0 10px 0;
}
.recent-thumb{
 	width: 120px;
 	height: 120px;
	border-radius: 50%;
	display: block;
	float: left;
	overflow: hidden;
 	position: relative;
	margin: 0 20px 0 0;
}
.recent-thumb img{
 	width: 240px;
 	position: absolute;
 	top: 50%;
 	left: 50%;
	margin: -80px 0 0 -120px;
}
.recent-info{
 	height: 120px;
  	vertical-align: middle;
 	display: table-cell;
}
h3.recent-title{
	background-color: transparent;
	border: none;
	padding: 0;
	margin: 0;
}
.pn-entry{
	font-size: 12px;
	margin: 0 0 50px 0;
}
.pn-entry i{
	font-size: 14px;
}
.pn-entry ul li{
	height: 1.5em;
	text-overflow: ellipsis;
	white-space: nowrap;
	float: left;
	overflow: hidden;
}
.preventry{
	width: 45%;
}
.home{
	width: 10%;
	text-align: center;
}
.nextentry{
	width: 45%;
	text-align: right;
}
.pn-page{
	font-size: 12px;
	line-height: 36px;
	text-align: center;
	overflow: hidden;
 	position: relative;
	margin: 40px 0 50px 0;
}
.pn-page ul li{
	display: inline-block;
	margin: 3px;
}
.pn-page span{
	width: 36px;
	display: inline-block;
}
.pn-page a{
	width: 36px;
	display: inline-block;
}
.pn-page a:hover{
	background-color: #fff;
}
.prevpage{
	float: left;
}
.nextpage{
	float: right;
}
/* ----- Secondary-column ----- */
#secondary-column{
	background-color: #000;
	position: relative;
	padding: 40px 0;
}
.grid-item2{
	width: -webkit-calc(25% - 10px);
	width: -moz-calc(25% - 10px);
	width: calc(25% - 10px);
	margin: 0 5px 10px 5px;
}
#secondary-column:before{
	width: 300px;
	height: 100px;
	/*background: url(https://blog-imgs-82.fc2.com/d/i/t/dithis/secondary-column31-cat.png) no-repeat left top;*/
	content: "";
	z-index: -1;
	position: absolute;
	top: -100px;
	left: 100px;
}
.box{
	padding: 10px;
}
.box h3{
	background-color: transparent;
	border: none;
	border-left: 3px solid #1a5e80;
	padding: 10px;
}
.box ul{
	list-style-type: disc;
}
.box ul li{
	margin: 0 0 0 1.5em;
}
.box 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;
	font-weight: normal;
	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;
	display: block;
	border-bottom: 1px solid #ccc;
}
/* ----- Footer ----- */
#footer{
	color: #fff;
	font-size: 12px;
	text-align: center;
	background-color: #000;
	padding: 0 0 20px 0;
}
#totop {
	font-size: 30px;
	line-height: 48px;
	z-index: 3;
	position: fixed;
	right: 100px;
	bottom: 50px;
}
#totop a{
	width: 50px;
	color: #1a5e80;
	border: 1px solid #1a5e80;
	display: block;
	border-radius: 10px;
}
#totop a:hover{
	background-color: #f2f2f2;
}
#totop span{
	display: none;
}
#rights{
	position: relative;
	padding: 15px 0 0 0;
}
#rights:before{
	width: 200px;
	height: 5px;
	content: "";
	background: url(https://blog-imgs-82.fc2.com/d/i/t/dithis/stripe-white31.gif) repeat left top;
	position: absolute;
	top: 0;
	left: 50%;
	margin: 0 0 0 -100px;
}
/* ----- Misc. ----- */
#change_mobile{
    	width: 100% !important;
    	height: auto !important;
}
#change_mobile img{
    	width: 100% !important;
    	height: auto !important;
}
img.emoji{
	vertical-align: middle;
}
.frame{
	border: 1px solid #ccc;
}
.shadow{
	box-shadow: 2px 2px 5px 0 #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;
}
a.btn{
	color: #fff;
}
.btn{
	text-shadow: 1px 1px 0 #47b3b3;
	background-color: #a1e5e5;
	background: -webkit-gradient(linear, left top, left bottom, from(#a1e5e5), to(#47b3b3));
	background: -webkit-linear-gradient(top, #a1e5e5, #47b3b3);
	background: -moz-linear-gradient(top, #a1e5e5, #47b3b3);
	background: -ms-linear-gradient(top, #a1e5e5, #47b3b3);
	background: -o-linear-gradient(top, #a1e5e5, #47b3b3);
	background: linear-gradient(to bottom, #a1e5e5, #47b3b3);
	border: 1px solid #47b3b3;
	border-radius: 3px;
	display: inline-block;
	padding: 5px 10px;
}
.btn:hover{
	background: #5252cc;
}
.aa{
	font-size: 16px;
	line-height: 17px;
	font-family: "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	white-space: pre;
}
/* ----- Responsive ----- */
@media screen and (max-width: 1024px){
#name, #title, #mail,#url, #comment, #pass, #trackback{
	width: 100%;
	margin: 0 0 5px 0;
}
.entry-content img{
	max-width: 100%;
	width /***/: auto;
	height: auto;
}
#container{
	width: 90%;
}
.grid-item1, .grid-item2{
	width: -webkit-calc(33.333% - 10px);
	width: -moz-calc(33.333% - 10px);
	width: calc(33.333% - 10px);
}
.cm-entry, .tb-entry{
	padding: 10px;
}
}
@media screen and (max-width: 768px){
#social i{
	font-size: 20px;
}
#sp-menu{
	display: block;
}
#container{
	width: 80%;
}
#primary-column{
	float: none;
	margin: 0;
}
#inner{
	margin: 0;
}
.grid-item1, .grid-item2{
	width: -webkit-calc(50% - 10px);
	width: -moz-calc(50% - 10px);
	width: calc(50% - 10px);
}
.recent-thumb{
	float: none;
	margin: 0 auto 10px auto;
}
.recent-info{
	height: auto;
 	vertical-align: top;
 	display: block;
}
.recent-date{
	text-align: center;
}
.recent-title{
	text-align: center;
}
}
@media screen and (max-width: 480px){
#blogname{
	width: 100%;
	padding: 50px 10px;
	margin: 0;
}
#container{
	width: 100%;
	padding: 0 10px;
	margin: 0;
}
#grid1, #grid2{
	width: 100%;
	padding: 0 10px;
	margin: 0;
}
.grid-item1, .grid-item2{
	width: -webkit-calc(100% - 20px);
	width: -moz-calc(100% - 20px);
	width: calc(100% - 20px);

	/*margin: 0 0 10px 0;*/

        margin: 0 0 20px 0;/*mori [上][右][下][左]下に余白を増やした10>20*/


}
.section2{
	padding: 10px;
}
.entry-date2{
	margin: -23px 0 20px 0;
}
.title{
	margin: -23px 0 20px 0;
}
#secondary-column:before{
	top: -100px;
	left: 50%;
	margin: 0 0 0 -150px;
}
#footer{
	padding: 0 10px 20px 10px;
}
#totop{
	bottom: 80px;
	right: 10px;
}
}



/*------------------------------------------------------------------------------------*/
.new7 {
 /* background: url(https://blog-imgs-85.fc2.com/u/m/i/umimita/icon_new.png) no-repeat left center;*/
/*  color: red;
  font-size: 14px;*/

  position: absolute;
  top: 0px; /*35>45>33へ変更*/
  right: -8px;
  /*left: 8px;*/



  width: 60px;
  height: 20px;

}


