/* =============================================
   カラーパレット（シミ取り専用）
   ============================================= */
:root {
  /* メインカラー（ピンク系） */
  --shimi-primary: #ff6b9d;
  --shimi-primary-dark: #ff3d7f;
  --shimi-primary-light: #ffb3d1;
  --shimi-primary-pale: #fff5f9;
  
  /* アクセントカラー（パープル系） */
  --shimi-accent: #764ba2;
  --shimi-accent-dark: #5c3a7f;
  --shimi-accent-light: #e8d5f2;
  
  /* セカンダリカラー */
  --shimi-secondary: #4caf50;
  --shimi-secondary-dark: #388e3c;
  
  /* グラデーション */
  --shimi-gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --shimi-gradient-accent: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
  
  /* エラボトックス互換変数 */
  --ela-bg-white: #ffffff;
  --ela-bg-gray: #f5f5f5;
  --ela-bg-light: #fafafa;
  --ela-text-primary: #333333;
  --ela-text-secondary: #666666;
  --ela-text-light: #999999;
  --ela-text-white: #ffffff;
  --ela-border: #e0e0e0;
  --ela-border-light: #f0f0f0;
  --ela-primary: #667eea;
  --ela-accent: #ff9800;
  --ela-radius-sm: 4px;
  --ela-radius-md: 8px;
  --ela-radius-lg: 12px;
  --ela-radius-xl: 16px;
  --ela-shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --ela-shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --ela-shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
  --ela-transition: all 0.3s ease;
}

/* =============================================
   コンテナ
   ============================================= */
.shimi-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* =============================================
   パンくずリスト
   ============================================= */
.shimi-breadcrumbs {
  background: var(--ela-bg-white);
  border-radius: var(--ela-radius-md);
  padding: 15px 20px;
  margin-bottom: 20px;
  box-shadow: var(--ela-shadow-sm);
  border: 1px solid var(--ela-border-light);
}

.shimi-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.shimi-breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ela-text-secondary);
}

.shimi-breadcrumb-item a {
  color: var(--shimi-primary);
  text-decoration: none;
  transition: var(--ela-transition);
}

.shimi-breadcrumb-item a:hover {
  color: var(--shimi-primary-dark);
  text-decoration: underline;
}

.shimi-breadcrumb-item[aria-current="page"] {
  color: var(--ela-text-primary);
  font-weight: 600;
}

.shimi-breadcrumb-item .separator {
  color: var(--ela-text-light);
  user-select: none;
}

/* =============================================
   ページヘッダー - 完全リニューアル
   ============================================= */
.shimi-page-header {
  background: linear-gradient(135deg, #fff0f6 0%, #ffffff 100%);
  border: 3px solid var(--shimi-primary-light);
  border-radius: 20px;
  padding: 50px 40px;
  margin-bottom: 35px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(255,107,157,0.12);
}

.shimi-page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,107,157,0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.shimi-page-header::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -8%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(118,75,162,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.shimi-ad-notice {
  display: inline-block;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  color: #666;
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 15px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
  border: 1px solid #d0d0d0;
}

.shimi-page-subtitle {
  margin-bottom: 18px;
}

.shimi-update-date {
  display: inline-block;
  color: var(--shimi-accent);
  font-size: 15px;
  font-weight: 700;
  padding: 8px 20px;
  background: var(--shimi-accent-light);
  border-radius: 25px;
  box-shadow: 0 2px 8px rgba(118,75,162,0.15);
  border: 2px solid rgba(118,75,162,0.2);
}

.shimi-page-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--ela-text-primary);
  line-height: 1.4;
  margin: 0 0 25px 0;
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}

.shimi-page-title .sp-only {
  display: none;
}

.shimi-page-description {
  font-size: 17px;
  line-height: 1.9;
  color: var(--ela-text-secondary);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

.shimi-page-description p {
  margin: 0;
}

/* =============================================
   結果カウント
   ============================================= */
.shimi-result-count {
  font-size: 15px;
  color: var(--ela-text-secondary);
  margin-bottom: 25px;
  padding: 12px 20px;
  background: var(--ela-bg-gray);
  border-radius: var(--ela-radius-md);
  border-left: 4px solid var(--shimi-primary);
}

.shimi-result-count strong {
  color: var(--shimi-primary);
  font-weight: 700;
}

/* =============================================
   比較表セクション - 完全リニューアル
   ============================================= */
.shimi-comparison-section {
  background: var(--ela-bg-white);
  border-radius: var(--ela-radius-xl);
  padding: 50px 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 2px solid var(--ela-border-light);
}

.shimi-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 30px;
  font-weight: 800;
  color: var(--ela-text-primary);
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 4px solid var(--shimi-primary);
  position: relative;
}

.shimi-section-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 120px;
  height: 4px;
  background: var(--shimi-accent);
  border-radius: 2px;
}

.shimi-section-title .section-icon {
  font-size: 36px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.shimi-comparison-wrapper {
  margin: 30px 0;
}

.shimi-comparison-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 15px;
  border-radius: var(--ela-radius-lg);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.shimi-comparison-table {
  width: 100%;
  min-width: 900px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--ela-bg-white);
  border-radius: var(--ela-radius-lg);
  overflow: hidden;
  border: 2px solid var(--ela-border);
}

.shimi-comparison-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.comparison-header-row {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.comparison-header-label {
  color: var(--ela-text-white);
  font-weight: 700;
  font-size: 16px;
  padding: 24px 20px;
  text-align: center;
  width: 140px;
  min-width: 140px;
  border-right: 2px solid rgba(255,255,255,0.2);
  vertical-align: middle;
}

.comparison-header-clinic {
  color: var(--ela-text-white);
  font-weight: 700;
  padding: 24px 20px;
  text-align: center;
  min-width: 230px;
  border-right: 2px solid rgba(255,255,255,0.2);
  vertical-align: middle;
}

.comparison-header-clinic:last-child {
  border-right: none;
}

.comparison-clinic-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border: 2px solid rgba(255,255,255,0.5);
}

.clinic-name {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
}

.comparison-row {
  border-bottom: 1px solid var(--ela-border-light);
  transition: background-color 0.2s ease;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row:nth-child(even) {
  background: #fafbfc;
}

.comparison-row:hover {
  background: #f5f8fa;
}

.comparison-label {
  padding: 24px 20px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ela-text-primary);
  width: 140px;
  min-width: 140px;
  text-align: center;
  border-right: 1px solid var(--ela-border-light);
  background: linear-gradient(90deg, #f8f9fa 0%, #ffffff 100%);
}

.label-icon {
  margin-right: 6px;
  font-size: 16px;
}

.comparison-value {
  padding: 24px 20px;
  text-align: center;
  color: var(--ela-text-secondary);
  min-width: 230px;
  border-right: 1px solid var(--ela-border-light);
  vertical-align: middle;
}

.comparison-value:last-child {
  border-right: none;
}

.comparison-value.rank-1 {
  background: linear-gradient(135deg, #fff5f9 0%, #ffffff 100%);
  position: relative;
}

.comparison-value.rank-1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--shimi-gradient-accent);
}

.price-value {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--shimi-primary);
  line-height: 1.2;
  margin-bottom: 4px;
}

.machine-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ela-text-primary);
  line-height: 1.4;
}

.houdai-badge {
  display: inline-block;
  background: var(--shimi-gradient-accent);
  color: var(--ela-text-white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  box-shadow: 0 2px 6px rgba(255,107,157,0.3);
}

.houdai-price {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ela-text-secondary);
  margin-top: 6px;
}

.no-data {
  color: var(--ela-text-light);
  font-size: 16px;
}

.btn-official,
.btn-detail {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  white-space: nowrap;
}

.btn-official {
  background: var(--shimi-gradient-accent);
  color: var(--ela-text-white);
  box-shadow: 0 4px 12px rgba(255,107,157,0.3);
  border: none;
}

.btn-official:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,107,157,0.4);
  text-decoration: none;
  color: var(--ela-text-white);
}

