@charset "UTF-8";
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/*********************************************************************
  フォントサイズ
    $font-size: フォントサイズ(必須)
    $line-height: ラインハイト or 空
    $letter-spacing: レタースペーシング or 空
**********************************************************************/
/* ************************************************
 *  お知らせ
 * ************************************************ */
/* 一覧
----------------------------------------*/
.post__list-wrapper {
  padding-top: 32px;
}
@media print, screen and (min-width: 768px) {
  .post__list-wrapper {
    padding-top: 48px;
  }
}
@media print, screen and (min-width: 960px) {
  .post__list-wrapper {
    padding-top: 80px;
  }
}

.post__list {
  line-height: 1.6;
  border-bottom: 1px solid #BABABA;
}
.post__list li {
  border-top: 1px solid #BABABA;
}
.post__list a {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 0 1em;
  padding: 12px 4px;
}
@media print, screen and (min-width: 960px) {
  .post__list a {
    gap: 0 64px;
    padding: 24px 48px;
    transition: all 0.3s ease;
  }
  .post__list a:hover {
    background-color: #EEEEEC;
  }
}
.post__list time {
  color: #939c95;
  font-size: 1.2rem;
}
@media print, screen and (min-width: 960px) {
  .post__list time {
    font-size: 1.4rem;
  }
}
.post__list .post__list-ttl {
  font-size: 1.4rem;
  font-weight: 400;
}
@media print, screen and (min-width: 960px) {
  .post__list .post__list-ttl {
    font-size: 1.6rem;
  }
}

.post-category {
  display: flex;
  gap: 0 8px;
  line-height: 1;
}
.post-category span, .post-category a {
  display: block;
  width: 72px;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  border: 1px solid rgba(35, 24, 21, 0.3);
  padding: 4px 0;
}
@media print, screen and (min-width: 960px) {
  .post-category span, .post-category a {
    width: 80px;
    font-size: 1.2rem;
    padding: 6px 0;
  }
}

.post-list__title {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 8px;
}
@media print, screen and (min-width: 960px) {
  .post-list__title {
    width: calc(100% - 104px);
    font-size: 1.6rem;
    margin-top: 0;
  }
}

.pagination-area {
  font-size: 1.4rem;
}
@media print, screen and (min-width: 768px) {
  .pagination-area {
    font-size: 1.6rem;
  }
}
.pagination-area .pagination {
  display: flex;
  justify-content: center;
  padding-top: 32px;
}
@media print, screen and (min-width: 768px) {
  .pagination-area .pagination {
    padding-top: 48px;
  }
}
@media print, screen and (min-width: 960px) {
  .pagination-area .pagination {
    padding-top: 64px;
  }
}

.pagination a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #939c95;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border: 1px solid #939c95;
  margin: 0 4px;
}
@media print, screen and (min-width: 768px) {
  .pagination a {
    width: 32px;
    height: 32px;
  }
}
@media print, screen and (min-width: 960px) {
  .pagination a {
    transition: all 0.3s ease;
  }
  .pagination a:hover {
    opacity: 0.6;
  }
}

.pagination a.prev {
  margin-right: 12px;
}
@media print, screen and (min-width: 768px) {
  .pagination a.prev {
    margin-right: 16px;
  }
}

.pagination a.next {
  margin-left: 12px;
}
@media print, screen and (min-width: 768px) {
  .pagination a.next {
    margin-left: 16px;
  }
}

.nav-links {
  display: flex;
  justify-content: center;
}

.pagination span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  font-size: 1.4rem;
  line-height: 1;
}
@media print, screen and (min-width: 768px) {
  .pagination span {
    width: 32px;
    height: 32px;
  }
}

.pagination span.current {
  background-color: #939c95;
  color: #ffffff;
  font-weight: 500;
  margin: 0 4px;
}

h2.screen-reader-text {
  display: none;
}

