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

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

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

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

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


.catalog-list__card:hover {
  background-color: #c22b1f;
}

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

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

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

.catalog-list__card:hover .catalog-list__year {
  color: #ffffff;
}

.catalog-list__card:hover .catalog-list__category {
  color: #ffffff;
}

.catalog-list__card:hover .catalog-list__text {
  color: #ffffff;
}

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

.catalog-list__card:hover .catalog-list__year {
  color: #ffffff;
  border: 1px solid #ffffff;
}

.catalog-list__card:hover .catalog-list__category {
  color: #ffffff;
}

.catalog-list__card:hover .catalog-list__text {
  color: #ffffff;
}

.catalog-list__card:hover .catalog-list__download .c-link {
  color: #ffffff;
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}

.catalog-list__card:hover .catalog-list__download .c-link::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='17px' height='18px'%3E%3Cpath fill-rule='evenodd' fill='rgb(255, 255, 255)' d='M0.856,15.657 L12.380,4.132 C12.719,3.794 13.269,3.794 13.608,4.132 L13.796,4.320 C14.135,4.660 14.135,5.209 13.796,5.548 L2.271,17.072 C1.932,17.411 1.383,17.411 1.044,17.072 L0.856,16.884 C0.517,16.546 0.517,15.996 0.856,15.657 Z'/%3E%3Cpath fill-rule='evenodd' fill='rgb(255, 255, 255)' d='M12.797,11.297 L16.573,0.824 L11.655,5.742 L12.797,11.297 Z'/%3E%3Cpath fill-rule='evenodd' fill='rgb(255, 255, 255)' d='M6.429,4.930 L16.902,1.153 L11.984,6.071 L6.429,4.930 Z'/%3E%3C/svg%3E");
}

.catalog-list__image {
  width: 200px;
  height: 283px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .catalog-list__image {
    width: 100%;
    height: 300px;
  }
}

.catalog-list__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

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

.catalog-list__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.catalog-list__year {
  font-family: acumin-pro, sans-serif;
  font-size: 11px;
  color: #c22b1f;
  transition: all 0.3s ease;
  border: 1px solid #c22b1f;
  padding: 1px 7px;
  border-radius: 3px;
}

.catalog-list__category {
  font-family: acumin-pro, sans-serif;
  font-size: 13px;
  color: #c22b1f;
  font-style: italic;
  transition: all 0.3s ease;
}

.catalog-list__title {
  font-family: kepler-std-condensed-display, serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 1;
  color: #C22B21;
  margin-top: 6px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .catalog-list__title {
    font-size: 30px;
  }
}

.catalog-list__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: #c22b1f;
  margin-top: 13px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .catalog-list__text {
    font-size: 12px;
  }
}

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

.catalog-list__download {
  display: flex;
  align-items: center;
  padding-right: 45px;
}
@media screen and (max-width: 768px) {
  .catalog-list__download {
    padding-right: 0px;
    justify-content: center;
    padding-bottom: 20px;
  }
}

.p-catalog-list .c-side-right__text {
  @media screen and (max-width: 768px) {
    font-size: 90px;
  }
}

.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;
}