.btn-detail {
  background: var(--ela-bg-white);
  color: var(--shimi-primary);
  border: 2px solid var(--shimi-primary);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.btn-detail:hover {
  background: var(--shimi-primary-pale);
  border-color: var(--shimi-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,107,157,0.2);
  text-decoration: none;
  color: var(--shimi-primary-dark);
}

.scroll-hint {
  text-align: center;
  font-size: 13px;
  color: var(--ela-text-light);
  margin-top: 15px;
  font-weight: 600;
  padding: 8px;
  background: var(--ela-bg-light);
  border-radius: var(--ela-radius-md);
}

/* =============================================
   目次（TOC）- 完全リニューアル
   ============================================= */
.shimi-toc {
  background: linear-gradient(135deg, #e8f4fd 0%, #f3e5f5 100%);
  border: 3px solid var(--ela-primary);
  border-radius: 20px;
  padding: 35px;
  margin-bottom: 45px;
  box-shadow: 0 6px 20px rgba(102,126,234,0.12);
  position: relative;
  overflow: hidden;
}

.shimi-toc::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(102,126,234,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.shimi-toc-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--ela-text-primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.shimi-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc-counter;
  position: relative;
  z-index: 1;
}

.shimi-toc-list li {
  counter-increment: toc-counter;
  margin-bottom: 14px;
  padding-left: 35px;
  position: relative;
}

.shimi-toc-list li:last-child {
  margin-bottom: 0;
}

.shimi-toc-list li::before {
  content: counter(toc-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background: var(--shimi-gradient-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 2px 6px rgba(255,107,157,0.3);
}

.shimi-toc-list a {
  color: var(--ela-text-primary);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-block;
}

.shimi-toc-list a:hover {
  color: var(--shimi-primary);
  text-decoration: underline;
  transform: translateX(6px);
}

/* =============================================
   クリニック一覧セクション
   ============================================= */
.shimi-clinics-section {
  margin-bottom: 60px;
}

.shimi-no-results {
  background: var(--ela-bg-gray);
  border-radius: var(--ela-radius-lg);
  padding: 60px 30px;
  text-align: center;
  color: var(--ela-text-secondary);
  font-size: 16px;
}

/* =============================================
   クリニックカード - 完全リニューアル
   ============================================= */
.clinic-card {
  background: var(--ela-bg-white);
  border: 2px solid var(--ela-border);
  border-radius: var(--ela-radius-xl);
  padding: 35px;
  margin-bottom: 35px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  position: relative;
  overflow: visible;
}

.clinic-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  transform: translateY(-6px);
  border-color: var(--shimi-primary-light);
}

.clinic-card.is-recommended {
  border-color: var(--shimi-primary);
  border-width: 3px;
  background: linear-gradient(135deg, var(--ela-bg-white) 0%, #fff8fb 100%);
  box-shadow: 0 6px 24px rgba(255,107,157,0.15);
}

.clinic-card.is-recommended:hover {
  box-shadow: 0 12px 36px rgba(255,107,157,0.25);
}

.clinic-card-badge {
  position: absolute;
  top: -16px;
  right: 30px;
  z-index: 10;
}

.badge-recommended {
  display: inline-block;
  background: var(--shimi-gradient-accent);
  color: var(--ela-text-white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(255,107,157,0.4);
  animation: float 3s ease-in-out infinite;
  border: 2px solid rgba(255,255,255,0.5);
}

.clinic-card-header {
  margin-bottom: 25px;
}

.clinic-card-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--ela-text-primary);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  line-height: 1.3;
}

.clinic-number {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--shimi-gradient-primary);
  color: var(--ela-text-white);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(102,126,234,0.3);
  border: 3px solid rgba(255,255,255,0.9);
}

.clinic-card-title a {
  color: var(--ela-text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.clinic-card-title a:hover {
  color: var(--shimi-primary);
  text-decoration: underline;
}

.clinic-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.clinic-badge {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.3);
}

.badge-laser {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--ela-text-white);
}

.badge-special {
  background: var(--shimi-gradient-accent);
  color: var(--ela-text-white);
}

.badge-day {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: var(--ela-text-white);
}

.badge-online {
  background: linear-gradient(135deg, #2196f3 0%, #42a5f5 100%);
  color: var(--ela-text-white);
}

.clinic-card-image {
  margin-bottom: 25px;
  border-radius: var(--ela-radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border: 2px solid var(--ela-border-light);
}

.clinic-card-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 320px;
  transition: transform 0.3s ease;
}

.clinic-card:hover .clinic-card-image img {
  transform: scale(1.03);
}

.clinic-card-description {
  margin-bottom: 25px;
}

.clinic-card-description p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--ela-text-secondary);
  margin: 0;
  font-weight: 400;
}

.clinic-card-price {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: var(--ela-radius-lg);
  padding: 24px;
  margin-bottom: 25px;
  border: 2px solid var(--ela-border-light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.price-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--ela-text-primary);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  margin-bottom: 10px;
  background: var(--ela-bg-white);
  border-radius: var(--ela-radius-md);
  border: 1px solid var(--ela-border-light);
  transition: all 0.2s ease;
}

.price-item:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transform: translateX(4px);
}

.price-item:last-child {
  margin-bottom: 0;
}

.price-item.is-main {
  border: 3px solid var(--shimi-primary);
  background: linear-gradient(135deg, #fff8fb 0%, #ffffff 100%);
  box-shadow: 0 2px 8px rgba(255,107,157,0.1);
}

.price-item.is-special {
  background: linear-gradient(135deg, var(--shimi-primary-pale) 0%, #ffffff 100%);
  border: 3px solid var(--shimi-primary-light);
  box-shadow: 0 2px 8px rgba(255,107,157,0.15);
}

.price-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--ela-text-primary);
}

/* =============================================
   クリニック詳細情報セクション
   ============================================= */
.clinic-card-details {
  margin-bottom: 25px;
  padding: 24px;
  background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
  border-radius: 14px;
  border: 2px solid var(--ela-border-light);
}

.detail-row {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ela-border-light);
}

.detail-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.detail-icon {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
  color: var(--shimi-primary);
}

.detail-content {
  flex: 1;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ela-text-secondary);
  font-weight: 400;
}

.detail-content strong {
  color: var(--ela-text-primary);
  font-weight: 700;
}

.clinic-card-schedule {
  margin-bottom: 20px;
  padding: 20px;
  background: var(--ela-bg-light);
  border-radius: var(--ela-radius-lg);
}

.schedule-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ela-text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.schedule-wrapper {
  overflow-x: auto;
}

.schedule-wrapper table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.schedule-wrapper th,
.schedule-wrapper td {
  padding: 8px;
  text-align: center;
  border: 1px solid var(--ela-border);
}

.schedule-wrapper th {
  background: var(--ela-bg-gray);
  font-weight: 600;
}

.clinic-card-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.clinic-btn {
  flex: 1;
  min-width: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 35px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  white-space: nowrap;
  border: none;
}

.clinic-btn-primary {
  background: var(--shimi-gradient-accent);
  color: var(--ela-text-white);
  box-shadow: 0 6px 20px rgba(255,107,157,0.3);
}

.clinic-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255,107,157,0.4);
  text-decoration: none;
  color: var(--ela-text-white);
}

.clinic-btn-secondary {
  background: var(--ela-bg-white);
  color: var(--shimi-primary);
  border: 3px solid var(--shimi-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.clinic-btn-secondary:hover {
  background: var(--shimi-primary-pale);
  border-color: var(--shimi-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(255,107,157,0.2);
  text-decoration: none;
  color: var(--shimi-primary-dark);
}

.btn-icon {
  font-size: 20px;
}

.btn-text {
  flex: 1;
}

/* =============================================
   ページネーション - 完全リニューアル
   ============================================= */
.shimi-pagination {
  margin: 50px 0;
}

.pagination-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination-item {
  display: inline-block;
}

.pagination-item a,
.pagination-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 16px;
  background: var(--ela-bg-white);
  color: var(--ela-text-primary);
  border: 2px solid var(--ela-border);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.pagination-item a:hover {
  background: var(--shimi-primary-pale);
  border-color: var(--shimi-primary);
  color: var(--shimi-primary);
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255,107,157,0.2);
}

.pagination-item.is-current span,
.pagination-item span.current {
  background: var(--shimi-gradient-accent);
  color: var(--ela-text-white);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(255,107,157,0.3);
}

.pagination-item .dots {
  border: none;
  background: transparent;
  color: var(--ela-text-light);
  box-shadow: none;
}

/* =============================================
   エリアリンクセクション - 完全リニューアル
   ============================================= */
.shimi-area-section {
  background: var(--ela-bg-white);
  border-radius: 20px;
  padding: 50px 40px;
  margin-bottom: 45px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  border: 2px solid var(--ela-border-light);
}

.shimi-area-section h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--ela-text-primary);
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 3px solid var(--shimi-primary);
  position: relative;
}

.shimi-area-section h2::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background: var(--shimi-accent);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.area-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
  border: 2px solid var(--ela-border);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.area-item:hover {
  background: linear-gradient(135deg, #fff5f9 0%, #ffffff 100%);
  border-color: var(--shimi-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,107,157,0.12);
  text-decoration: none;
}

.area-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ela-text-primary);
}

