@charset "UTF-8";
/* レイアウト（一覧のflexを無効化） */
.single-post .news__inner {
  max-width: 113rem;
  padding-top: 9.5rem;
  padding-bottom: 8rem;
  display: block;
}

@media screen and (max-width: 767px) {
  .single-post .news__inner {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
}
/* ヘッダー */
.single-post .news-single__header {
  margin: 2.4rem 0 1.6rem;
}

.single-post .news__item__date {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  color: #666;
  font-family: "Roboto", sans-serif;
}

.single-post .news-single__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .single-post .news-single__title {
    font-size: 2rem;
  }
}
/* 本文 */
.single-post .news-single__content {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  line-height: 1.9;
}

.single-post .news-single__content p {
  margin: 0 0 1.6rem;
}

.single-post .news-single__content h2 {
  font-size: 2.2rem;
  margin: 2.4rem 0 1.2rem;
  font-weight: 700;
}

.single-post .news-single__content h3 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  font-weight: 700;
}

.single-post .news-single__content ul,
.single-post .news-single__content ol {
  margin: 0 0 1.6rem 2rem;
}

.single-post .news-single__content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.single-post .news-single__content figure {
  margin: 0 0 1.6rem;
}

.single-post .news-single__content a {
  text-decoration: underline;
}

/* 引用や表（任意） */
.single-post .news-single__content blockquote {
  border-left: 0.4rem solid #e5e5e5;
  margin: 1.6rem 0;
  padding: 1rem 1.6rem;
  color: #555;
}

.single-post .news-single__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6rem 0;
  font-size: 1.5rem;
}

.single-post .news-single__content th,
.single-post .news-single__content td {
  border: 1px solid #e6e6e6;
  padding: 1.2rem;
  text-align: left;
}

/* 前後ナビ */
.single-post .news-single__pager {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.2rem;
  margin-top: 3.2rem;
}

.single-post .news-single__pager a {
  display: inline-block;
  padding: 1rem 1.6rem;
  border: 1px solid #8c8260;
  color: #8c8260;
  border-radius: 0.5rem;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.single-post .news-single__pager a:hover {
  opacity: 0.7;
}

/* 一覧へ戻る */
.single-post .news-single__back {
  text-align: center;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .single-post .news-single__back {
    margin-top: 3rem;
  }
}