.service-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media screen and (max-width: 1024px) {
  .service-panel {
    gap: 16px;
  }
}

@media screen and (max-width: 768px) {
  .service-panel {
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-panel__item {
  position: relative;
  -webkit-box-shadow: 0 0 4px rgba(147, 147, 147, 0.24);
  box-shadow: 0 0 4px rgba(147, 147, 147, 0.24);
  border-radius: 6px;
  background: #ffffff;
}

.service-panel__item a {
  display: block;
}

.service-panel__item a:hover {
  -webkit-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
  opacity: .7;
}

.service-panel__item a img {
  border-radius: 6px 6px 0 0;
}

.service-panel__item a .ttl-s {
  margin: 0;
  padding: 20px 40px 24px;
  border: none;
}

@media screen and (max-width: 960px) {
  .service-panel__item a .ttl-s {
    padding: 16px 40px 36px;
  }
}

@media screen and (max-width: 768px) {
  .service-panel__item a .ttl-s {
    padding: 12px 30px 28px;
  }
}

.service-panel__item a .ttl-s::before {
  left: 16px;
}

@media screen and (max-width: 960px) {
  .service-panel__item a .ttl-s::before {
    top: calc( 50% - 18px);
  }
}

@media screen and (max-width: 768px) {
  .service-panel__item a .ttl-s::before {
    top: calc( 50% - 15px);
    left: 9px;
  }
}

.service-panel__item a span {
  position: absolute;
  right: 16px;
  bottom: 10px;
  color: #22ACD5;
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .service-panel__item a span {
    right: 12px;
    bottom: 6px;
    font-size: 1.3rem;
  }
}

.service-panel__item a span svg {
  width: 12px;
  height: 5px;
  fill: #22ACD5;
  margin-left: 8px;
  margin-bottom: 5px;
}

/*# sourceMappingURL=../../maps/pages/service.css.map */
