/* ===================================
   Public Site CSS — 司法書士事務所サイト
   "Refined Authority" Design System
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap');

:root {
  /* カラーパレット（ColorPaletteで上書きされる） */
  --color-primary: #1B2A4A;
  --color-primary-light: #2C4A7C;
  --color-accent: #2C4A7C;
  --color-accent-light: #3D6BA8;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F4F6F9;
  --color-text: #1A1A2E;
  --color-text-muted: #6B7280;
  --color-border: #D1D5DB;
  --color-cta: #C8A55A;
  --color-cta-hover: #B8953A;

  /* テイストスタイル（TasteStyleで上書きされる） */
  --font-heading: 'Noto Serif JP', 'Georgia', serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --font-weight-heading: 600;
  --font-weight-body: 400;
  --border-radius-card: 8px;
  --border-radius-button: 8px;
  --shadow-card: 0 2px 8px rgba(0,0,0,0.08);
  --letter-spacing-heading: 0.02em;
  --section-padding: 80px 0;

  /* シャドウ（テイストのshadow-cardをベースに自動生成） */
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: var(--shadow-card);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 64px rgba(0,0,0,0.16);

  /* 固定値 */
  --max-width: 1140px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-body);
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 15px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ========== Scroll Animations ========== */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Header ========== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding: 0 32px;
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.site-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 76px;
  gap: 24px;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.site-logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-top: 2px;
  letter-spacing: 0.06em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin-left: auto;
}

.site-nav a {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.site-nav a:hover { color: var(--color-primary); }
.site-nav a:hover::after { width: 100%; }

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.header-phone {
  text-align: right;
  white-space: nowrap;
}

.header-phone a {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.03em;
}

.header-phone small {
  display: block;
  font-size: 10px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  color: #fff !important;
  border-radius: var(--border-radius-button);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

/* ========== Announcement ========== */

.announcement-bar {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  text-align: center;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.announcement-bar a { color: var(--color-cta); text-decoration: underline; }

/* ========== Section Base ========== */

.section {
  padding: var(--section-padding);
  position: relative;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-dark {
  background: var(--color-primary);
  color: #fff;
}

.section-heading {
  text-align: center;
  margin-bottom: 56px;
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: var(--font-weight-heading);
  color: var(--color-primary);
  margin-bottom: 12px;
  letter-spacing: var(--letter-spacing-heading);
}

.section-dark .section-heading h2 { color: #fff; }

.section-heading h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-heading p {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.7;
}

.section-dark .section-heading p { color: rgba(255,255,255,0.6); }

/* ========== Hero ========== */

.hero {
  padding: 0;
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-light) 60%, var(--color-accent) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--color-bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 28px 100px;
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 2;
}

.hero-text { flex: 1; }

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: var(--font-weight-heading);
  line-height: 1.4;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: var(--letter-spacing-heading);
}

.hero-text .sub-copy {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.9;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 17px 40px;
  background: linear-gradient(135deg, var(--color-cta) 0%, var(--color-cta-hover) 100%);
  color: #fff;
  border-radius: var(--border-radius-button);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  letter-spacing: 0.03em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  filter: brightness(1.08);
}

.sub-cta {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.sub-cta:hover { color: #fff; }

.trust-badges {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.trust-badge {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--border-radius-button);
  backdrop-filter: blur(4px);
}

.trust-badge strong {
  font-size: 18px;
  color: var(--color-cta);
  font-weight: 700;
}

.hero-image {
  flex: 1;
  max-width: 460px;
}

.hero-image img {
  width: 100%;
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-xl);
  border: 3px solid rgba(255,255,255,0.1);
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.05);
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: var(--border-radius-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  gap: 8px;
}

/* ========== Concerns ========== */

.concerns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.concern-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-card);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 14px;
  color: var(--color-text);
  text-decoration: none;
}

.concern-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.concern-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-bg-alt), var(--color-bg-alt));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}

/* ========== Features ========== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  text-align: center;
  padding: 40px 28px 36px;
  background: var(--color-bg);
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-border);
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-md);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}

.feature-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ========== Services ========== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-card);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-cta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.service-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ========== Pricing ========== */

.pricing-wrap { max-width: 920px; margin: 0 auto; }

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--color-bg);
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.pricing-table th {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-bg-alt);
  font-size: 14px;
  vertical-align: top;
}

.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tbody tr { transition: background var(--transition); }
.pricing-table tbody tr:hover { background: var(--color-bg-alt); }

.pricing-table .fee {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 15px;
  white-space: nowrap;
}

.pricing-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.8;
}

/* ========== Testimonials ========== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-stars {
  color: var(--color-cta);
  font-size: 15px;
  margin-bottom: 14px;
  letter-spacing: 3px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--color-text);
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  font-size: 12px;
  color: var(--color-text-muted);
  padding-top: 14px;
  border-top: 1px solid var(--color-bg-alt);
  font-style: normal;
}

/* ========== Flow ========== */

.flow-steps {
  display: flex;
  gap: 0;
  justify-content: center;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.flow-steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-border) 0%, var(--color-cta) 50%, var(--color-border) 100%);
  z-index: 0;
}

.flow-step {
  text-align: center;
  padding: 0 16px;
  flex: 1;
  min-width: 140px;
  position: relative;
  z-index: 1;
}

.flow-step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-md);
  border: 3px solid var(--color-bg);
}

.flow-step h3 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}

.flow-step p {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ========== About ========== */

.about-inner {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  max-width: 840px;
  margin: 0 auto;
}

.about-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-bg);
}

.about-photo-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-bg-alt), var(--color-border));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-md);
}

