.column_content {
    padding-bottom: 7rem;
}

/*--------------------------------------------------------------
# 一覧
--------------------------------------------------------------*/
.archive {
    .post_list {
        margin-bottom: 7rem;
        @media (min-width:768px) {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 10rem;
            gap: 0 3%;
        }

        & li {
            margin-bottom: 3rem;
            padding: 2rem;
            background: var(--pale-blue);
            @media (min-width:768px) {
                width: calc(97% / 2);
            }
            @media (min-width:1028px) {
                width: calc(94% / 3);
                margin-bottom: 5rem;
            }

            .img_box{
                width: 100%;
                aspect-ratio: 1.33 / 1;
                margin-bottom: 1.5rem;
                overflow: hidden;

                & img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center;
                    transition: 0.4s transform ease;
                }
                &:hover {
                    & img {
                        transform: scale(1.1);
                    }
                }
            } 
            .post_date {
                color: var(--fc-base);
            }
            .post_title {
                color: var(--main-blue);
                font-size: var(--fs-large);
                font-weight: 700;
                margin-top: 0.5em;
            }
        }
    }
}

/*--------------------------------------------------------------
# 記事
--------------------------------------------------------------*/
.column_content.single {
  .column_title {
    font-size: var(--fs-large);
    margin: 1em 0 3em;

    &::after {
      display: block;
      content: "";
      width: 6.8rem;
      height: 0.3rem;
      margin-top: 1rem;
      background: #218ED9;
    }
  }
  & figure {
    margin-bottom: 1.6rem;
  }
  & ul {
    margin: 0 0 1em 1.5em;
    & li + li {
      margin-top: 0.5em;
    }
  }
  & ul.kome {
    list-style: none;
    margin-left: 0.5em;
    & li::before {
      display: inline-block;
      content: "※";
      margin-right: 0.5em;
    }
  }
  & ol {
    margin: 0 0 1em 1.5em;
    & li {
      padding-left: 0.5em;
      + li {
        margin-top: 0.5em;
      }
    }
  }
  & dl {
    margin-bottom: 1em;
  }
  .brackets {
    &::before {
      content: "【";
    }
    &::after {
      content: "】";
    }
  }
  .colon {
    &::after {
      content: "：";
    }
  }
  .flex {
    display: flex;
  }
}