
/*#### 記事基本構成 ####

┬ .blog-posts
│　│
│　├ .date-outer
│　│　├ .date-header
│　│　│　└ span 投稿日
│　│　│
│　│　└ .date-posts
│　│　 　├ .post-outer
│　│　 　│　└ .post
│　│ 　　│　 　├ h3.post-title 記事タイトル
│　│　 　│　　 └ .post-body 記事本文
│　│　 　│　
│　│　 　├ .post-outer （同じ投稿日の複数記事の場合）
│　│　 　│　└ .post
│　│ 　　│　 　├ h3.post-title 記事タイトル
│　│　 　│　　 └ .post-body 記事本文
│　│　 
│　│
│　├ .date-outer が記事数分つづく…*/

/*##### メイン #####*/
.blog_content .main {
  width: auto;
  max-width: none;
  padding: 0;
  padding-bottom: 1.6em;
}

/*##### 日付 #####*/
.date-header span {
  background-color: #bbbbbb;
  color: #ffffff;
  padding: 0.4em;
  letter-spacing: 3px;
  margin: inherit;
}

/*##### タイトル #####*/
h3.post-title {
  font: normal normal 22px 'Trebuchet MS',Trebuchet,Verdana,sans-serif;
  margin: .75em 0 0;
}

/*##### 本文 #####*/
.post-body {
  font-size: 110%;
  line-height: 1.4;
  position: relative;
  text-align: left;
}


/*#### サイドバー基本構成 ####

┬ .sidebar
│　│
│　├ .widget
│　│　├ h2 ウィジェットタイトル
│　│　└ .widget-content ウィジェットコンテンツ
│　│
│　├ .widget
│　│　├ h2 ウィジェットタイトル
│　│　└ .widget-content ウィジェットコンテンツ*/


/*##### サイドバータイトル #####*/
.widget h2 {
  
}

/*##### サイドバー本文 #####*/
.widget .widget-content {
  
}

/*##### 記事中画像 #####*/
.post-body img {
  max-width: 80%;
  height: auto;
}

.post-body .tr-caption-container img {
  padding: 2.5%;
  padding-bottom: 0;
}

/*##### グーグルツール #####*/
.post-share-buttons .goog-inline-block.dummy-container {
  width: 270px !important;
  overflow: hidden;
}


@media only screen and (min-width: 769px) {

  .post-body {
    font-size: 15px;
    line-height: 28px;
  }
  .post-body img {
    max-width: 95%;
  }
}

