/* === sanpai page-specific === */
.sanpai-container { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* Intro */
.intro-text { font-size: 1.05rem; line-height: 2; color: var(--gray-600); }
.intro-text strong { color: var(--orange-dark); }

/* Highlight box */
.highlight-box {
  background: var(--orange-bg); border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0; padding: 24px 28px; margin-top: 28px;
}
.highlight-box h3 { font-size: 1.1rem; font-weight: 700; color: var(--brown-dark); margin-bottom: 8px; }
.highlight-box p { font-size: 1rem; color: var(--gray-600); line-height: 1.9; }
.highlight-chips { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.highlight-chip {
  font-size: 0.85rem; font-weight: 600;
  background: var(--white); border: 1px solid rgba(237,158,54,0.3);
  padding: 5px 16px; border-radius: 50px; color: var(--brown-dark);
}

/* Service items */
.service-item {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 32px; margin-bottom: 20px;
  border: 1px solid var(--gray-200);
}
.section-alt .service-item { background: var(--white); }
.service-item h3 {
  font-size: 1.15rem; font-weight: 700;
  color: var(--brown-dark); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.service-item h3::before {
  content: ""; width: 8px; height: 8px;
  background: var(--orange); border-radius: 50%; flex-shrink: 0;
}
.service-item p { font-size: 1rem; color: var(--gray-600); line-height: 1.9; }
.service-detail {
  margin-top: 12px; padding: 16px 20px;
  background: var(--gray-50); border-radius: 8px;
  font-size: 0.95rem; color: var(--gray-600);
}
.service-detail ul { list-style: none; }
.service-detail li { padding-left: 16px; position: relative; line-height: 2; }
.service-detail li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 6px; height: 6px; background: var(--orange);
  border-radius: 50%; opacity: 0.5;
}

/* Permits */
.permit-block { margin-bottom: 36px; }
.permit-block:last-child { margin-bottom: 0; }
.permit-label {
  font-size: 1.1rem; font-weight: 700; color: var(--brown-dark);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.permit-label::before {
  content: ""; width: 4px; height: 22px;
  background: var(--orange); border-radius: 2px;
}
.permit-table-wrap {
  overflow-x: auto; border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.permit-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.9rem; min-width: 600px; background: var(--white);
}
.permit-table thead th {
  background: var(--brown-dark); color: var(--white);
  font-weight: 600; padding: 14px 16px; text-align: left;
  font-size: 0.82rem; letter-spacing: 0.05em;
}
.permit-table tbody td {
  padding: 16px; border-bottom: 1px solid var(--gray-200);
  line-height: 1.7;
}
.permit-table tbody tr:last-child td { border-bottom: none; }
.permit-table tbody tr:hover { background: var(--orange-bg); }
.permit-area { font-weight: 700; color: var(--brown-dark); }
.permit-badge {
  display: inline-block; background: var(--orange);
  color: var(--white); font-size: 0.68rem; font-weight: 700;
  padding: 2px 10px; border-radius: 4px; margin-left: 6px;
}

/* Section alt */
.section-alt { background: var(--gray-50); }
