/*======================
        共通
======================*/
body.archive {
  background: #f8f8f8;
}
.archive .width-adjust-breadcrumb,
.single .width-adjust-breadcrumb {
  max-width: 1360px;
  padding: 0 16px;
}

.archive .width-adjust-breadcrumb {
  background: #f8f8f8;
}

.archive.tax-column_category .breadcrumb-caption {
  color: var(--main-color);
}

.archive.tax-column_category .breadcrumb-item:last-child .breadcrumb-caption {
  color: #3e3e3e;
}
/*======================
  Column Archive
======================*/
.post-type-archive-column {
  background: #f8f8f8;
}

.column-archive-page {
  background: #f8f8f8;
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
/*=========　  ナビ　=========*/
.column-category-filter {
  background: #fff;
  border-radius: 5px;
  padding: 30px 2.5%;
  margin-bottom: 30px;
}

.column-category-filter__label {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  font-weight: 700;
  margin-bottom: 20px;
}

.column-category-filter__list {
  display: flex;
  gap: 12px;
}

.column-category-filter__link {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: var(--text_color);
  text-decoration: none;
  padding: 7px 12px;
  background: #f8f8f8;
  border-radius: 5px;
}

.column-category-filter__link.is-active {
  background: var(--main-color);
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 6px;
}

.archive .page-numbers {
  border: none;
  color: #7b7b7b;
  height: 36px;
  width: 36px;
  font-size: 16px;
  line-height: 35px;
  letter-spacing: 0;
  font-weight: 500;
  margin: 0;
}

.archive .pagination .current {
  color: #fff;
  border-radius: 999px;
  background-color: var(--main-color);
}
/*=========　  記事枠　=========*/
.archive-card__link {
  padding: 20px 4.6%;
  background: #fff;
  border-radius: 5px;
  text-decoration: none;
}

.archive-card__link:hover {
  color: unset;
  opacity: 0.7;
}

.archive-card__media {
  margin-bottom: 20px;
}

.archive-card__media img {
  border-radius: 5px;
}

.archive-card__date {
  color: #6f6f6f;
  font-family: "Poppins";
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  font-weight: 500;
  margin-bottom: 10px;
}

.archive-card__category {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: var(--text_color);
  text-decoration: none;
  padding: 5px 10px;
  background: #f8f8f8;
  border-radius: 5px;
  width: fit-content;
  margin-bottom: 10px;
}

.archive-card__title {
  color: var(--text_color);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  font-weight: 700;
}
/*======================
  Column Single
======================*/
body.single {
  background: #f8f8f8;
  font-family: "Noto Sans JP";
}
.column-single {
  padding: 50px 5%;
}

.column-single {
  background: #fff;
  border-radius: 5px;
}

.single .width-adjust-main {
  max-width: 1000px;
  padding: 60px 0 100px;
}

@media screen and (min-width: 768px) and (max-width: 1015px) {
  .single .width-adjust-main {
    width: 75 0px;
  }
}

.column-single__categories a {
  background: #f8f8f8;
  border-radius: 5px;
  color: var(--text_color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  padding: 5px 10px;
}

.column-single .title-main {
  color: #000;
  margin: 10px 0;
  text-align: left;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.column-single__date {
  color: #6f6f6f;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.column-single__inner {
  margin-bottom: 30px;
}

/*--　サムネ　--*/
.column-single__thumbnail {
  margin-bottom: 30px;
}

.column-single__thumbnail img {
  border-radius: 5px;
}

.column-single__body .wp-block-image img {
  border-radius: 5px;
}

/*--　目次　--*/
#toc {
  background: #f8f8f8;
  text-align: left;
  padding: 30px 3.3%;
  width: 100%;
}

#toc .toc-title {
  color: #000;
  text-align: left;
  padding: 0;
}

#toc .toc-checkbox:checked ~ .toc-content {
  padding-top: 0;
  margin-top: 10px;
}

#toc ol {
  list-style: none;
  counter-reset: toc-item;
  padding-left: 0;
}

#toc ol li {
  list-style: none;
  counter-increment: toc-item;
  text-decoration: none;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #000;
}

#toc ol li::before {
  content: counters(toc-item, "-") ". ";
}

#toc ol li a {
  color: #000;
  border-bottom: 1px solid #000;
}

#toc ol ol {
  padding-left: 1.5em;
}
/*--　見出し　--*/

h2.wp-block-heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin: 30px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--main-color);
}

h3.wp-block-heading {
  color: var(--text_color);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border-left: 2px solid var(--main-color);
  padding: 5px 0 5px 15px;
  margin-bottom: 30px;
}

/*--　内文　--*/
.single .entry-content {
  margin: 0;
}

.column-single__body .width-adjust {
  padding: 0;
}

.entry-content p {
  color: var(--text_color, #232323);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
}

.entry-content p img {
  width: 100% !important;
}

.entry-content p:last-of-type {
  margin-bottom: 0;
}
