@charset "UTF-8";
/* 一覧ページ
------------------------------*/
.post-archive__container {
  min-height: 100vh;
  min-height: 100svh;
  padding: 80px 0 120px;
  background: #fff;
}
@media (max-width: 767px) {
  .post-archive__container {
    padding-top: 50px;
  }
}

.post-archive__content {
  margin-top: 82px;
}
.post-archive__content article {
  padding: 30px 0;
  padding-right: 20px;
  border-bottom: 1px solid #ccc;
  position: relative;
}
.post-archive__content article:first-child {
  border-top: 1px solid #ccc;
}
.post-archive__content article a {
  color: #2E3B4F;
  display: block;
  margin-left: 1%;
}
.post-archive__content article h3 {
  width: calc(100%);
  font-size: 1.8rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .post-archive__content article:after {
    content: "";
    position: absolute;
    background: url(../images/icon_button-aroow2.png) no-repeat center center/100%;
    aspect-ratio: 16/24;
    width: 10px;
    right: 3px;
    top: 50%;
    transform: translate(0%, -50%);
  }
}
@media (max-width: 767px) {
  .post-archive__content {
    margin-top: 32px;
  }
  .post-archive__content article {
    padding: 14px 0;
  }
  .post-archive__content article a {
    display: block;
  }
  .post-archive__content article h3 {
    width: 100%;
  }
}

.post-archive__item-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 80%;
  margin-right: 16px;
  margin-bottom: 2%;
}
@media (max-width: 767px) {
  .post-archive__item-meta {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 13px;  
  }
}

.post-archive__item-date {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  margin-right: 1em;
  letter-spacing: 0.1em;
}

.post-archive__item-category {
  font-family: "Hiragino Sans", sans-serif;
  margin-right: 10px;
}
.post-archive__item-category em {
  word-break: break-all;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 0.3em 0.4em;
  background: #A8DADC;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .post-archive__item-category {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}

/* ページネーション
------------------------------*/
.pagination {
  text-align: center;
  margin-top: 45px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .pagination {
    margin-top: 25px;
  }
}

.page-numbers {
  display: inline-block;
  font-size: 1.6rem;
  text-decoration: none;
  color: #2E3B4F;
}
.page-numbers:nth-child(n+2) {
  margin-left: 25px;
}
.page-numbers.current {
  color: #fff;
  position: relative;
}
.page-numbers.current::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #3B5998;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  z-index: -1;
}

/* 記事ページ
------------------------------*/
.post {
  padding: 80px 0 120px;
  background: #fff;
}

.post__head {
  margin-bottom: 40px;
}

.post__title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.post__meta {
  margin: 40px 0;
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.post__date {
  margin-right: 10px;
}

.post__category {
  display: block;
  margin-left: 10px;
  padding: 0.3em 0.4em;
  background: #A8DADC;
  border-radius: 10px;
}

.post__tag {
  color: #505050;
  display: block;
  margin-left: 10px;
}

.post__content {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}
.post__content h1, .post__content h2, .post__content h3, .post__content h4, .post__content h5, .post__content h6 {
  font-weight: 700;
  margin: 20px 0;
}
.post__content h1 {
  font-size: 3.6rem;
}
.post__content h2 {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
  margin: 3.125rem 0 1.5rem;
}
.post__content h2::before {
  content: "";
  position: absolute;
  background-color: #3B5998;
  width: 6px;
  height: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.post__content h3 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  padding-bottom: 13px;
  border-bottom: 1px solid #222;
  margin: 60px 0 24px;
}
.post__content h4 {
  font-size: 1.8rem;
}
.post__content h5 {
  font-size: 1.6rem;
}
.post__content h6 {
  font-size: 1.4rem;
}
.post__content ol, .post__content ul {
  list-style: unset;
  margin-top: 20px;
  margin: 32px 0 32px 20px;
}
.post__content li {
  list-style-type: unset;
}
.post__content p {
  line-height: 1.9;
  margin-bottom: 40px;
}
.post__content table {
  margin-top: 20px;
}
.post__content strong {
  font-weight: 700;
}
.post__content a {
  color: #74c1f8;
  text-decoration: underline;
}

.post__button {
  margin-top: 30px;
  text-align: center;
}
.post__button a {
  text-align: center;
}
/*# sourceMappingURL=post.css.map */