.top-link {
  margin: 0 auto 1rem auto;
}

.diary {
  margin-bottom: 1rem;
}

.diary_pc {
  display: none;
  flex-direction: column;
  padding: 1rem;
  background-color: #fff;
  border: 2px solid #e3aca4;
  border-radius: 0.625rem;
}

.diary_pc ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.diary_pc ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.diary_pc ul li strong {
  width: 100%;
  white-space: nowrap;
}

.diary_sp select {
  max-width: 100%;
}

.blog_text p:last-child {
  margin-bottom: 0;
}

.blog_text figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pagenation {
  display: flex;
  justify-content: space-between;
  border-top: 1px dotted #e3aca4;
  padding: 1rem 0.5rem 0.5rem 0.5rem;
}

.pagenation .empty {
  font-size: 0;
}

.pagenation p {
  display: flex;
  margin-bottom: 0;
}

.pagenation .next::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: .25rem;
  background-image: url(../image/next.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.pagenation .next.empty::after {
  content: none;
}

.pagenation .prev::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: .25rem;
  background-image: url(../image/prev.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.pagenation .prev.empty::before {
  content: none;
}

@media (min-width: 768px) {
  .blog {
    display: flex;
    flex-wrap: wrap;
  }
  .diary {
    width: 35%;
    margin-right: 1rem;
  }
  .diary_sp {
    display: none;
  }
  .diary_pc {
    display: flex;
  }
  .blog_text {
    width: calc(65% - 1rem);
  }
}
