@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@100..900&display=swap");
:root {
  --text-color: #191919;
  --wh: #fff;
  --bk: #191919;
  --gray: #8A8B88;
  --green: #6AC643;
  --yellow: #FFD700;
  --footer-bg: #111827;
}

@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc-tb {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

@media screen and (max-width: 499px) {
  .pc-xsl {
    display: none !important;
  }
}

@media screen and (min-width:500px) {
  .sp-xsl {
    display: none !important;
  }
}

@media screen and (max-width: 376px) {
  .pc-xs {
    display: none !important;
  }
}

@media screen and (min-width: 377px) {
  .sp-xs {
    display: none !important;
  }
}

/* ====================================================
POST PAGE
==================================================== */
.post {
  color: var(--wh);
  padding: clamp(6.25rem, 10vw, 9.375rem) 0 0;
}
.post__title {
  text-align: center;
  font-size: clamp(1.5rem, 2vw, 3rem);
  margin: 0 auto clamp(1.25rem, 4vw, 3.125rem) auto;
  padding-bottom: clamp(0.9375rem, 2vw, 1.875rem);
  line-height: 1;
  position: relative;
}
.post__content {
  line-height: 1.6666666667;
  min-height: 50vh;
  padding-bottom: clamp(3.125rem, 8vw, 6.25rem);
}
.post__list-item {
  display: flex;
  gap: 0 6rem;
  padding: clamp(0.9375rem, 2vw, 1.875rem) 0;
  border-bottom: 1px solid #4a4a4a;
}
@media screen and (max-width: 834px) {
  .post__list-item {
    flex-direction: column;
    gap: 0.625rem;
  }
}
.post__list-item:not(:first-child) {
  border-top: 1px solid #4a4a4a;
}
.post__list-item:hover .post__list-title {
  color: var(--yellow);
  transition: color 0.3s ease-out;
}
.post__list-item:hover svg {
  transform: translateY(-2px);
  transition: transform 0.3s ease-out;
}
.post__list-date {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
}
.post__list-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}/*# sourceMappingURL=post.css.map */