/* =============================================
   ほくろ除去クリニックポータル 完全統合版CSS
   比較表 + クリニックカード + 全セクション対応
   ============================================= */

/* ========================================
   CSS変数定義
======================================== */
:root {
  /* メインカラー - ピンク系 */
  --primary-color: #FF69B4;
  --primary-dark: #E85A9F;
  --primary-light: #FFE5F3;
  
  /* アクセントカラー */
  --accent-color: #FF1493;
  --accent-light: #FFF0F8;
  
  /* プロフェッショナル医療カラー */
  --medical-primary: #2c5aa0;
  --medical-primary-dark: #1e3f73;
  --medical-primary-light: #e3f2fd;
  --medical-accent: #ff6b9d;
  --medical-accent-light: #ffe4ec;
  --medical-success: #10b981;
  --medical-warning: #f59e0b;
  --medical-highlight: #FFF9E6;
  
  /* テキストカラー */
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-light: #999999;
  --text-white: #FFFFFF;
  
  /* 背景色 */
  --bg-primary: #FFFFFF;
  --bg-secondary: #FAFAFA;
  --bg-gray: #F5F5F5;
  
  /* グレースケール */
  --gray-50: #fafbfc;
  --gray-100: #f4f6f8;
  --gray-200: #e1e8ed;
  --gray-300: #cfd9de;
  --gray-400: #9aa5b1;
  --gray-500: #677489;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* ボーダー */
  --border-color: #DDDDDD;
  --border-light: #EEEEEE;
  
  /* シャドウ */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  
  /* タイポグラフィ */
  --font-family-base: 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  
  /* スペーシング */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  
  /* その他 */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --transition: all 0.3s ease;
  --transition-base: 0.25s ease-out;
}

/* ========================================
   ベースリセット
======================================== */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-base);
  color: var(--text-primary);
  background-color: var(--bg-secondary);
  line-height: 1.8;
  font-size: 16px;
}

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

/* ========================================
   パンくずリスト
======================================== */
.breadcrumbs {
  background: var(--bg-primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
}

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

.breadcrumb-item a:hover {
  color: var(--primary-color);
}

.breadcrumb-item .separator {
  margin: 0 8px;
  color: var(--text-light);
}

/* ========================================
   ページヘッダー
======================================== */
.hokuro-header {
  background: var(--primary-light);
  padding: 50px 20px 40px;
  text-align: center;
  border-bottom: 4px solid var(--primary-color);
  margin-bottom: 40px;
}

.page-subtitle {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.update-date {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
}

.page-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 15px 0;
  line-height: 1.4;
}

.page-description {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 800px;
  margin: 20px auto 0;
  line-height: 1.8;
}

/* キャッチコピーセクション */
.catch-copy-section {
  margin-top: 30px;
}

.catch-items {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.catch-item {
  background: var(--bg-primary);
  padding: 12px 25px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--primary-color);
}

.catch-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.5;
  display: block;
}

/* ========================================
   比較表セクション（完全版）
======================================== */
.hokuro-comparison-section {
  background: white;
  padding: 50px 20px;
  margin: 40px 0;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--primary-color);
}

.hokuro-comparison-section > p {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 30px;
}

/* 比較表コンテナ */
.vertical-comparison-container {
  margin: 30px 0;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 15px;
}

.comparison-scroll-wrapper::-webkit-scrollbar {
  height: 8px;
}

.comparison-scroll-wrapper::-webkit-scrollbar-track {
  background: var(--gray-100);
  border-radius: var(--radius-sm);
}

.comparison-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: var(--radius-sm);
}

.comparison-scroll-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--gray-500);
}

/* 比較表本体 */
.vertical-comparison-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  background: white;
  table-layout: fixed;
  display: table;
}

