main {
  padding-top: 130px;
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 100px;
  }
}

.p-journal {
  position: relative;
  z-index: 2;
}

.main-contents {
  position: relative;
  /* overflow: clip; */
}

.journal-list {
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .journal-list {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: calc(-100vh + 100px);
  }
}

.journal-list__container {
  width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .journal-list__container {
    width: 100%;
    padding: 0 50px;
    gap: 20px;
  }
}

.journal-list__card {
  display: flex;
  width: 100%;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .journal-list__card {
    flex-direction: column;
  }
}

.journal-list__card:hover .journal-list__content {
  background-color: #c22b1f;
  color: #ffffff;
}

.journal-list__card:hover .journal-list__label {
  border-color: #ffffff;
  color: #ffffff;
}

.journal-list__card:hover .journal-list__title {
  color: #ffffff;
}

.journal-list__card:hover .journal-list__date {
  color: #ffffff;
}

.journal-list__image {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .journal-list__image {
    width: 100%;
    height: 314px;
  }
}

.journal-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-list__content {
  flex: 1;
  background-color: #ffffff;
  color: #c22b1f;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .journal-list__content {
    padding: 16px 20px;
    gap: 10px;
  }
}

.journal-list__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 11.68px;
  line-height: 18px;
  border: 1.5px solid #c22b1f;
  border-radius: 3px;
  display: inline-block;
  padding-inline: 10px;
  padding-bottom: 0px;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .journal-list__label {
    line-height: 17px;
    font-size: 11.1px;
  }
}

.journal-list__title {
  font-family: vdl-v7mincho, sans-serif;
  transform: scaleY(0.9);
  font-weight: 700;
  font-size: 18px;
  line-height: 25.58px;
  letter-spacing: 0.2em;
  color: #c22b1f;
  margin: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .journal-list__title {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.15em;
  }
}

.journal-list__date {
  font-family: acumin-pro, sans-serif;
  font-size: 13px;
  color: #c22b1f;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .journal-list__date {
    font-size: 11px;
  }
}

.c-breadcrumb {
  padding: 15px 179px;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb {
    padding: 15px 20px;
  }
}

.c-breadcrumb__list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  gap: 8px;
}

.c-breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-breadcrumb__link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #666666;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.c-breadcrumb__link:hover {
  opacity: 0.7;
}

.c-breadcrumb__current {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #c22b1f;
  font-weight: 400;
  text-decoration: underline;
}

.c-breadcrumb__separator {
  font-family: acumin-pro, sans-serif;
  font-size: 12px;
  color: #c22b1f;
  margin: 0 4px;
}
