/* ---------------------------------------------------------
    page_ttl
--------------------------------------------------------- */
.page_ttl {
  margin-top: 100px;
  font-size: 32px;
  color: #f48f9f;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.page_ttl .en {
  font-family: "Belleza", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
}

.read {
  margin-top: 70px;
  font-size: 15px;
  text-align: center;
  line-height: 2;
}

@media (max-width: 767px) {
  .page_ttl {
    margin-top: 70px;
    font-size: 28px;
    gap: 10px;
  }
  .read {
    margin-top: 50px;
    font-size: 15px;
    text-align: justify;
    padding: 0 20px;
  }
}

/* ---------------------------------------------------------
    sect_post
--------------------------------------------------------- */
.sect_post {
  margin-top: 50px;
}

.sect_post .card {
  max-width: 700px;
  margin: 80px auto 0;
}

.sect_post .card:first-of-type {
  margin-top: 0;
}

.sect_post .card .heading {
  color: #f48f9f;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  line-height: 1;
  margin-bottom: 20px;
}

.sect_post .card .heading h2 {
  font-weight: 400;
  display: flex;
  align-items: baseline;
}

.sect_post .card .heading h2 .epi {
  font-family: "Belleza", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  letter-spacing: .16rem;
  position: relative;
  margin-right: 4px;
}

.sect_post .card .heading h2 .epi::after {
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  background-color: #f48f9f;
  margin-top: 3px;
}

.sect_post .card .heading h2 .num {
  font-size: 70px;
  font-weight: 300;
  transform: translateY(6px);
}

.sect_post .card .heading .date {
  font-family: "Belleza", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  transform: translateY(3px);
}

.sect_post .card .summary {
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #FFFAF4 50%, #FFFAF4 100%), linear-gradient(180deg, #ccc 1px, transparent 1px);
  background-size: 4px 100%, 100% 3rem;
  line-height: 3rem;
  padding-bottom: 1px;
  letter-spacing: 0;
  text-align: justify;
  font-size: 15px;
}

.sect_post .card .tags {
  display: flex;
  margin-top: 10px;
}

.sect_post .card .tags .link {
  font-size: 14px;
  color: #f48f9f;
  margin-right: 24px;
}

.sect_post .card .tags .link:hover {
  text-decoration: none;
}

.pagenation {
  margin-top: 40px;
}

.pagenation .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagenation .page-numbers li {
  margin: 4px;
}

.pagenation .page-numbers li .page-numbers {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 15px;
  color: #f48f9f;
  text-decoration: none;
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .2s;
}

.pagenation .page-numbers li .page-numbers:hover {
  background: #f48f9f;
  color: #fff;
}

.pagenation .page-numbers li .page-numbers.current {
  background: #f48f9f;
  color: #fff;
}

.pagenation .page-numbers li .page-numbers.next {
  display: none;
}

@media (max-width: 767px) {
  .pagenation .page-numbers li {
    margin: 4px;
  }
  .pagenation .page-numbers li .page-numbers {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}
