
/* ===========================
共通
============================*/

#tumblr {
	width:100%;	/* ブロック横幅 */ 
	/*height:280px;	ブロック縦幅 */
	overflow: auto;	/* スクロール表示 */ 
	padding:10px;
	line-height:150%;
	text-align:left;
}

#tumblr * { font-size:100%; }


#tumblr img{
	width:500px;	/* 画像あり投稿の場合のサムネイルサイズ */ 
}

#tumblr strong, #tumblr b{
	color:red;	/* tumblr側で太字にした場合に、サイト側で何色にするかの設定 */ 
}

#tumblr .post{
	color:#3F4E74;
	font-weight:bold;	/* 日付とタイトル */ 
	list-style:none;
}

#tumblr a{
	color:#3F4E74;	/* タイトル */ 
}

#tumblr .post_c{
	border-bottom:1px dotted;	/* 本文 */ 
	margin-bottom:15px;
}


/* ===========================
PC用
============================*/
@media screen and (min-width: 920px){

	#tumblr {
		height:400px;
		/*width:100%;*/
		/*float:left;*/
		/*margin-right:5%;*/
	}

}

/* ===========================
タブレット用
============================*/
@media screen and (min-width:671px) and (max-width:919px){

	#tumblr {
		height:350px;
		/*width:100%;*/
		/*float:left;*/
		/*margin-right:5%;*/
	}

}

/* ===========================
スマホ用
============================*/
@media screen and (max-width:670px){

	#tumblr {
		/*width:100%;*/
		height:200px;
	}

}

