@charset "UTF-8";

/*----------------------------------------
	business
----------------------------------------*/
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 70px;
}

.features__item {
  display: flex;
  flex-direction: column;
}

.features__dt {
  margin-bottom: 20px;
  color: #F6AC0F;
  font-weight: bold;
  text-align: center;
 font-feature-settings: "palt" 1;
  font-size: 17px;

}

.features__dd + .features__dd {
 font-size: 14px;
  margin-top: 12px;
}
.features__dd img {
  width: 80%;
}



/*----------------------------------------
	選ばれる理由の画像
----------------------------------------*/
.imageGrid {
  display: grid;
  gap: 5px;
  margin-top: 30px;
}

/* 2枚 */
.imageGrid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* 3枚 */
.imageGrid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* 画像 */
.imageGrid img {
  width: 100%;
  height: auto;
  display: block;
}

.photo__caption {
  margin-top: 8px;
  color: #666;
  font-size: 14px;
text-align: center;
}


 
@media screen and (max-width: 767px),print {

  .features__dt:not(:first-of-type) {
  margin-top: 82px;
}
.features__dt {
  font-size: 22px;
}

  .imageGrid--2,
  .imageGrid--3 {
    grid-template-columns: 1fr;
  }

.imageGrid--2 img,
.imageGrid--3 img{
  width:100%;
  border: 1px solid #ccc;
}

.imageGrid figure{
  margin-top: 20px;
}
}

@media screen and (max-width: 426px),print {
   .features {
    grid-template-columns: 1fr;
  }
}