.vertical-comparison-table thead {
  background: linear-gradient(135deg, var(--medical-accent) 0%, #ff8ab3 100%);
  display: table-header-group;
}

.vertical-comparison-table thead tr {
  display: table-row;
}

.vertical-comparison-table thead th {
  padding: var(--space-4) var(--space-2);
  text-align: center;
  border-bottom: 2px solid var(--gray-200);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  vertical-align: middle;
  color: white;
  display: table-cell;
  font-size: var(--font-size-sm);
}

.info-header {
  background: linear-gradient(135deg, var(--medical-accent) 0%, #ff8ab3 100%);
  color: white;
  width: 150px;
  min-width: 150px;
  max-width: 150px;
  font-size: var(--font-size-sm);
  font-weight: 700;
}

.clinic-header {
  background: #e45e5e !important;
  color: var(--gray-800);
  white-space: nowrap;
  overflow: hidden;
  border-bottom: 2px solid var(--gray-200);
}

.clinic-header.featured-clinic-header {
  background: var(--medical-highlight);
  color: var(--gray-800);
  border-left: 3px solid var(--medical-warning);
  border-right: 3px solid var(--medical-warning);
  border-bottom: 2px solid var(--gray-200);
  position: relative;
}

.clinic-header.featured-clinic-header::after {
  content: '★ おすすめ';
  position: absolute;
  top: -1px;
  right: 8px;
  background: var(--medical-warning);
  color: white;
  padding: 3px 8px;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.clinic-name {
  font-size: var(--font-size-sm);
  font-weight: 700;
  margin-bottom: var(--space-2);
  line-height: 1.3;
  white-space: normal;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 2.6em;
  color: var(--gray-800);
  text-align: center;
}

.clinic-badges {
  display: flex;
  justify-content: center;
  gap: var(--space-1);
  margin-top: var(--space-2);
  flex-wrap: wrap;
}

.clinic-badges span {
  background: var(--medical-accent);
  color: white;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  font-weight: 700;
  white-space: nowrap;
}

/* テーブルボディ */
.vertical-comparison-table tbody {
  display: table-row-group;
}

.vertical-comparison-table tbody tr {
  display: table-row;
  border-bottom: 1px solid var(--gray-200);
}

.vertical-comparison-table tbody tr:nth-child(odd) {
  background-color: white;
}

.vertical-comparison-table tbody tr:nth-child(even) {
  background-color: var(--gray-50);
}

.vertical-comparison-table tbody tr:hover {
  background-color: var(--gray-100);
}

/* セル */
.vertical-comparison-table td {
  padding: var(--space-3) var(--space-2);
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid var(--gray-200);
  font-size: var(--font-size-sm);
  display: table-cell;
}

.info-cell {
  background: linear-gradient(135deg, var(--medical-accent) 0%, #ff8ab3 100%);
  color: white;
  width: 150px;
  min-width: 150px;
  max-width: 150px;
  font-weight: 700;
  text-align: center;
}

.info-title {
  font-size: var(--font-size-sm);
  color: white;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  display: block;
}

.info-subtitle {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.9);
  margin-top: var(--space-1);
  text-align: center;
  display: block;
}

.clinic-cell {
  width: calc((100% - 150px) / 3);
  min-width: 200px;
  background: inherit;
}

.clinic-cell.featured-cell {
  background: var(--medical-highlight);
  border-left: 3px solid var(--medical-warning);
  border-right: 3px solid var(--medical-warning);
  font-weight: 600;
}

/* 料金行 */
.price-row td {
  background: inherit;
}

.price-row .clinic-cell.featured-cell {
  background: var(--medical-highlight);
}

.price-display {
  text-align: center;
  display: block;
  width: 100%;
}

.price-main {
  display: block;
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--medical-accent);
  line-height: 1.3;
  text-align: center;
}

/* 治療法リスト */
.treatment-list {
  text-align: center;
  padding: var(--space-1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  width: 100%;
}

.treatment-item {
  font-size: var(--font-size-xs);
  line-height: 1.4;
  margin-bottom: 0;
  color: var(--gray-700);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  width: 100%;
}

.treatment-item.more {
  color: var(--gray-500);
  font-style: italic;
  font-size: 0.65rem;
}

/* その他の表示項目 */
.time-display,
.campaign-display,
.access-display {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--gray-700);
  text-align: center;
  display: block;
  width: 100%;
}

.campaign-display {
  color: var(--medical-accent);
}

/* おすすめポイント */
.points-list {
  text-align: center;
  padding: var(--space-1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  width: 100%;
}

.point-item {
  font-size: var(--font-size-xs);
  line-height: 1.4;
  margin-bottom: 0;
  color: var(--gray-700);
  text-align: center;
  width: 100%;
  font-weight: 700;
}

/* アクション行 */
.action-row td {
  background: var(--gray-100);
}

.action-row .clinic-cell.featured-cell {
  background: var(--medical-highlight);
}

/* CTAボタン */
.comparison-cta-btn {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: var(--medical-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-size: var(--font-size-xs);
  font-weight: 700;
  transition: var(--transition-base);
  border: none;
  cursor: pointer;
  min-width: 80px;
  text-align: center;
}

.comparison-cta-btn:hover {
  background: var(--medical-primary-dark);
  transform: translateY(-1px);
}

.comparison-cta-btn.featured-btn {
  background: var(--medical-warning);
}

.comparison-cta-btn.featured-btn:hover {
  background: #e08900;
}

/* テーブル注釈 */
.table-note {
  text-align: center;
  font-size: var(--font-size-xs);
  color: var(--gray-500);
  margin: 0;
  padding: var(--space-4);
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

/* ========================================
   クリニック選び方ガイド
======================================== */
.hokuro-selection-guide {
  background: var(--bg-primary);
  padding: 50px 30px;
  margin: 40px 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.guide-main-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}

.guide-main-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--primary-color);
}

/* 各ポイントセクション */
.selection-point {
  background: var(--bg-gray);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-light);
  position: relative;
  transition: var(--transition);
}

.selection-point:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

/* ポイントタイトル */
.point-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  line-height: 1.4;
}

/* 番号バッジ */
.point-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--text-white);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

