.item {
  display: grid;
  grid-template-columns: 320px 1fr;
  column-gap: 20px;
  padding-bottom: 20px;
}
.item:not(:last-child) {
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .item {
    grid-template-columns: 1fr;
  }
}
.item .item__figure {
  grid-row: 1 / span 3;
  order: 1;
}
.item .item__figure img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .item .item__figure {
    grid-row: auto;
    margin-bottom: 10px;
    order: 3;
  }
}
.item .item__name {
  margin-bottom: 5px;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .item .item__name {
    order: 1;
  }
}
.item .item__catch {
  margin-bottom: 10px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 10px;
  color: #630;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .item .item__catch {
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  .item .item__desc {
    order: 4;
  }
}

.item.item--reverse {
  grid-template-columns: 1fr 320px;
}
@media screen and (max-width: 767px) {
  .item.item--reverse {
    grid-template-columns: 1fr;
  }
}
.item.item--reverse .item__figure {
  grid-column: 2;
}
@media screen and (max-width: 767px) {
  .item.item--reverse .item__figure {
    grid-column: 1;
  }
}
.item.item--reverse .item__name {
  grid-column: 1;
}
.item.item--reverse .item__catch {
  grid-column: 1;
}
.item.item--reverse .item__desc {
  grid-column: 1;
}

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