.bg_pink {
  width: 100%;
  background-color: #FEF4FF;
  article.content {
    padding: 60px 0;
    text-align: left;
    @media screen and (max-width: 480px) {
      width: 94%;
      margin: 0 3%;
      padding: 20px 0;
    }
    .main_title {
      text-align: center;
    }
  }
}

.c-columnList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
  line-height: 1.7;
  @media screen and (max-width: 480px) {
    flex-direction: column;
  }
}
.c-columnList__item {
  width: calc((100% - 40px) / 3);
  @media screen and (max-width: 480px) {
    width: 100%;
  }
}
.c-columnList__itemLink {
  display: flex;
  flex-direction: column;
  background: #fff;
  height: 100%;
  transition: .2s ease;
  &:hover {
    opacity: .7;
    .c-columnList__itemHeading {
      img {
        transform: scale(1.1);
      }
    }
  }
}
.c-columnList__itemHeading {
  aspect-ratio: 16/9;
  overflow: hidden;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease;
  }
}
.c-columnList__itemBody {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 15px;
}
.c-columnList__itemTitle {
  font-weight: bold;
}
.c-columnList__itemExcerpt {
  font-size: 14px;
  > *:last-child {
    margin-bottom: 0;
  }
}

.c-btn {
  display: flex;
  width: fit-content;
  margin: 40px auto 10px;
  padding: 10px 20px;
  background: #6A6252;
  color: #fff;
  text-decoration: none !important;
  @media screen and (max-width: 480px) {
    margin: 30px auto;
  }
}
