@charset "UTF-8";
/*
 Theme Name:   Astra Child
 Template:     astra
*/
/*パンくずリスト*/
.custom-breadcrumb {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4em;
  font-size: 14px;
}

@media screen and (max-width: 500px) {
  .custom-breadcrumb {
    font-size: 12px;
  }
}
.custom-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s;
}

.custom-breadcrumb a:hover {
  opacity: 0.7;
}

.custom-breadcrumb .sep {
  opacity: 0.5;
}

.custom-breadcrumb .current {
  color: var(--main-color4);
  font-weight: 600;
}

/*投稿一覧*/
.news-list {
  text-decoration: none;
}

a.news-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 1em 28px 0.2em;
  border-bottom: 1px solid #ddd;
  text-decoration: none !important;
  color: #212121;
  transition: 0.25s;
}
a.news-item::after{
  position: absolute;
  content: "";
  bottom:-1px;
  left: 0;
  width: 0;
  height: 1px;
  transition: all 0.3s;
  background-color: var(--main-color4);
}

a.news-item:hover {
  padding-left: 1em;
  padding-right: 0.2em;
}

a.news-item:hover::after {
  width: 100%;
}

.news-category {
  flex: 0 0 160px;
  text-align: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #f5f1ea;
  font-size: 14px;
  max-width: 10em;
  min-width: 8em;
}

.news-date {
  flex: 0 0 90px;
  font-size: 16px;
}

.news-title {
  flex: 1;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
}

.news-pagination {
  margin-top: 40px;
  text-align: center;
}

.news-pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 4px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #212121;
}

.news-pagination .current {
  background: #333;
  color: #fff;
  border-color: #333;
}

@media (max-width: 767px) {
  a.news-item {
    display: block;
    padding: 20px 0;
  }

  .news-category {
    display: block;
    font-size: 14px;
    margin-bottom: 0.2em;
  }

  .news-date {
    display: block;
    font-size: 14px;
    margin-bottom: 0.25em;
  }

  .news-title {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */