@charset "UTF-8";
/*開発中は開発効率重視で@importを利用するけどいずれは取り除きたい[TODO]*/
/*@import url("css/feedly.css");feedlyバルーンのスタイル*/
/*@import url("css/blog-card.css");ブログカードのスタイル*/
/*@import url("css/extension.css");拡張CSSのスタイル*/
/*@import url("css/other.css");外部パーツ微調整*/
/*@import url("css/sns.css");SNSボタンなどのスタイル*/
/*@import url("webfonts/icomoon/style.css");自作のアイコンフォントスタイル*/
/*@import url("css/fluidity.min.css");とりあえず何でもレスポンシブ化するスタイル*/

/*!
Theme Name: Simplicity1.8.0
Description: Simplicityの意味は、単純、簡単、簡素、質素です。飾り気のないカスタマイズの土台となれるようなテーマを目指して作りました。
Theme URI: http://wp-simplicity.com/
Author: yhira
Author URI: http://nelog.jp/
Version: 1.8.0 20150721
Tags: white, two-columns, left-sidebar, right-sidebar, flexible-width
License: GNU General Public License
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/


/*************************************
テーマファイルを編集する場合は子テーマを利用して編集することを推奨します。
http://wp-simplicity.com/downloads/child-theme/
*************************************/

/************************************
** 基本設定（General Setting）
************************************/
html,
body {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

html {
  overflow: auto;
}

body {
  font-family:
    'Quicksand', 'New Roman', 'Bitter', 'Hiragino Kaku Gothic ProN',
    Meiryo, sans-serif;
  font-size: 1em;
  overflow: hidden;
  /*height:100vh;*/
}

img {
  border-width: 0px;
  height: auto;
}

.article {
  font-size: 15px;
  line-height: 160%;
  color: #333;
  margin-top: 7px;
}




/*記事・カテゴリ中の画像を要素内に収める*/
.article img,
.category-description img,
.wp-caption,
.hover-image {
  max-width: 100%;
  height: auto !important;
}

.aligncenter {
  clear: both;
}

/************************************
** 見出し（H1-6）
************************************/
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 130%;
  color: #666666;
}

.article h1,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
  position: relative;
  margin-top: 35px;
  margin-bottom: 20px;
}

.article h1 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 117%;
}

#top-title {
  padding: 0 0 10px 0;
  margin: 5px 0 10px 0;
  font-size: 19px;
  font-weight: normal;
  border-bottom: solid 2px #C2A182;
}

#top-title .sub-right {
  font-size: 12px;
  float: right;
  margin-right: 5px;
}

#archive-title {
  padding-bottom: 20px;
  font-size: 26px;
}

.article h2 {
  border-left: 3px solid #ff8200;
  color: #333;
  font-size: 22px;
  margin: 20px 0 10px;
  padding: 15px 20px;
}

.article h3,
#comment-area h3,
#related-entries h3 {
  border-bottom: 3px solid #ff8200;
  color: #000;
  font-size: 20px;
  font-weight: normal;
  padding: 10px 0 5px;
}

.article h4,
.article h5,
.article h6 {
  font-size: 20px;
  padding: 8px 0;
}

.article h4 {
  border-bottom: 5px dashed #eee;
}

/************************************
** アンカー
************************************/
a {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #FF8200;
}

a:hover img {
  opacity: 0.8;
}

#new-entries a,
#popular-entries a,
#sidebar .widget_views a,
#sidebar .post-tag-widget a,
.wpp-list a,
.entry-read a,
.related-entry-read a,
.article-list .entry-title a {
  color: #333;
}

#new-entries a,
#popular-entries a,
#sidebar .widget_views a,
#sidebar .post-tag-widget a,
.wpp-list a,
.article-list .entry-title a {
  text-decoration: none;
}

#new-entries a:hover,
#popular-entries a:hover,
#sidebar .widget_views a:hover,
#sidebar .post-tag-widget a:hover,
.wpp-list a:hover,
.entry-read a:hover,
.entry .post-meta a:hover,
.related-entry-read a:hover,
.entry a:hover,
.related-entry-title a:hover,
.navigation a:hover,
#footer-widget a:hover,
#footer-widget-mobile a:hover,
.article-list .entry-title a:hover {
  color: #FF8200;
  text-decoration: none;
}

#new-entries a:hover,
#popular-entries a:hover,
#sidebar .widget_views a:hover,
#sidebar .post-tag-widget a:hover,
.wpp-list a:hover:hover {
  text-decoration: none;
}


/************************************
** 引用（blockquote）
************************************/
blockquote {
  background: none repeat scroll 0 0 rgba(245, 245, 245, 0.8);
  border: 1px solid #FFFFFF;
  margin: 1em 0;
  padding: 20px 55px;
  position: relative;
}


blockquote:before {
  color: #C8C8C8;
  content: "“";
  font-family: serif;
  font-size: 600%;
  left: 0;
  line-height: 1em;
  position: absolute;
  top: 0;
}

blockquote:after {
  bottom: 0;
  color: #C8C8C8;
  content: "”";
  font-family: serif;
  font-size: 600%;
  line-height: 0;
  position: absolute;
  right: 0;
  bottom: -16px;
}

/* Internet Explorer11のみに適用したい設定 */
@media screen and (min-width:0\0) {

  *::-ms-backdrop,
  blockquote:before {
    left: -55px;
  }

  *::-ms-backdrop,
  blockquote:after {
    right: -55px;
  }
}



/************************************
** リスト（List）
************************************/
ul,
ol {}

ul ul {
  margin-left: 1em;
}

dl {
  margin: 30px 0;
}

dt {
  font-weight: bold;
}

dd {
  margin-bottom: 5px;
}

/*
#the-content ul li{
  list-style-type:none;
}
#the-content > ul > li:before{
  content: "\f0da";
  font-family: FontAwesome;
  margin-right:7px;
}

#the-content > ul > li > ul > li:before{
  content: "\f101";
  font-family: FontAwesome;
  margin-right:7px;
}

#the-content > ul > li > ul > li > ul > li:before{
  content: "\f105";
  font-family: FontAwesome;
  margin-right:7px;
}
*/
/************************************
** テーブル（Table）
************************************/
.article table {
  border-collapse: collapse;
}

.article th {
  border: solid 1px #ccc;
  background-color: #eee;
}

.article td {
  border: solid 1px #ccc;
}

.article th,
.article td {
  padding: 3px 5px;
}

.article ol,
.article ul,
.article dl {
  line-height: 150%;
}

.article>ol,
.article>ul,
.article>dl {
  margin: 30px 0;
}

.article>ol ol,
.article>ul ul,
.article>dl dl {
  margin: 0;
}

/************************************
** その他（Other）
************************************/
pre {
  background-color: #eee;
  border: 1px solid #ccc;
  padding: 7px;
  overflow: auto;
}

hr {
  color: #fff;
  margin: 10px 0;
  width: 100%;
  border-top: 1px solid #eee;
  border-bottom: none;
  border-left: none;
  border-right: none;
}

.category-description {
  margin-top: 15px;
  margin-bottom: 30px;
  background-color: #f7f7f7;
  padding: 5px 20px;
  border-radius: 3px;
  border: 1px solid #ddd;
}

.wpp-range {
  text-align: right;
  font-size: 14px;
}

span.search-excerpt {
  background-color: #FF9;
}

.invisible {
  display: none;
}

hr.sep {
  background-image: -moz-linear-gradient(left center, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  border: 0 none;
  height: 1px;
  position: relative;
  margin-bottom: 130px;
}

/************************************
** レイアウト（Layout）
************************************/
#container {
  margin: 0;
  padding: 0;
  margin: 0 auto;
}

#header-in,
#navi-in,
#body-in,
#footer-in {
  width: 1010px;
  margin: 0 auto;
  box-sizing: border-box;
}

#footer-in {
  width: 1200px;
}

#header {
  margin-bottom: 0px;
  height: 80px;
  background-image: url("//www.g-de-b.com/matome/wp-content/uploads/2015/10/background_top.png");
  background-position: 0px 0px;
  background-repeat: repeat-x;
}

#header .alignleft,
#header .alignright {
  margin-bottom: 0px;
  width: auto;
}

#header .alignleft {
  margin-left: 30px;
  margin-right: 30px;
  /*max-width:700px;*/
}

#header .alignright {
  height: 52px;
  text-align: right;
  margin-right: 30px;
  right: 0;
  top: 0;
  position: absolute;
}

#main {
  float: left;
  box-sizing: border-box;
  width: 670px;
  /* border:1px solid #ddd;*/
  background-color: #fff;
  /*border-radius: 4px;*/
  margin-bottom: 30px;
}

#sidebar {
  float: right;
  width: 300px;
  margin-bottom: 30px;
}

.clear {
  clear: both;
}

/*3カラム用*/

.home #main,
.category #main {
  width: 530px;
  margin-top: 20px;
}

.threecolumn-widget {
  float: left;
  width: 140px;
  margin-right: 15px;
  margin-bottom: 0;
}

.threecolumn-widget ul {
  padding-left: 0;
  margin-top: 20px;
}

.threecolumn-widget ul li {
  font-size: 14px;
  list-style-type: none;
  margin: 10px 0;
  padding: 5px 0 5px 5px;
  ;
  position: relative;
}

.threecolumn-widget ul li a {
  color: #333;
  text-decoration: none;
  display: block;
}

.threecolumn-widget ul li a:hover {
  color: #FF8200;
}

/************************************
** ヘッダー(header)
************************************/
*:first-child+html #header>div {
  /* IE7 */
  clear: both;
  zoom: 1;
}

