@charset "UTF-8";
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/*********************************************************************
  フォントサイズ
    $font-size: フォントサイズ(必須)
    $line-height: ラインハイト or 空
    $letter-spacing: レタースペーシング or 空
**********************************************************************/
/* ************************************************
 *	お知らせ
 * ************************************************ */
/* 一覧
----------------------------------------*/
.post-list {
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}
.post-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.post-list a {
  display: block;
  padding: 16px 8px;
}
@media print, screen and (min-width: 960px) {
  .post-list a {
    padding: 40px 24px;
    transition: opacity 0.4s;
  }
  .post-list a:hover {
    opacity: 0.6;
  }
}

.post-list__heading {
  display: flex;
  align-items: center;
}
.post-list__heading time {
  color: rgba(255, 255, 255, 0.6);
  margin-right: 16px;
}

.post-category {
  display: flex;
  gap: 0 8px;
  line-height: 1;
}
.post-category span, .post-category a {
  display: inline-block;
  color: #fff;
  font-size: 1.2rem;
  border: 1px solid #fff;
  padding: 4px 8px;
}
@media print, screen and (min-width: 960px) {
  .post-category span, .post-category a {
    font-size: 1.4rem;
    padding: 6px 12px;
  }
}

.post-list__title {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 8px;
}
@media print, screen and (min-width: 960px) {
  .post-list__title {
    font-size: 2rem;
  }
}

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

.pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 50%;
  margin: 0 5px;
}
@media print, screen and (min-width: 768px) {
  .pagination a {
    width: 32px;
    height: 32px;
  }
}
@media print, screen and (min-width: 960px) {
  .pagination a:hover {
    opacity: 0.6;
  }
}

.pagination a.prev,
.pagination a.next {
  padding: 7px 15px;
}
@media print, screen and (min-width: 768px) {
  .pagination a.prev,
  .pagination a.next {
    padding: 10px 15px;
  }
}

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

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

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

.pagination span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 1.4rem;
  line-height: 1;
  border-radius: 50%;
}
@media print, screen and (min-width: 768px) {
  .pagination span {
    width: 32px;
    height: 32px;
  }
}

.pagination span.current {
  background-color: #fff;
  color: #9A5454;
  font-weight: 500;
  margin: 0 5px;
}

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

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

/* シングルページ
----------------------------------------*/
h1.info_single_ttl {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 24px;
}
@media print, screen and (min-width: 768px) {
  h1.info_single_ttl {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 32px;
  }
}
@media print, screen and (min-width: 960px) {
  h1.info_single_ttl {
    font-size: 3.2rem;
    margin-bottom: 48px;
  }
}

.time_block {
  align-items: center;
  font-size: 1.4rem;
}
.time_block time {
  color: rgba(255, 255, 255, 0.6);
  margin-right: 8px;
}
@media print, screen and (min-width: 960px) {
  .time_block time {
    margin-right: 16px;
  }
}

.single_txt_box {
  padding-top: 16px;
}
@media print, screen and (min-width: 960px) {
  .single_txt_box {
    padding-top: 32px;
  }
}
.single_txt_box img {
  margin: 24px 0;
}
.single_txt_box a {
  text-decoration: underline;
}

.single_pagenav {
  font-size: 1.2rem;
  margin-top: 56px;
}
@media print, screen and (min-width: 960px) {
  .single_pagenav {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    margin-top: 80px;
  }
}
.single_pagenav p.new {
  margin-bottom: 1em;
}
@media print, screen and (min-width: 960px) {
  .single_pagenav p.new {
    margin-bottom: 0;
  }
}
.single_pagenav a {
  text-decoration: underline;
}
@media print, screen and (min-width: 960px) {
  .single_pagenav a:hover {
    opacity: 0.6;
  }
}

.post-back {
  text-align: center;
  margin-top: 36px;
}
@media print, screen and (min-width: 960px) {
  .post-back {
    margin-top: 48px;
  }
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 56px 0;
  margin-top: 48px;
}
@media print, screen and (min-width: 768px) {
  .sidebar {
    margin-top: 64px;
  }
}
@media print, screen and (min-width: 960px) {
  .sidebar {
    max-width: 464px;
  }
}
.sidebar .side-title {
  font-size: 1.6rem;
  line-height: 1;
  padding-bottom: 32px;
}
@media print, screen and (min-width: 960px) {
  .sidebar .side-title {
    font-size: 1.8rem;
  }
}
.sidebar .side-menu {
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}
.sidebar li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.sidebar time {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.sidebar a {
  display: block;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media print, screen and (min-width: 960px) {
  .sidebar a {
    transition: opacity 0.4s;
  }
  .sidebar a:hover {
    opacity: 0.6;
  }
}/*# sourceMappingURL=posts.css.map */