/* =========================
   LP Common Header
========================= */
.lp-global-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #E5EAF1;
  backdrop-filter: blur(10px);  
  font-family: 'Noto Sans JP', sans-serif;
}

.lp-global-header__inner {
  width: min(1180px, 94%);
  margin: 0 auto;
  min-height: 82px;
  padding: 12px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "brand nav cta";
  align-items: center;
  gap: 24px;
}

.lp-global-header__brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #0A2463;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
  min-width: 0;
}

.lp-global-header__logo-img {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.lp-global-header__service-name {
  color: #0A2463;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.lp-global-nav-wrap {
  grid-area: nav;
  min-width: 0;
}

.lp-global-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.lp-global-nav a {
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.lp-global-nav a:hover {
  color: #0A2463;
}

.lp-global-header__cta {
  grid-area: cta;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E58100;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: 11px 22px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(201, 166, 107, 0.22);
}

.lp-global-header__cta:hover {
  background: #b89459;
}

@media (max-width: 900px) {
  .lp-global-header__inner {
    min-height: auto;
    padding: 12px 0 10px;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand cta"
      "nav nav";
    row-gap: 12px;
    column-gap: 12px;
  }

  .lp-global-header__brand {
    gap: 8px;
  }

  .lp-global-header__logo-img {
    height: 28px;
  }

  .lp-global-header__service-name {
    font-size: 13px;
  }

  .lp-global-header__cta {
    padding: 9px 14px;
    font-size: 14px;
    border-radius: 10px;
    box-shadow: none;
  }

  .lp-global-nav-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .lp-global-nav-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.96));
  }

  .lp-global-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 20px;
    padding-right: 32px;
    padding-bottom: 4px;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .lp-global-nav::-webkit-scrollbar {
    display: none;
  }
}

/* 共通フッター */
.lp-common-footer {
  background: #0A2463;
  color: #fff;
  text-align: center;
  padding: 48px 16px;
  font-size: 13px;
}

.lp-common-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.lp-common-footer__service {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.95;
}

.lp-common-footer__copyright {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.8;
  opacity: 0.95;
}