@charset "utf-8";

.h-container {
  padding: 180px 0 120px;
}

@media (max-width: 768px) {
  .h-container {
    padding: 120px 0 100px;
  }
}

ul {
  padding-inline-start: 40px;
}

/* ここからsingle */

.post_base {
  max-width: 1198px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 106px;
  /* gap: 20px; */
  padding-bottom: 200px;
}

@media (max-width: 1020px) {
  .post_base {
    flex-direction: column;
      padding-bottom: 100px;
      gap: 40px;
  }
}

.post_header {
  max-width: 383px;
  flex: 1;
}

@media (max-width: 1300px) {
  .post_header {
    max-width: 318px;
  }
}

@media (max-width: 1165px) {
  .post_header {
    max-width: 285px;
  }
}

@media (max-width: 1020px) {
  .post_header {
    max-width: none;
    flex: 1;
  }
}

.post_title {
  color: var(--color-black);
  font-weight: 400;
  /* font-size: 32px; */
  font-size: clamp(20px, 2.2857142857142856vw, 32px);
  line-height: 1.5;
}

@media (max-width: 1020px) {
  .post_title {
    font-size: 28px;
  }
}

.post_date {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  margin-top: 12px;
}

.post_content_container {
  max-width: 628px;
  flex: 1;
  width: calc(100% - 383px - 106px);
}

@media (max-width: 1020px) {
  .post_content_container {
    max-width: none;
    width: 100%;
  }

}

.post_heading {
  color: var(--color-black);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;

  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-black);
}

@media (max-width: 1020px) {
  .post_heading {
    font-size: 20px;
  }
}

.post_inner {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.post_inner p {
  color: var(--color-black);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  text-align: justify;

}

.post_page_bottom {
  padding-top: 80px;
  border-top: 1px solid var(--color-lite-gray);
}

.to_archive_btn {
  display: block;
  margin: 0 auto;
  color: var(--color-black);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  vertical-align: middle;
  padding: 8px 24px;
  border-radius: 999px;
  border: 1px solid var(--color-black);
  max-width: 160px;
  transition: background-color .4s ease, color .4s ease;
}

.to_archive_btn:hover {
  color: var(--color-white);
  background-color: var(--color-black);
}