@charset "utf-8";
/*
Template: jstork
Theme Name: stork_custom
Theme URI:http://open-cage.com/stork/
*/

/*WordPress Popular Posts*/
.wpp-thumbnail{margin:0 0.5em 0 0 !important;width:30%;max-width:100px;}
ul.wpp-list li{border-bottom:1px dotted rgba(125,125,125,0.2);margin:1em 0;}
ul.wpp-list li:last-child{border-bottom:none;}

/* 見出し装飾 */
.entry-content h2 {
  color: #fff !important;
  background-color: #007a12 !important;
  border-radius: 3px;
  padding: 12px 0px 12px 5px ;
  margin: 30px 0px 20px;
}

/* h3見出しのデザイン変更 */
.entry-content h3{
font-size: 1.3em ;
border-left-color: #264b67;
color: #555555;
margin-bottom: 1.5em;
}

/* 見出し装飾 */
.entry-content h4 {
  border: 1px solid #f3f3f3 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
  padding: 12px 0px 12px 5px ;
  margin: 30px 0px 20px;
}

/* テーブルを横スクロール （2018/3/9追加）*/
table {
 width: 100%;
}

/*tableをスクロールさせる*/
/*tableのセル内にある文字の折り返しを禁止*/
.scroll {
 overflow: auto;
 white-space: nowrap;
}

/*tableにスクロールバーを追加*/
.scroll::-webkit-scrollbar {
 height: 5px;
}

/*tableにスクロールバーを追加*/
.scroll::-webkit-scrollbar-track {
 background: #F1F1F1;
}

/*tableにスクロールバーを追加*/
.scroll::-webkit-scrollbar-thumb {
 background: #BCBCBC;
}

/*20180404追加*/
/*パソコンのようなメディア(414px以上)では、横スクロールさせない*/
@media only screen and (min-width: 414px) {
  .scroll-box {
    white-space: normal;
  }
}