@charset "UTF-8";
/* ========== ========== ==========
個別部
========== ========== ========== */
.pagination .sectionWrap {
  display: flex;
  justify-content: center;
  gap: clamp(13.33px, calc(20 / var(--base-width-pc) * 100vw), 20px);
}
.pagination_number {
  width: clamp(30px, calc(50 / var(--base-width-pc) * 100vw), 50px);
  height: clamp(30px, calc(50 / var(--base-width-pc) * 100vw), 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.pagination_number.-current {
  background-color: black;
  color: white;
}
.pagination_number:not(.-current):hover {
  cursor: pointer;
  border: solid 3px black;
}

/* singleページ
---------- ---------- */
.singlePost {
  margin-bottom: clamp(70px, calc(100 / var(--base-width-pc) * 100vw), 100px);
}
.singlePost_title {
  font-size: clamp(21.33px, calc(32 / var(--base-width-pc) * 100vw), 32px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03rem;
  padding-bottom: 32px;
  border-bottom: solid 1px #AAA;
  margin-bottom: clamp(26.67px, calc(40 / var(--base-width-pc) * 100vw), 40px);
}
.singlePost_title::before {
  display: none !important;
}
.singlePost_thumbnail {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: clamp(16px, calc(32 / var(--base-width-pc) * 100vw), 32px);
}
.singlePost_content_title {
  font-size: clamp(24px, calc(28 / var(--base-width-pc) * 100vw), 28px);
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  line-height: 1.7857142857;
}
.singlePost_content_title::before {
  content: "";
  display: inline-block;
  margin-right: 12px;
  width: 4px;
  height: 40px;
  background-color: black;
}
.singlePost_content_text {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
.singlePost h2 {
  position: relative;
  padding-left: 20px;
  margin-top: 30px;
}
.singlePost h2::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -40%);
  width: 10px;
  height: 10px;
  background-color: #555;
  border-radius: 99px;
}
.singlePost h3 {
  border-bottom: solid 1px #555;
  margin-top: 30px;
}

.related {
  margin-bottom: var(--margin-bottom1);
}
.related_title {
  font-size: clamp(18px, calc(24 / var(--base-width-pc) * 100vw), 24px);
  line-height: 2.0833333333;
  font-weight: bold;
  margin-bottom: clamp(30px, calc(40 / var(--base-width-pc) * 100vw), 40px);
}

/* 個別部ここまで
---------- ---------- */