/* =============================================
   松本市遺品整理ガイド - style.css
   White + Navy + Orange theme / Mobile-first
   ============================================= */

/* ── CSS Custom Properties ── */
:root {
  --navy: #1a2744;
  --navy-light: #233260;
  --navy-dark: #0f1a30;
  --orange: #f07c22;
  --orange-hover: #d96c14;
  --orange-light: #fff5ec;
  --red: #d93025;
  --red-light: #fef2f2;
  --green: #1e7e34;
  --green-light: #f0fdf4;
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #f0f2f5;
  --gray-200: #e4e7ed;
  --gray-400: #6b7a94;
  --gray-600: #5a6478;
  --gray-800: #2d3748;
  --text: #1e2432;
  --text-light: #5a6478;
  --border: #dde2ec;
  --shadow-sm: 0 2px 8px rgba(26,39,68,0.08);
  --shadow-md: 0 6px 24px rgba(26,39,68,0.12);
  --shadow-lg: 0 16px 48px rgba(26,39,68,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.22s ease;
  --font-serif: 'Noto Serif JP', Georgia, serif;
  --font-sans: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }
strong { font-weight: 700; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Section Headers ── */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}
.section-header--light h2 { color: var(--white); }
.section-lead {
  color: var(--gray-600);
  font-size: 0.97rem;
  max-width: 640px;
  margin: 0 auto;
}
.section-header--light .section-lead { color: rgba(255,255,255,0.8); }

/* ── Buttons ── */
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(240,124,34,0.4);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-cta-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,124,34,0.5);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--navy) !important;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  border: 2.5px solid var(--navy);
  transition: all var(--transition);
}
.btn-cta-secondary:hover {
  background: var(--navy);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.btn-icon { font-size: 1.1rem; }

/* ── Site Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-bottom: 2px solid var(--navy);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.logo a {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--navy) !important;
}
.logo a span { color: var(--orange); }

.header-nav { display: none; }
.header-nav ul { display: flex; list-style: none; gap: 1.5rem; }
.header-nav a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}
.header-nav a:hover { color: var(--orange); }

.btn-header-cta {
  display: inline-block;
  background: var(--orange);
  color: var(--white) !important;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  white-space: nowrap;
}
.btn-header-cta:hover { background: var(--orange-hover); }

@media (min-width: 768px) {
  .header-nav { display: block; }
}

/* ── Breadcrumb ── */
.breadcrumb {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}
.breadcrumb ol {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray-600);
  flex-wrap: wrap;
}
.breadcrumb li + li::before { content: '>'; margin-right: 0.5rem; }
.breadcrumb a { color: var(--gray-600); }
.breadcrumb a:hover { color: var(--orange); }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0 4.5rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240,124,34,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content { position: relative; z-index: 1; max-width: 700px; }

.hero-badge {
  display: inline-block;
  background: rgba(240,124,34,0.2);
  border: 1.5px solid var(--orange);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}
.hero-h1 span { color: rgba(255,255,255,0.8); font-size: 0.85em; }

.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.hero-sub strong { color: #ffc46b; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-trust span {
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 500;
}

