/* -------------------PC版------------------- */

/* fv */
.fv__img img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: auto;
}

/* サービスメニュー */
.services__heading {
  padding-top: 20px;
  font-size: 26px;
}

.services__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* ← 2列 */
  gap: clamp(16px, 2vw, 32px); /* 余白は画面幅で微調整 */
  list-style: none; /* ●を消す（ulの場合） */
  padding: 0 20px 50px 20px;
}
.services__item {
  display: flex;
  flex-direction: column;
  padding: 30px 50px;
  border: 1px solid #eee;
  background: #fff;
  border-radius: 12px;
}
.services__banner {
  display: flex;
  margin-bottom: 30px;
  gap: 20px;
  background: #fff;
}
.product__text {
  width: 350px;
  padding: 30px 20px;
  text-align: center;
}
.product__img {
  width: 700px;
  height: 300px;
}

/* お客さまの声 */
.voices__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* ← 2列 */
  justify-items: center;
  list-style: none; /* ●を消す（ulの場合） */
  padding: 20px 40px 0px 40px;
}
.voices__item {
  display: flex;
  flex-direction: column;
  width: clamp(280px, 42vw, 450px);
  padding: 20px;
  border-radius: 12px;
}
.voices__img {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
.voices__title {
  text-align: left;
}

/* 会社案内 */

.heading--company {
  padding-bottom: 10px;
}

.company__container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* ← 2列 */
}
.company__img {
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
}
.company__text {
  display: flex;
  flex-direction: column;
  margin: auto;
}

/* --------------------------スマートフォン表示-------------------------- */

@media (max-width: 768px) {
  /* サービスメニュー */
  .services__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(16px, 4vw, 24px);
    padding: 0 0 40px 0;
  }
  .services__item {
    padding: 30px 30px;
  }
  .services__product {
    width: 100%;
  }
  .services__banner {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }

  .product__img {
    width: 100%;
    height: auto;
  }
  .product__text {
    width: 100%;
    padding: 0 20px;
  }

  /* お客さまの声 */
  .voices__list {
    display: block;
    padding: 0;
  }
  .voices__item {
    width: 100%;
  }
  .voices__img {
    width: 100%;
  }

  /* 会社案内 */
  .company__container {
    display: flex;
    flex-direction: column;
  }
  .company__img {
    order: -1;
    margin-bottom: 12px;
  }
  .company__text h2 {
    padding-bottom: 10px;
    font-size: 25px;
  }
}