/* ポイントコンテンツ */
.point-content {
  line-height: 1.8;
  color: var(--text-secondary);
  position: relative;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.point-content p {
  margin-bottom: 20px;
  font-size: 15px;
}

.point-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 30px 0 15px;
  padding-left: 15px;
  border-left: 4px solid var(--primary-color);
}

.point-content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.point-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.7;
}

.point-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: bold;
}

.point-content ul li strong {
  color: var(--text-primary);
  font-weight: 700;
}

.point-content ol {
  padding-left: 25px;
  margin: 20px 0;
}

.point-content ol li {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.7;
}

/* アコーディオン機能 */
.accordion-content {
  overflow: hidden;
}

.content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, 
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
  z-index: 1;
}

/* 続きを見るボタン */
.toggle-content-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 200px;
  margin: 15px auto 0;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary-color), #FFA07A);
  color: var(--text-white);
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}

.toggle-content-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.toggle-content-btn:active {
  transform: translateY(0);
}

.toggle-content-btn.active {
  background: linear-gradient(135deg, #F5F5F5, #E0E0E0);
  color: #666;
}

.toggle-content-btn.active:hover {
  background: linear-gradient(135deg, #E0E0E0, #D0D0D0);
}

.toggle-content-btn i {
  font-size: 12px;
  transition: transform 0.3s;
}

.toggle-content-btn.active i {
  transform: rotate(180deg);
}

/* ほくろ種類リスト */
.hokuro-types-list {
  display: grid;
  gap: 20px;
  margin: 25px 0;
}

.hokuro-type-item {
  background: var(--bg-primary);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-light);
  transition: var(--transition);
}

.hokuro-type-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.hokuro-type-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.hokuro-type-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* 治療法比較テーブル */
.treatment-comparison {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.treatment-comparison th {
  background: var(--bg-gray);
  padding: 12px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
}

.treatment-comparison td {
  padding: 12px;
  border: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text-secondary);
}

.treatment-comparison tr:hover {
  background: var(--bg-gray);
}

/* 料金リスト */
.price-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.price-list li {
  background: var(--bg-primary);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.price-list li:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.price-list li strong {
  color: var(--text-primary);
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}

.price-detail {
  display: block;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 5px;
  line-height: 1.6;
}

/* 注意事項ボックス */
.cost-notice {
  background: var(--accent-light);
  padding: 20px;
  border-radius: var(--radius-md);
  margin: 25px 0;
  border-left: 4px solid var(--accent-color);
}

.cost-notice h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.cost-notice ul {
  list-style: disc;
  padding-left: 25px;
  margin: 0;
}

.cost-notice ul li {
  margin-bottom: 10px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ポイントサマリー */
.point-summary {
  background: var(--primary-light);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-top: 25px;
  border-left: 4px solid var(--primary-color);
}

.point-summary strong {
  display: block;
  color: var(--primary-color);
  font-size: 16px;
  margin-bottom: 10px;
}

/* 経験チェック */
.experience-check {
  display: grid;
  gap: 15px;
  margin: 25px 0;
}

.experience-check p {
  background: var(--bg-primary);
  padding: 15px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
  margin: 0;
}

.experience-check strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 700;
}

/* スケジュール情報 */
.schedule-info {
  display: grid;
  gap: 15px;
  margin: 25px 0;
}

.schedule-info p {
  background: var(--bg-primary);
  padding: 15px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
  margin: 0;
}

.schedule-info strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 700;
}

/* アフターケア注意 */
.aftercare-caution {
  background: rgba(245, 158, 11, 0.1);
  padding: 20px;
  border-radius: var(--radius-md);
  margin: 25px 0;
  border-left: 4px solid #f59e0b;
}

.aftercare-caution p {
  margin-bottom: 15px;
}

.aftercare-caution strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 700;
}

