#toc_container p.toc_title {
    font-weight: 200;
    font-size: 16px;
    text-align: left;
}

#toc_container .toc_list li {
    font-weight: 200;
    font-size: 12px;
    line-height: 2;
    margin-bottom: 0px;
}

#toc_container {
    background: #f9f9f9;
    border: 1px solid #aaa;
    margin-bottom: 32px;
    width: auto;
    display: table;
    font-size: 95%;
}

h1.top_logo {
display: block; 
font-size: 2em;
margin-block-start: 0em;
margin-block-end: 0em;
margin-inline-start: 0px;
margin-inline-end: 0px;
font-weight: bold;
align-items: center;
position: relative;
}


/* ショートコード：吹き出し */
.fukidashi::after {
    display: table;
    clear: both;
    content: '';
}
.fukidashi {
    margin: 2em 0;
}
.fukidashi .ball {
    display: inline-block;
    position: relative;
    padding: 15px;
    margin-left: 1rem;
    max-width: calc(100% - 6rem);
    background-color: #eee;
    border-color: #eee;
    border-radius: 10px;
}
.fukidashi .ball::after {
	right: 100%;
	top: 30px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(136, 183, 213, 0);
	border-right-color: inherit;
	border-width: 10px 15px;
	margin-top: -10px;
}
.fukidashi .icon {
    float: left;
    width: 5rem;
}
.fukidashi .icon > img {
    max-width: 100%;
}

.fukidashi .icon img {
border-radius: 50%;
}

.fukidashi .icon > span {
    display: block;
    margin-top: 0.5rem;
    text-align: center;
    font-size: 0.9rem;
}
@media screen and (min-width: 769px) {
    .fukidashi .ball {
        margin-left: 10px;
        max-width: calc(100% - 90px);
    }
    .fukidashi .icon {
        width: 80px;
    }
    .fukidashi .icon > span {
        font-size: 12px;
    }
}


/* ショートコード：吹き出し */
.scomment {
  display: flex; /*横並び*/
  background: #f9f9f9;
  padding:10px;
  border-radius: 20px;
}

.scomment .sicon > img {
    max-width: 100%;
}

.scomment .sicon {
  width: 80px; /*画像サイズ指定*/
  height: 80px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  max-width: 100%;
}

.scomment .sicon img{
  border-radius: 50%;
}

.scomment .right {
  margin: 0 0 0 20px;
  padding: 0;
}
.scomment .stitle {
  margin: 0;
  padding: 0;
  font-weight: bold;
  font-size: 12px;
}
.scomment .stext {
  margin: 10px 0 0;
  padding: 0;
}


/*-------------------------
  ブログカード
-------------------------*/
a.tmt-blog-card {
  border: 1px solid #e1e1e1;
  box-shadow: 2px 2px #ddd;
  display: block;
  padding: 20px;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
  width: 100%;
}
  a.tmt-blog-card::before {
    background-color: #505050;
    border: solid 1px #939393;
    color: #FFF;
    content: '合わせて読みたい';
    font-size: 12px;
    display: block;
    padding: 4px 20px;
    position: absolute;
    top: -15px;
    left: 25px;
  }
  a.tmt-blog-card::after {
    border: solid 1px #939393;
    color: #939393;
    content: '続きを読む';
    font-size: 14px;
    display: block;
    padding: 5px 20px;
    position: absolute;
    bottom: 10px;
    right: 20px;
  }
  a.tmt-blog-card:hover {
    box-shadow: none;
    opacity: .8;
  }
.tmt-blog-card-box {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
  .tmt-blog-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #428bca;
    padding-bottom: 5px;
  }
  .tmt-blog-card-thumbnail {
    flex: 1;
    margin-right: 15px;
    padding-top: 5px;
  }
    .tmt-blog-card-thumbnail img {
      width: 100%;
    }
  .tmt-blog-card-content {
    flex: 2.5;
  }
  .tmt-blog-card-excerpt {
    border-bottom: dashed 1px #a4a4a4;
    color: #a4a4a4;
    font-size: 13px;
    padding-bottom: 15px;
  }
  .tmt-blog-card-site {
    color: #b2b2b2;
    font-size: 11px;
    padding-left: 5px;
  }
    .tmt-blog-card-site img {
      margin-right: 5px;
      vertical-align: bottom;
      width: 20px;
    }
@media (max-width: 980px) {
  .tmt-blog-card-excerpt {
    border: none;
  }
}
@media (max-width: 640px) {
  a.tmt-blog-card {
    padding: 10px 10px 20px 10px;
  }
  a.tmt-blog-card::before {
    font-size: 11px;
    padding: 2.5px 8px;
    top: -15px;
    left: 10px;
  }
  a.tmt-blog-card::after {
    font-size: 12px;
    padding: 2px 13px;
    right: 10px;
  }
  .tmt-blog-card-thumbnail {
    margin-right: 10px;
    padding-top: 10px;
  }
  .tmt-blog-card-title {
    font-size: 14px;
  }
  .tmt-blog-card-excerpt {
    display: none;
  }
}