/* ================================================================
   common.css — 全ページ共通のカスタムCSS
   行政書士渥美洋行政策法務研究所
   ================================================================ */

/* ── CSS Variables ── */
:root {
  --text: #1C2331;
  --bg: #FAF9F6;
  --gold: #8B1F2F;
  --dark: #1C2331;
  --accent-red: #c94040;
}

/* ── Base Reset & Typography ── */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'YuGothic', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
@media (min-width: 768px) { body { font-size: 18px; } }
h1, h2, h3, h4 {
  font-family: 'Shippori Mincho', serif;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}
::selection { background-color: rgba(191,163,126,0.25); color: var(--text); }

/* ── Sanctuary Header (Fixed) ── */
.sanctuary-header {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 1.5rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.5s ease;
  box-sizing: border-box;
}
.sanctuary-header.is-top { background: transparent; }
.sanctuary-header.is-top .logo-main { color: #fff; }
.sanctuary-header.is-top .logo-sub { color: #fff; }
.sanctuary-header.is-scrolled {
  background: rgba(249,248,246,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sanctuary-header.is-scrolled .logo-main { color: var(--text); }
.sanctuary-header .header-logo { display: flex; flex-direction: column; text-decoration: none; }
.sanctuary-header .logo-sub {
  font-family: 'Noto Sans JP', sans-serif; font-size: 9px;
  color: var(--gold); font-weight: 700;
  letter-spacing: 0.05em; margin-bottom: 2px;
  transition: color 0.5s ease;
}
.sanctuary-header .logo-main {
  font-family: 'Shippori Mincho', serif; font-size: 14px;
  font-weight: 700; letter-spacing: 0.04em;
  transition: color 0.5s ease;
}
@media (min-width: 768px) {
  .sanctuary-header { padding: 2rem 4rem; }
  .sanctuary-header .logo-sub { font-size: 11px; }
  .sanctuary-header .logo-main { font-size: 16px; }
}

/* ── Desktop Nav ── */
.sanctuary-nav { display: none; }
@media (min-width: 768px) {
  .sanctuary-nav { display: flex; align-items: center; gap: 2rem; }
  .sanctuary-nav a,
  .sanctuary-nav > .nav-dropdown > span {
    font-family: 'Noto Sans JP', sans-serif; font-size: 13px;
    letter-spacing: 0.05em; text-decoration: none;
    transition: color 0.3s; font-weight: 500; color: var(--text);
  }
  .sanctuary-nav a:hover,
  .sanctuary-nav > .nav-dropdown > span:hover { color: var(--gold); }
  .sanctuary-header.is-top .sanctuary-nav a,
  .sanctuary-header.is-top .sanctuary-nav > .nav-dropdown > span { color: #fff; }
  .sanctuary-header.is-top .sanctuary-nav a:hover,
  .sanctuary-header.is-top .sanctuary-nav > .nav-dropdown > span:hover { color: var(--gold); }
}

/* ── Mobile Menu Button ── */
.sanctuary-header .mobile-menu-trigger { background: none; border: none; cursor: pointer; padding: 4px; }
.sanctuary-header.is-top .mobile-menu-trigger { color: #fff; }
.sanctuary-header.is-scrolled .mobile-menu-trigger { color: var(--text); }

/* ── Mobile Menu Overlay ── */
#mobile-menu {
  background: var(--bg) !important;
  z-index: 105;
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100vh;
  overflow-y: auto;
}

/* ── Dropdown Nav ── */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 0;
}
.nav-dropdown-content {
  display: block;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.98);
  min-width: 220px;
  box-shadow: 0px 8px 24px rgba(0,0,0,0.1);
  z-index: 102;
  border-radius: 4px;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 6px);
  padding: 0.5rem 0;
  border: 1px solid rgba(191,163,126,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.nav-dropdown-content::before {
  content: "";
  position: absolute;
  right: 0; bottom: 100%; left: 0;
  height: 16px;
}
.nav-dropdown:hover .nav-dropdown-content,
.nav-dropdown:focus-within .nav-dropdown-content,
.nav-dropdown.is-open .nav-dropdown-content {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-dropdown-content a {
  color: var(--text) !important;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px !important;
  transition: background-color 0.2s, color 0.2s;
  text-align: left;
}
.nav-dropdown-content a:hover {
  background-color: rgba(191,163,126,0.1);
  color: var(--gold) !important;
}

/* ── Sanctuary Hero ── */
.sanctuary-hero {
  position: relative; overflow: hidden; background: #111;
  display: grid; place-items: center;
  box-sizing: border-box;
}
.sanctuary-hero .hero-bg {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover; background-position: center;
}
.sanctuary-hero .hero-overlay {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(0,0,0,0.5); z-index: 1;
}
.sanctuary-hero .hero-content {
  position: relative; z-index: 10;
  text-align: center; color: #fff;
  width: 90%; max-width: 800px; margin: 0 auto;
}
.sanctuary-hero .hero-title {
  font-family: 'Shippori Mincho', serif; font-size: 1.5rem;
  font-weight: 400; letter-spacing: 0.1em;
  text-shadow: 0 0 30px rgba(0,0,0,0.4);
  line-height: 1.5; margin: 0;
}
.sanctuary-hero .hero-sub {
  font-family: 'Cinzel', serif; font-size: 0.85rem;
  letter-spacing: 0.3em; margin-bottom: 1.5rem;
  display: block; opacity: 0.9; color: var(--gold);
}
@media (min-width: 768px) {
  .sanctuary-hero .hero-title { font-size: 2.2rem; }
  .sanctuary-hero .hero-sub { font-size: 1rem; }
}
@media (min-width: 1024px) {
  .sanctuary-hero .hero-title { font-size: 2.8rem; }
}

/* Subpage hero: text overlay on image with dark overlay */
.sanctuary-hero--subpage {
  padding: 120px 20px 60px;
  height: auto; min-height: auto;
}
.sanctuary-hero--subpage .hero-content {
  position: absolute; top: 55%; left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .sanctuary-hero--subpage {
    display: flex; flex-direction: column; justify-content: center;
    padding-top: 80px; padding-bottom: 2rem;
  }
  .sanctuary-hero--subpage .hero-overlay { background: rgba(0,0,0,0.65); }
  .sanctuary-hero--subpage .hero-content {
    position: relative;
    top: auto; left: auto; bottom: auto;
    transform: none;
    margin: 0 auto;
    background: rgba(20, 24, 23, 0.75);
    padding: 2rem 1.25rem;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    width: 92%;
  }
  .sanctuary-hero--subpage .hero-desc,
  .sanctuary-hero--subpage .hero-desc {
    font-size: 0.9rem !important; line-height: 1.7 !important;
    margin: 1rem auto 1.5rem !important;
  }
}

/* Index hero: image displayed as-is, NO text overlay */
.sanctuary-hero--index {
  min-height: auto;
  padding: 0;
}
.sanctuary-hero--index .hero-bg {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Fade-in Animation ── */
.s-fade-in { opacity: 0; transform: translateY(30px); transition: opacity 1.2s ease, transform 1.2s ease; }
.s-fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ── Section Styles ── */
.s-section { padding: 2.5rem 1.25rem; max-width: 1000px; margin: 0 auto; }
@media (min-width: 768px) { .s-section { padding: 8rem 3rem; } }
.s-section-label {
  font-family: 'Cinzel', serif; font-size: 0.75rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: #8a7356; margin-bottom: 1.5rem; font-weight: 600;
}
.s-section-title {
  font-family: 'Shippori Mincho', serif; font-size: 1.8rem;
  line-height: 1.65; color: var(--text); margin-bottom: 2rem; font-weight: 400;
}
@media (min-width: 768px) { .s-section-title { font-size: 2.05rem; } }
.s-separator { width: 40px; height: 1px; background: var(--gold); margin: 2rem auto; }
.s-warm { background: #f4f1ec; }
.s-dark { background: var(--dark); color: #fff; }

/* ── Section spacing modifiers ── */
.s-section.compact-bottom { padding-bottom: 2.5rem; }
.s-section.compact-top { padding-top: 2.5rem; }
@media (min-width: 768px) {
  .s-section.compact-bottom { padding-bottom: 4rem; }
  .s-section.compact-top { padding-top: 4rem; }
}

/* ── Service Card ── */
.s-service-card {
  background: #fff; padding: 2.5rem;
  border: 1px solid rgba(191,163,126,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex; flex-direction: column;
}
.s-service-card:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(0,0,0,0.06); }
.s-service-card .card-tag {
  display: inline-block; font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 0.3rem 0.8rem; margin-bottom: 1.5rem;
  text-transform: uppercase; align-self: flex-start;
}
.s-service-card .card-tag.is-red { color: var(--accent-red); border-color: var(--accent-red); }
.s-service-card .card-number {
  font-family: 'Cinzel', serif; font-size: 0.65rem;
  letter-spacing: 0.2em; color: var(--gold);
  border: 1px solid var(--gold); padding: 0.3rem 0.8rem;
  margin-bottom: 1.5rem; text-transform: uppercase;
  display: inline-block; align-self: flex-start;
}
.s-service-card .card-title {
  font-family: 'Shippori Mincho', serif; font-size: 1.25rem;
  color: var(--text); margin-bottom: 1rem; font-weight: 600; line-height: 1.65;
}
.s-service-card .card-subtitle {
  font-weight: 700; color: var(--text); margin-bottom: 1.5rem;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(191,163,126,0.2);
  font-size: 0.95rem;
}
.s-service-card ul {
  list-style: none; padding: 0; margin: 0 0 1.5rem 0;
  flex-grow: 1; border-bottom: 1px solid rgba(191,163,126,0.2);
  padding-bottom: 1.5rem;
}
.s-service-card ul li {
  position: relative; padding-left: 1.2rem;
  margin-bottom: 0.5rem; font-size: 0.95rem;
  color: var(--text); font-weight: 500;
}
.s-service-card ul li::before {
  content: ""; position: absolute; left: 0; top: 0.6rem;
  width: 4px; height: 4px; background-color: var(--gold); border-radius: 50%;
}
.s-service-card p { color: #555; line-height: 1.9; font-size: 0.95rem; }
.s-service-card a:not(.s-cta):not(.s-cta-gold) {
  color: var(--gold); text-decoration: none; transition: color 0.3s;
  font-size: 0.95rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem;
}
.s-service-card a:not(.s-cta):not(.s-cta-gold):hover { color: var(--text); }
.s-service-card a:not(.s-cta):not(.s-cta-gold) svg { width: 16px; height: 16px; }

/* ── CTA Buttons ── */
.s-cta {
  display: inline-block; background: var(--dark); color: #fff;
  padding: 1rem 3rem; font-size: 0.8rem; letter-spacing: 0.15em;
  text-decoration: none; transition: all 0.4s ease;
  border: 1px solid var(--dark);
}
.s-cta:hover { background: transparent; color: var(--dark); }
.s-cta-gold {
  display: inline-block; background: var(--gold); color: #fff;
  padding: 1rem 3rem; font-size: 0.85rem; letter-spacing: 0.1em;
  text-decoration: none; transition: all 0.4s ease;
  border: 1px solid var(--gold); border-radius: 3px;
}
.s-cta-gold:hover { background: transparent; color: var(--gold); }

/* ── Glass Panel ── */
.glass-panel {
  background: rgba(255,255,255,0.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(191,163,126,0.15); padding: 2.5rem;
}

/* ── FAQ ── */
.s-faq-item { padding: 2rem 0; border-bottom: 1px solid rgba(191,163,126,0.15); }
.s-faq-item:last-child { border-bottom: none; }
.s-faq-q {
  font-family: 'Shippori Mincho', serif; font-size: 1.18rem;
  font-weight: 600; color: var(--text); margin-bottom: 1rem;
  display: flex; align-items: flex-start; gap: 0.75rem; line-height: 1.85;
}
.s-faq-q .q-mark {
  font-family: 'Cinzel', serif; color: var(--gold);
  font-size: 1.35rem; font-weight: 700; flex-shrink: 0;
}
.s-faq-a { color: #555; line-height: 1.9; padding-left: 2rem; font-size: 0.95rem; }
.s-faq-a p { margin-bottom: 1rem; }
.s-faq-a p:last-child { margin-bottom: 0; }

/* ── Quote Block ── */
.s-quote { border-left: 3px solid var(--gold); padding-left: 2rem; margin-top: 2.5rem; }
.s-quote p { font-size: 1.15rem; font-weight: 500; color: var(--text); line-height: 1.95; }

/* ── Value Item ── */
.s-value-item { margin-bottom: 2.5rem; }
.s-value-item h3 { font-family: 'Shippori Mincho', serif; font-size: 1rem; font-weight: 700; color: #1B3A2F; margin-bottom: 0.5rem; }
.s-value-item p { color: #1A1A1A; line-height: 1.9; font-size: 0.95rem; }

/* ── Profile Section ── */
.s-profile-layout { display: flex; flex-direction: column; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .s-profile-layout { flex-direction: row; align-items: flex-start; gap: 4rem; } }
.s-profile-img-wrap { width: 100%; max-width: 280px; flex-shrink: 0; }
@media (min-width: 768px) { .s-profile-img-wrap { width: 33%; max-width: none; } }
.s-profile-text { flex: 1; }
.s-profile-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border: 1px solid rgba(191,163,126,0.2); }
.s-profile-name { font-family: 'Shippori Mincho', serif; font-size: 1.5rem; color: var(--text); font-weight: 600; margin-bottom: 0.25rem; }
.s-profile-en { font-family: 'Cinzel', serif; font-size: 0.75rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; margin-bottom: 2rem; }
.s-profile-titles { font-weight: 500; color: var(--text); line-height: 2; margin-bottom: 2rem; font-size: 1rem; }

/* ── Contact Form ── */
.s-form-label { display: block; font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; }
.s-form-input, .s-form-select {
  width: 100%; border: none; border-bottom: 2px solid rgba(191,163,126,0.3);
  background: transparent; padding: 0.75rem 0; font-size: 0.95rem;
  font-family: 'Shippori Mincho', serif; color: var(--text);
  transition: border-color 0.3s; outline: none;
}
.s-form-input:focus, .s-form-select:focus { border-bottom-color: var(--gold); }
.s-form-select {
  cursor: pointer; -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23bfa37e" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-repeat: no-repeat; background-position: right 0.5rem center;
  background-size: 1em; padding-right: 2.5rem;
}
.s-form-textarea {
  width: 100%; border: none; border-bottom: 2px solid rgba(191,163,126,0.3);
  background: rgba(255,255,255,0.5); padding: 0.75rem 1rem;
  font-size: 0.95rem; font-family: 'Shippori Mincho', serif;
  color: var(--text); transition: border-color 0.3s; outline: none;
  resize: vertical; border-radius: 4px 4px 0 0;
}
.s-form-textarea:focus { border-bottom-color: var(--gold); }
.s-form-submit {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--dark); color: #fff; padding: 1rem 3rem;
  font-size: 0.85rem; letter-spacing: 0.1em;
  border: 1px solid var(--dark); cursor: pointer;
  transition: all 0.4s ease; font-family: 'Shippori Mincho', serif;
}
.s-form-submit:hover { background: transparent; color: var(--dark); }
.s-form-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .s-form-grid { grid-template-columns: 1fr 1fr; } }

/* ── Services Grid ── */
.s-services-grid { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 768px) {
  .s-services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
.s-grid { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 768px) {
  .s-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

/* ── Footer ── */
.s-footer { background: var(--dark); color: #ccc; padding: 5rem 2rem; }
.s-footer a { color: #ccc; text-decoration: none; transition: color 0.3s; }
.s-footer a:hover { color: var(--gold); }
.s-footer .footer-title { font-family: 'Shippori Mincho', serif; font-size: 1.1rem; color: #fff; font-weight: 600; margin-bottom: 1.5rem; }
.s-footer .footer-info { font-size: 0.95rem; line-height: 1.9; color: #999; }
.s-footer .footer-copy { font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.15em; color: #666; }
.s-footer-inner { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 768px) { .s-footer-inner { flex-direction: row; justify-content: space-between; flex-wrap: wrap; } }
.s-footer-social { display: flex; gap: 1rem; margin-top: 1rem; }
.s-footer-social a { color: #999; transition: color 0.3s; }
.s-footer-social a:hover { color: var(--gold); }

/* ── Social Links ── */
.s-social-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.2rem; background: rgba(255,255,255,0.6);
  border: 1px solid rgba(191,163,126,0.15); color: #555;
  font-size: 0.85rem; text-decoration: none; transition: all 0.3s;
}
.s-social-link:hover { color: var(--gold); border-color: var(--gold); }

/* ── Scroll Indicator ── */
.scroll-indicator { display: none !important; }

/* ── Badges ── */
.badge-group { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 2rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-family: 'Noto Sans JP', sans-serif; font-size: 0.8rem; font-weight: 600;
  color: var(--gold); background: rgba(191,163,126,0.1);
  padding: 0.4rem 1rem; border: 1px solid var(--gold); border-radius: 20px;
}

/* ── Breadcrumbs ── */
.s-breadcrumb {
  padding: 1.5rem 1.25rem 0;
  max-width: 1000px; margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.8rem; color: #888;
}
@media (min-width: 768px) {
  .s-breadcrumb { padding: 2rem 3rem 0; font-size: 0.85rem; }
}
.s-breadcrumb a { color: #888; text-decoration: none; transition: color 0.2s; }
.s-breadcrumb a:hover { color: var(--gold); }

/* ── Floating Action Button ── */
.s-fab {
  position: fixed; bottom: 20px; right: 20px;
  background: var(--dark); color: #fff;
  padding: 12px 24px; border-radius: 30px;
  font-family: 'Shippori Mincho', serif;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: flex; align-items: center; gap: 8px;
  z-index: 99; transition: all 0.3s ease;
  border: 1px solid rgba(191,163,126,0.3);
}
.s-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  background: var(--gold);
}
@media (max-width: 767px) {
  .s-fab { bottom: 15px; right: 15px; padding: 10px 20px; font-size: 0.85rem; }
}

/* ── Utility ── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-0 { margin-top: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0;
}

/* ── Readability Tuning ── */
.s-service-card p,
.s-value-item p,
.s-check-list li,
.s-faq-a,
.s-profile-titles,
.s-form-input,
.s-form-textarea {
  font-size: 1.05rem !important;
  line-height: 2 !important;
}

/* ── Mobile Responsive ── */
@media (max-width: 767px) {
  body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px; line-height: 1.75; letter-spacing: 0.02em;
  }
  h1, h2, h3, h4, .s-section-title, .s-profile-name {
    font-family: 'Shippori Mincho', serif;
  }
  .sanctuary-header { padding: 1rem; }
  .sanctuary-header .logo-sub { display: none; }
  .sanctuary-header .logo-main { font-size: 12px; letter-spacing: 0; }
  .sanctuary-hero { min-height: auto; }
  .sanctuary-hero .hero-content { width: 100%; padding: 1.5rem 1rem; }
  .sanctuary-hero .hero-title { font-size: 1.45rem; line-height: 1.55; letter-spacing: 0.08em; }
  .sanctuary-hero .hero-sub { font-size: 0.7rem; letter-spacing: 0.25em; margin-top: 0; }
  .sanctuary-hero .hero-desc { font-size: 0.95rem !important; line-height: 1.75 !important; }
  .badge-group { gap: 0.5rem; margin-top: 1.25rem; }
  .hero-badge { font-size: 0.7rem; padding: 0.35rem 0.7rem; }
  .s-section { padding: 3rem 1.25rem; }
  .s-section-title { font-size: 1.45rem; line-height: 1.55; margin-bottom: 1.5rem; }
  .s-service-card { padding: 1.25rem; }
  .s-service-card p, .s-value-item p, .s-check-list li, .s-faq-a, .s-profile-titles {
    font-size: 1rem !important; line-height: 1.8 !important;
  }
  .s-faq-a { padding-left: 0; }
  .s-faq-q { font-size: 1.05rem; line-height: 1.7; }
  .s-cta, .s-cta-gold { width: 100%; padding: 0.9rem 1rem; text-align: center; }
  .s-footer { padding: 3rem 1.25rem; }
}

/* ── AA WAVE Style Hero ── */
.hero-aawave {
  background-image: linear-gradient(rgba(28, 35, 49, 0.65), rgba(28, 35, 49, 0.85)), url('../../images/hero-skyline.jpg');
  background-size: cover;
  background-position: center;
  /* background-attachment: fixed; removed for iOS compatibility */
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
}
.hero-aawave-content {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  color: #fff;
}
.hero-aawave .hero-sub {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: #fff; opacity: 0.8;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
}
.hero-aawave .hero-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 2.2rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: #fff;
}
.hero-aawave .hero-desc {
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 767px) {
  .hero-aawave {
    min-height: auto;
    padding: 7rem 1.25rem 4rem;
    background-attachment: scroll;
    background-image: linear-gradient(rgba(28, 35, 49, 0.75), rgba(28, 35, 49, 0.9)), url('../../images/hero-skyline.jpg');
  }
  .hero-aawave .hero-title {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .hero-aawave .hero-desc {
    font-size: 0.95rem;
  }
}

}

.hero-aawave .hero-badge {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
}

/* Utility for smartphone specific line breaks */
.sp-br { display: none; }
@media (max-width: 768px) {
  .sp-br { display: block; }
}

/* ── Price Table ── */
.s-price-table {
  width: 100%; max-width: 900px; margin: 2rem auto 0;
  border-collapse: collapse; font-size: 0.95rem;
  background: #fff;
}
.s-price-table th, .s-price-table td {
  padding: 1.5rem; border-bottom: 1px solid rgba(191,163,126,0.2);
  vertical-align: top;
}
.s-price-table th {
  width: 35%; text-align: left; font-weight: 600;
  color: var(--gold); background: #fdfaf6;
  border-right: 1px dashed rgba(191,163,126,0.2);
}
.s-price-table td { width: 65%; color: var(--text); }
.s-price-table .price {
  display: block; font-size: 1.1rem; font-weight: 600;
  color: var(--text); margin-bottom: 0.5rem;
}
.s-price-table .note {
  display: block; font-size: 0.85rem; color: #666;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .s-price-table th, .s-price-table td { display: block; width: 100%; border-right: none; }
  .s-price-table th { border-bottom: none; padding-bottom: 0.5rem; }
  .s-price-table td { padding-top: 0; }
}

/* Global Desktop Floating Contact */
.floating-contact-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
}
.floating-contact-btn {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  border-radius: 50px;
  background: var(--dark);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  color: #fff !important;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.floating-contact-btn:hover {
  transform: translateY(-2px);
  background: var(--gold);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}
@media (max-width: 768px) {
  .floating-contact-actions {
    display: none !important; /* On mobile, we use mobile-bottom-bar instead */
  }
}
