.top-content {
  position: relative;
  z-index: 3;
  /* scroll-snap-align: start; 後で追加*/
  margin-bottom: 120px;
}
.content {
  width: clamp(331px, 88.2667vw, 1160px);
  max-width: 1160px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top-content {
    position: relative;
    z-index: 3;
    /* scroll-snap-align: start; 後で追加*/
    margin-bottom: 60px;
  }
  .content {
    max-width: none;
  }
}
/* パンくずリスト */
.breadcrumb {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    margin-bottom: 20px;
  }
}
div.breadcrumb nav ol {
  display: flex;
  justify-content: end;
  align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  div.breadcrumb nav ol {
    flex-wrap: nowrap !important;
    overflow: hidden;
  }
}
div.breadcrumb nav ol li {
  display: flex;
  justify-content: center;
  align-items: center;
}
div.breadcrumb nav ol li:nth-child(1), div.breadcrumb nav ol li:nth-child(2) {
  white-space: nowrap;
}
div.breadcrumb nav ol li a {
  color: #7a8192;
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  /* 20.8px */
  letter-spacing: 0.39px;
}
div.breadcrumb nav ol li a:hover {
  opacity: 0.5;
}
div.breadcrumb nav ol li:not(:last-child)::after {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background-color: #7a8192;
  margin-left: 10px;
}
div.breadcrumb nav ol li a[aria-current="page"] {
  color: #191e2e;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.39px;
  text-decoration: none;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  div.breadcrumb nav ol li:not(:last-child)::after {}
  div.breadcrumb nav ol li:last-child {
    /*flex: 1;*/
    min-width: 0;
    display: block;
  }
  div.breadcrumb nav ol li a[aria-current="page"] {
    display: block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}