@charset "UTF-8";
body {
  background-color: #ff008e;
}

@media screen and (min-width: 768px) {
  .copy {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1340px) {
  .copy {
    /* 幅1340px以下の場合の非表示 */
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-height: 660px) {
  .copy {
    /* 高さ660px以下の場合の非表示 */
    display: none;
  }
}

.scroll {
  position: fixed;
  right: 30px;
  font-family: "Noto Serif JP", serif;
  color: #ffffff;
  font-size: 13px;
  flex-direction: column;
  align-items: center;
  display: none;
  z-index: 99;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .scroll {
    display: flex;
    bottom: min(124px, 22%);
  }
}
.scroll.is-up {
  flex-direction: column-reverse;
  cursor: pointer;
}
.scroll.is-up svg {
  transform: rotate(-90deg);
  position: relative;
  top: 0;
  transition: top 0.3s ease;
}
.scroll.is-up:hover svg {
  top: -6px;
  transition: top 0.3s ease;
}
.scroll svg {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
.scroll.fade {
  opacity: 0;
}

.page-journal {
  padding-top: 52px;
  position: relative;
  margin-bottom: 264px;
}
@media screen and (max-width: 767px) {
  .page-journal {
    margin-bottom: 136px;
  }
}
.page-journal__copyright {
  display: none;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  z-index: 10;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 1230px) {
  .page-journal__copyright {
    display: block;
  }
}
.page-journal__copyright-text {
  font-size: 1.1rem;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: 0;
  color: #0d0d0d;
}
.page-journal__breadcrumb {
  width: 100%;
  max-width: 1258px;
  margin: 18px auto 21px;
  padding-inline: 15px;
}
.page-journal .breadcrumb__item__name.is_active {
  color: #ffffff;
}
.page-journal__content {
  max-width: 940px;
  width: 100%;
  padding-left: 30px;
  padding-right: 10px;
  margin-inline: auto;
  margin-top: 78px;
}
@media screen and (max-width: 767px) {
  .page-journal__content {
    margin-top: 66px;
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media screen and (max-width: 425px) {
  .page-journal__content {
    max-width: 335px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.page-journal__content--noPosts {
  width: 100%;
  max-width: 747px;
  padding-inline: 10px;
  padding-bottom: 160px;
  margin-inline: auto;
  margin-top: 83px;
}
@media screen and (max-width: 767px) {
  .page-journal__content--noPosts {
    margin-top: 52px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 95px;
  }
}
.page-journal__card-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 54px;
}
@media screen and (max-width: 767px) {
  .page-journal__card-list {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}
.page-journal__card-link {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 20px;
  width: 100%;
  max-width: 100%;
  position: relative;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .page-journal__card-link {
    row-gap: 0;
  }
}
.page-journal__card-link:hover .page-journal__card-image {
  transform: scale(1.1);
}
.page-journal__card-label {
  display: block;
  position: absolute;
  top: -10px;
  left: -11px;
  width: 107px;
  height: 30px;
  padding: 3px 0 4px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .page-journal__card-label {
    width: 102px;
    height: 25px;
    left: -6px;
  }
}
.page-journal__card-label-text {
  display: block;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  letter-spacing: 0.08rem;
  color: #ffffff;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .page-journal__card-label-text {
    font-size: 1.4rem;
  }
}
.page-journal__card-label::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #0d0d0d;
  position: absolute;
  top: 0;
  left: 0;
  transform: skewX(25deg);
}
.page-journal__card-thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  height: auto;
  aspect-ratio: 400/240;
  margin-inline: 10px;
  box-shadow: 3px 3px 0 0 #000;
  border: 1px solid #000;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page-journal__card-thumbnail {
    margin-inline: 0;
    box-shadow: 6px 6px 0 0 #000;
  }
}
.page-journal__card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.page-journal__card-title-wrapper {
  display: block;
  width: 100%;
  height: 100%;
}
.page-journal__card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  padding-inline: 20px;
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.08rem;
  color: #000;
}
@media screen and (max-width: 767px) {
  .page-journal__card-title {
    margin-top: 13px;
    font-size: 1.6rem;
    padding-inline: 0;
  }
}
.page-journal__card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 20px;
}
@media screen and (max-width: 767px) {
  .page-journal__card-footer {
    margin-top: 19px;
    padding-inline: 0;
  }
}
.page-journal__card-time {
  font-size: 1.6rem;
  font-family: "Cormorant Infant", serif;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.08rem;
  color: #0d0d0d;
}
@media screen and (max-width: 767px) {
  .page-journal__card-time {
    font-weight: 400;
  }
}
.page-journal__card-category-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
}
.page-journal__card-category {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
  width: 180px;
  padding: 5px 18px;
  border-radius: 100px;
  border: 1px solid #0d0d0d;
  background-color: #ffffff;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .page-journal__card-category {
    width: 120px;
    padding: 4px 18px;
  }
}
.page-journal__card-category-image {
  width: auto;
  height: 20px;
}
@media screen and (max-width: 767px) {
  .page-journal__card-category-image {
    height: 12px;
  }
}
.page-journal__card-category-text {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  letter-spacing: 0.05rem;
  color: #0d0d0d;
}
@media screen and (max-width: 767px) {
  .page-journal__card-category-text {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.1rem;
    line-height: 1.2;
  }
}
.page-journal__note {
  font-size: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1rem;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .page-journal__note {
    font-size: 1.6rem;
  }
}
.page-journal__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 940px;
  margin-top: 85px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .page-journal__pagination {
    margin-top: 40px;
    padding-inline: 35px;
  }
}