#h-top {
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: top left;
  position: relative;
}

.header-lists {
  float: left;
  width: 33%;
}

.header-lists #searchform {
  width: 70%;
}

.top-title-catchphrase {
  text-align: center;
}

.header-button {
  text-align: right;
  margin-top: 45px;
  float: right;
}

.header-button label {
  text-decoration: none;
  background: #ff8200;
  color: #FFF;
  border-radius: 8px 8px 0px 0px;
  -moz-border-radius: 8px 8px 0px 0px;
  -webkit-border-radius: 8px 8px 0px 0px;
  border: 1px solid #ffa84c;
  border-bottom: 5px solid #ff8200;
  padding: 5px 30px;
  cursor: pointer;
}

.header-button ul {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin: 10px 0px 0 129px;
  padding: 0;
  list-style: none;
  text-align: center;
}

input[type="checkbox"].on-off {
  display: none;
}

input[type="checkbox"].on-off+ul {
  height: 0;
  overflow: hidden;
}

input[type="checkbox"].on-off:checked+ul {
  height: 209px;
}

.header-button a {
  display: block;
  width: 100%;
  color: #fff;
  background-color: #ff8200;
  border-bottom: 1px solid #fff;
  padding: 5px 0;
}

.header-button a:hover {
  background-color: #fff;
  color: #ff8200;
}

#site-title {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 100%;
}

#site-title a {
  text-decoration: none;
  color: #222;
  font-size: 30px;
  font-weight: normal;
}

#site-title a .site-title-img {
  width: 200px;
  height: auto;
}

#site-description {
  margin-top: 4px;
  color: #fff;
  padding-right: 30px;
  line-height: 140%;
  font-size: 14px;
  font-weight: normal;
  float: left;
}

#header-image {
  margin-bottom: 40px;
}

/************************************
** メニュー（menu）
************************************/
#navi ul {
  position: relative;
  clear: both;
  margin-bottom: 0;
  border: 1px solid #ddd;
  background-color: #F7F7F7;
  border-radius: 3px;
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

#navi ul ul {
  box-sizing: content-box;
}

#navi ul>li {
  float: left;
  list-style: none;
  position: relative;
}

#navi ul li a {
  font-size: 14px;
  display: block;
  padding: .3em .7em;
  color: #111;
  text-decoration: none;
  z-index: 99;
}

#navi ul li a:hover {
  background-color: #ddd;
}

#navi ul.sub-menu,
#navi ul.children {
  position: absolute;
  display: none;
  margin-left: 0;
  min-width: 200px;
  border: 1px solid #ddd;
  list-style: none;
  padding-left: 0;
  z-index: 99;
}

#navi .sub-menu li,
#navi .children li {
  position: relative;
  border: none;
  float: none;
  height: 31px;
}

#navi ul.sub-menu ul,
#navi ul.children ul {
  top: -31px;
  left: 200px;
  position: relative;
}

#navi ul li:hover>ul {
  display: block;
}

/* Clearfix) */
#container:after,
#navi ul:after,
.clearfix:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: " ";
  font-size: 0;
}

/* clearfix for ie7 */
#container,
#navi ul,
.clearfix {
  /*display: inline-block;*/
}

#container,
#navi ul,
.clearfix {
  display: block;
}

.menu-item.current-menu-item {
  background-color: #f5f5f5;
}

.menu-item.current-menu-item a.menu-image-hovered img.hovered-image {
  opacity: 1;
}

.threecolumn-widget .menu-item.current-menu-item a .menu-image-title {
  color: #FF8200;
}

/************************************
** サーチフォーム（Search Form）
************************************/
#searchform {
  position: relative;
  margin-top: 25px;
}

#s {
  width: 100%;
  margin-bottom: 20px;
  padding-top: 4px;
  padding-bottom: 4px;
  box-sizing: border-box;
  height: 28px;
  box-shadow: none;
  color: #999;
  font-size: 12px;
}

#searchsubmit {
  position: absolute;
  width: 30px;
  height: 27px;
  padding: 0 20px;
  border-top: none;
  border-bottom: none;
  border-left: solid 1px #ccc;
  border-right: none;
  border-radius: 0px;
  background: url("//www.g-de-b.com/matome/wp-content/uploads/2015/10/search.jpg") no-repeat 50% 50%;
  /* 画像をBase64にするためコメントアウト
  background: url("images/search.png") no-repeat 50% 50%; */
  /*background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAVCAYAAABG1c6oAAAEIklEQVR42pWVe0xTVxzHf22hFWiBUKjLEiTOjODGq4ArJJiYBV+gWy3YBoegWZysOgsVKYNC8IGhsMIYCLLqRKRkRdwEp4wR/yCZgwbHa8bwCH9sQkt5lceGIax0v3PDJd7MZaHJL72555zP+f6eF5xOJ3R1d4Pp7l342mAAbUEBp/DixagDBw/mh0dGdmzbvv25f0DA88CgoA5FcnLx9draWOXZs7xinQ5WVlZoIxzKGMDb9fXCdKUy21ckWgZcep0JfX2dCL5WVl4udDgcsLq6SuzfwJYHDzyzc3Lagc3eOMwXCJzePj6zAm9vmwefvwYs1sbap0rlT9PT0z52ux3QmMBfe3vhUlHRdXozOfhOcHBfTGzspYTDh5Mk0dHxkRJJQXBoqPlVtedUqrrBwUFWT08PE/j9/fu7PVANrSD52DFjXn7+W1ESCezdvx8ioqIgLCICLmg0b2So1d+gckotb8sWp8lkSjCbzUzgUYWihYBY6K44MnKipbVVoMrMhJDw8A3g20FBgPEF6+Skqywp6TvW+uXxCQmdCHRhAN8NCZmi3VBnZdUUl5QAxhPSTp6EuH37IBTBpxFWUFgIDY2NcFWnO04UEtsRGDhfWVXlzQDiy0V6A8IufJ6XB5eLioCAP5BK4YhMBt+aTHCrrg4MN25A/Z07UkqAi4tTKBLNvx8XJ2QAQ8LCbHQysjWarwYGBqCishJKSksB3YO0EycgV6sFU1MT6PAStFRaQODOnXbDzZs+DGCSXP6IBmIifrdYLPyq6moKeCQxEY6npsJnKhU0Ya1mqtXwSXp6K51AqUzW2W02cxjA5nv39vI9PddIDbI4HOdHKSmG8ooKry/0ejZRmJqWBpnnz7OMjY1eyjNnqnlubg7AfTx39zV9WdmBX7q6mFl+1NYGObm5Dex1IAGHicW9eVptVvyhQ7uOyuW7Pj516nR0TEwvdSnGjsvjOc5lZBhJu6JCJnBkZATGxsbc5ApFm6urq+PVAvfw9CRGINQ7DpdLlRf2+fSkzeY7YbHAHy9eMIFDQ0OU/fbsGV+amKjbFhAwxVkHoGuU0Ze48HhONq75+vn99cPDh/KXy8uwuLj4eiDpaZKMLI3mQ3T1y/diYjowTo8R8nj3nj0d2C3DFBQ7hPxjdVhHR0d3WK3W/waW6vWA4wkw2KQWBeiuFwK9rtXU8Pv6+iRv+vv/iaGglFJtmpLSOT4+zv1f4OUrV0iiwF0gADxMipzaW1Nbq0UgiSXlOnluMBqzNw0knfM3zr2ep0/dsL+pqeO67nqoWDyxKSD5NTU3w89PnsCP7e2kY2QERBvOy5ebAvb398Pc3BzYpqZgZmYG7PPzXBxjDTi9Z4VC4SxOIcOmgDabDZaWlmBhYYGUCHlm47dHL9q6ddhPJBrGCXWVBv4DYbnuWKzr2fcAAAAASUVORK5CYII=") no-repeat 50% 50%;*/
  z-index: 0;
  top: 1px;
  right: 3px;
  /*transform: translate(-20%, -50%);*/
}

/************************************
** メイン前
************************************/
.before-header {
  padding: 15px 0;
  margin-left: -500%;
  margin-right: -500%;
  padding-left: 500%;
  padding-right: 500%;
  background-color: #e5e0db;
  /*f5f5f5*/
}

.lists-wrap {
  padding: 15px;
  background-color: #fff;
  border: 1px solid #ddd;
}

.newpost-lists {
  width: 313px;
  height: 320px;
  display: inline-block;
  margin: 0 14px 0 0;
  vertical-align: top;
}

.newpost-lists:last-child {
  margin-right: 0;
  float: right;
}

.newpost-lists h3 {
  font-size: 17px;
  font-weight: normal;
  margin: 0;
  height: 50px;
}

.newpost-lists h3 a {
  display: table-cell;
  vertical-align: middle;
  height: 50px;
  color: #333;
  font-weight: bold;
}

.newpost-lists h3 a:hover {
  color: #FF8200;
}

.newpost-lists .trim {
  height: 200px;
  overflow: hidden;
  display: block;
  margin-bottom: 10px;
}

.newpost-lists img {
  width: 100%;
}

.newpost-lists p {
  font-size: 12px;
  margin: 5px 0;
  color: #666;
  line-height: 1.2;
}

.newpost-lists a {
  color: #999;
}

.foot-left {
  width: 70%;
  float: left;
  font-size: 14px;
}

