/* top ページのスクロールロックを解除 */
html,
body {
  overflow: auto;
  height: auto;
}

/* ── Header: PC ナビ ── */
.header__nav-pc {
  display: flex;
  align-items: center;
  gap: 80px;
}

.header__nav-pc .nav-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: color 0.15s ease;
}

.header__nav-pc .nav-link:hover {
  color: #666;
}

/* ── ハンバーガー ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-primary);
  transition: transform 0.25s ease;
}

.hamburger.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.hamburger.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ── モバイルナビ ── */
.mobile-nav {
  padding: 28px var(--page-padding);
  border-bottom: 1px solid var(--color-primary);
  background: var(--color-bg);
}

.mobile-nav__link {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-bottom: 28px;
}

.mobile-nav__link:last-child {
  padding-bottom: 0;
}

/* ── Service ── */
.service {
  padding: 0 var(--page-padding) 120px;
}

.service__title {
  font-size: 84px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 86px;
  margin-bottom: 72px;
}

/* ── Body: 2カラム ── */
.service__body {
  display: flex;
  gap: 72px;
  align-items: stretch;
}

/* 写真プレースホルダー */
.service__photo {
  width: 44%;
  flex-shrink: 0;
  border: 1px solid var(--color-primary);
}

/* コンテンツ列 */
.service__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 72px;
  flex: 1;
}

.service__name {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.service__desc {
  font-size: 12px;
  line-height: 1.8;
}

.service__note {
  font-size: 11px;
  line-height: 1.8;
  color: var(--color-secondary);
  margin-top: 72px;
}

/* ── SP (≤768px) ── */
@media (max-width: 768px) {
  :root {
    --page-padding: 15px;
    --header-height: 58px;
  }

  .header__nav-pc {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .service__title {
    font-size: 52px;
    margin-top: 70px;
    margin-bottom: 48px;
  }

  .service__body {
    flex-direction: column;
    gap: 48px;
  }

  .service__photo {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .service__list {
    gap: 32px;
  }

  .service__name {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .service__desc {
    font-size: 11px;
  }

  .service__note {
    font-size: 11px;
    margin-top: 32px;
  }
}
