html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
}

p {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
}

p a {
text-decoration: underline;
color: blue;
}

p a:hover {
text-decoration: none;
}

.image {
margin: 2rem 0;
}

.subp-head {
line-height: 1.4;
}


.c-box__inner .backnumber {
margin: 4rem 0;
padding-top: 2rem;
border-top: solid 1px #ccc;
}
.c-box__inner .backnumber li {
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    margin-bottom: 1rem;
}
.c-box__inner .backnumber li a {
text-decoration: underline;
color: blue;
}
.c-box__inner .backnumber li a:hover {
text-decoration: none;
}

.breadcrumbs__inner ul {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline; /* ←これ大事 */
}

.breadcrumbs__inner ul li {
  min-width: 0; /* ←これも重要（flexの詰まり防止） */
  word-break: break-word;
}

.breadcrumbs__inner ul li:last-child {
  flex: 1 1 auto; /* ←最後だけ伸ばす */
}

@media screen and (max-width: 768px) {

.image {
margin: 2rem auto;
}
.image img {
width: 100%;
}

.breadcrumbs__inner ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs__inner ul li {
  color: #4c4c4c;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  word-break: break-word;
}

.breadcrumbs__inner ul li:nth-child(even) {
  white-space: nowrap;
}

}