@charset "UTF-8";

/* Breadcrumb
   modules-2026 を読み込まず、レガシーレイアウトと競合しないよう単独定義
-------------------------------------------------------------*/
.module-inner {
  display: grid;
  grid-template-columns: 1fr;
  text-align: left;
}

.module-breadcrumb {
  display: none;
}

@media print, screen and (width >= 769px) {
  .module-breadcrumb {
    --breadcrumb-arrow-width: 16px;
    --breadcrumb-item-gap: 16px;
    background-color: #eaebec;
    display: block;
  }

  .module-breadcrumb__list {
    align-items: center;
    display: flex;
    gap: calc(var(--breadcrumb-item-gap) * 2 + var(--breadcrumb-arrow-width));
    list-style: none;
    margin: 0;
    padding-block: 16px;
    padding-inline: 40px;
  }

  .module-breadcrumb__item {
    display: inline-flex;
    align-items: center;
    position: relative;
  }

  .module-breadcrumb__item::after {
    background-color: #6e6f74;
    content: "";
    display: block;
    height: 9px;
    mask-image: url(/jp/common/modules-2026/assets/images/icon/modules/icon-arrow-right.svg);
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    position: absolute;
    right: calc(-1 * (var(--breadcrumb-item-gap) + var(--breadcrumb-arrow-width)));
    top: 50%;
    transform: translateY(-50%);
    width: var(--breadcrumb-arrow-width);
  }

  .module-breadcrumb__item:last-of-type::after {
    display: none;
  }

  .module-breadcrumb__link {
    color: #35363b;
    font-family: "HondaGlobalFontEN-Regular", sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 2px;
    transition: all 0.3s ease;
  }

  .module-breadcrumb__link:hover {
    text-decoration-color: #35363b;
  }

  .module-breadcrumb__text {
    color: #35363b;
    font-family: "HondaGlobalFontEN-Regular", sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
  }
}
