@charset "UTF-8";

/* ============================================================
   BREADCRUMB
   - ヘッダー直下に固定、ガラス調バー
============================================================ */

.breadcrumb {
  position: relative;
  z-index: 10;
  background-color: #fff;
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  padding: 0 5%;
  max-width: 1280px;
  margin: 0 auto;
  height: 44px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 11.5px;
  font-family: var(--font-ui, "Inter", sans-serif);
  letter-spacing: .08em;
  font-weight: 500;
}

/* 区切り：斜め線 */
.breadcrumb-list li {
  display: flex;
  align-items: center;
}

.breadcrumb-list li + li {
  padding-left: 2px;
}

.breadcrumb-list li + li::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cline x1='4' y1='12' x2='10' y2='2' stroke='%23aaa' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  opacity: .7;
}

/* ホームアイコン付きリンク */
.breadcrumb-list a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 44px;
  padding: 0 6px;
  color: rgba(var(--soft-r, 118), var(--soft-g, 118), var(--soft-b, 118), .7);
  text-decoration: none;
  transition: color .2s ease;
  white-space: nowrap;
}

.breadcrumb-list a:hover {
  color: rgb(var(--text-r, 17), var(--text-g, 17), var(--text-b, 17));
}

/* ホームアイコン（SVG inline-like） */
.breadcrumb-home-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.breadcrumb-home-icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 現在ページ */
.breadcrumb-list [aria-current="page"] {
  padding: 0 6px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(var(--text-r, 17), var(--text-g, 17), var(--text-b, 17), .82);
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  /* 末尾にアクセントドット */
  position: relative;
}

.breadcrumb-list [aria-current="page"]::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent, #4a7cff);
}

/* ============================================================
   SP
============================================================ */
@media (max-width: 767px) {
  .breadcrumb-inner {
    height: 38px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .breadcrumb-inner::-webkit-scrollbar { display: none; }

  .breadcrumb-list {
    font-size: 10.5px;
    flex-wrap: nowrap;
    min-width: max-content;
  }

  .breadcrumb-list a,
  .breadcrumb-list [aria-current="page"] {
    height: 38px;
    padding: 0 4px;
  }

  .breadcrumb-list [aria-current="page"]::after {
    top: 6px;
  }
}