.area-count {
  font-size: 14px;
  font-weight: 700;
  color: var(--shimi-primary);
  padding: 6px 14px;
  background: var(--shimi-primary-pale);
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(255,107,157,0.1);
}

/* =============================================

.content-block {
  margin-bottom: 45px;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--ela-text-primary);
  margin-bottom: 24px;
  padding-left: 18px;
  border-left: 5px solid var(--shimi-primary);
  line-height: 1.4;
}

.content-block h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ela-text-secondary);
  margin-bottom: 18px;
}

.content-block h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ela-text-primary);
  margin-bottom: 14px;
}

.content-block p {
  line-height: 2;
  color: var(--ela-text-secondary);
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 400;
}

/* =============================================
   情報ボックス - 完全リニューアル
   ============================================= */
.info-box {
  background: linear-gradient(135deg, #e8f4fd 0%, #f3e5f5 100%);
  border-left: 6px solid var(--ela-primary);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 24px 0;
  box-shadow: 0 4px 16px rgba(102,126,234,0.12);
}

.info-box.mini {
  padding: 18px 24px;
  margin: 18px 0;
}

.info-box h4 {
  color: var(--ela-primary);
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box ol,
.info-box ul {
  margin-left: 24px;
}

.info-box li {
  margin-bottom: 10px;
  color: var(--ela-text-secondary);
  line-height: 1.8;
  font-size: 16px;
}

.warning-box {
  background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
  border-left: 6px solid var(--ela-accent);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 24px 0;
  box-shadow: 0 4px 16px rgba(255,152,0,0.12);
}

.warning-box.mini {
  padding: 18px 24px;
  margin: 18px 0;
}

.warning-box h4 {
  color: var(--ela-accent);
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.warning-box ul {
  margin-left: 24px;
}

.warning-box li {
  margin-bottom: 10px;
  color: var(--ela-text-secondary);
  line-height: 1.8;
  font-size: 16px;
}

.warning-box p {
  color: var(--ela-text-secondary);
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.8;
}

/* =============================================
   シミの種類グリッド - 完全リニューアル
   ============================================= */
.shimtype-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.shimtype-card {
  background: var(--ela-bg-white);
  border: 2px solid var(--ela-border);
  border-radius: 16px;
  padding: 26px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.shimtype-card:hover {
  border-color: var(--shimi-primary);
  box-shadow: 0 8px 24px rgba(255,107,157,0.15);
  transform: translateY(-4px);
}

.shimtype-card h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--shimi-primary);
  margin-bottom: 14px;
  line-height: 1.3;
}

.shimtype-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ela-text-secondary);
  margin-bottom: 18px;
  font-weight: 400;
}

.shimtype-card .badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ela-text-white);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.badge-recommended {
  background: var(--shimi-gradient-accent);
}

.badge-effective {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

.badge-multiple {
  background: linear-gradient(135deg, #ff9800 0%, #ffa726 100%);
}

.badge-treatable {
  background: linear-gradient(135deg, #2196f3 0%, #42a5f5 100%);
}

/* =============================================
   料金比較カード - 完全リニューアル
   ============================================= */
.price-comparison-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 35px 0;
}

.price-card {
  background: var(--ela-bg-white);
  border: 2px solid var(--ela-border);
  border-radius: var(--ela-radius-xl);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  position: relative;
}

.price-card:hover {
  border-color: var(--shimi-primary);
  box-shadow: 0 8px 30px rgba(255,107,157,0.2);
  transform: translateY(-6px);
}

.price-card-header {
  background: var(--shimi-gradient-primary);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.price-card-header h4 {
  color: var(--ela-text-white);
  font-size: 20px;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.popularity-badge {
  display: inline-block;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  color: var(--ela-text-white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  border: 2px solid rgba(255,255,255,0.4);
}

.popularity-badge.special {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #333;
  border: 2px solid #ffed4e;
  box-shadow: 0 4px 12px rgba(255,215,0,0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.price-card-body {
  padding: 30px 24px;
}

.price-main {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px dashed var(--ela-border);
}

.price-amount {
  font-size: 38px;
  font-weight: 800;
  color: var(--shimi-primary);
  display: block;
  line-height: 1.1;
  margin-bottom: 6px;
}

.price-unit {
  font-size: 15px;
  color: var(--ela-text-light);
  font-weight: 600;
}

.price-detail {
  margin-bottom: 24px;
}

.price-detail p {
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--ela-text-secondary);
  line-height: 1.7;
  font-weight: 500;
}

.price-detail strong {
  color: var(--ela-text-primary);
  font-weight: 700;
}

.price-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-tag {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8eef3 100%);
  color: var(--ela-text-primary);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #d8e2ea;
  transition: all 0.2s ease;
}

.feature-tag:hover {
  background: linear-gradient(135deg, #e8eef3 0%, #dce6ee 100%);
  transform: translateY(-1px);
}

/* =============================================
   ヒント・コツグリッド - 完全リニューアル
   ============================================= */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.tip-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--ela-border-light);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.tip-card:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transform: translateY(-4px);
  border-color: var(--shimi-primary-light);
}

.tip-number {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--shimi-gradient-accent);
  color: var(--ela-text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(255,107,157,0.3);
  border: 3px solid rgba(255,255,255,0.5);
}

.tip-text h4 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--ela-text-primary);
  font-weight: 800;
  line-height: 1.4;
}

.tip-text p {
  font-size: 15px;
  color: var(--ela-text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
  font-weight: 400;
}

/* =============================================
   テーブル - 完全リニューアル
   ============================================= */
.cost-table,
.simple-table,
.laser-comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 25px 0;
  background: var(--ela-bg-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 2px solid var(--ela-border);
}

.cost-table thead,
.simple-table thead,
.laser-comparison-table thead {
  background: var(--shimi-gradient-primary);
}

.cost-table th,
.simple-table th,
.laser-comparison-table th {
  color: var(--ela-text-white);
  padding: 18px 20px;
  text-align: left;
  font-weight: 800;
  font-size: 16px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.cost-table th:last-child,
.simple-table th:last-child,
.laser-comparison-table th:last-child {
  border-right: none;
}

.cost-table td,
.simple-table td,
.laser-comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--ela-border-light);
  font-size: 15px;
  color: var(--ela-text-secondary);
  font-weight: 500;
  border-right: 1px solid var(--ela-border-light);
}

.cost-table td:last-child,
.simple-table td:last-child,
.laser-comparison-table td:last-child {
  border-right: none;
}

.cost-table tbody tr:last-child td,
.simple-table tbody tr:last-child td,
.laser-comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.cost-table tbody tr:hover,
.simple-table tbody tr:hover,
.laser-comparison-table tbody tr:hover {
  background: #f8f9fa;
}

.cost-table tbody tr:nth-child(even),
.simple-table tbody tr:nth-child(even),
.laser-comparison-table tbody tr:nth-child(even) {
  background: #fafbfc;
}

.no-insurance {
  color: #f44336;
  font-weight: 700;
}

.yes-insurance {
  color: #4caf50;
  font-weight: 700;
}

.check-mark {
  color: #4caf50;
  font-weight: 700;
  font-size: 18px;
}

.caution-mark {
  color: #ff9800;
  font-weight: 700;
}

.recommend-badge {
  display: inline-block;
  background: var(--shimi-gradient-accent);
  color: var(--ela-text-white);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(255,107,157,0.3);
}

/* =============================================
   レーザー比較カード - 完全リニューアル
   ============================================= */
.laser-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin: 35px 0;
}

.laser-card {
  background: var(--ela-bg-white);
  border: 2px solid var(--ela-border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.laser-card.featured {
  border-color: var(--shimi-primary);
  border-width: 3px;
  box-shadow: 0 8px 28px rgba(255,107,157,0.15);
}

.laser-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  transform: translateY(-6px);
}

.laser-card-header {
  background: var(--shimi-gradient-primary);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.laser-card.featured .laser-card-header {
  background: var(--shimi-gradient-accent);
}

.laser-card-header h4 {
  color: var(--ela-text-white);
  font-size: 21px;
  font-weight: 800;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.badge-latest,
.badge-standard,
.badge-safe,
.badge-mild {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  color: var(--ela-text-white);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  border: 2px solid rgba(255,255,255,0.4);
}

.laser-card-body {
  padding: 28px;
}

.laser-spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px dashed var(--ela-border);
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spec-label {
  font-size: 13px;
  color: var(--ela-text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-value {
  font-size: 15px;
  color: var(--ela-text-primary);
  font-weight: 800;
}

.laser-features,
.laser-machines,
.recommended-for {
  margin-bottom: 24px;
}

.laser-features:last-child,
.laser-machines:last-child,
.recommended-for:last-child {
  margin-bottom: 0;
}

.laser-features h5,
.laser-machines h5,
.recommended-for h5 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ela-text-primary);
  margin-bottom: 14px;
}

.laser-features ul {
  margin-left: 0;
  list-style: none;
  padding: 0;
}

.laser-features li {
  font-size: 15px;
  color: var(--ela-text-secondary);
  margin-bottom: 10px;
  line-height: 1.7;
  position: relative;
  padding-left: 26px;
  font-weight: 400;
}

.laser-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--shimi-secondary);
  font-weight: 800;
  font-size: 18px;
}

.machine-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.machine-tag {
  display: inline-block;
  background: linear-gradient(135deg, #e8f4fd 0%, #d4e9f7 100%);
  color: var(--ela-primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid #b8ddf1;
}

.recommended-for p {
  font-size: 15px;
  color: var(--ela-text-secondary);
  line-height: 1.8;
  background: #f8f9fa;
  padding: 14px 18px;
  border-radius: 12px;
  margin: 0;
  font-weight: 400;
  border: 1px solid var(--ela-border-light);
}

/* =============================================
   クリニック選び方
   ============================================= */
.selection-points {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.point-card {
  background: var(--ela-bg-white);
  border: 2px solid var(--ela-border);
  border-radius: var(--ela-radius-xl);
  padding: 30px;
  transition: var(--ela-transition);
  box-shadow: var(--ela-shadow-sm);
}

.point-card:hover {
  box-shadow: var(--ela-shadow-lg);
  transform: translateY(-2px);
}

.point-card.priority-high {
  border-color: var(--shimi-primary);
  background: linear-gradient(135deg, var(--ela-bg-white) 0%, var(--shimi-primary-pale) 100%);
}

.point-card.priority-medium {
  border-color: var(--ela-accent);
}

.point-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.point-number {
  display: inline-block;
  background: var(--shimi-gradient-primary);
  color: var(--ela-text-white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--ela-shadow-sm);
}

.point-card.priority-high .point-number {
  background: var(--shimi-gradient-accent);
}

.point-card.priority-medium .point-number {
  background: linear-gradient(135deg, #ffa726 0%, #ffb74d 100%);
}

.priority-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: #e3f2fd;
  color: var(--ela-primary);
}

.priority-badge.priority-medium {
  background: #fff3e0;
  color: var(--ela-accent);
}

.priority-badge.priority-low {
  background: #f3e5f5;
  color: var(--shimi-accent);
}

.point-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ela-text-primary);
  margin-bottom: 15px;
  border: none;
  padding: 0;
}

.point-content > p {
  font-size: 16px;
  color: var(--ela-text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.check-list {
  background: var(--ela-bg-gray);
  border-radius: var(--ela-radius-lg);
  padding: 20px;
  margin: 20px 0;
  border: 1px solid var(--ela-border-light);
}

.check-list h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ela-text-primary);
  margin-bottom: 15px;
}

.check-list ul {
  margin-left: 20px;
  list-style: none;
}

.check-list li {
  font-size: 15px;
  color: var(--ela-text-secondary);
  margin-bottom: 10px;
  line-height: 1.7;
  position: relative;
  padding-left: 20px;
}

.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--shimi-secondary);
  font-weight: 700;
}

.price-example {
  background: var(--ela-bg-gray);
  border-radius: var(--ela-radius-lg);
  padding: 20px;
  margin: 20px 0;
  border: 1px solid var(--ela-border-light);
}

.price-example h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--ela-text-primary);
}

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

