@charset "UTF-8";

.recommend-box-bottom-fix {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 350px;
  background: rgba(245,245,245,0.95);
  z-index: 100;
  border: 1px solid #eee;
  padding: 12px 10px 10px 10px;
  box-sizing: border-box;
  transition: .4s;
}

.recommend-box-bottom-fix.hide{
  transform: translateY(100%);
}

.recommend-box-bottom-fix .title {
  text-align: center;
  font-size: 1.2rem;
  padding: 0 0 10px 0;
}

.recommend-box-bottom-fix .article-box-wrapper {
}

.recommend-box-bottom-fix .article-box {
  position: relative;
  padding: 0 0 5px 0;
}
.recommend-box-bottom-fix .article-box:last-child { padding: 0; }

.recommend-box-bottom-fix .article-box a {
  width: 100%;
  display: block;
  padding: 12px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #eee;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  background-color: #fff;
  background-image: url(../../../img/common/icon-arrow-right.png);
  background-size: 6px 12px;
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: 0.3s;
}

.recommend-box-bottom-fix .article-box a:hover {
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
  opacity: 0.8;
}

.recommend-box-bottom-fix .article-box a .img-box {
  width: 35%;
  height: 65px;
  background: #ccc;
  overflow: hidden;
  position: relative;
  float: left;
  border-radius: 3px;
}

.recommend-box-bottom-fix .article-box a .img-box img {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.recommend-box-bottom-fix .article-box a .text-box {
  float: right;
  width: 62%;
  padding: 0 14px 0 0;
  box-sizing: border-box;
}

.recommend-box-bottom-fix .article-box a .text-box .article-title {
  font-size: 1.2rem;
  color: #000;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 31px;
  overflow: hidden;
  font-weight: bold;
}

.recommend-box-bottom-fix .article-box a .text-box .article-detail {
  font-size: 1rem;
  color: #666;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 28px;
  overflow: hidden;
  margin: 6px 0 0 0;
}
