/* =========================================================
   HEADER
========================================================= */
.site-header {
  font-family:
    "Noto Sans JP",
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    Arial,
    sans-serif;
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: #fff;
  z-index: 1000;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}
.site-header__inner {
  max-width: 1350px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header__brand {
  display: flex;
  gap: 36px;
  align-items: center;
  min-width: max-content;
}
.site-header__logo-img {
  display: block;
  width: 187px;
  height: auto;
}
.site-header__divider {
  width: 1px;
  height: 32px;
  background: #999999;
}
.site-header__sub {
  font-size: 16px;
  color: #999999;
  font-family:
    "Roboto",
    "Noto Sans JP",
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    Arial,
    sans-serif;
  margin-left: -19px;
  font-weight: 400;
}

/* nav */
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 43px;
}
.site-header__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 3px; /* 丸とテキストの間 */
  font-size: 15px;
  letter-spacing: 0.057em;
  color: #333;
  transition: opacity 0.35s ease;
  cursor: pointer;
}
.site-header__link:hover {
  opacity: 0.6;
}

.site-header__link::before {
  content: "▼";
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 20px;
  height: 20px;
  border-radius: 50%;

  background: #ff6a01;
  color: #fff;

  font-size: 11px;
  line-height: 1;
}

@media (max-width: 860px) {
  .site-header__nav {
    display: none;
  }
}

/* =========================================================
   SP header override
========================================================= */
@media (max-width: 860px) {
  .site-header {
    height: 47px;
  }

  .site-header__inner {
    padding: 0 16px;
  }

  .site-header__brand {
    gap: 12px;
  }

  .site-header__logo-img {
    width: 120px;
  }

  .site-header__divider {
    height: 20px;
  }

  .site-header__sub {
    font-size: 12px;
    margin-left: 0;
  }
}