/* カテゴリーページ
----------------------------------------*/
.post__list-categoryName {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
  .post__list-categoryName {
    font-size: 2.2rem;
    margin-bottom: 56px;
  }
}

/* シングルページ
----------------------------------------*/
.post__single-wrapper {
  padding-top: 24px;
}
@media print, screen and (min-width: 960px) {
  .post__single-wrapper {
    padding-top: 56px;
  }
}

@media print, screen and (min-width: 960px) {
  .post__single-inner {
    display: flex;
    justify-content: space-between;
  }
}

@media print, screen and (min-width: 960px) {
  .post__single-main {
    width: calc(100% - 280px);
  }
}

.post__sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px 0;
  margin-top: 56px;
}
@media print, screen and (min-width: 768px) {
  .post__sidebar {
    margin-top: 64px;
  }
}
@media print, screen and (min-width: 960px) {
  .post__sidebar {
    gap: 40px 0;
    width: 220px;
    margin-top: 0;
  }
}
.post__sidebar .post__sidebar-ttl {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
  border-bottom: 1px solid rgba(29, 32, 31, 0.6);
  padding-bottom: 16px;
}
@media print, screen and (min-width: 960px) {
  .post__sidebar .post__sidebar-ttl {
    font-size: 1.6rem;
  }
}
.post__sidebar li:not(:last-child) {
  border-bottom: 1px solid rgba(29, 32, 31, 0.15);
}
.post__sidebar time {
  display: block;
  color: #939c95;
  font-size: 1.2rem;
}
.post__sidebar a {
  display: block;
  font-size: 1.2rem;
  padding: 8px 0;
}
@media print, screen and (min-width: 960px) {
  .post__sidebar a {
    padding: 8px;
    transition: all 0.3s ease;
  }
  .post__sidebar a:hover {
    background-color: #EEEEEC;
  }
}

.post__single_ttl {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6;
  border-bottom: 1px solid rgba(29, 32, 31, 0.6);
  padding-bottom: 8px;
  margin-bottom: 8px;
}
@media print, screen and (min-width: 768px) {
  .post__single_ttl {
    font-size: 2rem;
    margin-bottom: 12px;
  }
}
@media print, screen and (min-width: 960px) {
  .post__single_ttl {
    font-size: 2.4rem;
    padding-bottom: 12px;
    margin-bottom: 16px;
  }
}

.post__single_time {
  align-items: center;
  color: #939c95;
  font-size: 1.4rem;
}
.post__single_time time {
  line-height: 1;
  margin-right: 8px;
}
@media print, screen and (min-width: 960px) {
  .post__single_time time {
    margin-right: 16px;
  }
}

.post__single-textBox {
  padding-top: 24px;
}
@media print, screen and (min-width: 960px) {
  .post__single-textBox {
    padding-top: 40px;
  }
}
.post__single-textBox img {
  margin: 1.5em 0;
}
.post__single-textBox a {
  text-decoration: underline;
}

.post__single-pagenav {
  color: #939c95;
  font-size: 1.2rem;
  margin-top: 56px;
}
@media print, screen and (min-width: 960px) {
  .post__single-pagenav {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    margin-top: 80px;
  }
}
.post__single-pagenav p.new {
  margin-bottom: 1em;
}
@media print, screen and (min-width: 960px) {
  .post__single-pagenav p.new {
    margin-bottom: 0;
  }
}
.post__single-pagenav a {
  color: #939c95;
  text-decoration: underline;
}
@media print, screen and (min-width: 960px) {
  .post__single-pagenav a {
    transition: all 0.3s ease;
  }
  .post__single-pagenav a:hover {
    opacity: 0.6;
  }
}

.post-back {
  text-align: center;
  margin-top: 40px;
}
@media print, screen and (min-width: 768px) {
  .post-back {
    margin-top: 56px;
  }
}
@media print, screen and (min-width: 960px) {
  .post-back {
    padding-bottom: 20px;
    margin-top: 80px;
  }
}/*# sourceMappingURL=posts.css.map */