.price-example td {
  padding: 10px;
  border-bottom: 1px solid var(--ela-border);
  color: var(--ela-text-secondary);
}

.price-example tr:last-child td {
  border-bottom: none;
}

.question-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.question-category {
  background: var(--ela-bg-white);
  border: 2px solid var(--ela-border);
  border-radius: var(--ela-radius-lg);
  padding: 20px;
  transition: var(--ela-transition);
}

.question-category:hover {
  border-color: var(--shimi-primary);
  box-shadow: var(--ela-shadow-sm);
}

.question-category h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ela-text-primary);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ela-border);
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  margin-bottom: 12px;
}

.checklist label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ela-text-secondary);
  line-height: 1.6;
}

.checklist input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
}

/* =============================================
   FAQ - 完全リニューアル
   ============================================= */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq-item {
  background: var(--ela-bg-white);
  border: 2px solid var(--ela-border);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-item:hover {
  border-color: var(--shimi-primary);
  box-shadow: 0 8px 24px rgba(255,107,157,0.12);
  transform: translateY(-2px);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.faq-q {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--shimi-gradient-accent);
  color: var(--ela-text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(255,107,157,0.3);
  border: 3px solid rgba(255,255,255,0.5);
}

.faq-question h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ela-text-primary);
  margin: 0;
  padding: 12px 0 0 0;
  border: none;
  line-height: 1.4;
}

.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.faq-a {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--shimi-gradient-primary);
  color: var(--ela-text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(102,126,234,0.3);
  border: 3px solid rgba(255,255,255,0.5);
}

.faq-content {
  flex: 1;
  padding-top: 12px;
}

.faq-content p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--ela-text-secondary);
  margin-bottom: 18px;
  font-weight: 400;
}

.faq-content p:last-child {
  margin-bottom: 0;
}

.pain-level,
.downtime-info,
.cost-comparison,
.prevention-tips,
.contraindication-list,
.season-guide {
  margin: 20px 0;
}

.pain-level h4,
.downtime-info h4,
.cost-comparison h4,
.prevention-tips h4,
.contraindication-list h4,
.season-guide h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ela-text-primary);
  margin-bottom: 15px;
}

.pain-level ul,
.prevention-tips ul,
.contraindication-list ul {
  margin-left: 20px;
  list-style: none;
}

.pain-level li,
.prevention-tips li,
.contraindication-list li {
  font-size: 15px;
  color: var(--ela-text-secondary);
  margin-bottom: 10px;
  line-height: 1.7;
  position: relative;
  padding-left: 20px;
}

.pain-level li:before,
.prevention-tips li:before,
.contraindication-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--shimi-primary);
  font-weight: 700;
}

.downtime-card {
  background: var(--ela-bg-gray);
  border-radius: var(--ela-radius-lg);
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid var(--ela-border-light);
}

.downtime-card:last-child {
  margin-bottom: 0;
}

.downtime-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--shimi-primary);
  margin-bottom: 12px;
}

.downtime-card ul {
  margin-left: 20px;
  list-style: none;
}

.downtime-card li {
  font-size: 14px;
  color: var(--ela-text-secondary);
  margin-bottom: 8px;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.downtime-card li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--shimi-primary);
}

.season-card {
  background: var(--ela-bg-white);
  border: 2px solid var(--ela-border);
  border-radius: var(--ela-radius-lg);
  padding: 20px;
  margin-bottom: 15px;
  transition: var(--ela-transition);
}

.season-card:last-child {
  margin-bottom: 0;
}

.season-card:hover {
  box-shadow: var(--ela-shadow-sm);
  transform: translateY(-2px);
}

.season-card.best {
  border-color: #4caf50;
  background: linear-gradient(135deg, var(--ela-bg-white) 0%, #f1f8e9 100%);
}

.season-card.good {
  border-color: var(--ela-primary);
  background: linear-gradient(135deg, var(--ela-bg-white) 0%, #e3f2fd 100%);
}

.season-card.caution {
  border-color: var(--ela-accent);
  background: linear-gradient(135deg, var(--ela-bg-white) 0%, #fff3e0 100%);
}

.season-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ela-text-primary);
}

.season-label {
  font-size: 14px;
  color: var(--ela-text-light);
  margin-bottom: 12px;
  display: block;
}

.season-card ul {
  margin-left: 20px;
  list-style: none;
}

.season-card li {
  font-size: 14px;
  color: var(--ela-text-secondary);
  margin-bottom: 8px;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.season-card li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: inherit;
}

.loss {
  color: #f44336;
  font-weight: 600;
}

.even {
  color: #ff9800;
  font-weight: 600;
}

.profit {
  color: #4caf50;
  font-weight: 600;
}

/* =============================================
   まとめセクション - 完全リニューアル
   ============================================= */
.shimi-summary {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff5f9 100%);
  border: 4px solid var(--shimi-primary);
  box-shadow: 0 8px 32px rgba(255,107,157,0.15);
}

.summary-content {
  max-width: 950px;
  margin: 0 auto;
}

.summary-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 45px;
}

.summary-point {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--ela-bg-white);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.summary-point:hover {
  box-shadow: 0 8px 24px rgba(255,107,157,0.12);
  transform: translateY(-4px);
  border-color: var(--shimi-primary-light);
}

