/*PEN STYLES*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700|Roboto:400,700);
.blog-card {
  transition: height 0.3s ease;
  -webkit-transition: height 0.3s ease;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 6px 7px -3px rgba(0, 0, 0, 0.3);
  margin: 0 auto 1.6%;
  overflow: hidden;
  position: relative;
  font-size: 14px;
  line-height: 1.45em;
  min-height: 200px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
      position: relative;
}

.blog-card a:hover {
    background: linear-gradient(#fafafa00, #555);
    opacity: 0.2;
    }

.blog-card a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent:-999px;
    z-index: 1; /* リンク要素の重なりのベース順序指定 */
}

.blog-card:hover .details {
  left: 0;
  background-color: rgba(255,0,0,.5);
}
.blog-card:hover.alt .details {
  right: 0;
}
.blog-card.alt .details {
  right: -100%;
  left: inherit;
}
.blog-card .photo {
  height: 150px;
  position: relative;
}

&:hover {
    .photo {
      transform: scale(1.3) rotate(3deg);
    }
  }
.blog-card .details a:hover {
  color: #ff6699;
}
.blog-card .description {
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  height: 100%;
}
.blog-card .description h4.card1 {
  font-family: "Roboto"; !important;
  line-height: 1em;
  margin: 0 0 10px 0;
  font-size: 13px;
  color: #CCCCCC;
  text-align:left;
}
.blog-card .description h5.card2 {
  color: #9b9b9b; !important;
  font-family: "Open Sans";
  line-height: 1.2em;
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 400;
  margin: 1.2% 0;
  font-size: 1.2rem;
  color: #111111;
  text-align:left;
}
.blog-card .description p {
  position: relative;
  margin: 0;
  padding-top: 20px;
  text-align:left;
}
.blog-card .description p:after {
  content: "";
  background: #ff6699;
  height: 6px;
  width: 40px;
  /*POSITION*/
  position: absolute;
  top: 6px;
  left: 0;
}
.blog-card .description a {
  color: #ff6699;
  margin-bottom: 10px;
  float: right;
  font-weight: bold;
  position: absolute;
  bottom: 0 ; !important;
  right: 7px ;
}
.blog-card .description a:after {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  content: "\f061";
  font-family: FontAwesome;
  margin-left: -10px;
  opacity: 0;
  vertical-align: middle;
}
.blog-card .description a:hover:after {
  margin-left: 5px;
  opacity: 1;
}

@media screen and (min-width: 600px) {
  .blog-card {
    height: 150px;
    max-width: 100%;
    min-height: 150px;
  }
  .blog-card:hover .photo {
    -webkit-transform: rotate(5deg) scale(1.3);
            transform: rotate(5deg) scale(1.3);
  }
  .blog-card:hover.alt .photo {
    -webkit-transform: rotate(-5deg) scale(1.3);
            transform: rotate(-5deg) scale(1.3);
  }
  .blog-card.alt .details {
    padding-left: 30px;
  }
  .blog-card.alt .description {
    float: right;
  }
  .blog-card.alt .description:before {
    -webkit-transform: skewX(5deg);
            transform: skewX(5deg);
    right: -15px;
    left: inherit;
  }
  .blog-card.alt .photo {
    float: right;
  }
  .blog-card .photo {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    float: left;
    height: 100%;
    width: 40%;
  }

  .blog-card .description {
    float: left;
    width: 60%;
    z-index: 0;
  }
  .blog-card .description:before {
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
    content: "";
    background: #fff;
    width: 100%;
    z-index: -1;
    /*POSITION*/
    position: absolute;
    left: -15px;
    top: 0;
    bottom: 0;
  }
}
