@charset "UTF-8";
.welfare__ttl {
  text-align: center;
}
.welfare {
  padding: 80px 0 80px 0;
  max-width: 1080px;
  margin: 0 auto;
  width: 95%;
}
.welfare__body {
  display: flex;
  justify-content: space-between;
  margin: 50px auto;
}
.welfare__left {
  width: 54%;
  color: #387d39;
  font-size: 18px;
  line-height: 32px;
  font-weight: 300;
}
.welfare__right {
  width: 40%;
}
.welfare__right img {
  width: 100%;
  border-radius: 20px;
}
.service {
  max-width: 1080px;
  margin: 0 auto;
  width: 95%;
}
.service__ttl {
  text-align: center;
}
.service-grid {
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 2列 */
  grid-template-rows: repeat(2, auto); /* 3行 */
  gap: 30px 10px;
  padding-bottom: 120px;
  margin: 0 auto;
}
.service__body__txt {
  text-align: center;
  margin: 30px auto;
  line-height: 26px;
  color: #387d39;
  font-weight: 400;
}
.service-wrap__body {
  display: flex;
  justify-content: space-between;
  margin: 20px 0 20px 0;
}
.service__article {
  background-color: #f9faea;
  border-radius: 20px;
  width: 100%;
}
.service__article__img {
  width: 100%;
}
.service__article__img img {
  aspect-ratio: 11 / 6;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  border-radius: 20px 20px 0 0;
}
.service__article__body {
  padding: 10px 20px 20px 15px;
}
.service__article__head {
  font-weight: bold;
  color: #387d39;
  margin-bottom: 10px;
}
.service__article__txt {
  line-height: 28px;
  color: #387d39;
  font-weight: 300;
}
@media screen and (max-width: 900px) {
  .welfare__body {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .welfare__right {
    width: 100%;
  }
  .welfare__left {
    width: 100%;
  }
  .service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .service__article {
    width: 48%;
  }
}
@media screen and (max-width: 560px) {
  .service__article {
    width: 100%;
  }
}