/* 保証リスト */
.guarantee-list {
  display: grid;
  gap: 15px;
  margin: 25px 0;
}

.guarantee-list p {
  background: var(--bg-primary);
  padding: 15px;
  border-radius: var(--radius-md);
  border-left: 4px solid #10b981;
  margin: 0;
}

.guarantee-list strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 700;
}

/* ========================================
   クリニックカードセクション
======================================== */
.clinic-list {
  margin: 40px 0;
}

.shimitori-clinics {
  max-width: 1200px;
  margin: 0 auto;
}

/* クリニックカード */
.shimitori-clinic-card {
  background: var(--bg-primary);
  margin-bottom: 50px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid transparent;
}

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

/* 優先表示クリニック */
.featured-clinic,
.shinagawa-priority-clinic {
  border: 3px solid var(--primary-color);
  position: relative;
}

.shinagawa-fallback-card {
  background: var(--primary-light);
  border: 2px solid var(--primary-color);
}

/* クリニックヘッダー */
.clinic-header {
  background: #e45e5e !important;
  padding: 25px 30px;
}

.clinic-header .clinic-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.clinic-title .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  background: var(--bg-primary);
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.priority-label {
  display: inline-block;
  padding: 5px 15px;
  background: var(--accent-color);
  color: var(--text-white);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* クリニックバッジ（カード内） */
.shimitori-clinic-card .clinic-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.shinagawa-badge,
.shinagawa-badge-regular {
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.shinagawa-badge {
  background: var(--text-white);
  color: var(--primary-color);
  border: 2px solid var(--text-white);
}

.shinagawa-badge-regular {
  background: rgba(255, 255, 255, 0.3);
  color: var(--text-white);
  border: 2px solid var(--text-white);
}

.shimihoudai-badge {
  background: #10b981;
  color: var(--text-white);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

/* 優先クリニック通知 */
.featured-clinic-notice {
  background: var(--accent-light);
  padding: 15px 30px;
  text-align: center;
  border-bottom: 1px solid var(--primary-color);
}

.featured-clinic-notice p {
  margin: 0;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
}

.featured-clinic-notice i {
  color: var(--primary-color);
  margin-right: 5px;
}

/* 代替カセット通知 */
.fallback-notice {
  background: rgba(245, 158, 11, 0.1);
  padding: 15px 30px;
  text-align: center;
  border-bottom: 1px solid #f59e0b;
}

.fallback-notice p {
  margin: 0;
  color: #f59e0b;
  font-weight: 600;
  font-size: 14px;
}

.fallback-notice i {
  color: #f59e0b;
  margin-right: 5px;
}

/* クリニック画像 */
.clinic-image {
  padding: 30px;
  text-align: center;
  background: var(--bg-gray);
}

.clinic-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* 共通セクションスタイル */
.price-section,
.clinic-features-highlight,
.clinic-description,
.treatment-devices-section,
.treatment-coverage-section,
.clinic-info,
.map-section {
  padding: 30px;
  border-bottom: 1px solid var(--border-light);
}

/* セクションタイトル */
.price-section h4,
.clinic-features-highlight h4,
.treatment-devices-section h4,
.treatment-coverage-section h4,
.clinic-info h4,
.map-section h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-section h4 i,
.clinic-features-highlight h4 i,
.treatment-devices-section h4 i,
.treatment-coverage-section h4 i,
.clinic-info h4 i,
.map-section h4 i {
  color: var(--primary-color);
  font-size: 20px;
}

/* 料金セクション */
.main-price {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.price-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-left: 5px;
}

.unlimited-price {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 600;
  padding: 8px 15px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-top: 10px;
}

/* CTAボタン（カード内） */
.clinic-cta {
  padding: 25px 30px;
  background: var(--bg-gray);
  text-align: center;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 40px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  min-width: 200px;
  border: none;
  cursor: pointer;
}

.cta-button.primary {
  background: var(--primary-color);
  color: var(--text-white);
  box-shadow: var(--shadow-md);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--primary-dark);
}

.cta-button.secondary {
  background: var(--bg-primary);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
  background: var(--primary-color);
  color: var(--text-white);
}

/* 連絡先のみ表示 */
.contact-info-only {
  text-align: center;
  padding: 20px;
}

.no-contact-info {
  color: var(--text-light);
  font-size: 14px;
}

/* 特徴セクション */
.clinic-features-highlight {
  background: var(--primary-light);
}

.features-content {
  line-height: 1.8;
}

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

.features-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.7;
}

.features-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: bold;
}

