/*
|---------------------------------------------------------------
| qinc2026-futureshop-header.css - futureshop LP 専用ヘッダー
|---------------------------------------------------------------
*/
.site-header__logo-svg .logo-main {
  fill: #1e2c63;
}
.site-header__logo-svg .logo-dot {
  fill: #fff;
}

.futureshop-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(2, 4, 65, 0.08);
}

.futureshop-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1232px;
  margin: 0 auto;
  padding: 14px clamp(16px, 4vw, 40px);
  box-sizing: border-box;
}

.futureshop-header__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #020441;
}

.futureshop-header__logo-img {
  display: block;
  height: 54px;
  width: auto;
  max-width: 411px;
  object-fit: contain;
}

.futureshop-header__logo-x {
  font-size: 16px;
  font-weight: 700;
  color: #020441;
  line-height: 1;
}

.futureshop-header__right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.futureshop-header__nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.futureshop-header__nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #343434;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.futureshop-header__nav-link:hover {
  color: #f24b08;
}

.futureshop-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #f24b08;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.futureshop-header__cta:hover {
  opacity: 0.9;
  color: #ffffff;
}

.futureshop-header__cta-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
}

.futureshop-header__menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.futureshop-header__menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #020441;
}

.futureshop-header__mobile {
  background: #ffffff;
  border-top: 1px solid rgba(2, 4, 65, 0.08);
  padding: 16px clamp(16px, 4vw, 40px) 24px;
}

.futureshop-header__mobile-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.futureshop-header__mobile-list a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(2, 4, 65, 0.08);
  color: #343434;
  text-decoration: none;
  font-weight: 500;
}

.futureshop-header__mobile-cta {
  color: #f24b08 !important;
  font-weight: 700 !important;
}

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

  .futureshop-header__menu-btn {
    display: inline-flex;
  }

  .futureshop-header__cta {
    display: none;
  }
}

@media (max-width: 1024px) {
  .futureshop-header__logo-img {
    height: 28px;
  }
}
