:root {
  --fwel: 200;
  --fwl: 300;
  --fwn: 400;
  --fwm: 500;
  --fwsb: 600;
  --fwb: 700;
}

/* ===============================================================
 post page
===============================================================*/
.post {
  margin-top: 8rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 834px) {
  .post {
    margin-top: 4rem;
    padding-bottom: 8rem;
  }
}
.post-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 1100px) {
  .post-flex {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.post-main {
  max-width: 101rem;
  width: 100%;
}
.post-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 7rem;
}
@media screen and (max-width: 1250px) {
  .post-list {
    gap: 5rem 3rem;
  }
}
@media screen and (max-width: 834px) {
  .post-list {
    gap: 3rem 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .post-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.post-thumn {
  aspect-ratio: 25 / 16;
  background-color: #fff;
  border-radius: 2rem;
  -webkit-border-radius: 2rem;
  overflow: hidden;
}
.post-thumn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.post-ttl {
  margin-top: 1.5rem;
  font-size: 1.8rem;
  line-height: 1.66;
  font-weight: var(--fwm);
}
.post-date {
  position: relative;
  margin-top: 1rem;
  padding-left: 1.6rem;
  display: block;
  font-size: 1.2rem;
  color: #b0b0b0;
  line-height: 1;
}
.post-date::before {
  position: absolute;
  content: "\e8b5";
  top: -0.1rem;
  left: 0;
  font-family: "Material Symbols Outlined";
  font-size: 1.4rem;
  font-weight: var(--fwn);
  color: #45b035;
  line-height: 1;
}
.post-tag {
  display: block;
  padding: 0.5rem 1rem;
  color: #45b035;
  line-height: 1;
  font-size: 1.2rem;
  border: 1px solid #45b035;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
.post-cate__list {
  margin: 1rem 0 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}