.point-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--shimi-gradient-accent);
  color: var(--ela-text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 16px rgba(255,107,157,0.3);
  border: 3px solid rgba(255,255,255,0.5);
}

.point-text h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ela-text-primary);
  margin-bottom: 10px;
  padding: 0;
  border: none;
  line-height: 1.4;
}

.point-text p {
  font-size: 16px;
  color: var(--ela-text-secondary);
  line-height: 1.8;
  margin: 0;
}

.final-message {
  background: var(--ela-bg-white);
  border-radius: 16px;
  padding: 35px;
  margin-bottom: 35px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 2px solid var(--ela-border-light);
}

.final-message p {
  font-size: 17px;
  line-height: 2;
  color: var(--ela-text-secondary);
  margin-bottom: 18px;
  font-weight: 400;
}

.final-message p:last-child {
  margin-bottom: 0;
}

.cta-box {
  background: var(--shimi-gradient-primary);
  border-radius: 20px;
  padding: 50px 45px;
  text-align: center;
  color: var(--ela-text-white);
  box-shadow: 0 10px 30px rgba(102,126,234,0.3);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-box h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--ela-text-white);
  padding: 0;
  border: none;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-box p {
  font-size: 17px;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.95);
  position: relative;
  z-index: 1;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ela-bg-white);
  color: var(--shimi-accent);
  padding: 18px 45px;
  border-radius: 50px;
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  position: relative;
  z-index: 1;
}

.cta-button:hover {
  background: #f8f9fa;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  color: var(--shimi-accent);
  text-decoration: none;
}

.cta-icon {
  font-size: 24px;
}

/* =============================================
   クリニック詳細追加スタイル
   ============================================= */
.shimi-toridori-section {
  background: linear-gradient(135deg, #fff5f9 0%, #ffffff 100%);
  border: 3px solid var(--shimi-primary-light);
  border-radius: 16px;
  padding: 28px;
  margin: 25px 0;
  box-shadow: 0 4px 16px rgba(255,107,157,0.12);
}

.shimi-toridori-section h4 {
  font-size: 19px;
  font-weight: 800;
  color: var(--shimi-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-highlight {
  font-size: 24px;
  font-weight: 900;
  color: var(--shimi-primary);
  margin-right: 8px;
}

.price-note {
  font-size: 14px;
  color: var(--ela-text-secondary);
  margin-top: 8px;
}

.laser-equipment-section {
  background: var(--ela-bg-light);
  border-radius: 14px;
  padding: 24px;
  margin: 25px 0;
  border: 2px solid var(--ela-border-light);
}

.laser-equipment-section h4 {
  font-size: 19px;
  font-weight: 800;
  color: var(--ela-text-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.equipment-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.equipment-item {
  font-size: 15px;
  color: var(--ela-text-secondary);
  padding-left: 24px;
  position: relative;
  line-height: 1.7;
}

.equipment-item::before {
  content: "⚡";
  position: absolute;
  left: 0;
  color: var(--ela-primary);
  font-size: 16px;
}

.features-section {
  background: #f8f9fa;
  border-radius: 14px;
  padding: 24px;
  margin: 25px 0;
  border: 2px solid var(--ela-border-light);
}

.features-section h4 {
  font-size: 19px;
  font-weight: 800;
  color: var(--ela-text-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-badge {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: var(--ela-text-primary);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--ela-border);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.official-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ela-primary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 20px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 25px;
  transition: all 0.3s ease;
  border: 2px solid var(--ela-primary);
  margin-top: 16px;
}

.official-link:hover {
  background: linear-gradient(135deg, #bbdefb 0%, #90caf9 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102,126,234,0.2);
  text-decoration: none;
}

.column-section {
  background: var(--ela-bg-white);
  border-radius: 18px;
  padding: 45px 40px;
  margin: 50px 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  border: 2px solid var(--ela-border-light);
}

.column-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--ela-text-primary);
  margin-bottom: 35px;
  padding-bottom: 18px;
  border-bottom: 4px solid var(--shimi-primary);
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.column-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 120px;
  height: 4px;
  background: var(--shimi-accent);
}

.column-title .icon {
  font-size: 32px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.quick-reference-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 30px 0;
  background: var(--ela-bg-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 2px solid var(--ela-border);
}

.quick-reference-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.quick-reference-table th {
  color: var(--ela-text-white);
  padding: 16px 18px;
  text-align: center;
  font-weight: 800;
  font-size: 15px;
  border-right: 1px solid rgba(255,255,255,0.2);
  white-space: nowrap;
}

.quick-reference-table th:first-child {
  text-align: left;
  min-width: 150px;
}

.quick-reference-table th:last-child {
  border-right: none;
}

.quick-reference-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--ela-border-light);
  font-size: 14px;
  color: var(--ela-text-secondary);
  font-weight: 500;
  border-right: 1px solid var(--ela-border-light);
  text-align: center;
}

.quick-reference-table td:first-child {
  font-weight: 700;
  color: var(--ela-text-primary);
  text-align: left;
  background: #f8f9fa;
}

.quick-reference-table td:last-child {
  border-right: none;
}

.quick-reference-table tbody tr:last-child td {
  border-bottom: none;
}

.quick-reference-table tbody tr:hover {
  background: #fafbfc;
}

.point-section {
  margin: 35px 0;
}

.point-header-label {
  display: inline-block;
  background: var(--shimi-gradient-accent);
  color: var(--ela-text-white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(255,107,157,0.3);
}

.point-importance {
  font-size: 14px;
  color: var(--ela-text-secondary);
  margin-bottom: 18px;
  padding: 10px 16px;
  background: var(--ela-bg-gray);
  border-radius: 8px;
  border-left: 4px solid var(--shimi-accent);
}

.point-section h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--ela-text-primary);
  margin-bottom: 18px;
  line-height: 1.4;
}

.point-section h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--shimi-primary);
  margin: 24px 0 14px 0;
  padding-left: 16px;
  border-left: 4px solid var(--shimi-primary);
}

.checklist-box {
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f2 100%);
  border: 2px solid #4caf50;
  border-radius: 14px;
  padding: 24px;
  margin: 24px 0;
  box-shadow: 0 4px 12px rgba(76,175,80,0.12);
}

.checklist-box h4 {
  color: #2e7d32;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  padding: 0;
}

.verification-box {
  background: linear-gradient(135deg, #fff3e0 0%, #fff8e1 100%);
  border: 2px solid #ff9800;
  border-radius: 14px;
  padding: 24px;
  margin: 24px 0;
  box-shadow: 0 4px 12px rgba(255,152,0,0.12);
}

.verification-box h4 {
  color: #e65100;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  padding: 0;
}

.recommended-for-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #e8eaf6 100%);
  border: 2px solid var(--ela-primary);
  border-radius: 14px;
  padding: 24px;
  margin: 24px 0;
  box-shadow: 0 4px 12px rgba(102,126,234,0.12);
}

.recommended-for-box h4 {
  color: var(--ela-primary);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  padding: 0;
}

.recommended-for-box p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ela-text-secondary);
  margin: 0;
}

.equipment-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 25px 0;
  background: var(--ela-bg-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 2px solid var(--ela-border);
}

.equipment-table caption {
  font-size: 18px;
  font-weight: 700;
  color: var(--ela-text-primary);
  text-align: left;
  padding: 16px 20px;
  background: #f8f9fa;
  border-bottom: 2px solid var(--ela-border);
}

.equipment-table thead {
  background: var(--shimi-gradient-primary);
}

.equipment-table th {
  color: var(--ela-text-white);
  padding: 16px 18px;
  text-align: left;
  font-weight: 800;
  font-size: 15px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.equipment-table th:last-child {
  border-right: none;
}

.equipment-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--ela-border-light);
  font-size: 14px;
  color: var(--ela-text-secondary);
  font-weight: 500;
  border-right: 1px solid var(--ela-border-light);
}

.equipment-table td:last-child {
  border-right: none;
}

.equipment-table tbody tr:last-child td {
  border-bottom: none;
}

.equipment-table tbody tr:hover {
  background: #fafbfc;
}

.equipment-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}

.note-box {
  background: #f8f9fa;
  border-left: 5px solid #9e9e9e;
  border-radius: 8px;
  padding: 18px 24px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--ela-text-secondary);
  line-height: 1.8;
}

.note-box strong {
  color: var(--ela-text-primary);
  font-weight: 700;
}

/* =============================================
   ユーティリティクラス
   ============================================= */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =============================================
   レスポンシブ対応 - 強化版
   ============================================= */