/* 説明文 */
.clinic-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* 治療機器バッジ */
.device-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.device-badge {
  padding: 8px 15px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  border: 2px solid;
}

.device-badge.available {
  background: var(--primary-light);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.device-badge.unavailable {
  background: var(--bg-gray);
  border-color: var(--border-color);
  color: var(--text-light);
}

/* 治療対応表 */
.treatment-coverage-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.treatment-coverage-table thead {
  background: var(--bg-gray);
}

.treatment-coverage-table th {
  padding: 12px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--border-light);
}

.treatment-coverage-table td {
  padding: 12px;
  border: 1px solid var(--border-light);
  font-size: 14px;
  text-align: center;
}

.treatment-coverage-table tr:hover {
  background: var(--bg-gray);
}

.mark-yes {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 18px;
}

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

/* 基本情報テーブル */
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-primary);
}

.info-table th {
  background: var(--bg-gray);
  padding: 15px;
  text-align: left;
  font-weight: 600;
  width: 30%;
  border: 1px solid var(--border-light);
  vertical-align: top;
}

.info-table td {
  padding: 15px;
  border: 1px solid var(--border-light);
}

.phone-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

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

/* 診療時間表示 */
.schedule-display {
  margin-top: 10px;
}

.table-time {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 13px;
}

.table-time th,
.table-time td {
  padding: 8px;
  border: 1px solid var(--border-light);
  text-align: center;
}

.table-time th {
  background: var(--bg-gray);
  font-weight: 600;
}

/* マップセクション */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ========================================
   ほくろ種類別対応表
======================================== */
.hokuro-type-section {
  background: var(--bg-primary);
  padding: 50px 30px;
  margin: 40px 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hokuro-type-section .section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 30px;
}

.table-scroll-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 25px 0;
}