.foot-left img {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

.foot-left a {
  text-decoration: none;
  display: inline-block;
  vertical-align: top;
}

.foot-right {
  width: 30%;
  float: right;
  text-align: right;
  font-size: 14px;
  font-weight: bold;
  color: #999999;
}

.foot-right .viewbig {
  font-size: 14px;
}

.viewbig {
  font-weight: bold;
  color: chocolate;
}

.viewsmall {
  font-size: 12px;
  font-weight: bold;
  color: chocolate;
}

.category-mobile {
  background: url(//www.g-de-b.com/matome/wp-content/uploads/2015/10/background-mobile.jpg) no-repeat;
  background-size: cover;
  height: 230px;
  margin-top: -22px !important;
  display: block;
  overflow: hidden;
}

.category-mobile:before {
  z-index: 1;
  content: "";
  display: block;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  height: 240px;
}

.category-mobile h2 {
  z-index: 2;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 120px auto 0;
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 200px;
  height: 200px;
  text-shadow: 1px 1px 3px #333;
}

.category-mobile p {
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px 3px #333;
}

.category-top .category-left {
  float: left;
}

.category-top .category-right {
  float: right;
  width: 840px;
}

.category-top .category-right h2 {
  margin: 0;
}

.tag-top .tag-left {
  float: left;
}

.tag-top .tag-right {
  float: right;
  width: 840px;
}

.tag-top .tag-right h2 {
  margin: 0;
}

.slide-trim {
  height: 260px;
  overflow: hidden;
  display: block;
  position: relative;
}

.slide-trim img {
  position: absolute;
  top: -10px;
}

.mobile-top-category-description {
  line-height: 17px;
  font-size: 14px;
}

.mobile-top-category-description p {
  margin: 0;
  text-align: justify;
}

/************************************
** メイン前　メインカラム内
************************************/
.author-top {
  text-align: center;
  margin: 50px 0;
}

#main .author-top .avatar {
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  width: 100px;
  height: 100px;
}

/************************************
** メインカラム（#main、記事、固定ページなど）
************************************/
#main .post,
#main .page {
  margin-bottom: 59px;
}

.sticky {
  /* 先頭固定ポストのスタイル */
}

.post-meta {
  margin-bottom: 0.5em;
  text-align: right;
  color: #555;
  font-size: 14px;
}

.post-meta .post-date,
.post-meta .post-update,
.post-meta .category,
.post-meta .comments,
.post-meta .edit,
.footer-post-meta .post-tag,
.footer-post-meta .post-author,
.footer-post-meta .edit {
  padding-right: 0.7em;
}

.article .post-date,
.article .post-tag {
  font-size: 12px;
  color: #999;
}

.article .post-tag {
  float: right;
}

.article .post-tag a {
  color: #999;
  text-decoration: underline;
  margin-left: 10px;
}

.article .post-tag a:first-child {
  margin-left: 0;
}

.article .sns-group-top {
  float: left;
  width: 50%;
}

.article .article-share p {
  margin: 10px 0 0 0;
  font-weight: bold;
  font-size: 12px;
}

.article .article-view {
  float: right;
  width: 50%;
  margin-top: 10px;
  text-align: right;
}

.comment-num {
  white-space: nowrap;
}

.footer-post-meta {
  text-align: right;
  color: #555;
  font-size: 16px;
  clear: both;
}

.article-list .footer-post-meta {
  margin-top: 30px;
}

.more-link {
  clear: both;
  display: block;
  margin-bottom: 30px;
  text-align: right;
  margin-top: 15px;
}

/*.more-link{
  float: right;
  margin-bottom:30px;
}*/

/************************************
** index.phpのリスト
************************************/
#main .entry {
  clear: both;
  margin-bottom: 10px;
  padding-bottom: 15px;
  /*  overflow: auto;
  zoom: 1;*/
  word-wrap: break-word;
  border-bottom: dotted 1px #eee;
}

.entry-thumb {
  float: left;
  margin-right: 10px;
  margin-top: 3px;
  height: 75px;
}

.entry-thumb a {
  display: block;
}

.entry-thumb img {
  border: 0;
  width: 100px;
  height: 100px;
  margin-bottom: 40px;
}

/*大きなサムネイル表示スタイルでのサムネイル*/
.entry-large-thumbnail img {
  width: 320px;
  height: 180px;
}

.entry-card-content {
  margin-left: 110px;
  font-size: 12px;
}

.entry .post-meta {
  text-align: left;
  margin: 7px auto;
}

.entry .post-author img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.entry .post-meta a {
  font-size: 12px;
}

.entry h2 {
  margin-bottom: 5px;
  margin-top: 0;
  height: 50px;
}

.entry h2 a {
  color: #333;
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
  display: table-cell;
  vertical-align: middle;
  height: 50px;
}

.entry-title {
  color: #333;
}

.entry-lead {
  font-size: 1em;
  line-height: 1.5;
}

.entry-snippet {
  margin: 0 0 5px 0;
  line-height: 1.2;
  color: #666;
}

.entry-read {
  margin: 0;
}


.entry-snippet,
.related-entry-snippet {
  word-wrap: break-word;
}

.post-author,
.post-author a {
  color: #999;
  margin: 0;
}


/************************************
** WordPress Misc
************************************/
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

img.alignleft,
.wp-caption.alignleft {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

img.alignright,
.wp-caption.alignright {
  float: right;
  margin-left: 10px;
  margin-bottom: 10px;
}


.wp-caption {
  padding-top: 4px;
  text-align: left;
}

.wp-caption-text,
.gallery-caption {
  font-size: 12px;
  margin-top: 0;
  color: #000;
}

.wp-caption img {
  margin: 0;
  padding: 0;
  border: 0 none;
}

.wp-caption-dd {
  margin: 0;
  padding: 0 4px 5px;
  font-size: 11px;
  line-height: 17px;
}

img.alignright {
  display: inline-block;
  margin: 0 0 1em 1.5em;
}

img.alignleft {
  display: inline-block;
  margin: 0 1.5em 1em 0;
}

/************************************
** index.php Main
************************************/
.content-box {
  float: right;
  margin-top: -0.25em;
  width: 420px;
}

.content-box .more-link {
  margin: 0;
}

.thumbnail-box {
  float: left;
  width: 160px;
}

.thumbnail-box img {
  width: 160px;
  height: 160px;
}

/************************************
** パンくずリスト（Breadcrumb）
************************************/
.breadcrumbs {
  margin: 0px -500%;
  padding: 0 500% 0px 500%;
  color: #777;
  font-size: 13px;
  border-bottom: 2px solid #eee;
  color: #000;
  height: 28px;
}

.breadcrumbs div {
  display: inline;
}

.breadcrumbs span {
  /*position:relative;*/
  top: -10px;
}

.breadcrumbs span:last-child {
  top: -5px;
}

.breadcrumbs a {
  text-decoration: none;
}





/************************************
** 前の記事へ、次の記事へ
************************************/
.navigation {
  clear: both;
  overflow: hidden;
  margin-bottom: 40px;
  margin: 20px -30px 40px;
}

.navigation>div {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.navigation>div+div {
  border-top: 0;
  border-bottom: 1px solid #ddd;
}


.navigation .alignright {
  text-align: right;
}

.navigation a {
  display: block;
  padding: 1em;
  border: none;
}

.navigation a span {
  color: #ddd;
  padding-right: 10px;
  margin-top: -4px;
  clear: left;
}

.navigation a:hover {
  background: #eee;
}

.navigation .alignright a:hover {
  border-left: 1px solid #ddd;
}

/************************************
** ページャー、ページナビゲーション
************************************/
.pager {
  margin: 3em 0;
  text-align: center;
}

a.page-numbers,
.pager .current {
  background-color: #ddd;
  border: solid 1px #ddd;
  border-radius: 5px;
  padding: 5px 8px;
  margin: 0 2px;
}

.pager .current {
  background-color: #ddd;
  border: solid 1px #ddd;
  color: #000;
}

.pager a {
  background: #fff;
  color: #000;
  text-decoration: none;
}

.pager a:hover {
  border: solid 1px #ddd;
  background-color: #eee;
}

/************************************
** 記事分割時のページナビゲーション
************************************/
.page-link {
  margin: 3em 0;
  text-align: center;
}

.comment-page-link {
  margin: 1em 1em 3em;
  text-align: center;
}

.page-link span,
.comment-page-link span,
.comment-page-link a {
  margin-right: 3px;
  padding: 5px 8px;
  border: 1px solid #ddd;
  background: #ddd;
  border-radius: 5px;
}

.page-link a span,
.comment-page-link a {
  background: #fff;
  color: #000;
}

.page-link a {
  border-bottom: none;
  color: #000;
  text-decoration: none;
}

.page-link a span:hover,
.comment-page-link a:hover {
  background: #eee;
  color: #000;
}

/************************************
** 関連記事（Relation）
************************************/
.related-entry {
  line-height: 150%;
  margin-bottom: 20px;
  margin-right: 10px;
  clear: both;
  /*  overflow: auto;
  zoom: 1;*/
}

.related-entry h4 {
  margin-top: 0;
}

.related-entry-thumb {
  float: left;
  margin-bottom: 5px;
  padding-bottom: 5px;
}

.related-entry-thumb a {
  display: block;
}

.related-entry-thumb img {
  border: 0;
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

/*関連記事のサムネイル表示*/
.related-entry-thumbnail img {
  width: 200px;
  height: 200px;
  margin-bottom: 0;
}

.related-entry-content {
  margin-left: 110px;
}

.related-entry-title {
  margin-bottom: 5px;
}

.related-entry-title a {
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.related-entry-snippet {
  margin: 0 0 5px 0;
  color: #555;
}

.related-entry-read {
  margin: 0;
  font-size: 14px;
}

/************************************
** 関連記事サムネイル（Relation）
************************************/

.related-entry-thumbnail {
  width: 226px;
  height: 292px;
  text-align: center;
  overflow: hidden;
  float: left;
  margin-bottom: 15px;
}

.related-entry-thumbnail .related-entry-thumb {
  margin: 0;
  padding: 0;
  float: none;
}

.related-entry-thumbnail .related-entry-content {
  margin: -20px 6px 0;
}

.related-entry-thumbnail .related-entry-content a {
  font-weight: normal;
}

/************************************
** コメントエリア（Comments Area）
************************************/
#comment-area ol,
#comment-area ul {
  list-style: none;
  padding-left: 0;
}

#comment-area ol ul,
#comment-area ul ul {
  margin-left: 1.5em;
}

.required {
  color: #fe56aa;
}

.commets-list,
.trackback-list {
  margin-top: -20px;
  margin-bottom: 40px;
}

.commets-list li,
.trackback-list li {
  margin-top: -1px;
  padding: 20px 0 0;
  width: 100%;
  border-bottom: 1px solid transparent;
}

.commets-list .avatar {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

.comment-meta,
.reply,
.comment-notes,
.form-allowed-tags,
span.small {
  font-size: 80%;
}

.comment-body p {
  clear: both;
}

.reply {
  text-align: right;
}

.bypostauthor {
  /* 記事投稿者のコメントのスタイル */
}

.children {
  padding-left: 2em;
}

#respond {
  margin-bottom: 40px;
}

/************************************
** キュレーター表示
************************************/
.author-single img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  display: block;
  float: left;
  margin-right: 50px;
}



.author-single h3 {
  color: #000;
  border-bottom: solid 1px #eee;
  padding-bottom: 10px;
}


.author-single p {
  font-size: 18px;
  float: left;
  margin-top: 30px;
}


/************************************
** カテゴリーリスト表示
************************************/
.category-foot-title {
  margin-top: 80px;
  color: #000;
  border-bottom: 1px solid #EEE;
}

.category-foot {
  clear: both;
  margin: 20px 0 50px 0;
  padding: 0;
  border-left: 2px solid #ccc;
  font-size: 0;
}

.category-foot .category-list {
  display: inline-block;
  clear: both;
  width: 224px;
  height: 85px;
  border-top: 1px solid #CCC;
  border-right: 1px solid #CCC;
  margin: -1px;
  padding: 10px 14px;
  position: relative;
  box-sizing: border-box;
}


.category-foot a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
}