/* ── Stats Section ── */
.stats-section {
  background: var(--white);
  padding: 5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.stat-card--orange { background: var(--orange-light); border: 1.5px solid rgba(240,124,34,0.3); }
.stat-card--orange::before { background: var(--orange); }

.stat-card--navy { background: #f0f3fb; border: 1.5px solid rgba(26,39,68,0.15); }
.stat-card--navy::before { background: var(--navy); }

.stat-card--red { background: var(--red-light); border: 1.5px solid rgba(217,48,37,0.2); }
.stat-card--red::before { background: var(--red); }

.stat-card--green { background: var(--green-light); border: 1.5px solid rgba(30,126,52,0.2); }
.stat-card--green::before { background: var(--green); }

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-card--orange .stat-number { color: var(--orange); }
.stat-card--red .stat-number { color: var(--red); }
.stat-card--green .stat-number { color: var(--green); }

.stat-unit {
  font-size: 0.55em;
  font-weight: 700;
  vertical-align: super;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.stat-note {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Bar Chart */
.stats-bar-chart {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
}

.chart-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.bar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.bar-item:last-child { margin-bottom: 0; }

.bar-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  min-width: 140px;
  flex-shrink: 0;
}

.bar-wrap {
  flex: 1;
  background: var(--gray-200);
  border-radius: 50px;
  height: 28px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
  border-radius: 50px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.bar-fill--secondary {
  background: linear-gradient(90deg, var(--orange), #f4a55c);
}

.bar-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  min-width: 60px;
  text-align: right;
}

.stats-source {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-top: 1.5rem;
}

/* ── Price Section ── */
.price-section {
  background: var(--gray-50);
  padding: 5rem 0;
}

.table-subtitle {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--orange);
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.price-table, .compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.92rem;
  min-width: 520px;
}

.price-table caption, .compare-table caption {
  caption-side: top;
  font-size: 0.78rem;
  color: var(--gray-600);
  text-align: left;
  padding: 0.5rem 0.75rem;
  background: var(--gray-100);
  border-radius: var(--radius) var(--radius) 0 0;
}

.price-table th, .compare-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  padding: 0.85rem 1rem;
  text-align: left;
  font-size: 0.88rem;
}

.price-table td, .compare-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.price-table tr:last-child td, .compare-table tr:last-child td {
  border-bottom: none;
}

.price-table tr:nth-child(even) { background: var(--gray-50); }

.price-highlight {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}

.compare-table .good-col { color: #1e7e34; font-weight: 600; }
.compare-table .bad-col { color: var(--red); font-weight: 600; }
.compare-table thead .good-col { color: #6ee897; }
.compare-table thead .bad-col { color: #f88080; }

/* Responsive table */
@media (max-width: 600px) {
  .table-wrap { border-radius: 0; margin: 0 -1.25rem; }
  .price-table, .compare-table { min-width: unset; font-size: 0.82rem; }
  .price-table thead, .compare-table thead { display: none; }
  .price-table tr, .compare-table tr {
    display: block;
    border-bottom: 2px solid var(--border);
    padding: 0.75rem 0;
  }
  .price-table td, .compare-table td {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    border-bottom: 1px dotted var(--border);
    padding: 0.5rem 1rem;
  }
  .price-table td::before, .compare-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--navy);
    min-width: 80px;
    flex-shrink: 0;
    font-size: 0.78rem;
  }
}

.price-options {
  margin-top: 2.5rem;
}
.price-options h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.option-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.option-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.option-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.option-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.5rem; }
.option-price { font-weight: 700; color: var(--orange); font-size: 0.95rem; }

.price-cta {
  margin-top: 2.5rem;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
}
.price-cta p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 1.25rem; }

/* ── Trouble Section ── */
.trouble-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 5rem 0;
}

.trouble-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .trouble-grid { grid-template-columns: repeat(2, 1fr); }
}

.trouble-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: background var(--transition);
}
.trouble-card:hover { background: rgba(255,255,255,0.1); }

.trouble-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }

.trouble-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: #ffc46b;
  margin-bottom: 0.75rem;
}

.trouble-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.trouble-card strong { color: #f9c784; }

.trouble-check {
  background: rgba(240,124,34,0.15);
  border-left: 3px solid var(--orange);
  padding: 0.5rem 0.75rem;
  border-radius: 0 6px 6px 0;
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 600;
}

.permit-box {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(240,124,34,0.5);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
}

.permit-box h3 {
  font-family: var(--font-serif);
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.permit-box ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}
@media (min-width: 560px) {
  .permit-box ul { grid-template-columns: repeat(2, 1fr); }
}

.permit-box li {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
}

/* ── Local Rules ── */
.local-rules {
  background: var(--white);
  padding: 5rem 0;
}

.rules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .rules-grid { grid-template-columns: repeat(2, 1fr); }
}

.rule-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.rule-card--blue {
  background: #f0f4ff;
  border: 2px solid rgba(26,39,68,0.15);
}
.rule-card--orange {
  background: var(--orange-light);
  border: 2px solid rgba(240,124,34,0.3);
}

.rule-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.rule-content p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1rem;
}

.rule-example {
  background: var(--white);
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
  border: 1px solid var(--border);
}

.rule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px dotted var(--border);
  font-size: 0.88rem;
}
.rule-item:last-child { border-bottom: none; }
.rule-item strong { color: var(--orange); font-size: 1rem; }

.rule-note {
  font-size: 0.78rem !important;
  color: var(--gray-600) !important;
  font-style: italic;
}

