/* ===== PAGES.CSS — サブページ共通スタイル ===== */

/* Coming Soon */
.coming-soon-section {
  padding: 100px 0 120px;
}
.coming-soon-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--blue);
  margin-bottom: 24px;
}
.coming-soon-text {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 40px;
}
/* services.html / members.html など全サブページで読み込む */

/* Current nav link */
nav a.nav-current { color: var(--blue); }

/* ----------------------------------------
   Page Hero（サブページ共通ヘッダー）
---------------------------------------- */
.page-hero {
  background: var(--charcoal);
  padding: 64px 0 56px;
  border-bottom: 3px solid var(--blue);
}
.page-hero-label {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.25em;
  color: var(--blue); margin-bottom: 12px;
}
.page-hero-title {
  font-size: 2.4rem; font-weight: 300; color: #ffffff;
  margin-bottom: 16px; letter-spacing: -0.02em; line-height: 1.3;
}
.page-hero-sub {
  font-size: 0.85rem; color: rgba(255,255,255,0.55); letter-spacing: 0.06em;
}

/* ----------------------------------------
   Page CTA（サブページ共通フッターCTA）
---------------------------------------- */
.page-cta {
  padding: 80px 0; background: var(--bg2);
  text-align: center; border-top: 1px solid var(--border);
}
.page-cta-text {
  font-size: 1rem; color: var(--text-muted); font-weight: 300; margin-bottom: 28px;
}
.btn-cta {
  display: inline-block; padding: 14px 48px;
  background: var(--charcoal); color: #fff; text-decoration: none;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em;
  transition: background 0.2s;
}
.btn-cta:hover { background: var(--blue); }

/* ----------------------------------------
   Responsive
---------------------------------------- */
@media (max-width: 768px) {
  .page-hero { padding: 48px 0 40px; }
  .page-hero-title { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .page-hero-title { font-size: 1.5rem; }
  .btn-cta { display: block; text-align: center; }
}
