@charset "UTF-8";
.process_list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 24px;
}
.process_item {
  width: 100%;
  padding: 16px;
  border: solid 1px #ccc;
  position: relative;
}
.process_title {
  position: absolute;
  display: flex;
  align-items: center;
  top: -14px;
  left: 4px;
  padding: 0 4px;
  font-size: 1.6rem;
  line-height: 1.8;
  background-color: #fff;
}
.process_item img {
  width: 100%;
}
.process_item .description {
  margin-bottom: 0;
}
@media (min-width:760px) {
  .process_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  .process_item img,
  .process_item .copy {
    width: calc((100% - 16px) / 2);
  }
}