.feature-box.stylish {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 200px;
  background: url('../images/stylish.jpg') center center / cover no-repeat;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  color: white;
}

.feature-box.stylish .overlay-text {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* 半透明の黒背景 */
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
}

.feature-box.stylish h3 {
  margin: 0 0 5px;
  font-size: 1.2em;
}

.feature-box.stylish p {
  margin: 0;
  font-size: 0.9em;
}
