@charset "UTF-8";
/* ブログ　詳細記事
--------------------------- */
.post-single {
  width: min(768px, 100%);
  margin: auto;
  padding: 130px 0 190px;
}
@media screen and (max-width: 767px) {
  .post-single {
    padding: 80px 0 100px;
  }
}
.post-single__head {
  margin-bottom: 70px;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .post-single__head {
    margin-bottom: 50px;
  }
}
.post-single__title {
  margin-bottom: 25px;
  font-size: 26px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .post-single__title {
    font-size: 20px;
  }
}
.post-single__info {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .post-single__info {
    margin-bottom: 50px;
  }
}
.post-single__time {
  line-height: 1;
}
.post-single .post-categories {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.post-single .post-categories li a {
  display: block;
  border: solid 1px #000;
  padding: 2px 10px;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
}
.post-single__btn a {
  display: block;
  position: relative;
  left: 0;
  width: fit-content;
  margin: auto;
  padding: 10px 22px;
  text-decoration: none;
  color: #000;
  transition: 0.2s;
  line-height: 1;
}
.post-single__btn a::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  left: 0px;
  transform: rotate(-135deg);
  width: 12px;
  height: 12px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
.post-single__btn a:hover {
  opacity: 1;
  left: -8px;
}

.post-single-content {
  margin-bottom: 100px;
}
.post-single-content p {
  margin-bottom: 2em;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .post-single-content p {
    font-size: 15px;
  }
}
.post-single-content h1 {
  margin: 2em 0 1em;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.53;
}
@media screen and (max-width: 767px) {
  .post-single-content h1 {
    font-size: 20px;
  }
}
.post-single-content h2 {
  margin: 2em 0 1em;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.53;
}
@media screen and (max-width: 767px) {
  .post-single-content h2 {
    font-size: 18px;
  }
}
.post-single-content h3 {
  margin: 2em 0 1em;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.53;
}
@media screen and (max-width: 767px) {
  .post-single-content h3 {
    font-size: 16px;
  }
}
.post-single-content h4 {
  margin: 2em 0 1em;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.53;
}
@media screen and (max-width: 767px) {
  .post-single-content h4 {
    font-size: 15px;
  }
}
.post-single-content h5 {
  margin: 2em 0 1em;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.53;
}
@media screen and (max-width: 767px) {
  .post-single-content h5 {
    font-size: 15px;
  }
}
.post-single-content h6 {
  margin: 2em 0 1em;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.53;
}
@media screen and (max-width: 767px) {
  .post-single-content h6 {
    font-size: 15px;
  }
}

/* ブログ　一覧記事
--------------------------- */
.p-news__inner {
  width: min(964px, 100%);
  margin: auto;
  padding: 130px 0 190px;
}
@media screen and (max-width: 767px) {
  .p-news__inner {
    padding: 80px 0 100px;
  }
}

.category-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  list-style-type: none;
  margin-bottom: 50px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .category-list {
    flex-wrap: wrap;
    gap: 10px 15px;
    margin-bottom: 35px;
  }
}
.category-list li a {
  display: block;
  width: 145px;
  padding: 5px;
  border: solid 1px #000;
  line-height: 1;
  text-align: center;
}
.category-list li a.is-current {
  background-color: #000;
  color: #fff;
}

.c-post-news-list {
  margin-bottom: 70px;
}
.c-post-news-list__item {
  display: flex;
  align-items: flex-start;
  padding: 30px 20px 30px 20px;
  border-bottom: 1px solid #000;
}
.c-post-news-list__item:first-of-type {
  border-top: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .c-post-news-list__item {
    flex-wrap: wrap;
    padding: 25px 10px 25px 10px;
  }
}
.c-post-news-list__info {
  display: flex;
  align-items: center;
  position: relative;
  top: 3px;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .c-post-news-list__info {
    width: 100%;
  }
}
.c-post-news-list__time {
  width: fit-content;
  margin-right: 70px;
  line-height: 1;
}
@media screen and (max-width: 1080px) {
  .c-post-news-list__time {
    margin-right: 35px;
  }
}
.c-post-news-list .post-categories {
  list-style-type: none;
  width: 155px;
  margin: 0;
  padding: 0;
}
.c-post-news-list .post-categories li a {
  display: block;
  width: fit-content;
  min-width: 110px;
  border: solid 1px #000;
  padding: 2px 10px;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
}
.c-post-news-list__title {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .c-post-news-list__title {
    flex: auto;
    margin-top: 20px;
  }
}
.c-post-news-list__title a {
  display: block;
  position: relative;
  padding-right: 40px;
  line-height: 1.6;
  right: 0;
  transition: 0.2s;
}
.c-post-news-list__title a::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 0px;
  transform: rotate(45deg);
  width: 12px;
  height: 12px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
.c-post-news-list__title a:hover {
  opacity: 1;
  right: -8px;
}

.blog-pagenation {
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .blog-pagenation {
    gap: 5px;
  }
}
.blog-pagenation .current {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  line-height: 1;
  text-align: center;
  background-color: #000;
  color: #fff;
}
.blog-pagenation a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  line-height: 1;
  text-align: center;
  background-color: transparent;
  color: #000;
}
