/* ↓ヘッダー調整 */
.page-header {
  display: none;
}

@media (max-width: 991px) {
  .breadcrumb {
    margin-top: 64px;
  }
}

@media (min-width: 1200px) {
  .breadcrumb {
    margin-top: 90px;
  }
}
/* ↑ヘッダー調整 */

/* ↓タイトルロゴ */
.info-outer {
  margin-bottom: 20px;
  position: relative;
}

.info-outer .info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.info-outer .title {
  display: flex;
  color: #fff;
  flex-direction: column;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 2px 1px 2px #000;
  animation: fadeTitle 1.5s ease-in-out forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

@keyframes fadeTitle {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.info-outer .title span {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 2px 0 20px;
}

.info-outer .image {
  position: relative;
}

.info-outer .image img {
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.info-outer .image-cover {
  opacity: 0.2;
  background-color: #000;
  border-radius: 10px;
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

@media(max-width:767px) {
  .info-outer .title {
    font-size: 1.25rem;
  }

  .info-outer .title span {
    font-size: 1rem;
  }

  .info-outer .image img {
    height: 250px;
  }
}

/* →リンク部分 */
.info-outer .link {
  display: flex;
  font-size: 0.85rem;
  gap: 9px;
  font-weight: 500;
  justify-content: center;
  width: 48%;
  margin: 0 auto;
  animation: fadeTitle 1.5s ease-in-out forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

.info-outer .link a {
  align-items: center;
  border-radius: 5px;
  background-color: #006db7;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 7px 10px 9px;
  transition: 0.2s;
  width: 50%;
}

.info-outer .link a:hover {
  color: #333;
  background-color: #fff;
}

.info-outer .link i {
  padding-top: 4px;
}

@media(max-width:767px) {
  .info-outer .link {
    flex-direction: column;
    width: 70%;
    margin: 0 auto;
  }

  .info-outer .link a {
    width: 100%;
  }
}
/* ↑タイトルロゴ */

/* ↓詳細情報 */
h2 {
  background: unset;
  border-left: 0;
  box-shadow: none;
  clear: both;
  color: #333;
  font-size: 1.25rem;
  margin-bottom: 10px;
  margin-top: 3rem !important;
  padding: 0;
}

.pod-info p {
  font-size: 0.95rem;
}
/* ↑詳細情報 */

/* ↓投稿一覧 */
.post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 20px;
}

.post-list .pc-dataset:first-child , .post-list .sp-dataset:nth-of-type(2) {
  border-top: 1px solid #d9d9d9;
  padding-top: 19px;
}

.post-list article.post {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 19px;
}

.post-list article.post a {
  color: #333;
  display: flex;
  gap: 20px;
  transition: 0.2s;
}

.post-list article.post a:hover {
  opacity: 0.5;
}

.post-list .post-image {
  position: relative;
  width: 15%;
}

.post-list .post-image img {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  display: block;
  object-fit: cover;
  width: 100%;
}

.post-list .post-image .post-image-cover {
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

.post-list .post-info {
  display: flex;
  flex-direction: column;
  width: 85%;
}

.post-list .p-title {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 1.05rem;
  font-weight: 700;
  -webkit-line-clamp: 2;
  line-height: 1.5;
  margin-bottom: 5px;
  overflow: hidden;
}

.post-list .p-excerpt {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  color: #939393;
  font-size: 0.95rem;
  -webkit-line-clamp: 2;
  line-height: 1.5;
  overflow: hidden;
}

.post-list .p-date {
  margin-top: 10px;
  color: #595959;
  text-align: left;
  display: flex;
  justify-content: space-between;
}

.post-list .p-date i {
  color: #166d00;
  font-size: 30px;
}

/* →スマホ用 */
.post-list .sp-dataset article.post a {
  flex-direction: column;
  gap: 10px;
}

.post-list .sp-dataset .sp-topitem {
  align-items: center;
  display: flex;
  gap: 15px;
}

.post-list .sp-dataset .post-info {
  width: 100%;
}

.post-list .sp-dataset .post-image {
  width: 25%;
}

.post-list .sp-dataset .p-title {
  width: 75%;
}
/* ↑投稿一覧 */

/* ↓ページネーション */
div#pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  margin-top: 40px;
  text-align: center;
}

div#pagination .page-numbers {
  border: 1px solid #333;
  border-radius: 50px;
  color: #333;
  font-weight: 600;
  padding: 7px 14px;
  transition: 0.2s;
}

div#pagination .page-numbers.current {
  background-color: #0042d3;
  border: 1px solid #fff;
  color: #fff;
}

div#pagination .page-numbers:hover {
  background-color: #0042d3;
  border: 1px solid #fff;
  color: #fff;
  opacity: 0.5;
}

div#pagination .page-numbers.dots {
  background: none;
  border: 1px solid #fff;
  padding: 7px;
  pointer-events: none;
}
/* ↑ページネーション */