@charset "UTF-8";

/* パンくずリスト全体のコンテナ */
.c-breadcrumbs {
  background-color: #f9f9f9;
  padding: 15px 0;
  border-top: 1px solid #eee;
}

/* リストの並び */
.c-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* 各アイテム */
.c-breadcrumbs__item {
  display: flex;
  align-items: center;
  color: #666;
}

/* セパレーター（ > ） */
.c-breadcrumbs__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin: 0 12px;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  transform: rotate(45deg);
}

.c-breadcrumbs__link {
  color: #ae0833;
  text-decoration: none;
  transition: opacity 0.2s;
}

.c-breadcrumbs__link:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.c-breadcrumbs__current {
  color: #333;
  font-weight: bold;
}

/* aioseo パンくず */
.p-breadcrumbs {
  display: none !important;
}

/* コンテンツトップの余白調整 */
.l-other-page {
  padding-top: 55px !important;
}

@media (max-width: 768px) {
  .c-breadcrumbs__list {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    padding-bottom: 5px;
  }
  .c-breadcrumbs__item {
    flex-shrink: 0;
  }
}
