.breadcrumbs--top {
    margin-top: 170px;
}

@media (max-width: 767px) {
  .breadcrumbs--top {
    margin-top: 18%;
}
}

/* あわせて読みたいブロック用 */
.relatedLink {
  margin: 32px 0;
}

.relatedLink__link {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 18px;
  border: 1px solid #ddd;
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.relatedLink__label {
  position: absolute;
  top: -13px;
  left: 16px;
  padding: 3px 12px;
  background: #333;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.relatedLink__thumb {
  flex: 0 0 140px;
  display: flex;
  align-items: center;
}

.relatedLink__thumb img {
  width: 140px;
  height: auto;
  object-fit: cover;
}

.relatedLink__body {
  flex: 1;
}

.relatedLink__title {
  margin: 0 0 8px;
  font-weight: 700;
  line-height: 1.5;
}

.relatedLink__excerpt {
  margin: 0;
  font-size: 14px !important;
  line-height: 1.6;
  color: #666;
}

@media (max-width: 600px) {
  .relatedLink__link {
    gap: 12px;
    padding: 16px 12px;
    padding-top: 30px;
    flex-direction: column;
        align-items: center;
  }

  .relatedLink__thumb {
    flex-basis: auto;
  }

  .relatedLink__thumb img {
    width: 180px;
    height: auto;
  }

  .relatedLink__excerpt {
    display: none;
  }
}