.hokuro-type-comparison {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hokuro-type-comparison thead {
  background: var(--primary-color);
  color: var(--text-white);
}

.hokuro-type-comparison th {
  padding: 15px 10px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--primary-dark);
  text-align: center;
}

.hokuro-type-comparison tbody tr {
  border-bottom: 1px solid var(--border-light);
}

.hokuro-type-comparison tbody tr:hover {
  background: var(--bg-gray);
}

.hokuro-type-comparison tbody tr.featured-row {
  background: var(--primary-light);
}

.hokuro-type-comparison td {
  padding: 12px 10px;
  text-align: center;
  font-size: 14px;
  border: 1px solid var(--border-light);
}

.hokuro-type-comparison td.clinic-name {
  text-align: left;
  font-weight: 600;
}

.hokuro-type-comparison .clinic-name a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.hokuro-type-comparison .clinic-name a:hover {
  text-decoration: underline;
}

.featured-badge-small {
  display: inline-block;
  margin-left: 8px;
  color: #f59e0b;
  font-size: 16px;
}

.hokuro-type-comparison .available {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 18px;
}

.hokuro-type-comparison .unavailable {
  color: var(--text-light);
  font-size: 16px;
}

.available-badge {
  background: var(--primary-color);
  color: var(--text-white);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.smooth-scroll {
  scroll-behavior: smooth;
}

/* ========================================
   SEOコンテンツセクション
======================================== */
.seo-content {
  background: var(--bg-primary);
  padding: 50px 30px;
  margin: 40px 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.seo-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--primary-color);
}

.seo-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 30px 0 15px;
  padding-left: 15px;
  border-left: 4px solid var(--primary-color);
}

.seo-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.seo-content ul,
.seo-content ol {
  padding-left: 25px;
  margin-bottom: 20px;
}

.seo-content li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 10px;
}

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

/* 料金テーブル */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.price-table th,
.price-table td {
  padding: 12px;
  border: 1px solid var(--border-light);
  font-size: 14px;
}

.price-table th {
  background: var(--bg-gray);
  font-weight: 600;
  text-align: left;
  color: var(--text-primary);
}

.price-table tr:hover {
  background: var(--bg-gray);
}

/* ========================================
   エリアリンク
======================================== */
.area-links {
  background: var(--bg-primary);
  padding: 50px 30px;
  margin: 40px 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.area-links h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 30px;
}

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

