/*-------------------------
  ブログカード
-------------------------*/
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::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;
  }
}

/*-------------------------
  ヘッダーメニュー固定
-------------------------*/
/*デフォルトダーク：ＰＣ版のメニュー固定*/
.l-extra{
    position: fixed;
    top: 70px;
    z-index: 1000;
    width: 100%;
}
.l-header{
    position: fixed;
    z-index: 1000;
    top: 0px;
    width: 100%;
}
.key {
    width: 100%;
    margin-top:30px;
    padding-top: 100px;
}

/*デフォルトダーク：ＳＰ版のメニュー固定*/
@media only screen and (max-width: 767px){
.l-extra{
    position: fixed;
    top: 50px;
    z-index: 1000;
    width: 100%;
}
.l-header{
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
}
}
/*ライト：ＳＰ版のメニュー固定*/
.t-light .l-extra{
    position: fixed;
    top: 70px;
    z-index: 1000;
    width: 100%;
}
.l-header{
    position: fixed;
    top: 0px;
    z-index: 1000;
    width: 100%;
}
.key {
    width: 100%;
    margin-top:30px;
    padding-top: 100px;
}
/*ライト：ＳＰ版のメニュー固定*/
@media only screen and (max-width: 767px){
    .t-light .l-extra{
    position: fixed;
    top: 50px;
    z-index: 1000;
    width: 100%;
}
.l-header{
    position: fixed;
    top: 0px;
    z-index: 1000;
    width: 100%;
}
}
/*カテゴリー説明部分高さ調整*/
.categoryDescription{
    margin-top:130px;
}
@media only screen and (max-width: 767px){
.categoryDescription{
    margin-top:100px;
}
}
/*各記事タイトル高さ調整*/
.singleTitle{
    margin-top: 130px;
}
@media only screen and (max-width: 767px){
.singleTitle{
    margin-top:100px;
}
}
/* 固定ページ高さ調整 */
.heading.heading-page{
    margin-top:130px;
}
@media only screen and (max-width: 767px){
.heading.heading-page{
    margin-top:100px;
}
}