.category-foot a:hover {
  opacity: 0.1;
  background: #ccc;
}

.category-foot .category-list:last-child {
  margin-right: 0px;
  border-right: 2px solid #ccc;
}

.category-foot .category-list .category-list-left {
  float: left;
  margin-left: 5px;
  margin-bottom: 10px;
}

.category-foot .category-list .category-list-left h4 {
  margin-bottom: 2px;
  margin-top: 15px;
  font-size: 16px;
}

.category-foot .category-list .category-list-left p {
  margin: 0;
  font-size: 10px;
  color: #999;
}

.category-foot .category-list .category-list-right {
  float: right;
  margin-right: 10px;
}

.category-foot .category-list .category-list-right img {
  width: 40px;
  height: 40px;
  margin-top: 15px;
}

.category-foot .category-list:nth-child(3n) {
  border-right: 2px solid #ccc;
}

.category-foot .category-list:nth-of-type(-n+3) {
  border-top: 2px solid #ccc;
}

.category-foot .category-list:nth-last-of-type(-n+3) {
  border-bottom: 2px solid #ccc;
}

/************************************
** カテゴリーリストモバイル版表示
************************************/
/* .category-foot-mobile{
 position:relative;
 display:none;
 clear:both;
 margin:80px 0 30px 0;
 letter-spacing:-0.4em;
}

.category-foot-mobile a{
 position:absolute;
 top:0;
 left:0;
 width:100%;
 height:100%;
 text-indent:-999px;
}

.category-foot-mobile a:hover{
 opacity:0.1;
 background:#ccc;
}


.category-foot-mobile h3{
 margin-top:0;
 letter-spacing: normal;
}

.category-foot-mobile .category-list{
 display:inline-block;
 clear:both;
 width:48%;
 letter-spacing: normal;
 border-bottom:1px solid #ccc;
 border-left:1px solid #ccc;
 margin-bottom:-10px;
 position:relative;
}

.category-foot-mobile .category-list:nth-child(2), .category-foot-mobile .category-list:nth-child(3){
 border-top:1px solid #ccc;
}

.category-foot-mobile .category-list:nth-child(2n+1){
 border-right:1px solid #ccc;
}

.category-foot-mobile .category-list:last-child{
 margin-right:0px;
 border-right:1px solid #ccc;
 width:48%;
}


.category-foot-mobile .category-list .category-list-left{
 position:relative;
 float:left;
 top:16px;
 margin-left: 10px;
 margin-right: 5px;
}

.category-foot-mobile .category-list .category-list-left img{
 width:20px;
 height:20px;
}


.category-foot-mobile .category-list .category-list-right{
 float:left;
}

.category-foot-mobile .category-list .category-list-right h4{
 margin-bottom:10px;
 font-size:14px;
 font-weight:normal;
} */
.category-foot-mobile ul {
  list-style-type: none;
}

.category-foot-mobile ul.sub-menu {
  margin: 0;
  padding: 0;
  margin-left: 1em;
  padding-left: 15px;
}


/************************************
** 入力フォーム（Form）
************************************/
input[type="text"],
input[type="url"],
input[type="password"],
input[type="email"],
input[type="search"],
input[type="tel"],
textarea {
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
  color: #333;
  display: block;
  font-size: 16px;
  line-height: 1.42857;
  padding: 6px 12px;
  -webkit-transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  width: 100%;
  box-sizing: border-box;
}

input#author,
input#email,
input#url {
  max-width: 360px;
}

.gsc-search-box input[type="text"] {
  background-color: #FFF;
  border-radius: 0px;
}

#comment-area input[type="text"],
#comment-area textarea {
  display: block;
}

textarea {
  overflow: auto;
  width: 100%;
  box-sizing: border-box;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border: 1px solid #FF8200;
  background: #fff;
  box-shadow: 0 0 3px rgba(255, 105, 180, 1);
  color: #444;
}

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 12px;
  border: 1px solid #777;
  border-radius: 3px;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  line-height: normal;
  cursor: pointer;
  /* Old browsers */
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
  background: #eee;

}

.button:active,
button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
  position: relative;
  top: 1px;
}

/************************************
** サイドバー（Sidebar）・ウィジェットなど
************************************/
#sidebar {
  border-left: 1px solid #eee;
  margin-top: 20px;
}

.home #sidebar {
  margin-top: 0px;
}

#sidebar h4 {
  margin-bottom: 10px;
  padding-left: 10px;
  font-size: 19px;
  border-left: 3px solid #FF8200;
  font-weight: normal;
}

#sidebar h4 .subtitle {
  font-size: 12px;
  font-weight: normal;
  border-bottom: 1px solid #eeeeee;
  display: block;
}

#sidebar .banner {
  margin-top: 30px;
}

#sidebar .widget {
  margin-bottom: 20px;
}

.widget_search {
  margin-bottom: 0;
}

#sidebar ul,
#sidebar ol,
.widget-over-article ul,
.widget-over-article ol,
.widget-under-article ul,
.widget-under-article ol,
.widget-over-sns-buttons ul,
.widget-over-sns-buttons ol,
.widget-under-sns-buttons ul,
.widget-under-sns-buttons ol {
  padding-left: 1em;
  list-style: none;
}

.widget-over-article {
  margin-top: 10px;
  margin-bottom: 10px;
}

#sidebar-recent-posts li,
#sidebar-popular-posts li {
  margin: 20px 0;
}

#sidebar li {
  margin-bottom: 10px;
}

.sidebar-thumbnail-box {
  float: left;
  width: 75px;
}

.sidebar-recent-posts-title {
  float: right;
  width: 165px;
}

#sidebar-recent-posts h3,
#sidebar-recent-posts p,
#sidebar-popular-posts h3,
#sidebar-popular-posts p {
  margin: 0;
}

#main .widgets {
  margin-top: 20px;
  margin-bottom: 20px;
}

#sidebar .widget_category_sns_follow_buttons ul,
.widget_category_sns_follow_buttons ul {
  padding-left: 0;
}

#sidebar .side-title {
  padding-left: 0;
  height: 35px;
  display: table-cell;
}

#sidebar .side-title a {
  display: table-cell;
  vertical-align: middle;
  height: 35px;
}

#sidebar .side-author {
  margin-top: 20px;
}

#sidebar .side-author p {
  margin: 0 0 5px 0;
}

#sidebar .side-author a {
  font-size: 14px;
}

#sidebar .author-description {
  color: #999;
}

#sidebar .side-author .side-author-left {
  float: left;
  width: 65px;
  margin-left: 15px;
}

#sidebar .side-author .side-author-right {
  float: right;
  font-size: 12px;
  width: 210px;
}

#sidebar {
  color: #999;
  font-size: 12px;
}

.side-post-author {
  font-size: 12px;
  font-weight: bold;
  color: chocolate;
}

.side-post-author a {
  font-weight: normal;
}

/************************************
** 新着記事・人気記事（new, pupular）
************************************/
#new-entries,
#popular-entries,
#sidebar .widget_views,
#sidebar .post-tag-widget {
  line-height: 150%;
}

