@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@100..900&display=swap");
:root {
  --text-color: #191919;
  --wh: #fff;
  --bk: #191919;
  --gray: #f4f4f4;
  --green: #45b035;
  --border-color: #f2f2f2;
}

@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc-tb {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

@media screen and (max-width: 499px) {
  .pc-xsl {
    display: none !important;
  }
}

@media screen and (min-width:500px) {
  .sp-xsl {
    display: none !important;
  }
}

@media screen and (max-width: 376px) {
  .pc-xs {
    display: none !important;
  }
}

@media screen and (min-width: 377px) {
  .sp-xs {
    display: none !important;
  }
}

.breadcrumb {
  background-color: var(--wh);
  padding-top: 2.5rem;
}
@media screen and (max-width: 834px) {
  .breadcrumb {
    padding-top: 1.5rem;
  }
}
@media screen and (max-width: 640px) {
  .breadcrumb {
    padding-top: 1rem;
  }
}
.breadcrumb__list {
  display: flex;
  gap: 0.5rem;
  font-size: 1.2rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 834px) {
  .breadcrumb__list {
    font-size: 1.2rem;
  }
}
.breadcrumb__item {
  display: flex;
  align-items: center;
}
.breadcrumb__item:not(:last-child)::after {
  content: "chevron_forward";
  font-family: "Material Symbols Outlined";
  font-size: 1.5rem;
  margin: 0 3rem;
  color: var(--green);
}
@media screen and (max-width: 834px) {
  .breadcrumb__item:not(:last-child)::after {
    margin: 0 2rem;
  }
}
@media screen and (max-width: 499px) {
  .breadcrumb__item:not(:last-child)::after {
    margin: 0 1rem;
  }
}
.breadcrumb__item a {
  text-decoration: underline;
}/*# sourceMappingURL=breadcrumb.css.map */