.footer {
  background-color: #000;
  text-align: center;
  color: #fff;
  padding-bottom: 20px;
}
.footer-wrap {
  padding-top: 40px;
  border-bottom: #ffffff solid 0.5px;
  border-top: #fff solid 0.5px;
}
body {
  background-color: #000; /* フォールバック用 */
  color: #f8eaea;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  transition: opacity 1.5s ease-in-out;
  background-attachment: fixed;
}
#top {
  height: 60vh;
  position: relative;
  background: transparent;
}
#bg1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* 黒い膜。0.5は透明度。調整可 */
  z-index: 1;
}

.__inner {
  max-width:  clamp(59.375rem, 21.875rem + 50vw, 68.75rem);
}
.title {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 80px 0 0 0;
}
.title-wrap {
  margin: 0 auto;
  width: 80%;
}
.title-wrap__txt {
  font-size: 60px;
  line-height: 0.8;
  display: flex;
  flex-direction: column;
  align-items: start; /* 横方向中央 */
  justify-content: center;
  text-align: center;
}
.title-wrap__txt__sub {
  font-size: 24px;
}
.breadcrumb {
  background-color: rgba(0, 0, 0, 0.8);
  border-bottom: #fff solid 1px;
  padding: 80px 0 10px 0;
}
.breadcrumb-wrapper {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: end; /* 横方向中央 */
  justify-content: center;
  text-align: center;
}
.breadcrumb-wrapper__list {
  display: flex;
}

.breadcrumb-wrapper__list__item {
  font-size: 1rem;
}

.breadcrumb-wrapper__list__item::after {
  content: "/";
  padding: 0 15px;
  font-size: 1.25rem;
}

.breadcrumb-wrapper__list__item:last-child::after {
  content: "";
}
@media screen and (max-width: 600px){
  .breadcrumb {
  padding: 40px 0 0px 0;
}
  .title {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 40px 0 0 0;
}
  .title-wrap {
  margin: 0 auto;
  width: 95%;
}
  .title-wrap__txt {
  font-size: 28px;
  line-height: 0.8;
  display: flex;
  flex-direction: column;
  align-items: start; /* 横方向中央 */
  justify-content: center;
  text-align: center;
}
.title-wrap__txt__sub {
  font-size: 14px;
}
.b-color {
  display:none;
}
}