#new-entries h4,
#popular-entries h4,
#sidebar .widget_views h4,
#sidebar .post-tag-widget h4 {
  margin-bottom: 15px;
}

#new-entries ul,
#popular-entries ul,
#sidebar .widget_views ul,
#sidebar .post-tag-widget ul {
  margin: 10px 0;
  padding-left: 15px;
  list-style: none;
}

#new-entries ul li,
#popular-entries ul li,
#sidebar .widget_views ul li,
#sidebar .post-tag-widget ul li {
  clear: left;
  float: none;
  margin-bottom: 10px;
  padding-bottom: 13px;
  /*  overflow: auto;
  zoom: 1;*/
  position: relative;
  font-size: 14px;
  border-bottom: dotted 1px #eee;
  line-height: 1.2;
  height: 50px;
}

#new-entries ul li img,
#popular-entries ul li img,
#sidebar .widget_views ul li img,
#sidebar .post-tag-widget ul li img {
  border: medium none;
  display: inline;
  float: left;
  margin-top: 3px;
  margin-right: 5px;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.popular-posts {
  font-size: 14px;
}

span.wpp-views {
  font-size: 12px;
  font-weight: bold;
  color: chocolate;
}

/************************************
** 人気記事（ランキング）
************************************/
#sidebar .widget_views {
  counter-reset: wpp-ranking;
}

#sidebar .widget_views ul li:before {
  color: #FFF;
  content: counter(wpp-ranking, decimal);
  counter-increment: wpp-ranking;
  text-align: center !important;
  opacity: 0.999;
  position: absolute;
  top: -5px;
  left: -5px;
  line-height: 21px;
  z-index: 1;
  width: 20px;
  height: 20px;
  background-color: #ff4500;
  border-radius: 20px;
  -moz-border-radius: 20px;
}

/************************************
** 新着記事・人気記事（拡張）
************************************/
#new-entries .new-entrys-large .new-entry,
#popular-entries .popular-entrys-large .popular-entry,
#popular-entries .popular-entrys-large .wpp-list li {
  margin-bottom: 15px;
  line-height: 120%;
  position: relative;
  display: block;
  max-width: 440px;
  /*これを書いておかないと、タイトル部分がはみ出す*/
  overflow: visible;
}

#new-entries .new-entrys-large .new-entry img,
#popular-entries .popular-entrys-large .popular-entry img,
#popular-entries .popular-entrys-large .wpp-list li img {
  width: 100%;
  float: none;
  margin: 0;
  display: block;
  margin-bottom: 5px;
  min-height: 180px;
  max-width: 440px;
  /*iPhone6は幅が414pxなのでそれより大きく*/
  max-height: 240px;
  height: auto;
}

#popular-entries .popular-entrys-large .wpp-list li img.wpp_cached_thumb {
  height: auto;
}

#new-entries .new-entrys-large-on .new-entry .new-entry-content,
#popular-entries .popular-entrys-large-on .popular-entry .popular-entry-content,
#popular-entries .popular-entrys-large-on .wpp-list li a.wpp-post-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* 画像をBase64にするためコメントアウト
  background: url("images/black-transparent.png") repeat scroll 0 0 transparent; */
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyAQMAAAAk8RryAAAAA1BMVEUAAACnej3aAAAAAXRSTlOZyTXzhgAAAA1JREFUGNNjGAWDCgAAAZAAAXtlmk8AAAAASUVORK5CYII=") repeat scroll 0 0 transparent;
  /*  opacity:0.7;
  background-color:#333;*/
  padding: 10px;
  max-height: 28%;
  overflow: hidden;
  display: block;
}

#new-entries .new-entrys-large-on .new-entry .new-entry-content a,
#popular-entries .popular-entrys-large-on .popular-entry .popular-entry-content a,
#popular-entries .popular-entrys-large-on .wpp-list li a.wpp-post-title {
  color: #fff;
  /*opacity:0.8;*/
  display: block;
}

#popular-entries .popular-entrys-large-on .wpp-list li span.wpp-views {
  /* 画像をBase64にするためコメントアウト
  background: url("images/black-transparent.png") repeat scroll 0 0 transparent; */
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyAQMAAAAk8RryAAAAA1BMVEUAAACnej3aAAAAAXRSTlOZyTXzhgAAAA1JREFUGNNjGAWDCgAAAZAAAXtlmk8AAAAASUVORK5CYII=") repeat scroll 0 0 transparent;
  color: #fff;
  opacity: 1;
  display: block;
  right: 0;
  top: 0;
  position: absolute;
  padding: 2px 10px;
  border-bottom-left-radius: 15px;
  font-size: medium;
}

/************************************
** タグクラウド
************************************/
.tagcloud {
  position: relative;
  overflow: hidden;
  padding: 0 0 0 15px;
  text-align: left;
}

.tagcloud a:before {
  content: url("//www.g-de-b.com/matome/wp-content/uploads/2015/10/gourmeticon.png");
  position: relative;
  top: 4px;
  left: -3px;
}

.tagcloud a {
  display: inline-block;
  border: solid 1px #ccc;
  white-space: nowrap;
  font-size: 100%;
  color: #333;
  line-height: 1.6;
  padding: 3px 8px;
  margin-bottom: 5px;
  text-decoration: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.tagcloud a:hover {
  background: #fafafa;
}

#the-content .tagcloud {
  padding: 0;
}

.tagmore {
  font-size: 12px;
  padding-left: 15px;
}

/************************************
** フッター(footer)
************************************/
#footer {
  clear: both;
  color: #333;
  padding: 15px 5px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background-color: #e5e0db;
}

#footer .hidden-pc {
  display: none;
}

#footer .totop {
  text-align: center;
  line-height: 10px;
}

#footer #footer-widget-mobile ul .totop {
  font-size: 12px;
}

.totop i {
  font-size: 36px;
  color: #b5b5b5;
}

#footer-widget,
#footer-widget-mobile {
  margin: 0 auto;
  text-align: left;
  padding: 0;
}

.footer-title,
.footer-left,
.footer-center,
.footer-right {
  box-sizing: border-box;
}

.footer-title {
  float: left;
  width: 20%;
}

#footer .footer-title img {
  margin-top: 60px;
  width: 170px;
}

.footer-left {
  float: left;
  width: 20%;
}

.footer-center {
  float: left;
  width: 20%;
}

.footer-right {
  float: left;
  width: 20%;
}

#footer-widget,
#footer-widget-mobile {
  color: #fcfcfc;
}

#footer-widget ul {
  list-style: none;
  padding-left: 0;
}

.footer-right ul li {
  width: auto;
}

#footer-widget-mobile ul {
  padding: 0 500%;
  margin: 0 -500%;
  background-color: #eceef0;
}

#footer #footer-widget-mobile ul li {
  padding: 10px 0;
  list-style-type: none;
  border-bottom: 1px solid #dddddd;
  font-size: 12px;
}

#footer-widget-mobile ul li a {
  margin-left: 10px;
}

#footer-widget li {
  font-size: 12px;
  display: inline-block;
  width: 48%;
}

#footer-right li {
  width: auto !important;
}

#footer a {
  color: #333;
  text-decoration: underline;
}

#footer a:hover {
  color: #FF8200;
}

#footer h4 {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #333;

}

#copyright {
  padding: 10px 350px;
  font-size: 80%;
  text-align: right;
  background-color: #37332e;
}

#copyright a {
  text-decoration: none;
  color: #fff;
}

#copyright a:hover {
  color: #FF8200;
}

#sns-group-footer ul.snsb {
  float: left;
  margin: 0;
  padding: 0;
}

#sns-group-footer .fb_iframe_widget_lift {
  bottom: 0;
}

.copyright {
  color: #fff;
  float: right;
}

.information-footer {
  float: left;
  margin: 0;
  padding: 0;
}

.information-footer li {
  float: left;
  list-style: none;
  color: #fff;
  display: inline-block;
  padding: 3px 30px 0px 0px;
}

/************************************
** TOPへ戻るボタン（Go to top）
************************************/
#page-top {
  position: fixed;
  display: none;
  right: 10px;
  bottom: 10px;
}

#page-top a {
  color: #fff;
  padding: 7px;
  text-decoration: none;
  display: block;
  cursor: pointer;
  text-align: center;
  background-color: #aaa;
  line-height: 100%;
  border-radius: 4px;
  font-size: 12px;
}


/************************************
** 広告（ads）
************************************/
.ad-space {
  margin: 30px 0;
  clear: both;
}

.ad-article-bottom {}

.ad-left {
  float: left;
  margin-right: 2px;
  width: 336px;
}


.ad-right {
  float: right;
  margin-left: 2px;
  width: 336px;
}

.ad-top-pc {
  width: 728px;
  margin: 0 -24px 15px;
}

.ad-space-top {
  margin-top: 0;
  margin-bottom: 5px;
}

.ad-space-singular {
  margin-top: 15px;
  margin-bottom: 10px;
}

.ad-space-top .ad-label {
  display: none;
}

#sidebar .ad-space {
  margin-top: 0;
}

/************************************
** 非表示にするものまとめ
************************************/
.widget-ad,
.widget-over-article-title,
.widget-under-article-title,
.widget-over-sns-buttons-title,
.widget-under-sns-buttons-title,
#sidebar .ad-space .ad-label {
  display: none;
}

.sp-hide {
  display: none;
}

.widget-index-top {
  margin-bottom: 30px;
}

.widget-index-middle {
  margin-bottom: 40px;
}