.area-item {
  display: block;
  padding: 15px 20px;
  background: var(--bg-gray);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.area-item:hover {
  background: var(--primary-light);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ========================================
   ページネーション
======================================== */
.clinic-pagination {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

.clinic-pagination ul {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.clinic-pagination li a,
.clinic-pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.clinic-pagination li a:hover {
  background: var(--primary-light);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.clinic-pagination li.active span {
  background: var(--primary-color);
  color: var(--text-white);
  border-color: var(--primary-color);
}

/* メッセージ表示 */
.no-clinics-message {
  text-align: center;
  padding: 50px 20px;
  color: var(--text-secondary);
}

/* ========================================
   管理者用デバッグ情報
======================================== */
.admin-debug-info {
  margin-top: 30px;
  padding: 15px;
  background: var(--bg-gray);
  border-left: 4px solid var(--primary-color);
  border-radius: var(--radius-md);
}

.admin-debug-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
}

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

.admin-debug-info ul li {
  padding: 8px 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}

.admin-debug-info ul li:last-child {
  border-bottom: none;
}

/* ========================================
   レスポンシブ対応
======================================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

  .hokuro-selection-guide,
  .seo-content,
  .area-links,
  .hokuro-type-section {
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 10px;
    margin: 0 1px;
  }
  
  .hokuro-header {
    padding: 30px 15px 25px;
  }
  
  .page-title {
    font-size: 20px;
  }
  
  .page-description {
    font-size: 14px;
  }
  
  .catch-items {
    gap: 8px;
  }
  
  .catch-item {
    padding: 8px 15px;
  }
  
  .catch-item span {
    font-size: 12px;
  }

  /* 比較表のモバイル調整 */
  .hokuro-comparison-section {
    padding: 30px 10px;
    margin: 30px -15px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .vertical-comparison-container {
    margin: 20px -15px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .info-header,
  .info-cell {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
    font-size: var(--font-size-xs);
  }

  .clinic-header,
  .clinic-cell {
    min-width: 160px;
  }

  .comparison-scroll-wrapper::after {
    display: block;
  }

  /* その他のセクション */
  .hokuro-selection-guide,
  .seo-content,
  .area-links,
  .hokuro-type-section {
    padding: 30px 15px;
  }

  .guide-main-title {
    font-size: 20px;
  }

  .selection-point {
    padding: 20px;
  }
  
  .point-title {
    font-size: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .point-number {
    min-width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .clinic-title {
    font-size: 18px;
  }
  
  .clinic-title .number {
    min-width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .priority-label {
    font-size: 11px;
    padding: 4px 10px;
  }
  
  .clinic-header,
  .price-section,
  .clinic-features-highlight,
  .clinic-description,
  .treatment-devices-section,
  .treatment-coverage-section,
  .clinic-info,
  .map-section {
    padding: 20px 15px;
  }
  
  .clinic-cta {
    padding: 20px 15px;
    flex-direction: column;
  }
  
  .cta-button {
    width: 100%;
    min-width: auto;
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .info-table th {
    width: 35%;
    padding: 10px;
    font-size: 13px;
  }
  
  .info-table td {
    padding: 10px;
    font-size: 13px;
  }
  
  .treatment-coverage-table th,
  .treatment-coverage-table td {
    padding: 8px 5px;
    font-size: 12px;
  }
  
  .table-time th,
  .table-time td {
    padding: 6px 3px;
    font-size: 11px;
  }
  
  .area-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .area-item {
    padding: 12px 15px;
    font-size: 14px;
  }
  
  .seo-content h2 {
    font-size: 20px;
  }
  
  .seo-content h3 {
    font-size: 18px;
  }
  
  .price-table th,
  .price-table td {
    padding: 8px;
    font-size: 12px;
  }

  .map-container iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 18px;
  }
  
  .catch-items {
    flex-direction: column;
    align-items: stretch;
  }
  
  .catch-item {
    text-align: center;
  }

  /* 比較表 */
  .info-header,
  .info-cell {
    width: 80px;
    min-width: 80px;
    max-width: 80px;
    font-size: 0.7rem;
    padding: var(--space-2) var(--space-1);
  }

  .clinic-header,
  .clinic-cell {
    padding: var(--space-2) var(--space-1);
    min-width: 160px;
  }
  
  .clinic-title {
    font-size: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .area-grid {
    grid-template-columns: 1fr;
  }
  
  .device-badges {
    flex-direction: column;
  }
  
  .device-badge {
    text-align: center;
  }

  .hokuro-types-list {
    gap: 15px;
  }

  .treatment-comparison,
  .price-table {
    font-size: 12px;
  }

  .treatment-comparison th,
  .treatment-comparison td,
  .price-table th,
  .price-table td {
    padding: 8px 5px;
  }
}

/* ========================================
   印刷対応
======================================== */
@media print {
  .catch-copy-section,
  .clinic-cta,
  .area-links,
  .clinic-pagination,
  .toggle-content-btn {
    display: none;
  }
  
  .shimitori-clinic-card {
    page-break-inside: avoid;
  }

  .accordion-content,
  .point-content {
    max-height: none !important;
    overflow: visible !important;
  }

  .content-overlay {
    display: none;
  }

  .vertical-comparison-container {
    box-shadow: none;
    border: 1px solid black;
  }
  
  .comparison-cta-btn {
    background: white;
    color: black;
    border: 1px solid black;
  }
  
  .comparison-scroll-wrapper::after {
    display: none;
  }
}

/* ========================================
   アクセシビリティ
======================================== */
.toggle-content-btn:focus,
.cta-button:focus,
.comparison-cta-btn:focus,
.area-item:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

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