.service-list {
  border-top: 1px solid #EEEFF5;
  max-width: 650px;
  margin: 0 auto;
}

.service-list__item {
  padding: 30px 0;
  border-bottom: 1px solid #EEEFF5;
}

.service-link {
  display: flex;
  align-items: center;
}

.service-link__image {
  width: 100px;
  background-color: #EEEFF5;
}

.service-link__title {
  margin-left: 10px;
  font-weight: 600;
}

.service-link__title .title__small {
  font-size: 1.2rem;
}

@media screen and (min-width: 361px) {
  html, body {
    margin: 0;
  }
}

@media screen and (min-width: 500px) {
  html, body {
    margin: 0;
  }
}

@media screen and (min-width: 768px) {
  html, body {
    margin: 0;
  }
}

@media screen and (min-width: 1080px) {
  html, body {
    margin: 0;
  }
  .service-list {
    max-width: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .service-list__item {
    padding: 30px 0;
    border-bottom: 1px solid #EEEFF5;
    width: 50%;
    position: relative;
  }
  .service-list__item:nth-of-type(even)::before {
    content: "";
    display: block;
    width: 1px;
    height: 120px;
    background-color: #EEEFF5;
    position: absolute;
    top: 30px;
    left: 0;
  }
  .service-list__item:nth-of-type(even) .service-link {
    margin-left: 30px;
  }
  .service-link {
    width: calc(100% - 30px);
  }
  .service-link__image {
    width: 220px;
  }
  .service-link__title {
    margin-left: 20px;
  }
}

@media screen and (min-width: 1280px) {
  html, body {
    margin: 0;
  }
}

@media screen and (min-width: 1920px) {
  html, body {
    margin: 0;
  }
}

@media screen and (max-width: 360px) {
  html, body {
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  html, body {
    margin: 0;
  }
}

@media screen and (max-width: 1079px) {
  html, body {
    margin: 0;
  }
}

@media screen and (max-width: 1279px) {
  html, body {
    margin: 0;
  }
}

@media screen and (max-width: 1919px) {
  html, body {
    margin: 0;
  }
}

@media (hover: hover) {
  .service-link:hover::before {
    transition-duration: 0.5s;
    transform: translate(2px, -2px);
  }
  .service-link:hover .service-link__image {
    opacity: 0.75;
  }
  .service-link:hover .service-link__title {
    color: #929292;
  }
}