.about-content h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-content .about-title {
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.about-content .greeting {
  font-size: 14px;
  line-height: 2;
  color: var(--color-text-muted);
}

/* ========== FAQ ========== */

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  font-family: var(--font-body);
  line-height: 1.5;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--color-primary); }

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.faq-item.open .faq-toggle {
  background: var(--color-accent);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 4px 24px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.9;
}

.faq-item.open .faq-answer { display: block; }

/* ========== Access ========== */

.access-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 920px;
  margin: 0 auto;
}

.access-table { width: 100%; border-collapse: collapse; }

.access-table tr { border-bottom: 1px solid var(--color-bg-alt); }
.access-table tr:last-child { border-bottom: none; }

.access-table th {
  text-align: left;
  padding: 14px 14px 14px 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  width: 100px;
  vertical-align: top;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.access-table td {
  padding: 14px 0;
  font-size: 14px;
}

.access-map {
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.access-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: none;
}

.service-areas-box {
  margin-top: 24px;
  padding: 18px 20px;
  background: var(--color-bg-alt);
  border-radius: var(--border-radius-card);
  border: 1px solid var(--color-border);
}

.service-areas-box strong {
  font-size: 12px;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.service-areas-box p { font-size: 14px; }

/* ========== Contact ========== */

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact-phone {
  text-align: center;
  margin-bottom: 36px;
  padding: 40px 28px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: var(--border-radius-card);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.contact-phone p {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.contact-phone a {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  font-family: var(--font-heading);
}

.contact-phone small {
  display: block;
  font-size: 12px;
  opacity: 0.6;
  margin-top: 10px;
}

.contact-divider {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 13px;
  margin-bottom: 32px;
  position: relative;
}

.contact-divider::before,
.contact-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 36px);
  height: 1px;
  background: var(--color-border);
}
.contact-divider::before { left: 0; }
.contact-divider::after { right: 0; }

.contact-form .form-row { margin-bottom: 24px; }

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.contact-form label .required {
  color: #fff;
  background: #d94444;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--border-radius-card);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--color-text);
  min-height: 50px;
  background: var(--color-bg);
  transition: all var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px var(--color-bg-alt);
}

.contact-form textarea { min-height: 120px; resize: vertical; }

.contact-form .radio-group {
  display: flex;
  gap: 24px;
  padding: 8px 0;
}

.contact-form .radio-group label {
  font-weight: 400;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.contact-form .radio-group input[type="radio"] {
  width: auto;
  min-height: auto;
  accent-color: var(--color-accent);
}

.contact-form .submit-btn {
  display: block;
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  color: #fff;
  border: none;
  border-radius: var(--border-radius-button);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
  letter-spacing: 0.04em;
  margin-top: 12px;
}

.contact-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.contact-form-note {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.honeypot { display: none; }

/* ========== Footer ========== */

.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.7);
  padding: 56px 32px 28px;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-cta), var(--color-accent));
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-info h3 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  margin-bottom: 14px;
}

.footer-info p {
  font-size: 12px;
  line-height: 1.9;
}

.footer-nav h4 {
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 10px; }

.footer-nav a {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--color-cta); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

/* ========== Floating CTA (Mobile) ========== */

.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 62px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.floating-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.floating-cta .float-phone {
  flex: 6;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
}

.floating-cta .float-form {
  flex: 4;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
}

/* ========== Section CTA ========== */

.section-cta {
  text-align: center;
  margin-top: 48px;
  padding: 36px;
  background: var(--color-bg-alt);
  border-radius: var(--border-radius-card);
  border: 1px solid var(--color-border);
}

.section-cta .phone-line { margin-bottom: 4px; }

.section-cta .phone-line a {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.section-cta .phone-hours {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

/* ========== Powered by ========== */

.powered-by {
  text-align: right;
  margin-top: 20px;
  font-size: 11px;
  color: #bbb;
}

.powered-by a { color: #bbb; }
.powered-by a:hover { color: #888; text-decoration: underline; }

/* ========== Responsive ========== */

@media (max-width: 1024px) {
  .site-nav { display: none; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-padding: 48px 0; }
  .hero { min-height: auto; }
  .hero-inner { flex-direction: column; gap: 32px; padding: 48px 20px 80px; }
  .hero-text h1 { font-size: 26px; }
  .hero-image { max-width: 100%; }
  .header-phone { display: none; }
  .header-right { gap: 8px; }
  .concerns-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-inner { flex-direction: column; align-items: center; text-align: center; }
  .access-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .flow-steps { flex-direction: column; gap: 20px; }
  .flow-steps::before { display: none; }
  .floating-cta { display: flex; }
  body { padding-bottom: 62px; }
  .section-heading h2 { font-size: 22px; }
  .contact-phone a { font-size: 26px; }
  .pricing-table { font-size: 12px; }
  .pricing-table th, .pricing-table td { padding: 10px 10px; }
}


/* ===================================
   Business Detail Page / Breadcrumb
   =================================== */

.breadcrumb {
  background: var(--color-bg-alt, #F2F0EC);
  padding: 12px 0;
  font-size: 13px;
}
.breadcrumb .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.breadcrumb a {
  color: var(--color-primary, #1B2A4A);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep {
  margin: 0 8px;
  color: var(--color-text-muted, #5f6577);
}

.service-hero {
  padding: 60px 0 40px;
  background: var(--color-bg, #fff);
  text-align: center;
}
.service-hero h1 {
  font-family: var(--font-heading, 'Noto Serif JP', serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary, #1B2A4A);
  margin-bottom: 12px;
}
.service-hero-summary {
  font-size: 16px;
  color: var(--color-text-muted, #5f6577);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.service-detail-body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2;
}

.service-detail-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary, #1B2A4A);
  text-decoration: none;
}
.service-detail-link:hover { text-decoration: underline; }

/* Hidden utility */
.hidden { display: none !important; }