/* タブレット（768px以下） */
@media (max-width: 768px) {
  .shimi-container {
    padding: 15px;
  }
  
  .shimi-page-header {
    padding: 40px 25px;
    border-radius: 16px;
  }
  
  .shimi-page-title {
    font-size: 28px;
  }
  
  .shimi-page-title .sp-only {
    display: inline;
  }
  
  .shimi-section-title {
    font-size: 24px;
    flex-direction: row;
    gap: 10px;
    text-align: left;
  }
  
  
  .content-block h3 {
    font-size: 20px;
  }
  
  .price-comparison-wrapper,
  .shimtype-grid,
  .tips-grid,
  .laser-comparison {
    grid-template-columns: 1fr;
  }
  
  .clinic-card {
    padding: 25px;
  }
  
  .clinic-card-title {
    font-size: 22px;
  }
  
  .clinic-btn {
    min-width: 160px;
    font-size: 15px;
    padding: 14px 24px;
  }
  
  .faq-q, .faq-a {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
  
  .point-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .cta-box {
    padding: 40px 30px;
    border-radius: 16px;
  }
  
  .cta-box h3 {
    font-size: 24px;
  }
  
  .area-grid {
    grid-template-columns: 1fr;
  }
  
  .laser-spec {
    grid-template-columns: 1fr;
  }
}

/* スマートフォン（480px以下） */
@media (max-width: 480px) {
  .shimi-container {
    padding: 12px;
  }
  
  .shimi-page-header {
    padding: 30px 20px;
  }
  
  .shimi-page-title {
    font-size: 24px;
  }
  
  .shimi-section-title {
    font-size: 22px;
  }
  
  .shimi-comparison-section,
  .shimi-content-section {
    padding: 25px 20px;
  }
  
  .content-block h3 {
    font-size: 18px;
  }
  
  .clinic-number {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  
  .clinic-card-title {
    font-size: 20px;
  }
  
  .clinic-btn {
    min-width: 140px;
    font-size: 14px;
    padding: 12px 20px;
  }
  
  .clinic-card-actions {
    flex-direction: column;
  }
  
  .clinic-btn {
    width: 100%;
  }
  
  .faq-q, .faq-a {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
  
  .point-icon {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }
  
  .comparison-header-label,
  .comparison-label {
    min-width: 100px;
    width: 100px;
    font-size: 14px;
    padding: 20px 12px;
  }
  
  .comparison-header-clinic,
  .comparison-value {
    min-width: 170px;
    padding: 18px 12px;
  }
  
  .summary-point {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .cta-box {
    padding: 35px 20px;
  }
  
  .cta-box h3 {
    font-size: 22px;
  }
  
  .cta-button {
    width: 100%;
    justify-content: center;
    font-size: 17px;
    padding: 16px 35px;
  }
}

/* 印刷用スタイル */
@media print {
  .shimi-content-section,
  .column-section {
    box-shadow: none;
    page-break-inside: avoid;
    border: 1px solid #ddd;
  }
  
  .cta-box,
  .cta-button,
  .clinic-btn,
  .btn-official,
  .btn-detail,
  .official-link {
    display: none;
  }
  
  .clinic-card {
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  .shimi-page-header::before,
  .shimi-page-header::after,
  .shimi-toc::before,
  .cta-box::before,
  .column-title::after {
    display: none;
  }
  
  .quick-reference-table,
  .equipment-table,
  .cost-table,
  .simple-table {
    page-break-inside: avoid;
  }
}

/* ===================================
   固定クリニック比較表の追加スタイル
   =================================== */

/* 画像表示 */
.clinic-image-wrapper {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.clinic-comparison-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.no-image {
    display: block;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
    color: #999;
    font-size: 14px;
}

/* クリニック名 */
.clinic-name-text {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

@media (max-width: 767px) {
    .clinic-name-text {
        font-size: 14px;
    }
}

/* おすすめポイントリスト */
.points-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.points-list li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
}

.points-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

@media (max-width: 767px) {
    .points-list li {
        font-size: 12px;
        padding: 4px 0;
        padding-left: 18px;
    }
}

/* カウンセリングバッジ */
.counseling-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #4CAF50;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}

@media (max-width: 767px) {
    .counseling-badge {
        font-size: 12px;
        padding: 4px 10px;
    }
}

/* エリア情報 */
.area-info {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

@media (max-width: 767px) {
    .area-info {
        font-size: 12px;
    }
}

/* リンク準備中 */
.link-pending {
    display: inline-block;
    padding: 10px 20px;
    background: #e0e0e0;
    color: #666;
    border-radius: 6px;
    font-size: 14px;
}

/* おすすめバッジ */
.featured-badge {
    display: inline-block;
    background: #FF6B9D;
    color: white;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 3px;
    margin-left: 5px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .featured-badge {
        font-size: 10px;
        padding: 2px 6px;
    }
}

/* ランク別の背景色（微調整） */
.comparison-value.rank-1 {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFFFF 100%);
}

.comparison-value.rank-2 {
    background: linear-gradient(135deg, #F0F8FF 0%, #FFFFFF 100%);
}


/* =============================================
   改善版：クリニックカードデザイン
   ============================================= */

.clinic-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 24px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.clinic-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

/* おすすめバッジ */
.clinic-card.is-recommended {
    border: 2px solid #FF6B9D;
    position: relative;
}

.clinic-card.is-recommended::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B9D 0%, #FF8FAB 100%);
}

.clinic-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
}

.badge-recommended {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8FAB 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255,107,157,0.3);
}

/* カードヘッダー */
.clinic-card-header {
    padding: 24px 24px 16px;
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
    border-bottom: 1px solid #F0F0F0;
}

.clinic-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.clinic-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(102,126,234,0.3);
}

.clinic-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.clinic-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.badge-laser {
    background: #E3F2FD;
    color: #1976D2;
}

.badge-special {
    background: #FFF3E0;
    color: #F57C00;
}

.badge-day {
    background: #E8F5E9;
    color: #388E3C;
}

.badge-online {
    background: #F3E5F5;
    color: #7B1FA2;
}

/* カード画像 */
.clinic-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #F5F5F5;
}

.clinic-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.clinic-card:hover .clinic-card-image img {
    transform: scale(1.05);
}

/* 参考価格（新規追加） */
.clinic-reference-price {
    background: linear-gradient(135deg, #FFF5F9 0%, #FFE5EE 100%);
    padding: 16px 20px;
    margin: 0;
    border-left: 4px solid #FF6B9D;
}

.reference-price-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 6px;
}

.reference-price-label .icon {
    font-size: 16px;
}

.reference-price-value {
    font-size: 18px;
    font-weight: 700;
    color: #FF6B9D;
}

/* レーザー情報セクション（新規追加） */
.clinic-laser-info {
    background: #FAFAFA;
    padding: 16px 20px;
    margin: 0;
}

.laser-info-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
}

.laser-types-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.laser-type-item {
    background: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: #333;
    border: 1px solid #E0E0E0;
}

/* カード説明文 */
.clinic-card-description {
    padding: 20px 24px;
    border-bottom: 1px solid #F0F0F0;
}

.clinic-card-description p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* 価格情報 */
.clinic-card-price {
    padding: 20px 24px;
    background: #FAFAFA;
    border-bottom: 1px solid #F0F0F0;
}

.price-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid #E9ECEF;
}

.price-item:last-child {
    margin-bottom: 0;
}

.price-item.is-main {
    background: linear-gradient(135deg, #FFF5F9 0%, #FFFFFF 100%);
    border: 2px solid #FF6B9D;
}

.price-item.is-special {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFFFF 100%);
    border: 2px solid #FFB366;
}

.price-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.price-value {
    font-size: 18px;
    font-weight: 700;
    color: #FF6B9D;
}

.price-item.is-special .price-value {
    color: #FF9800;
}

/* 基本情報（新規追加） */
.clinic-card-basic-info {
    padding: 20px 24px;
    background: #FAFAFA;
    border-bottom: 1px solid #F0F0F0;
}

