@charset "UTF-8";
/*
.right {
  margin-top: -7em;
}
*/
.img_incont {
  margin-top: 2em;
  margin-bottom: 2em;
}
p + ol {
  margin-top: 2em;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 2em;
  row-gap: 2em;
}
ol .parent {
  width: calc(50% - 1em);
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
ol .parent::after {
  content: url(img_label.png);
  position: absolute;
  left: 1em;
  top: 0;
  display: block;
  width: 54px;
  height: 73px;
}
ol .parent img {
  margin-bottom: 1em;
}

ol .parent:last-child {
  padding: 0;
  border: none;
  margin-top: 1em;
  width: 100%;
  align-items: flex-start;
}
ol .parent:last-child::after {
  content: none;
}
ol .parent:last-child p {
  color: var(--link-color);
  font-weight: 500;
  font-size: 19px;
}
ol .parent:last-child ul {
  margin-top: 1em;
}

ol ul {
  list-style-type: disc;
  margin-left: 1.5em;
}

@media screen and (max-width: 1024px) {
  .right {
      width: 100%;
  }
  p + ol {
    flex-direction: column;
  }
  ol .parent {
    width: 100%;
  }
}