@charset "utf-8";
h2 {
  font-size: 60px;
  text-align: center;
  margin: 50px 0;
}
.main_content {
  width: 1200px;
  max-width: 100%;
  margin: auto;
  padding: 0 16px;
}
.sec_banner {
  position: relative;
  height: 50vh;
  background-color: #333;
  padding: 30px;
}
.sec_banner p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-weight: 900;
  font-size: 50px;
  color: #fff;
}
.archive_items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin: 50px 0;
}
.archive_items .archive_item {
  grid-row: span 3;
  display: grid;
  grid-template-rows: subgrid;
}
.archive_items .archive_item .img_eyecatch {
  width: 100%;
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  margin: 0 0 10px 0;
}
.archive_items .archive_item .post_date {
  font-size: 13px;
  opacity: 0.7;
  margin: 0 0 5px 0;
}
.archive_items .archive_item .post_title {
  font-size: 20px;
  font-weight: 700;
}