/************************************
** モバイルメニュー
************************************/
#mobile-menu {
  display: none;
}

#mobile-menu a {
  color: #333;
  padding: 4px 8px;
  text-decoration: none;
  display: block;
  cursor: pointer;
  text-align: center;
  line-height: 100%;
  border-radius: 3px;
  position: absolute;
  right: 7px;
  font-size: 15px;
  margin-top: 3px;
}

#mobile-menu a:hover,
#page-top a:hover {
  opacity: 0.7;
}

/************************************
** サムネイルつきポストナビ
************************************/
#prev-next {
  width: 100%;
  margin: 36px 0 24px;
  padding: 0;
  display: table;
}

#prev-next #prev,
#prev-next #next {
  width: 50%;
  display: table-cell;
  position: relative;
  text-decoration: none;
}

#prev-next #prev:hover,
#prev-next #next:hover {
  background-color: rgba(238, 238, 238, 0.7);
}

#prev-next #prev {
  border-right: #ddd 1px solid;
}

#prev-next #prev-title,
#prev-next #next-title {
  top: -0.8em;
  position: absolute;
  border: 1px #ccc solid;
  text-align: center;
  padding: 5px;
  color: #666;
  font-size: 28px;
  border-radius: 6px;
  background-color: #fff;
}

#prev-next #next-title {
  right: 10px;
}

#prev-next span {
  padding: 0;
  margin: 0;
}

#prev-next #prev img,
#prev-next #next img {
  margin: 0 auto;
  width: 100px;
  height: 100px;
}

#prev-next #prev-no,
#prev-next #next-no {
  width: 50%;
  padding: 0 10px;
  display: table-cell;
}

#prev-next #prev-no {
  border-right: #ddd 1px solid;
}

#prev-no,
#next-no {
  position: relative;
}

#prev-no a:hover,
#next-no a:hover {
  background-color: #fff;
}

#prev-next-home span {
  color: #ccc;
  font-size: 100px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*IE10以降に適用されるCSSハック（一応）*/
@media all and (-ms-high-contrast:none) {
  #prev-next-home span {
    margin-top: 50px;
  }
}

#prev-next #prev,
#prev-next #prev::before,
#prev-next #prev::after,
#prev-next #next,
#prev-next #next::before,
#prev-next #next::after {
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#prev-next #next-title {
  right: 10px;
}

#prev-next #prev img {
  margin-top: 10px;
  float: left;
  margin-right: 10px
}

#prev-next #next img {
  margin-top: 10px;
  float: right;
  margin-left: 10px;
}


/************************************
** モバイルモーダルメニュー（animatedModal.js）
************************************/
#animatedModal a {
  color: #fff;
  text-decoration: none;
}

.close-animatedModal {
  text-align: center;
  font-size: 45px;
}

.modal-content {
  max-width: 440px;
  width: auto;
  margin: auto;
}

#animatedModal ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
  margin-left: 0;
}

#animatedModal ul li {
  border: 1px solid #fff;
  border-radius: 5px;
  margin: 0 10px 10px;
}

#animatedModal ul li a {
  padding: 5px 10px;
  width: auto;
  border-radius: 5px;
  display: block;
}

#animatedModal ul li a:hover {
  background-color: #555;
}

/*Google検索ボックス用*/
#___gcse_0 .cse .gsc-control-cse,
#___gcse_0 .gsc-control-cse {
  background-color: transparent;
  border: none;
}

/*SlickNav用スタイル*/
.slicknav_menu {
  display: none;
}

/*トップへ戻る画像の背景*/
#page-top a.move-page-top-image {
  background-color: transparent;
}

/*Firefoxの不具合？対策*/
div.vdh-mask {
  display: none;
}


/************************************
** Alt属性値を画像ホバー時にキャプション表示する
************************************/
.hover-image {
  display: inline-block;
  margin: 16px 0;
  text-align: left;
  opacity: .99;
  overflow: hidden;
  position: relative;
  border-radius: 3px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
}

.hover-image:before {
  content: '';
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  width: 100%;
  height: 50%;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  -webkit-transition-property: top, opacity;
  transition-property: top, opacity;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.hover-image img {
  display: block !important;
  max-width: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hover-image .details {
  font-size: 16px;
  padding: 20px;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.hover-image .details a {
  color: #fff;
  text-decoration: none;
}

.hover-image .details span {
  display: block;
  opacity: 0;
  position: relative;
  top: 100px;
  -webkit-transition-property: top, opacity;
  transition-property: top, opacity;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

/*.hover-image .details .title {
  line-height: 1;
  font-weight: 600;
  font-size: 18px;
}*/
.hover-image .details .info {
  line-height: 1.2;
  margin-top: 5px;
  font-size: 12px;
}

.hover-image:hover:before,
.hover-image:hover span {
  opacity: 1;
}

.hover-image:hover:before {
  top: 50%;
}

.hover-image:hover span {
  top: 0;
}

/*.hover-image:hover .title {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}*/
.hover-image:hover .info {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

/************************************
** Facebookページを「いいね！」するエリアのスタイル
************************************/
div.fb-like-mobile {
  display: none;
}

.article-like {
  height: 100px;
  margin-top: 20px;
  margin-bottom: 20px;
  clear: both;
}

.article-like-thumb {
  float: left;
  width: 100px;
}

.article-like-thumb img {
  display: block;
}

.article-like-body {
  margin-right: 140px;
  float: none;
  padding: 10px;
  font-size: 18px;
  line-height: 1.3em;
  height: 100px;
  overflow: hidden;
  background-color: #fff;
  color: #000;
  box-sizing: border-box;
}

.article-like-body::after {
  content: '\f054';
  position: absolute;
  right: 110px;
  top: 27px;
  color: #ccc;
  font-size: 50px;
  font-family: FontAwesome;
  line-height: 100%;
}

.article-like-button {
  background-color: #f3f3f3;
  width: 100px;
  height: 100px;
  text-align: center;
  float: right;
  padding-top: 18px;
  box-sizing: border-box;
  /*  display: -webkit-flex;
  display:         flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;*/
}

.article-like-arrow-box {
  float: left;
  position: relative;
  border: 1px solid #bbb;
  margin-left: 12px;
  width: calc(100% - 114px);
  border-radius: 5px;
}

.article-like-arrow-box-in {}

.article-like-arrow-box:after,
.article-like-arrow-box:before {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.article-like-arrow-box:after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #fff;
  border-width: 10px;
  margin-top: -10px;
}

.article-like-arrow-box:before {
  border-color: rgba(221, 221, 221, 0);
  border-right-color: #bbb;
  border-width: 11px;
  margin-top: -11px;
}


/************************************
** Facebookページを「いいね！」するエリアのスタイル（サイドバーの時）
************************************/
#sidebar .article-like-body::after {
  display: none;
}

#sidebar .article-like-body {
  font-size: 0.8em;
  padding: 5px;
  line-height: 1.1em;
  margin-right: 0;
  height: 70px;
}

#sidebar .article-like-arrow-box {
  height: 100px;
}

#sidebar .article-like-button {
  float: none;
  width: 100%;
  height: 30px;
  display: block;
  line-height: 24px;
  padding-top: 0;
}

#sidebar div.fb-like-mobile {
  display: block;
}

#sidebar div.fb-like-pc {
  display: none;
}

/************************************
** feedlyバルーンのスタイル
************************************/

/************************************
** 購読者数つきFeedlyボタン（縦型）
************************************/
#feedly-followers {
  display: block;
}

#feedly-followers a {
  display: block;
}

#feedly-followers img {
  width: 72px;
  height: 22px !important;
  border: none;
}

/* 購読者数の表示部分 */
#feedly-count {
  margin: 0 auto 6px auto;
  width: 62px;
  height: 31px;
  background-color: #FFF;
  position: relative;
  border: 1px solid #BDBDBD;
  border-radius: 4px;
  padding: 0 4px;
  font-family: Arial;
  font-size: 16px;
  line-height: 31px;
  text-align: center;
  display: block;
  background: white;
}

#feedly-count a {
  color: #333;
  text-decoration: none;
}

/* 購読者数吹き出し部分 */
.fdly-count:after,
.fdly-count:before {
  border: solid transparent;
  content: ' ';
  right: 43%;
  position: absolute;
}

.fdly-count:before {
  border-width: 5px;
  border-top-color: #B0C1D8;
  top: 32px;
}

.fdly-count:after {
  border-width: 5px;
  border-top-color: #FFF;
  top: 30px;
}

/************************************
** 購読者数つきFeedlyボタン（横型）
************************************/
.feedly-btn-horizontal img#feedly-follow {
  width: 60px;
  height: 20px;
  border: 0;
  margin-right: 3px;
}

.feedly-btn-horizontal .arrow_box {
  position: relative;
  background: #fff;
  border: 1px solid #BDBDBD;
  padding: 0 6px;
  border-radius: 3px;
  top: -7px;
  line-height: 18px;
  display: inline-block;
  height: 22px;
}

.feedly-btn-horizontal a {
  color: #333;
  font-size: 11px;
  text-decoration: none;
  line-height: 18px;
}

.feedly-btn-horizontal a:hover {
  color: #333;
}

.feedly-btn-horizontal .arrow_box:after,
.feedly-btn-horizontal .arrow_box:before {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.feedly-btn-horizontal .arrow_box:after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #fff;
  border-width: 3px;
  margin-top: -3px;
}

.feedly-btn-horizontal .arrow_box:before {
  border-color: rgba(189, 189, 189, 0);
  border-right-color: #BDBDBD;
  border-width: 4px;
  margin-top: -4px;
}

