@charset "UTF-8";


.feature-img-box {
  background: #F4F4F4;
}

.feature-img-box .feature-img01 {
  background: url(../img/feature_image_01.jpg) no-repeat;
  background-size: cover;
  height: 400px;
}
@media screen and (max-width: 768px) {
  .feature-img-box .feature-img01 {
    height: 250px;
  }
}

.feature-img-box .feature-img-txt {
  max-width: 350px;
  margin-left: 100px;
}
@media screen and (max-width: 768px) {
  .feature-img-box .feature-img-txt {
    max-width: 100%;
    margin:40px 35px;
  }
}

.feature-img-box .feature-img-txt .headline {
  margin-bottom: 20px;
}

.feature-img-box .feature-img-txt .feature-list-item {
  padding-left: 40px;
  margin-bottom: 26px;
  background: url(../img/icon_check.png) left 0px top 3px no-repeat;
}

.feature-img-box .feature-img-txt p {
  margin-bottom: 30px;
}

.feature-img-box .feature-img02 {
  background: url(../img/feature_image_02.jpg) no-repeat;
  background-size: cover;
  height: 400px;
}

@media screen and (max-width: 768px) {
  .feature-img-box .feature-img02 {
    height: 250px;
  }
}

/* knowledge */

.knowledge {
  padding: 60px 0 70px;
}

@media screen and (max-width: 768px) {
  .knowledge {
    padding: 40px 0 50px;
  }

}

.knowledge .knowledge-txt-box {
  text-align: center;
  margin-bottom: 96px;
}

@media screen and (max-width: 768px) {
  .knowledge .knowledge-txt-box {
    margin-bottom: 46px;
  }
}

.knowledge .knowledge-txt-box .headline {
  margin-bottom: 10px;
}

.knowledge .knowledge-txt-box .knowledge-txt {
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .knowledge .knowledge-txt-box .knowledge-txt {
      font-size: 1rem;
  }
}

.knowledge .knowledge-item-link {
  text-decoration: none;
}

.knowledge .knowledge-item-link:hover {
  text-decoration: none;
}

.knowledge .knowledge-item {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .knowledge .knowledge-item {
    margin-bottom: 10px;
  }
}

.knowledge .knowledge-item .knowledge-thumbnail-box {
  margin: 0 auto;
  overflow: hidden;
  cursor: pointer;
}

.knowledge .knowledge-item .knowledge-thumbnail-box img {
  width: 100%;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.knowledge .knowledge-item .knowledge-thumbnail-box:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.knowledge .knowledge-item .knowledge-item-txt {
  background: #F9F9F9;
  height: 200px;
  padding: 15px 20px 23px;
}

.knowledge .knowledge-item .knowledge-item-category {
  background: #000;
  color: #FFF;
  padding: 6px 14px;
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: inline-block;
}

.knowledge .knowledge-item .headline {
  font-size: 2rem;
  margin-bottom: 27px;
  text-decoration: none;
  color: #000;
}

.knowledge .knowledge-item .knowledge-price {
  color: #B5B5B5;
}

