@import url('https://fonts.googleapis.com/css2?family=Noto+Serif&display=swap');
.home-services {
  background-color: #E6EAE3;//#F6F8F4;
  box-sizing: border-box;
  margin: 0 calc(50% - 50vw);
  padding: 90px 0;
  width: 100vw;
}
.home-services__inner {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1250px;
  min-width: 320px;
  padding: 0 100px;
}
.home-service-list {
  align-items: flex-start;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home-service-list__item {
  align-items: flex-start;
  aspect-ratio: 514/340;
  box-sizing: border-box;
  background-color: #fff;
  border: solid 1px #707070;
  color: #363447;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 4%;
  padding: 30px;
  transition: opacity .5s ease;
  width: 48%;
}
.home-service-list__item:nth-last-child(-n+2),
.home-service-list__item:nth-last-child(-n+1) {
  margin-bottom: 0;
}
.home-service-list__item:hover {
  opacity: .4;
}
.home-service-list__item:hover .home-service-list__readmore {
  letter-spacing: .28em;
}
.home-service-list__item:hover .home-service-list__readmore::before {
  width: 119px;
}
.home-service-list__headline {
  color: #363447;
  margin: 0 0 auto;
  width: 100%;
}
.home-service-list__subtitle {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
}
.home-service-list__title {
  display: block;
  font-family: 'NotoSansCJKjp-Medium', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: calc(32/22);
  margin-top: 5px;
}
.home-service-list__text {
  color: #363447;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.375;
  width: 100%;
}
.home-service-list__bottom {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  width: 100%;
}
.home-service-list__number {
  color: #363447;
  font-family: 'Noto Serif', serif;
  font-size: 28px;
  line-height: 1;
}
.home-service-list__count {
  font-size: 36px;
}
.home-service-list__readmore {
  color: #363447;
  font-family: 'CabinCondensed-Regular', sans-serif;
  font-size: 14px;
  letter-spacing: .25em;
  line-height: 1.375;
  padding-top: 28px;
  position: relative;
  transition: letter-spacing .5s ease;
  width: 109px;
}
.home-service-list__readmore::before {
  background: url('https://8461973.fs1.hubspotusercontent-na1.net/hubfs/8461973/images/modules/arrow-rainbow.png')
    no-repeat right bottom/ auto 16px;
  content: '';
  display: block;
  height: 16px;
  position: absolute;
  left: 0;
  top: 8px;
  transition: width .5s ease;
  width: 109px;
}

@media screen and (max-width: 1049px) {
  .home-services__inner {
    padding: 0 30px;
  }
  .home-service-list__item {
    margin-bottom: 30px;
    padding: 30px;
  }
  .home-service-list__item:nth-last-child(-n+2),
  .home-service-list__item:nth-last-child(-n+1) {
    margin-bottom: 30px;
  }
  .home-service-list__title {
    font-size: 18px;
  }
  .home-service-list__text {
    font-size: 14px;
  }
  .home-service-list__bottom {
    margin-top: 20px;
  }
  .home-service-list__number {
    font-size: 20px;
  }
  .home-service-list__count {
    font-size: 24px;
  }
  .home-service-list__readmore {
    font-size: 12px;
    padding-top: 20px;
    width: 80px;
  }
  .home-service-list__readmore::before {
    height: 12px;
    top: 3px;
    width: 80px;
  }
  .home-service-list__item:hover .home-service-list__readmore::before {
    width: 89px;
  }
}
@media screen and (max-width: 767px) {
  .home-services__inner {
    padding: 0 20px;
  }
  .home-service-list__item {
    margin-bottom: 20px;
    padding: 20px;
    width: 100%;
  }
  .home-service-list__item:nth-last-child(-n+2),
  .home-service-list__item:nth-last-child(-n+1) {
    margin-bottom: 20px;
  }
  .home-service-list__item:last-child {
    margin-bottom: 0;
  }
}