.subsidy-highlight {
  text-align: center;
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px dashed var(--orange);
}

.subsidy-amount {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
}
.subsidy-amount span {
  font-size: 2.5rem;
  color: var(--orange);
  font-weight: 900;
}

.subsidy-label {
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-top: 0.25rem;
}

.subsidy-list {
  list-style: none;
  padding: 0;
}
.subsidy-list li {
  font-size: 0.88rem;
  padding: 0.4rem 0;
  border-bottom: 1px dotted var(--border);
  color: var(--text);
}
.subsidy-list li strong { color: var(--orange); }

/* Tax Warning */
.tax-warning {
  background: var(--red-light);
  border: 2px solid rgba(217,48,37,0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.tax-warning-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  margin-top: -0.25rem;
}

.tax-warning-content h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.tax-warning-content p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.tax-warning-content strong { color: var(--red); }

.btn-warning-cta {
  display: inline-block;
  background: var(--red);
  color: var(--white) !important;
  font-weight: 700;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  transition: background var(--transition);
}
.btn-warning-cta:hover { background: #b82419; }

/* ── Anxiety / Flow Section ── */
.anxiety-section {
  background: linear-gradient(180deg, var(--navy) 0%, #192240 100%);
  padding: 5rem 0;
}

.flow-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.flow-step {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.6;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.step-content h3 {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.flow-arrow {
  font-size: 1.5rem;
  color: var(--orange);
  align-self: center;
  flex-shrink: 0;
  display: none;
}
@media (min-width: 768px) { .flow-arrow { display: block; } }

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .reassurance-grid { grid-template-columns: repeat(4, 1fr); }
}

.reassurance-item {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  border: 1.5px solid rgba(255,255,255,0.1);
}

.reassurance-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.reassurance-item h3 {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.reassurance-item p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ── Compare Section ── */
.compare-section {
  background: var(--gray-50);
  padding: 5rem 0;
}

.compare-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── FAQ Section ── */
.faq-section {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 5rem 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.06); }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--orange);
  flex-shrink: 0;
  font-weight: 300;
  transition: transform var(--transition);
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-item[open] .faq-question {
  background: rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question::-webkit-details-marker { display: none; }

.faq-answer {
  padding: 1.25rem 1.5rem;
}
.faq-answer p {
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  line-height: 1.75;
}
.faq-answer strong { color: #ffc46b; }

/* ── Articles Section ── */
.articles-section {
  background: var(--white);
  padding: 5rem 0;
}

.article-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
}

@media (min-width: 640px) {
  .article-list { grid-template-columns: repeat(2, 1fr); }
}

.article-list li {
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.article-list li:last-child { border-bottom: none; }

.article-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  transition: background var(--transition), color var(--transition);
  line-height: 1.45;
}

.article-list a::before {
  content: '→';
  color: var(--orange);
  flex-shrink: 0;
  font-weight: 700;
}

.article-list a:hover {
  background: var(--orange-light);
  color: var(--navy);
}

/* ── CV Section ── */
.cv-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #2a3d6e 100%);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.cv-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240,124,34,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cv-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.urgency-badge {
  display: inline-block;
  background: rgba(217,48,37,0.2);
  border: 1.5px solid rgba(217,48,37,0.5);
  color: #ffb0b0;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.cv-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 1.25rem;
}

.cv-sub {
  color: rgba(255,255,255,0.9);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.cv-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2.5rem;
}

.cv-feature {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.cv-feature span { color: #4ade80; font-size: 1rem; }

.cv-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 560px) {
  .cv-buttons { flex-direction: row; justify-content: center; }
}

.btn-cv-main {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1.25rem 2.5rem;
  border-radius: var(--radius);
  box-shadow: 0 6px 28px rgba(240,124,34,0.5);
  transition: all var(--transition);
  min-width: 240px;
}
.btn-cv-main:hover {
  background: var(--orange-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(240,124,34,0.6);
}

.btn-cv-tel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  color: var(--white) !important;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.15rem 2rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.5);
  transition: all var(--transition);
  min-width: 220px;
}
.btn-cv-tel:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
}

.btn-sub {
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 0.2rem;
}

/* ── PR Badge（ステマ規制対応）── */
.pr-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.85rem;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  line-height: 1;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.cv-note {
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  margin-top: 1.5rem;
}

/* ── Site Footer ── */
.site-footer {
  background: var(--navy-dark);
  padding: 3.5rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 200px 1fr 1fr; }
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
}

.footer-desc p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-nav a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.70);
}
.footer-nav a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