/************************************
** ブログカードのスタイル
************************************/
.blog-card {
  margin: 20px 0;
  max-width: 100%;
  width: 500px;
  position: relative;
  clear: both;
  min-height: 155px;
  min-width: 300px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: auto;
  zoom: 1;
}

.internal-blog-card {
  padding: 12px 12px 0;
  border: 1px solid #ddd;
  word-wrap: break-word;
  border-radius: 5px;
}

.external-blog-card {
  border: 0;
  background-color: transparent;
  overflow: hidden;
}

.blog-card img {
  border: 0;
}

.blog-card-thumbnail {
  float: left;
}

img.blog-card-thumb-image {
  width: 100px;
  height: 100px;
}

.blog-card-content {
  margin-left: 110px;
  line-height: 120%;
}

.blog-card-title {
  margin-bottom: 5px;
}

.blog-card-title a {
  font-weight: bold;
  text-decoration: none;
  color: #111;
}

.blog-card-excerpt {
  color: #333;
  font-size: 90%;
}

.blog-card-footer {
  font-size: 0.7em;
  color: #777;
  clear: both;
  margin-top: 3px;
}

.blog-card-site {
  float: left;
  margin-right: 7px;
  margin-top: 1px;
}

.blog-card-hatebu {
  float: left;
  margin-right: 7px;
}

.blog-card-date {
  float: right;
  margin-top: -1px;
}

.blog-card-site a {
  color: #777;
  text-decoration: none;
  position: relative;
  top: -3px;
}

.blog-card-favicon {
  margin-right: 3px;
}

.blog-card-favicon-img {
  width: 16px;
  height: 16px;
}

/* IE10以降 */
@media all and (-ms-high-contrast:none) {
  .blog-card-favicon {
    display: none;
  }
}

.clear {
  clear: both;
}

@media screen and (max-width:524px) {
  .blog-card {
    width: auto;
  }
}


/************************************
** SNSに関するスタイルシートの設定
************************************/

/************************************
** SNSシェアボタン
************************************/

ul.snsb {
  padding: 10px 0;
  margin-bottom: 0;
  font-family: sans-serif;
}

.snsb li {
  float: left;
  list-style-type: none;
  margin-right: 2px;
  margin-top: 2px;
  margin-bottom: 5px;
}

ul.snsbs li {
  margin-right: 5px;
  margin-bottom: 5px;
}

ul.snsbs li a {
  color: #fff;
  text-decoration: none;
  font-size: 25px;
  background-color: #000;
  display: block;
  padding: 7px 6px 3px 6px;
  border-radius: 5px;
  width: 25px;
  height: 30px;
  position: relative;
}

ul.snsbs li a .social-count {
  font-size: 10px;
  position: relative;
  background-color: #555;
  width: auto;
  padding: 1px 3px;
  border-radius: 5px;
  position: absolute;
  display: inline-block;
  right: 0;
  bottom: 0;
  height: 12px;
  line-height: 12px;
  font-family: Arial;
}

ul.snsbs a.twitter-btn-icon-link {
  background-color: #55acee;
}

ul.snsbs a.facebook-btn-icon-link {
  background-color: #3b5998;
}

ul.snsbs a.google-plus-btn-icon-link {
  background-color: #dd4b39;
}

ul.snsbs a.hatena-btn-icon-link {
  background-color: #3C7DD1;
}

ul.snsbs a.pocket-btn-icon-link {
  background-color: #EE4257;
}

ul.snsbs a.line-btn-icon-link {
  background-color: #00c300;
}

ul.snsbs a.evernote-btn-icon-link {
  background-color: #51b125;
}

ul.snsbs a.feedly-btn-icon-link {
  background-color: #87bd33;
}

ul.snsbs a.comments-btn-icon-link {
  background-color: #555;
  padding-top: 4px;
  padding-bottom: 6px;
}


.snsbs li a:hover {
  opacity: 0.6;
}

.snsbs li img {
  border-radius: 10px;
}

img.evernote-btn-img {
  min-height: 62px;
}

img.evernote-btn-img-mini {
  display: none;
}

/************************************
** タイトル下SNSボタン
************************************/
#sns-group-top ul,
#sns-group-bottom ul {
  padding: 0;
  line-height: 20px;
}

#sns-group-top ul li {
  margin-top: 2px;
  margin-bottom: 2px;
}

#sns-group-top .sns-share-msg {
  display: none;
}

#sns-group-top .twitter-btn {
  width: 92px;
}

#sns-group-top .facebook-btn {
  width: 96px;
}

#sns-group-top .google-plus-btn,
#sns-group-bottom .google-plus-btn {
  width: 36px;
  margin-top: -2px;
}

#sns-group-top .pocket-btn {
  width: 95px;
}

#sns-group-top .evernote-btn-img {
  display: none;
}

#sns-group-top .evernote-btn-img-mini {
  display: block;
}

#sns-group-top .evernote-btn-img-mini {
  height: 20px !important;
  width: auto !important;
}

.fb_iframe_widget span {
  vertical-align: baseline !important;
}

/************************************
** SNSページフォロー
************************************/
.sns-follow-msg {
  margin: 8px 0 0 0;
  font-size: medium;
}

.sns-share-msg {
  margin-bottom: -20px;
  font-size: medium;
}

#header .sns-follow-msg {
  display: none;
}

ul.snsp {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 15px;
}

ul.snsp li {
  display: inline;
  margin-right: 5px;
}

ul.snsp li a {
  color: #666;
  font-size: 19px;
  line-height: 170%;
  text-decoration: none;
}

/*Facebookコメント欄が表示されない不具合修正*/
.fb-like iframe {
  max-width: none;
}

/*アイコフォントの大きさ*/
ul.snsp li a span {
  font-size: 40px;
}

/*feedly、LINEアイコンは自作なので少し大きかったので調整*/
ul.snsp li a span.icon-feedly-square,
ul.snsp li a span.icon-line-square,
ul.snsp li a span.icon-hatebu-square {
  /* 画像をBase64にするためコメントアウト
  background-image: url("../images/white-feedly.png"); */
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcAQMAAABIw03XAAAABlBMVEUAAAD///+l2Z/dAAAAAXRSTlMAQObYZgAAAB9JREFUCNdjkP//v4Gh/v//BxDi////H+hGIOwFOwMAuf5pDfN+XdkAAAAASUVORK5CYII=");
  font-size: 33.5px;
  position: relative;
  top: 1px;
  line-height: 36px;
}

ul.snsp li.twitter-page a span:hover {
  color: #55acee;
}

ul.snsp li.facebook-page a span:hover {
  color: #3b5998;
}

ul.snsp li.google-plus-page a span:hover {
  color: #dd4b39;
}

ul.snsp li.instagram-page a span:hover {
  color: #3f729b;
}

ul.snsp li.hatebu-page a span:hover {
  color: #008fde;
}

ul.snsp li.pinterest-page a span:hover {
  color: #cc2127;
}

ul.snsp li.youtube-page a span:hover {
  color: #e52d27;
}

ul.snsp li.flickr-page a span:hover {
  color: #1d1d1b;
}

ul.snsp li.feedly-page a span:hover {
  color: #87bd33;
}

ul.snsp li.line-page a span:hover {
  color: #00c300;
}

ul.snsp li.rss-page a span:hover {
  color: #fe9900;
}


ul.snsp li.feedly-page a img {
  margin-bottom: -3px;
  width: 32.5px;
  height: 32.5px;
  border-radius: 7px;
  border-width: 0px;
}

ul.snsp li a span {
  /* 画像をBase64にするためコメントアウト
  background-image: url("../images/white.png"); */
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAfAQMAAADKou9EAAAABlBMVEUAAAD///+l2Z/dAAAAAXRSTlMAQObYZgAAAB9JREFUCNdjkP///wFD/f//PyDE/////wwUgXAG2FUADfF3INqLhU0AAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-position: 3px 5px;
  padding: 0;
  z-index: 10;
}

ul.snsp li a span {
  width: 33px;
  height: 33px;
  display: inline-block;
  border-radius: 5px;
  z-index: 1;
  line-height: 33px;
}

/************************************
** シェアバー
************************************/
#sharebar {
  background: none repeat scroll 0 0 #FFFFFF;
  border: 1px solid #CCCCCC;
  margin: 0;
  padding: 0;
  position: absolute;
  text-align: center;
  z-index: 99;
  margin-left: -110px;
  margin-top: -50px;
  width: 90px;
  position: fixed;
}

#sharebar ul li {
  display: block;
  margin: 5px;
  overflow: hidden;
  padding: 0;
  text-align: center;
  float: none;
  padding: 0;
}

#sharebar ul.snsb-balloon li,
#sharebar li.comments-balloon-btn {
  margin-left: 15px;
  margin-bottom: 10px;
}

#sharebar .sns-share-msg {
  display: none;
}

/************************************
** 自作のバルーンシェアボタン
************************************/
.balloon-btn-set {
  display: block;
  width: 60px;
  height: 63px;
}

.balloon-btn-set a {
  display: block;
  color: #777;
  font-size: 14px;
  text-decoration: none;

}

a.arrow-box-link {
  font-weight: bold;
  text-align: center;
  font-family: Arial;
  display: block;
  font-size: 14px;
}

a.evernote-arrow-box-link {
  font-family: 'Boogaloo', cursive;
  font-weight: normal;
}

a.arrow-box-link:hover {
  color: #555;
}

