@charset "UTF-8";

#policy + section .contents {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
#policy + section .contents .item {
  position: relative;
  max-width: calc(50% - 2rem * 1 / 2);
  width: 100%;
}
#policy + section .contents .item .item_block:nth-child(n + 2) {
  margin-top: 2rem;
}
#policy + section .contents .item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--i_border_color);
  left: 100%;
  top: 0;
}
#policy + section .contents .item:nth-child(2)::before {
  display: none;
}

@media screen and (max-width: 768px){
     #policy + section .contents .item {
        max-width: 100%;
        border: 5px solid var(--i_border_color);
        padding: 1.5rem;
     }
     #policy + section .contents .item::before {
        display: none;
     }
}