/* === Natural Lights Header === */

.nl-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.nl-skip-link:focus {
  left: 12px;
  top: 12px;
  background: #fff;
  padding: 8px 10px;
  border: 1px solid #000;
  z-index: 9999;
}

.nl-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.nl-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* left */
.nl-header__left {
  flex: 0 0 auto;
}
.nl-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nl-logo img {
  display: block;
  height: 26px;      /* ロゴの高さ */
  width: auto;
}
.nl-logo__text {
  font-weight: 700;
  letter-spacing: .12em;
  color: #111;
}

/* center nav */
.nl-header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.nl-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nl-nav a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
}

.nl-nav a:hover {
  opacity: .7;
}

/* right */
.nl-header__right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.nl-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0,0,0,.25);
  border-radius: 10px;
  color: #111;
  text-decoration: none;
}

.nl-ig svg {
  fill: currentColor;
}

/* content wrapper */
.nl-content {
  min-height: 60vh;
}

/* simple responsive */
@media (max-width: 860px) {
  .nl-header__inner {
    padding: 12px 16px;
  }
  .nl-nav {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nl-nav a {
    font-size: 13px;
  }
}

/* =========================
   Fixed Header
========================= */
.nl-header{
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 99999 !important;
  background: #fff !important;
  box-shadow: 0 1px 0 rgba(0,0,0,.06) !important;
}

.nl-content{
  padding-top: 88px; /* 必要なら調整 */
}