/* ── Utility & Accessibility ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--orange);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 9999;
  font-weight: 700;
}
.skip-link:focus { top: 0; }

/* Print */
@media print {
  .site-header, .hero-ctas, .cv-buttons, .btn-header-cta { display: none; }
  body { font-size: 12pt; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: 0.8em; color: #666; }
}

/* =============================================
   ステマ規制対応 / 広告表示スタイル
   景品表示法第5条3号（2023年10月施行）対応
   ============================================= */

/* 広告セクション上部ラベル */
.ad-disclosure {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fffbe6;
  border: 1.5px solid #f0c040;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 0.55rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #7a5c00;
  margin-top: 3rem;
  margin-bottom: 0;
}
.ad-disclosure::before {
  content: '広告';
  display: inline-block;
  background: #f0c040;
  color: #7a5c00;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 0.1rem 0.5rem;
  border-radius: 3px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
/* 広告ラベルに続くcv-sectionの上角を消す */
.ad-disclosure + .cv-section {
  margin-top: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* ============================================================
   CV案件別カラーバリアント
   ============================================================ */

/* ── 遺品整理（グリーン系）── */
.cv-section--ihin {
  background: linear-gradient(135deg, #0d2818 0%, #145a2a 60%, #1e7e34 100%);
}
.cv-section--ihin .urgency-badge {
  background: rgba(30,126,52,0.25);
  border-color: rgba(30,126,52,0.55);
  color: #90edb0;
}
.cv-section--ihin .btn-cv-main {
  background: #1e7e34;
  box-shadow: 0 6px 28px rgba(30,126,52,0.5);
}
.cv-section--ihin .btn-cv-main:hover {
  background: #176b2b;
  box-shadow: 0 10px 36px rgba(30,126,52,0.6);
}
.cv-section--ihin .cv-feature span { color: #90edb0; }
.cv-section--ihin .cv-empathy-text strong { color: #90edb0; }
.cv-section--ihin .cv-empathy-list li::before { color: #90edb0; }
.cv-section--ihin::before {
  background: radial-gradient(circle, rgba(30,126,52,0.15) 0%, transparent 70%);
}

/* ── 不動産売却（ブルー系）── */
.cv-section--baikyaku {
  background: linear-gradient(135deg, #0a1e3d 0%, #13426e 60%, #1a5276 100%);
}
.cv-section--baikyaku .urgency-badge {
  background: rgba(26,115,232,0.2);
  border-color: rgba(26,115,232,0.5);
  color: #90caf9;
}
.cv-section--baikyaku .btn-cv-main {
  background: #1a73e8;
  box-shadow: 0 6px 28px rgba(26,115,232,0.5);
}
.cv-section--baikyaku .btn-cv-main:hover {
  background: #1565c0;
  box-shadow: 0 10px 36px rgba(26,115,232,0.6);
}
.cv-section--baikyaku .cv-feature span { color: #90caf9; }
.cv-section--baikyaku .cv-empathy-text strong { color: #90caf9; }
.cv-section--baikyaku .cv-empathy-list li::before { color: #90caf9; }
.cv-section--baikyaku::before {
  background: radial-gradient(circle, rgba(26,115,232,0.12) 0%, transparent 70%);
}

/* ── 訳あり物件（オレンジ系）── */
.cv-section--wakeari {
  background: linear-gradient(135deg, #3e1a00 0%, #8a3a00 60%, #c45100 100%);
}
.cv-section--wakeari .urgency-badge {
  background: rgba(224,101,0,0.25);
  border-color: rgba(224,101,0,0.55);
  color: #ffc580;
}
.cv-section--wakeari .btn-cv-main {
  background: #e06500;
  box-shadow: 0 6px 28px rgba(224,101,0,0.5);
}
.cv-section--wakeari .btn-cv-main:hover {
  background: #c45100;
  box-shadow: 0 10px 36px rgba(224,101,0,0.6);
}
.cv-section--wakeari .cv-feature span { color: #ffc580; }
.cv-section--wakeari .cv-empathy-text strong { color: #ffc580; }
.cv-section--wakeari .cv-empathy-list li::before { color: #ffc580; }
.cv-section--wakeari::before {
  background: radial-gradient(circle, rgba(224,101,0,0.15) 0%, transparent 70%);
}
/* ── 解体（レッド系）── */
.cv-section--kaitai {
  background: linear-gradient(135deg, #2d0a0a 0%, #6b1a1a 60%, #8b2020 100%);
}
.cv-section--kaitai .urgency-badge {
  background: rgba(180,30,30,0.25);
  border-color: rgba(180,30,30,0.55);
  color: #f5a0a0;
}
.cv-section--kaitai .btn-cv-main {
  background: #b41e1e;
  box-shadow: 0 6px 28px rgba(180,30,30,0.5);
}
.cv-section--kaitai .btn-cv-main:hover {
  background: #9a1818;
  box-shadow: 0 10px 36px rgba(180,30,30,0.6);
}
.cv-section--kaitai .cv-feature span { color: #f5a0a0; }
.cv-section--kaitai .cv-empathy-text strong { color: #f5a0a0; }
.cv-section--kaitai .cv-empathy-list li::before { color: #f5a0a0; }
.cv-section--kaitai::before {
  background: radial-gradient(circle, rgba(180,30,30,0.15) 0%, transparent 70%);
}


/* ── フローティングCTAバリアント ── */
@media (max-width: 767px) {
  .floating-cta--ihin { border-top-color: #1e7e34; }
  .floating-cta--ihin .floating-cta__btn { background: #1e7e34; }
  .floating-cta--ihin .floating-cta__btn:hover { background: #176b2b; }

  .floating-cta--baikyaku { border-top-color: #1a73e8; }
  .floating-cta--baikyaku .floating-cta__btn { background: #1a73e8; }
  .floating-cta--baikyaku .floating-cta__btn:hover { background: #1565c0; }

  .floating-cta--wakeari { border-top-color: #e06500; }
  .floating-cta--wakeari .floating-cta__btn { background: #e06500; }
  .floating-cta--wakeari .floating-cta__btn:hover { background: #c45100; }

  .floating-cta--kaitai { border-top-color: #b41e1e; }
  .floating-cta--kaitai .floating-cta__btn { background: #b41e1e; }
  .floating-cta--kaitai .floating-cta__btn:hover { background: #9a1818; }
}

/* ── ヘッダーCTAバリアント ── */
.btn-header-cta--ihin { background: #1e7e34; }
.btn-header-cta--ihin:hover { background: #176b2b; }
.btn-header-cta--baikyaku { background: #1a73e8; }
.btn-header-cta--baikyaku:hover { background: #1565c0; }
.btn-header-cta--wakeari { background: #e06500; }
.btn-header-cta--wakeari:hover { background: #c45100; }
.btn-header-cta--kaitai { background: #b41e1e; }
.btn-header-cta--kaitai:hover { background: #9a1818; }

/* ── 複数CVセクション間のスペーシング ── */
.cv-section + .ad-disclosure { margin-top: 0; }
.cv-section + .ad-disclosure + .cv-section { border-top: 1px solid rgba(255,255,255,0.1); }

/* インライン記事内CTAの広告ラベル */
.ad-disclosure-inline {
  font-size: 0.72rem;
  font-weight: 700;
  color: #7a5c00;
  background: #fffbe6;
  border: 1px solid #f0c040;
  border-radius: 4px;
  padding: 0.15rem 0.55rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

/* 業者一覧の広告バナー */
.vendor-ad-label {
  background: #fffbe6;
  border: 1.5px solid #f0c040;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.83rem;
  color: #5a4400;
  line-height: 1.7;
}
.vendor-ad-label strong {
  color: #7a5c00;
}

/* フッター開示文 */
.footer-ad-disclosure {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 1.5rem;
  padding-top: 1.25rem;
}
.footer-ad-disclosure p {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  margin-bottom: 0.4rem;
}
.footer-ad-disclosure p:last-child {
  margin-bottom: 0;
}

/* =============================================
   CV改善・感情訴求追加スタイル
   ============================================= */

/* ── ヒーロー：課題リスト ── */
.hero-concerns {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 1.25rem 0 1.5rem;
}
.hero-concern-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  line-height: 1.6;
}
.hero-concern-item::before {
  content: '…';
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.hero-concern-item strong { color: #ffc46b; }

/* ── 運営者ブロック ── */
.operator-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.operator-inner {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  max-width: 760px;
}
.operator-avatar {
  width: 52px;
  height: 52px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.operator-body { flex: 1; }
.operator-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}
.operator-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 0.6rem;
}
.operator-text strong { color: var(--navy); }
.operator-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.operator-link:hover { color: var(--orange); }

/* ── CV共感ブロック ── */
.cv-empathy {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
  text-align: left;
}
.cv-empathy-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.85rem;
}
.cv-empathy-text strong {
  color: #ffc46b;
  font-size: 1.15em;
}
.cv-empathy-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.cv-empathy-list li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  padding-left: 1.2rem;
  position: relative;
}
.cv-empathy-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}
.cv-empathy-reason {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-style: italic;
  margin: 0;
}

/* ── 記事一覧：注目リンク ── */
.article-list-featured {
  font-weight: 700 !important;
  color: var(--orange) !important;
}
.article-list-featured::before {
  content: '★' !important;
  color: var(--orange) !important;
}

/* ============================================================
   スマホ追従CTA
   ============================================================ */
.floating-cta {
  display: none; /* PCは非表示 */
}

@media (max-width: 767px) {
  .floating-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(15, 30, 56, 0.97);
    backdrop-filter: blur(6px);
    box-shadow: 0 -3px 16px rgba(0,0,0,0.22);
    border-top: 2px solid var(--orange);
  }

  .floating-cta__inner {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    max-width: 480px;
    margin: 0 auto;
  }

  .floating-cta__btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: var(--white) !important;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.3;
    padding: 0.7rem 0.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    min-height: 52px;
    transition: background 0.15s;
  }
  .floating-cta__btn:hover { background: var(--orange-hover); }

  .floating-cta__btn--sub {
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.88;
    margin-top: 0.15rem;
  }

  .floating-cta__btn--secondary {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.35);
    color: var(--white) !important;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.7rem 0.65rem;
    border-radius: var(--radius);
    min-height: 52px;
    flex: 0 0 auto;
    white-space: nowrap;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.15s;
  }
  .floating-cta__btn--secondary:hover {
    background: rgba(255,255,255,0.1);
  }

  /* 追従CTAぶんの余白を本文下部に確保 */
  body { padding-bottom: 80px; }
}

/* 印刷・スクリーンリーダー対応 */
@media print {
  .floating-cta { display: none !important; }
}

/* ============================================================
   ハンバーガーメニュー
   ============================================================ */

/* ── トグルボタン（スマホのみ表示）── */
.nav-toggle {
  display: none;
}

@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius);
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
  }

  /* 3本線（CSSで描画） */
  .nav-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
  }

  /* 開いた状態 → × */
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* btn-header-ctaはスマホでは非表示（追従CTAに委譲） */
  .btn-header-cta { display: none; }

  /* ── ドロワーメニュー ── */
  .header-nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(80vw, 300px);
    background: var(--white);
    box-shadow: -4px 0 24px rgba(0,0,0,0.18);
    z-index: 9000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 5rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .header-nav.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .header-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .header-nav li {
    border-bottom: 1px solid var(--border);
  }

  .header-nav a {
    display: block;
    padding: 1rem 0.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(240,124,34,0.15);
  }

  .header-nav a:hover { color: var(--orange); }

  /* オーバーレイ */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 8999;
    pointer-events: none;
  }
  .nav-overlay.is-open {
    display: block;
    pointer-events: auto;
  }

  /* メニュー開いている間はbodyスクロール禁止 */
  body.nav-is-open {
    overflow: hidden;
  }
}

/* ── テキストリンクの矢印（CSSで描画） ── */
.area-link::after,
.cost-tab::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  margin-left: 0.45em;
  vertical-align: middle;
  flex-shrink: 0;
}

/* cross-card の矢印はすでに ::after で → 指定のものを上書き */
.cross-card a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  margin-left: 0.45em;
  vertical-align: middle;
}

/* index.html CTAカードの矢印 */
.matsumoto-cta-card::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2.5px solid #fff;
  border-right: 2.5px solid #fff;
  transform: rotate(45deg);
  margin-left: 0.5em;
  vertical-align: middle;
  flex-shrink: 0;
}

:focus-visible {
  outline: 2px solid #1a73e8;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

nav a, .footer a, .footer-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer a {
  padding: 12px 8px;
}

