@charset "UTF-8";

#list + section .contents {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
#list + section .contents_item {
  max-width: calc(50% - 2rem * 1 / 2);
  width: 100%;
  display: flex;
  gap: 1rem;
  border-bottom: 1px dashed var(--i_txt_color);
}
#list + section .contents_item img {
  width: 25px;
  height: 25px;
}
@media screen and (max-width: 768px) {
  #list + section .contents_item {
    max-width: 100%;
  }
}