@charset "UTF-8";

.workplace_item_col {
  margin-bottom: auto;
}

.workplace_item_ttl {
  font-weight: bold;
  font-size: 2.6rem;
  text-align: center;
  line-height: 2.5;
  margin-bottom: 1.5em;
  background-image: linear-gradient(to right, #0A1B7E0F, #0080CD0F);
}

.workplace_item_imgs {
  display: grid;
  gap: 2rem;
}

.workplace_item_imgs > * {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .workplace_item_row {
    flex-direction: column-reverse;
  }

  .workplace_item_imgs {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .workplace_item_ttl {
    font-size: 1.8rem;
    margin-bottom: 1em;
  }
}