a.balloon-btn-link {
  border: 1px solid #ddd;
  width: 58px;
  height: 20px;
  line-height: 22px;
  position: relative;
  top: 4px;
  color: white;
  border-radius: 3px;
  text-align: center;
  display: block;
}

a.balloon-btn-link:hover {
  color: white;
  opacity: 0.6;
}

a.twitter-balloon-btn-link {
  background-color: #55acee;
}

a.facebook-balloon-btn-link {
  background-color: #3c5a99;
}

a.googleplus-balloon-btn-link {
  background-color: #dd4b39;
}

a.hatena-balloon-btn-link {
  background-color: #3c7dd1;
}

a.pocket-balloon-btn-link {
  background-color: #ee4257;
}

a.line-balloon-btn-link {
  background-color: #00c300;
}

a.evernote-balloon-btn-link {
  background-color: #51b125;
}

a.feedly-balloon-btn-link {
  background-color: #87bd33;
}

a.comments-balloon-btn-link {
  background-color: #333;
}

a.comments-balloon-btn-link .fa-comment {
  position: relative;
  top: -3px;
}

.arrow-box {
  position: relative;
  background: #fff;
  border: 1px solid #bbb;
  text-align: center;
  width: 58px;
  height: 33px;
  border-radius: 3px;
  line-height: 33px;
  display: inline-block;
}

.arrow-box:after,
.arrow-box:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.arrow-box:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #fff;
  border-width: 3px;
  margin-left: -3px;
}

.arrow-box:before {
  border-color: rgba(187, 187, 187, 0);
  border-top-color: #ddd;
  border-width: 5px;
  margin-left: -5px;
}

/************************************
** タイトル下SNSボタン
************************************/
.page #sns-group-top {
  display: none;
}

#sns-group-top .balloon-btn-set {
  display: block;
  width: 87px;
  height: 22px;
  margin-bottom: 10px;
}

#sns-group-top .arrow-box {
  height: 20px;
  width: 50px;
  line-height: 20px;
  float: right;
}

#sns-group-top .arrow-box-link {
  line-height: 20px;
  text-align: center;
}

#sns-group-top .balloon-btn-link {
  top: 0;
  width: 28px;
  float: left;
  line-height: 24px;
}

#sns-group-top .arrow-box {
  position: relative;
  background: #fff;
  border: 1px solid #bbb;
}

#sns-group-top .arrow-box:after,
#sns-group-top .arrow-box:before {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  left: auto;
  position: absolute;
  pointer-events: none;
}

#sns-group-top .arrow-box:after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #fff;
  border-width: 3px;
  margin-top: -3px;
}

#sns-group-top .arrow-box:before {
  border-color: rgba(119, 119, 119, 0);
  border-right-color: #bbb;
  border-width: 4px;
  margin-top: -4px;
}

/************************************
** Google FontsのBoogalooをダウンロードしたものの呼び出し
************************************/
@font-face {
  font-family: Boogaloo;
  src: url('webfonts/boogaloo/Boogaloo-Regular.ttf') format("truetype");
}

/************************************
** バイラルボタン
************************************/
.sns-group-viral ul.snsb li a {
  width: 150px;
  height: 35px;
  border-radius: 3px;
  margin-bottom: 5px;
  text-align: center;
  font-size: 16px;
  line-height: 35px;
}

.sns-group-viral ul.snsbs li a .social-count {
  font-size: 12px;
  bottom: 2px;
  font-weight: bold;
  background-color: transparent;
}

.sns-group-viral .social-icon:after {
  margin-left: 7px;
  position: relative;
  top: -2px;
  font-family: arial;
}

.sns-group-viral .fa-comment:after {
  top: 0;
}


.sns-group-viral .icon-twitter:after {
  content: 'Twitter';
}

.sns-group-viral .icon-facebook:after {
  content: 'Facebook';
}

.sns-group-viral .icon-googleplus:after {
  content: 'Google+';
}

.sns-group-viral .icon-hatena:after {
  content: 'Hatena';
}

.sns-group-viral .icon-pocket:after {
  content: 'Pocket';
}

.sns-group-viral .icon-line:after {
  content: 'Line';
}

.sns-group-viral .icon-evernote:after {
  content: 'Evernote';
}

.sns-group-viral .icon-feedly:after {
  content: 'Feedly';
}

.sns-group-viral .fa-comment:after {
  content: 'Comment';
}

/************************************
** バイラルボタン（シェアバー）
************************************/
#sharebar .sns-group-viral ul.snsb li a {
  width: 68px;
}

#sharebar .sns-group-viral .social-icon:after {
  display: none;
}

/************************************
** とりあえず何でもレスポンシブ化するスタイル
************************************/
img,
canvas,
iframe,
video,
svg {
  max-width: 100%
}

.overflow-container {
  overflow-y: scroll
}

.aspect-ratio {
  height: 0;
  padding-top: 56.25%;
  position: relative
}

.aspect-ratio--object {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 100
}

/************************************
** 外部パーツ微調整
************************************/
/*外部パーツの微調整など*/
/*SimplicityでbbPressのスタイルを整える*/
.bbp-breadcrumb-home,
.bbp-breadcrumb-home+.bbp-breadcrumb-sep,
.topic .post-date,
.topic .post-update,
.topic .footer-post-meta,
.post-0 .post-date,
.post-0 .post-update,
.post-0 .footer-post-meta,
.forum .post-date,
.forum .post-update,
.forum .footer-post-meta {
  display: none;
}

#bbp_search {
  font-size: 17px;
}

#bbp_search_submit {
  padding-top: 9px;
  padding-bottom: 9px;
}

.post-0 .post-meta {
  height: 27px;
}

.bbp-reply-content {
  font-size: 16px;
  line-height: 170%;
}

.bbp-forum-title {
  font-size: 16px !important;
}

.bbp-topic-permalink {
  font-size: 14px !important;
}

#bbpress-forums .status-closed,
#bbpress-forums .status-closed a {
  color: #555 !important;
}

#bbp-container .entry-content {
  margin-left: 0;
}

.bbp-form>p,
.bbp-form>div {
  text-align: left;
}

#bbp_reply_content,
#bbp_topic_content {
  border: 1px solid #ccc;
}

/*bbResolutions*/
.bbr-form-wrapper {
  clear: left;
}

.bbr-field-wrapper {
  float: left;
  margin-right: 10px;
  position: relative;
  top: 5px;
}

.bbr-resolution-sticker {}

@media screen and (max-width: 440px) {

  #bbpress-forums div.bbp-forum-content,
  #bbpress-forums div.bbp-topic-content,
  #bbpress-forums div.bbp-reply-content {
    margin-left: 10px !important;
  }

  .sp-hide {
    display: inline;
  }
}

/*Googleカスタム検索用*/
#cse-search-box input[type="text"] {
  width: calc(100% - 70px);
  background-color: #fff;
}

#cse-search-box input[type="submit"] {
  height: 32px;
}

#cse-search-box input {
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 34px;
}

#bbpress-forums div.bbp-reply-author img.avatar {
  position: relative !important;
}

/*カテゴリ・アーカイブウィジェットをドロップダウンにしたときラベルを表示しない*/
.widget_categories label.screen-reader-text,
.widget_archive label.screen-reader-text {
  display: none;
}

/************************************
** addquicktag用css
************************************/
.text-left {
  width: 58%;
  float: left;
}

.text-right {
  width: 58%;
  float: right;
}

.img-left {
  width: 40%;
  float: left;
}

.img-right {
  width: 40%;
  float: right;
}

/************************************
** ドロップダウン用css
************************************/
.head-button {
  margin: 15px 0 0 10px;
  width: 20%;
  float: left;
}

div.search {
  margin: 15px 10px 0 0;
  width: 10%;
  float: right;
  text-align: right;
}

.head-button i,
div.search i {
  font-size: 24px;
  color: #8c8c8c;
}

.js-search {
  position: absolute;
  top: 54px;
  width: 100%;
  padding: 10px;
  background-color: #8c8c8c;
  border-radius: 10px;
  box-sizing: border-box;
}

.js-search #s,
.js-search #searchform {
  margin: 0;
}


.kokoku {
  background: #EFEFEF;
  padding: 0px 2px 2px;
  width: 320px;
  margin: 10px auto;
}

.kokoku:before {
  content: "PR";
  display: block
}

/************************************
** 首都圏編集部用css
************************************/
#toc_container {
  border: 1px solid #aaa;
  display: table;
  font-size: 85%;
  margin-bottom: 50px;
  margin-top: 50px;
  margin-left: 10px;
  padding: 5px;
  width: auto;
}

.toc_title {
  font-weight: 700;
  text-align: center;
}

#toc_container li,
#toc_container ul,
#toc_container ul li {
  list-style-position: outside;
  margin-left: 1em;
  margin-right: 1em;
  padding-left: 0;
  list-style: outside none none !important;
  line-height: 2.0em;
}

.recommend {
  background: #EEEEEE;
  padding: 10px;
  font-size: 85%;
  border-radius: 5px;
}

.recommend ul {
  list-style: none;
}

.recommend li {
  font-size: 100%;
}

.recommend a {
  color: #0000FF;
}

.recommend a:hover {
  color: #FF8200;
}

.summary {
  padding: 0.5em 1em;
  margin: 2em 0;
  color: #232323;
  background: #fff8e8;
  border-left: solid 10px #ffc06e;
}

.summary p {
  margin: 0;
  padding: 0;
}

.summary ul {
  list-style: none;
}

.summary ol li {
  padding-bottom: 7px;
  padding-top: 7px;
}

.summary ul li {
  padding-bottom: 7px;
  padding-top: 7px;
}