/* index.html FEATURE section only */
#feature.feature {
  background: #dff0e5;
  padding: 56px 0 36px;
}

#feature .feature-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

#feature h2 {
  margin: 0 0 8px;
  padding: 0;
  font-family: "Lao MN", "Karla", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #2f6651;
  position: relative;
  display: inline-block;
}

#feature h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 250px;
  height: 1px;
  background: #2f6651;
}

#feature .sub {
  margin: 0;
  padding: 0;
  color: #2f6651;
  font-size: 13px;
}

#feature .feature-lead {
  margin: 14px 0 18px;
  color: #456f5e;
  font-size: 13px;
  font-family: "Yu Gothic", "游ゴシック", "YuGothic", "Noto Sans JP", sans-serif;
}

#feature .feature-list-home {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 14px;
}

#feature .feature-card {
  display: block;
  background: #fff;
  border: 1px solid #c8dfd1;
  border-radius: 10px;
  overflow: hidden;
  color: #2e4f43;
}

#feature .feature-card img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  display: block;
}

#feature .feature-card-body {
  padding: 10px 11px 11px;
}

#feature .feature-card-date {
  display: block;
  font-size: 11px;
  color: #4b7f68;
}

#feature .feature-card-title {
  margin: 6px 0 4px;
  font-size: 15px;
  line-height: 1.4;
  color: #2b4d40;
  font-family: "Yu Gothic", "游ゴシック", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 600;
}

#feature .feature-card-summary {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #4d6f62;
  font-family: "Yu Gothic", "游ゴシック", "YuGothic", "Noto Sans JP", sans-serif;
}

#feature .view-more {
  margin-top: 18px;
  text-align: right;
}

#feature .view-more a {
  display: inline-block;
  border: 1px solid #2f6651;
  color: #2f6651;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 14px;
}

#feature .view-more a:hover {
  background: #2f6651;
  color: #fff;
}

@media (max-width: 980px) {
  #feature .feature-container {
    padding: 0 22px;
  }

  #feature .feature-list-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #feature .feature-card img {
    height: 112px;
  }
}

@media (max-width: 640px) {
  #feature {
    padding: 48px 0 30px;
  }

  #feature .feature-container {
    padding: 0 14px;
  }

  #feature .feature-list-home {
    grid-template-columns: 1fr;
  }

  #feature .feature-card img {
    height: 136px;
  }

  #feature .view-more {
    text-align: center;
  }
}
