body{
  background: linear-gradient(to bottom, #e1f5fe, #bdeaff);
  background-attachment: fixed;
}
/*--------------------------------------
  見出しh2デザイン変更
--------------------------------------*/
.entry-content h2{
  position: relative;
  color: white;
  background: #7FD9EF;
  line-height: 1.2;
  padding: 0.5em 0.5em 0.5em 1.8em;
  font-size: 1.2em;
}

.entry-content h2::before {/*疑似要素*/
  font-family: FontAwesome;
  content: "\f14a";
  position: absolute;
  left : 0.5em; /*左端からのアイコンまでの距離*/
}
/*--------------------------------------
  見出しデザイン変更h3
--------------------------------------*/
.entry-content h3 {
border-bottom: solid 3px #F3E5F5;
position: relative;
border-left: none;
padding-left: 0;
font-size: 1.15em;
}

.entry-content h3:after {
position: absolute;
content: " ";
display: block;
border-bottom: solid 3px #E77789;
bottom: -3px;
width: 20%;
}
/*--------------------------------------
  見出しデザイン変更h4
--------------------------------------*/
.entry-content h4 {
position: relative;
padding-left: 35px;
}
.entry-content h4:before{
position: absolute;
font-family: FontAwesome;
content: "\f0eb";
background: #ffca2c;
color: white;
font-weight: normal;
font-size: 15px;
border-radius: 50%;
left: 0;
width: 25px;
height: 25px;
line-height: 25px;
text-align: center;
top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%); 
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.entry-content h4:after {/*吹き出しのちょこんと出た部分*/
content: '';
display: block;
position: absolute;
left: 20px;
height: 0;
width: 0;
border-top: 7px solid transparent;
border-bottom: 7px solid transparent;
border-left: 12px solid #ffca2c;
top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%); 
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
/*--------------------------------------
  横二列のショートコードで比率を変える
--------------------------------------*/
@media screen and (min-width: 767px) {
  .synmet-res .shtb2 .cell:first-of-type {
    width: 35%;
  }
  .synmet-res .shtb2.tbrsp .cell:last-of-type {
    width: 65%;
  }
}/*end min 767px*/