.basic-info-grid {
    display: grid;
    gap: 12px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-icon {
    font-size: 18px;
    width: 24px;
    flex-shrink: 0;
    text-align: center;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 12px;
    color: #999;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-value {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

/* クリニック詳細 */
.clinic-card-details {
    padding: 20px 24px;
    background: white;
}

.detail-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #F0F0F0;
}

.detail-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-icon {
    font-size: 18px;
    width: 24px;
    flex-shrink: 0;
    color: #FF6B9D;
}

.detail-content {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.detail-content strong {
    color: #333;
    font-weight: 600;
}

/* 情報ブロック */
.clinic-card-info {
    padding: 20px 24px;
    background: #FAFAFA;
}

.info-block {
    margin-bottom: 20px;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.info-list li {
    padding: 6px 0 6px 20px;
    font-size: 14px;
    color: #555;
    position: relative;
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #333;
    border: 1px solid #E0E0E0;
    font-weight: 600;
}

/* アクションボタン */
.clinic-card-actions {
    padding: 20px 24px;
    background: white;
    display: flex;
    gap: 12px;
}

.clinic-btn {
    flex: 1;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.clinic-btn-primary {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8FAB 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(255,107,157,0.3);
}

.clinic-btn-primary:hover {
    background: linear-gradient(135deg, #FF3D7F 0%, #FF6B9D 100%);
    box-shadow: 0 6px 16px rgba(255,107,157,0.4);
    transform: translateY(-2px);
}

.clinic-btn-secondary {
    background: white;
    color: #FF6B9D;
    border: 2px solid #FF6B9D;
}

.clinic-btn-secondary:hover {
    background: #FFF5F9;
    border-color: #FF3D7F;
    color: #FF3D7F;
}

.btn-icon {
    font-size: 18px;
}

/* CTA ボックス（改善版） */
.clinic-cta-box {
    background: linear-gradient(135deg, #FFF5F9 0%, #FFE5EE 100%);
    padding: 16px 20px;
    margin: 0;
    text-align: center;
    border-top: 3px solid #FF6B9D;
}

.cta-text {
    font-size: 15px;
    font-weight: 700;
    color: #FF6B9D;
    margin: 0 0 12px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8FAB 100%);
    color: white;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255,107,157,0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #FF3D7F 0%, #FF6B9D 100%);
    box-shadow: 0 6px 16px rgba(255,107,157,0.4);
    transform: translateY(-2px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .clinic-card-header {
        padding: 20px 16px 12px;
    }
    
    .clinic-card-title {
        font-size: 18px;
    }
    
    .clinic-number {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .clinic-card-image {
        height: 180px;
    }
    
    .clinic-card-description,
    .clinic-card-price,
    .clinic-card-details,
    .clinic-card-info,
    .clinic-card-actions {
        padding: 16px;
    }
    
    .clinic-card-actions {
        flex-direction: column;
    }
    
    .clinic-btn {
        width: 100%;
    }
    
    .clinic-reference-price,
    .clinic-laser-info,
    .clinic-card-basic-info {
        padding: 14px 16px;
    }
    
    .reference-price-value {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .clinic-card-title {
        font-size: 16px;
        gap: 8px;
    }
    
    .clinic-number {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .clinic-card-image {
        height: 160px;
    }
    
    .price-value {
        font-size: 16px;
    }
    
    .clinic-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* 治療内容詳細セクション */
.clinic-treatment-details {
    padding: 20px 24px;
    background: #FAFAFA;
    border-bottom: 1px solid #F0F0F0;
}

.treatment-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.treatment-block {
    background: white;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    border-left: 3px solid #667eea;
}

.treatment-block:last-child {
    margin-bottom: 0;
}

.treatment-block.highlight {
    border-left-color: #FFB366;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFFFF 100%);
}

.treatment-block h5 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px;
}

.treatment-block p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.treatment-area {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed #E0E0E0;
    font-size: 13px;
    color: #666;
}

/* 電話リンク */
.phone-link {
    color: #FF6B9D;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.phone-link:hover {
    text-decoration: underline;
}

/* 無料表示の強調 */
.highlight-free {
    color: #4CAF50;
    font-weight: 700;
    font-size: 16px;
}

/* 診療時間テーブル */
.schedule-wrapper table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-wrapper td {
    padding: 8px 12px;
    border: 1px solid #E0E0E0;
    font-size: 14px;
}

.schedule-wrapper td:first-child {
    background: #F5F5F5;
    font-weight: 600;
    width: 100px;
}

@media (max-width: 768px) {
    .clinic-treatment-details {
        padding: 16px;
    }
    
    .treatment-block {
        padding: 12px;
    }
    
    .treatment-block h5 {
        font-size: 14px;
    }
    
    .treatment-block p {
        font-size: 13px;
    }
}
/* ========================================
   シミ取りクリニック一覧ページ用CSS
   ======================================== */

/* コンテナ */
.shimi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* パンくずリスト */
.shimi-breadcrumbs {
    margin-bottom: 20px;
    font-size: 14px;
}

.shimi-breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.shimi-breadcrumb-item {
    display: flex;
    align-items: center;
}

.shimi-breadcrumb-item .separator {
    margin: 0 8px;
    color: #999;
}

/* ページヘッダー */
.shimi-page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
}

.shimi-ad-notice {
    font-size: 12px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.shimi-page-subtitle {
    margin-bottom: 10px;
}

.shimi-update-date {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.shimi-page-title {
    font-size: 28px;
    font-weight: bold;
    margin: 15px 0;
    line-height: 1.4;
}

.shimi-page-description {
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* セクションタイトル */
.shimi-section-title {
    font-size: 24px;
    font-weight: bold;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #667eea;
}

.section-icon {
    margin-right: 8px;
}

/* 比較表 */
.shimi-comparison-section {
    margin-bottom: 40px;
}

.shimi-comparison-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.shimi-comparison-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.shimi-comparison-table th,
.shimi-comparison-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #ddd;
}

.comparison-header-clinic {
    background: #f8f9fa;
    font-weight: bold;
}

.comparison-clinic-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rank-badge {
    background: #667eea;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    align-self: flex-start;
}

.featured-badge {
    background: #ff6b6b;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    align-self: flex-start;
}

.clinic-comparison-image {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
}

.scroll-hint {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-top: 10px;
}

/* クリニックカード */
.shimi-clinics-section {
    margin-bottom: 40px;
}

.shimi-result-count {
    margin-bottom: 20px;
    font-size: 16px;
}

.clinic-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    padding: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.clinic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.clinic-card.is-recommended {
    border: 2px solid #667eea;
    position: relative;
}

.clinic-card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
}

.badge-recommended {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* カードヘッダー */
.clinic-card-header {
    margin-bottom: 20px;
}

.clinic-card-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.clinic-number {
    background: #667eea;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* バッジ群 */
.clinic-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.clinic-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.badge-laser {
    background: #fff3cd;
    color: #856404;
}

.badge-special {
    background: #d4edda;
    color: #155724;
}

.badge-day {
    background: #cce5ff;
    color: #004085;
}

.badge-online {
    background: #f8d7da;
    color: #721c24;
}

/* 画像 */
.clinic-card-image {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.clinic-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 説明文 */
.clinic-card-description {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #333;
}

/* 価格情報 */
.clinic-card-price {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.price-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #dee2e6;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item.is-main {
    background: #fff3cd;
    margin: 8px -12px;
    padding: 12px;
    border-radius: 6px;
}

.price-item.is-special {
    background: #d4edda;
    margin: 8px -12px;
    padding: 12px;
    border-radius: 6px;
}

.price-label {
    font-weight: 500;
    color: #495057;
}

.price-value {
    font-weight: bold;
    color: #667eea;
    font-size: 18px;
}

/* 治療内容の詳細 */
.clinic-treatment-details {
    margin-bottom: 20px;
}

.treatment-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.treatment-block {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.treatment-block h5 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.treatment-block.highlight {
    background: #d4edda;
    border-left: 4px solid #28a745;
}

.treatment-area {
    margin-top: 8px;
    font-size: 14px;
    color: #666;
}

/* 基本情報 */
.clinic-card-details {
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #dee2e6;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.detail-content {
    flex: 1;
    line-height: 1.6;
}

.phone-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.phone-link:hover {
    text-decoration: underline;
}

.highlight-free {
    color: #28a745;
    font-weight: bold;
}

/* 診療時間 */
.clinic-card-schedule {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.schedule-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.schedule-wrapper table {
    width: 100%;
    font-size: 14px;
}

.schedule-wrapper th,
.schedule-wrapper td {
    padding: 6px;
    text-align: center;
    border: 1px solid #dee2e6;
}

/* 特徴タグ */
.clinic-card-info {
    margin-bottom: 20px;
}

.info-block-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: #e7f3ff;
    color: #0056b3;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
}

/* アクションボタン */
.clinic-card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.clinic-btn {
    flex: 1;
    min-width: 150px;
    padding: 14px 24px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.clinic-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.clinic-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.clinic-btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.clinic-btn-secondary:hover {
    background: #667eea;
    color: white;
}

/* CTAボックス */
.clinic-cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

.cta-text {
    font-weight: bold;
    font-size: 16px;
    margin: 0;
}

/* ページネーション */
.shimi-pagination {
    margin: 40px 0;
}

.pagination-list {
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
}

.pagination-item {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
}

.pagination-item a,
.pagination-item span {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: #667eea;
    font-weight: 500;
}

.pagination-item.is-current span {
    background: #667eea;
    color: white;
}

.pagination-item a:hover {
    background: #f8f9fa;
}

/* エリアグリッド */
.shimi-area-section {
    margin-bottom: 40px;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.area-item:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.area-name {
    font-weight: 500;
}

.area-count {
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 13px;
}

.area-item:hover .area-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* コンテンツセクション */
.shimi-content-section {
    background: white;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.content-block {
    margin-bottom: 30px;
}

.content-block h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.info-box {
    background: #e7f3ff;
    border-left: 4px solid #0056b3;
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
}

.warning-box {
    background: #fff3cd;
    border-left: 4px solid #856404;
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .shimi-container {
        padding: 15px;
    }
    
    .shimi-page-title {
        font-size: 22px;
    }
    
    .clinic-card {
        padding: 16px;
    }
    
    .clinic-card-actions {
        flex-direction: column;
    }
    
    .clinic-btn {
        width: 100%;
    }
    
    .area-grid {
        grid-template-columns: 1fr;
    }
    
    .sp-only {
        display: inline !important;
    }
}

@media (min-width: 769px) {
    .sp-only {
        display: none !important;
    }
}


/* ========================================
   シミ取り治療コラムセクション - 記事風レイアウト
======================================== */

.shimi-treatment-column-section {
    background: #fff;
    padding: 60px 0;
    margin: 40px 0;
}

.shimi-treatment-column-section .section-intro {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

/* 治療法カードグリッド - 1列の縦並び */
.treatment-column-grid {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 治療法カード */
.treatment-column-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.treatment-column-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #ff69b4;
}

/* おすすめカード */
.treatment-column-card.featured {
    border: 3px solid #ff69b4;
    background: linear-gradient(135deg, #fff5f8 0%, #ffffff 100%);
}

.treatment-column-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff69b4, #ff1493);
    border-radius: 16px 16px 0 0;
}

/* おすすめバッジ */
.treatment-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: #fff;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.4);
    z-index: 1;
}

/* 治療アイコン */
.treatment-icon {
    font-size: 56px;
    text-align: center;
    margin-bottom: 20px;
    display: block;
}

/* 治療タイトル */
.treatment-title {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #f0f0f0;
}

.treatment-column-card.featured .treatment-title {
    color: #ff1493;
}

/* 説明文 */
.treatment-description {
    margin-bottom: 30px;
}

.treatment-description p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

/* 2カラムレイアウト（治療の種類 + メリデメ） */
.treatment-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

/* 治療の種類 */
.treatment-types {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    height: fit-content;
}

.treatment-types h4 {
    font-size: 17px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.treatment-types h4::before {
    content: '📋';
    margin-right: 8px;
    font-size: 20px;
}

.treatment-types ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.treatment-types li {
    font-size: 15px;
    line-height: 2;
    color: #555;
    padding-left: 24px;
    position: relative;
}

.treatment-types li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ff69b4;
    font-weight: bold;
    font-size: 16px;
}

.treatment-types strong {
    color: #333;
    font-weight: 600;
}

/* メリット・デメリットを横並び */
.treatment-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-pros,
.feature-cons {
    padding: 25px;
    border-radius: 12px;
}

.feature-pros {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    border-left: 5px solid #4caf50;
}

.feature-cons {
    background: linear-gradient(135deg, #fff3e0 0%, #fef8f1 100%);
    border-left: 5px solid #ff9800;
}

.feature-pros h4,
.feature-cons h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.feature-pros h4 {
    color: #2e7d32;
}

.feature-cons h4 {
    color: #e65100;
}

.feature-pros ul,
.feature-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-pros li,
.feature-cons li {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
}

.feature-pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 18px;
}

.feature-cons li::before {
    content: '▲';
    position: absolute;
    left: 0;
    color: #ff9800;
    font-weight: bold;
    font-size: 14px;
    top: 4px;
}

/* 料金・おすすめを横並び */
.treatment-bottom-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* 料金セクション */
.treatment-price {
    background: linear-gradient(135deg, #f3e5f5 0%, #fce4ec 100%);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.treatment-price h4 {
    font-size: 16px;
    font-weight: bold;
    color: #6a1b9a;
    margin-bottom: 15px;
}

.price-range {
    font-size: 28px;
    font-weight: bold;
    color: #ff1493;
    margin: 12px 0;
}

.price-detail {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* おすすめの人 */
.treatment-recommended {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}

.treatment-recommended h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.treatment-recommended ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.treatment-recommended li {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
}

.treatment-recommended li::before {
    content: '👤';
    position: absolute;
    left: 0;
    font-size: 16px;
}

/* ========================================
   治療の組み合わせセクション
======================================== */

.treatment-combination {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 50px 30px;
    border-radius: 20px;
    margin: 60px 20px 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.combination-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

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

.combination-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    min-height: 380px;
}

.combination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.combination-pattern {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 36px;
}

.pattern-icon {
    display: inline-block;
}

.pattern-plus {
    margin: 0 15px;
    color: #ff69b4;
    font-weight: bold;
    font-size: 30px;
}

.combination-card h4 {
    font-size: 19px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 12px;
}

.combination-effect {
    text-align: center;
    font-size: 14px;
    color: #ff1493;
    font-weight: bold;
    margin-bottom: 20px;
}

.combination-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.combination-card li {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
}

.combination-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.combination-card .recommend-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/* ========================================
   フローチャートセクション
======================================== */

.treatment-flowchart {
    background: #fff;
    padding: 50px 30px;
    margin: 40px auto;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    max-width: 900px;
}

.flowchart-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.flowchart-container {
    max-width: 100%;
}

.flow-step {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 25px;
    border-left: 6px solid #ff69b4;
}

.flow-question {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px dashed #ddd;
}

.flow-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.flow-option {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 18px 25px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.flow-option:hover {
    border-color: #ff69b4;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.2);
}

.option-label {
    font-size: 16px;
    color: #555;
    font-weight: 500;
    flex: 1;
}

.option-arrow {
    color: #ff69b4;
    font-size: 22px;
    font-weight: bold;
    margin: 0 20px;
}

.option-result {
    font-size: 16px;
    font-weight: bold;
    color: #666;
    padding: 10px 20px;
    background: #f0f0f0;
    border-radius: 20px;
    white-space: nowrap;
}

.option-result.recommend {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: #fff;
}

.flowchart-note {
    background: linear-gradient(135deg, #fff9c4 0%, #fff3e0 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 6px solid #ffc107;
    margin-top: 30px;
}

.flowchart-note p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin: 0;
}

.flowchart-note strong {
    color: #e65100;
}

/* ========================================
   レスポンシブデザイン
======================================== */

@media screen and (max-width: 900px) {
    .treatment-content-wrapper,
    .treatment-bottom-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .combination-grid {
        grid-template-columns: 1fr;
    }
    
    .combination-card {
        min-height: auto;
    }
    
    .combination-card .recommend-badge {
        position: static;
        transform: none;
        display: block;
        text-align: center;
        margin-top: 15px;
    }
}

@media screen and (max-width: 768px) {
    .shimi-treatment-column-section {
        padding: 40px 0;
    }
    
    .treatment-column-grid {
        padding: 0 15px;
    }
    
    .treatment-column-card {
        padding: 30px 20px;
    }
    
    .treatment-title {
        font-size: 22px;
    }
    
    .treatment-icon {
        font-size: 48px;
    }
    
    .price-range {
        font-size: 24px;
    }
    
    .combination-title,
    .flowchart-title {
        font-size: 24px;
    }
    
    .combination-pattern {
        font-size: 32px;
    }
    
    .pattern-plus {
        margin: 0 10px;
        font-size: 26px;
    }
    
    .flow-step {
        padding: 20px;
    }
    
    .flow-question {
        font-size: 18px;
    }
    
    .flow-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 15px;
    }
    
    .option-arrow {
        display: none;
    }
    
    .option-result {
        align-self: flex-start;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .treatment-column-card {
        padding: 25px 15px;
    }
    
    .treatment-title {
        font-size: 20px;
    }
    
    .treatment-badge {
        font-size: 12px;
        padding: 6px 18px;
    }
    
    .treatment-icon {
        font-size: 40px;
    }
    
    .combination-title,
    .flowchart-title {
        font-size: 22px;
    }
    
    .flow-question {
        font-size: 16px;
    }
    
    .option-label {
        font-size: 14px;
    }
    
    .treatment-combination {
        padding: 40px 20px;
    }
    
    .treatment-flowchart {
        padding: 40px 20px;
    }
}

/* ========================================
   プリントスタイル
======================================== */

@media print {
    .treatment-column-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .combination-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .flow-step {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}