@charset "UTF-8";
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/*********************************************************************
* お知らせ／ライヴ一覧カード（posts.scss の .post__list、front.scss の
* .top__post-list で共通利用）
**********************************************************************/
/*********************************************************************
  フォントサイズ
    $font-size: フォントサイズ(必須)
    $line-height: ラインハイト or 空
    $letter-spacing: レタースペーシング or 空
**********************************************************************/
/* ************************************************
 *  お知らせ
 * ************************************************ */
/* 一覧
----------------------------------------*/
.post__list {
  display: grid;
  gap: 1.5em 0;
  line-height: 1.6;
}
@media print, screen and (min-width: 960px) {
  .post__list {
    gap: 0;
  }
}
.post__list a {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0 1em;
}
@media print, screen and (min-width: 768px) {
  .post__list a {
    gap: 0 2em;
  }
}
@media print, screen and (min-width: 960px) {
  .post__list a {
    gap: 0 3em;
    padding: 16px 12px;
    transition: all 0.3s ease;
  }
  .post__list a:hover {
    background: rgba(0, 0, 0, 0.04);
  }
}
.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__list.live {
  gap: 40px 0;
  padding-bottom: 4px;
}
@media print, screen and (min-width: 768px) {
  .post__list.live {
    gap: 48px 0;
  }
}
@media print, screen and (min-width: 960px) {
  .post__list.live {
    gap: 64px 0;
  }
}
.post__list.live li {
  display: grid;
  grid-template-columns: min(27.3%, 240px) 1fr;
  gap: 0 20px;
}
@media print, screen and (min-width: 768px) {
  .post__list.live li {
    align-items: center;
    gap: 0 40px;
  }
}
@media print, screen and (min-width: 960px) {
  .post__list.live li {
    gap: 0 48px;
  }
}
.post__list.live li > a {
  display: block;
  padding: 0;
}
@media print, screen and (min-width: 960px) {
  .post__list.live li > a {
    transition: all 0.3s ease;
  }
  .post__list.live li > a:hover {
    opacity: 0.6;
  }
}
.post__list.live .no-image {
  position: relative;
}
.post__list.live .no-image::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.post-category {
  display: flex;
  gap: 0 8px;
  line-height: 1;
}
.post-category span,
.post-category a {
  display: block;
  color: #333;
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
  border: 1px solid #333;
  padding: 4px 6px;
}
@media print, screen and (min-width: 960px) {
  .post-category span,
  .post-category a {
    font-size: 1.4rem;
    padding: 4px 8px;
    transition: all 0.3s ease;
  }
  .post-category span:hover,
  .post-category a:hover {
    background-color: #333;
    color: #ffffff;
  }
}
.post-category + .post__list-ttl {
  font-size: 1.6rem;
  font-weight: 500;
  padding-top: 8px;
}
@media print, screen and (min-width: 960px) {
  .post-category + .post__list-ttl {
    font-size: 1.8rem;
    padding-top: 12px;
  }
}

.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;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border: 1px solid #000000;
  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: #000000;
  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);
  }
}

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

.post__single_ttl {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6;
  border-bottom: 1px solid rgba(0, 0, 0, 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;
  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 {
  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 {
  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;
  }
}
@media print, screen and (min-width: 960px) {
  .post-back a {
    position: relative;
    transition: all 0.3s ease;
  }
  .post-back a::after {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background: #000000;
    bottom: -8px;
    left: 0;
    transition: all 0.3s ease;
  }
  .post-back a:hover::after {
    width: 100%;
  }
}/*# sourceMappingURL=posts.css.map */