/*-----------------------------------------------------
ブログ投稿スタイル
-------------------------------------------------------*/

/* 小見出し/コメント */

/* テキストの基本スタイル */
.post p, .post  li, .post  h1, .post  h2, .post  h3, .post  h4, .post  h5,.post h6 {
	font-size: 117%;
	line-height: 24px;
}
/* タイトル */
.post h1 { font-size: 159%; }
.post h2 { font-size: 150%; }
.post h3 { font-size: 142%; }
.post h4 { font-size: 134%; }
.post h5 { font-size: 125%; } 

/* 太字 */
.post strong { font-weight: bold; }

/* イタリック */
.post em { font-style: italic; }
 
/* イメージ画像 */
.post .aligncenter {
    display: block;
    margin: 0 auto;
}
.post .alignright {
	float: right;
	margin-left: 15px;
}
.post .alignleft {
	float: left;
	margin-right: 15px;
}
 
.post img[class*="wp-image-"],
.post img[class*="attachment-"] {
    height: auto;
    max-width: 100%;
}
 
/* clearfix */
.post .clearfix {
    overflow: hidden;
    zoom: 1;
}
.post .clearfix:after {
    content: ""
    display: block;
    clear: both;
}
/* 画像キャプション */
.post .wp-caption-text {
	text-align: center;
}

/* 引用 */
.post blockquote{
	background-color:#ddd;
	padding:3em 1em;
	position:relative;
}
.post blockquote:before{
	content:"“";
	font-size:600%;
	line-height:1em;
	font-family:"ＭＳ Ｐゴシック",sans-serif;
	color:#999;
	position:absolute;
	left:0;
	top:0;
}
.post blockquote:after{
	content:"”";
	font-size:600%;
	line-height:0em;
	font-family:"ＭＳ Ｐゴシック",sans-serif;
	color:#999;
	position:absolute;
	right:0;
	bottom:0;
}

/* リストタグ標準 */
.post li {
	list-style-type: inherit;
}
.post ul, post ol {
	list-style-type: disc;
}
.post ul li, .post ol li {
	list-style-position: inside;
	margin-bottom: 7px;
}

/* テーブルのスタイル */
.post table {
	border-top: 1px solid #CCC;
	border-left: 1px solid #CCC;
	width: 100%;
}
.post table th {
	background-color: #EEE;
}
.post table th, .post table td {
	border-bottom: 1px solid #CCC;
	border-right: 1px solid #CCC;
	padding: 7px;
}

/* 投稿のメタ情報出力 */
.list-post-meta {
	border-top: 1px solid #AAA;
	padding-top: 5px;
	margin-top: 20px;
}

.nav-previous_post_link {
	margin-top: 20px;
}




/* **************************************************** */
/* メディアクエリ
/* **************************************************** */

@media screen and (max-width: 979px) {
	/* 979px以下用（タブレット用）の記述 */
}
@media screen and (max-width: 767px) {
	/* 767px以下用（タブレット／スマートフォン用）の記述 */
}
@media screen and (max-width: 479px) {
	/* 479px以下用（スマートフォン用）の記述 */
}

	/* デフォルト：479px以下用（スマートフォン用）の記述 */
@media screen and (min-width: 480px) {
	/* 480px以上用（タブレット／スマートフォン用）の記述 */
}
@media screen and (min-width: 768px) {
	/* 768px以上用（タブレット用）の記述 */
}
@media screen and (min-width: 980px) {
	/* 980px以上用（PC用）の記述 */
}

@media screen and (min-width: 768px) and (max-width: 979px) {
	/* 768px - 979px用（タブレット用）の記述 */
}
@media screen and (min-width: 480px) and (max-width: 767px)  {
	/* 480px - 767px用（タブレット／スマートフォン用）の記述 */
}