/* ================================================
   アフターピルクリニック検索サイト - 改善版スタイル
   ================================================ */

/* ----- 基本設定（配色を改善） ----- */
:root {
    /* メインカラー：医療系の信頼感ある青 */
    --primary-color: #2196F3;
    --primary-dark: #1976D2;
    --primary-light: #BBDEFB;
    --primary-lighter: #E3F2FD;
    
    /* アクセントカラー：安心感のある緑 */
    --accent-color: #4CAF50;
    --accent-dark: #388E3C;
    --accent-light: #C8E6C9;
    
    /* 警告・注意 */
    --warning-color: #FF9800;
    --warning-light: #FFE0B2;
    --danger-color: #F44336;
    --danger-light: #FFCDD2;
    
    /* アフターピル料金用カラー */
    --pill-bg: #fffbf5;
    --pill-border: #ffd8a8;
    --pill-title: #ff8800;
    --pill-price: #ff4500;
    
    /* テキストカラー */
    --text-primary: #212121;
    --text-secondary: #757575;
    --text-light: #BDBDBD;
    
    /* 背景色 */
    --bg-white: #FFFFFF;
    --bg-gray: #F5F5F5;
    --bg-light: #FAFAFA;
    
    /* ボーダー */
    --border-color: #E0E0E0;
    --border-light: #EEEEEE;
    
    /* シャドウ */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
    --shadow-md: 0 3px 6px rgba(0,0,0,0.15), 0 2px 4px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.15), 0 3px 6px rgba(0,0,0,0.10);
    --shadow-hover: 0 14px 28px rgba(0,0,0,0.15), 0 10px 10px rgba(0,0,0,0.12);
    
    /* 角丸 */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

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

.breadcrumbs .separator {
    color: var(--text-light);
    margin: 0 4px;
}

/* ----- ページヘッダー（改善版） ----- */
.afterpill-header {
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

.afterpill-header .page-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.afterpill-header .page-title .count {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 18px;
    margin-left: 12px;
    font-weight: 600;
}

.lead-text {
    margin-top: 20px;
    line-height: 1.8;
}

.lead-text .lead-main {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 500;
}

.lead-text .lead-sub {
    font-size: 14px;
    opacity: 0.95;
}

.key-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.point-item i {
    color: var(--accent-color);
    font-weight: bold;
}

.update-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 13px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ----- 緊急バナー ----- */
.emergency-banner {
    background: linear-gradient(135deg, var(--danger-color) 0%, #E53935 100%);
    color: white;
    padding: 20px 25px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.banner-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.banner-content i {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.banner-text strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

.banner-text p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

/* ----- 統計情報セクション ----- */
.area-stats {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    padding: 24px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 2px solid var(--border-light);
    transition: all 0.3s;
}

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

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ----- セクションタイトル ----- */
.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.section-title i {
    color: var(--primary-color);
    font-size: 28px;
}

.section-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

/* ----- エリアPRセクション（改善版） ----- */
.area-pr-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

.pr-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.pr-content > p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

.pr-points {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.pr-point {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.pr-point:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.pr-point i {
    font-size: 32px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.pr-point h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.pr-point p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* ----- 目次 ----- */
.table-of-contents {
    background: var(--bg-white);
    padding: 25px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    border: 2px solid var(--border-color);
}

.toc-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

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

.toc-list li {
    margin-bottom: 8px;
}

.toc-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 6px 0;
    transition: all 0.2s;
}

.toc-list a:hover {
    color: var(--primary-dark);
    padding-left: 10px;
}

.toc-list a::before {
    content: "▸";
    margin-right: 8px;
    font-size: 12px;
}

/* ----- エリアリスト（大幅改善） ----- */
.child-areas,
.child-stations {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.area-list,
.station-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-item a,
.station-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s;
    border: 2px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.area-item a::before,
.station-item a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.area-item a:hover,
.station-item a:hover {
    background: var(--primary-lighter);
    border-color: var(--primary-color);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.area-item a:hover::before,
.station-item a:hover::before {
    transform: scaleY(1);
}

.area-name,
.station-name {
    font-weight: 600;
    font-size: 15px;
    flex: 1;
}

.area-count,
.station-count {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin: 0 8px;
}

/* ----- 病院カード（改善版） ----- */
.hospital-list {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.result-count {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.hospital-grid {
    display: grid;
    gap: 25px;
}

.hospital-item {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.hospital-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

/* ランキング番号 */
.hospital-item::before {
    content: attr(data-rank);
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

/* 病院ヘッダー */
.hospital-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 25px;
    padding-left: 70px;
    color: white;
}

.hospital-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.hospital-name a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.hospital-name a:hover {
    opacity: 0.9;
}

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

.badge {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.badge-female-doctor {
    background: rgba(233, 30, 99, 0.9);
}

.badge-weekend {
    background: rgba(76, 175, 80, 0.9);
}

.badge-night {
    background: rgba(255, 152, 0, 0.9);
}

.badge-online {
    background: rgba(33, 150, 243, 0.9);
}

.badge-parking {
    background: rgba(156, 39, 176, 0.9);
}

/* 画像エリア */
.hospital-image {
    width: 100%;
    height: 200px;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
    border-bottom: 2px solid var(--border-light);
}

.hospital-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 病院情報 */
.hospital-info {
    padding: 25px;
}

.basic-info-section {
    margin-bottom: 20px;
}

.info-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
    align-items: flex-start;
}

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

.info-row dt {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-row dt i {
    color: var(--primary-color);
    font-size: 16px;
}

.info-row dd {
    margin: 0;
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.6;
}

/* ハイライト情報 */
.info-row.highlight {
    background: var(--primary-lighter);
    padding: 18px;
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-light);
    margin-bottom: 15px;
}

.info-row.priority-high {
    border-left: 4px solid var(--primary-color);
}

/* ==================== アフターピル料金セクション（画像デザイン対応） ==================== */
.afterpill-pricing {
    background: var(--pill-bg);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 2px solid var(--pill-border);
}

.pricing-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 16px 0;
    color: var(--pill-title);
}

.pricing-title::before {
    content: '💊';
    font-size: 18px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.price-item {
    background: white;
    padding: 16px 12px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.price-label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 600;
}

.price-value {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: var(--pill-price);
    margin: 4px 0;
}

.price-value .yen {
    font-size: 16px;
    opacity: 0.8;
}

.price-note {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 6px;
}

.price-inquiry {
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    color: #6c757d;
    font-size: 14px;
    grid-column: 1 / -1;
}

/* アフターピルタグ */
.afterpill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.afterpill-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: white;
    background: var(--primary-color);
}

.afterpill-72h {
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
}

.afterpill-120h {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
}

.afterpill-default {
    background: var(--text-light);
    color: var(--text-primary);
}

/* 料金表示 */
.afterpill-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--pill-price);
}

/* 電話リンク */
.phone-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.phone-link:hover {
    color: var(--primary-dark);
    transform: scale(1.05);
}

/* 駅リンク */
.station-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.station-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

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

/* 特徴タグ */
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    background: var(--bg-light);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    font-weight: 500;
    transition: all 0.2s;
}

.feature-tag:hover {
    border-color: var(--primary-color);
    background: var(--primary-lighter);
}

.feature-female-doctor {
    background: #FCE4EC;
    color: #C2185B;
    border-color: #F8BBD0;
}

.feature-online {
    background: #E3F2FD;
    color: #1976D2;
    border-color: #BBDEFB;
}

.feature-holiday {
    background: #E8F5E9;
    color: #388E3C;
    border-color: #C8E6C9;
}

.feature-card {
    background: #FFF3E0;
    color: #F57C00;
    border-color: #FFE0B2;
}

.feature-english {
    background: #F3E5F5;
    color: #7B1FA2;
    border-color: #E1BEE7;
}

.feature-barrier-free {
    background: #E0F2F1;
    color: #00796B;
    border-color: #B2DFDB;
}

.feature-night {
    background: #E8EAF6;
    color: #3F51B5;
    border-color: #C5CAE9;
}

.feature-same-day {
    background: #FFF9C4;
    color: #F57F17;
    border-color: #FFF59D;
}

.feature-parking {
    background: #F3E5F5;
    color: #8E24AA;
    border-color: #E1BEE7;
}

/* 詳しい特徴セクション（常に表示） */
.detailed-features {
    margin-top: 20px;
    border-top: 2px solid var(--border-light);
    padding-top: 20px;
}

.details-content .info-row {
    padding: 12px 0;
}

/* 営業時間テーブル */
.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    font-size: 13px;
}

.hours-table thead {
    background: var(--primary-color);
    color: white;
}

.hours-table th {
    padding: 12px 8px;
    text-align: center;
    font-weight: 600;
    font-size: 12px;
}

.hours-table td {
    padding: 12px 8px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.hours-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}

.open-day {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 16px;
}

.closed-day {
    color: var(--text-light);
}

/* 対応疾患・治療 */
.treatments-list {
    line-height: 1.8;
}

/* クリニック説明 */
.clinic-description {
    margin-top: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

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

.clinic-description p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

/* 病院フッター */
.hospital-footer {
    padding: 20px 25px;
    background: var(--bg-light);
    border-top: 2px solid var(--border-light);
}

.btn-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

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

/* ----- ガイドセクション ----- */
.guide-section,
.knowledge-section,
.flow-section,
.faq-section,
.area-info-section {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.guide-content,
.knowledge-content,
.area-info-content {
    margin-top: 20px;
}

.guide-item,
.knowledge-box {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.guide-item:hover,
.knowledge-box:hover {
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.guide-item h3,
.knowledge-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.guide-item .number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.guide-item p,
.knowledge-box p {
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-primary);
}

.check-list i {
    color: var(--accent-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.important-note {
    background: var(--warning-light);
    border-left-color: var(--warning-color);
}

.warning-list {
    list-style: none;
    padding: 0;
}

.warning-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.warning-list li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-size: 18px;
}

/* 効果テーブル */
.effect-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.effect-table thead {
    background: var(--primary-color);
    color: white;
}

.effect-table th,
.effect-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.effect-table td {
    font-size: 14px;
}

.success-high {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 16px;
}

.success-medium {
    color: var(--warning-color);
    font-weight: 700;
    font-size: 16px;
}

.success-low {
    color: var(--danger-color);
    font-weight: 700;
    font-size: 16px;
}

.note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 12px;
    padding: 12px;
    background: var(--primary-lighter);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-secondary);
}

.note i {
    color: var(--primary-color);
    margin-top: 2px;
}

/* ----- フローステップ ----- */
.flow-steps {
    margin-top: 30px;
}

.flow-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 30px;
}

.flow-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 50px;
    bottom: -10px;
    width: 2px;
    background: var(--primary-light);
}

.step-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    box-shadow: var(--shadow-sm);
}

.step-content {
    flex: 1;
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary-color);
}

.step-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-primary);
    line-height: 1.7;
    margin: 0;
}

.flow-note {
    background: var(--accent-light);
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
}

.flow-note i {
    color: var(--accent-color);
    font-size: 20px;
    flex-shrink: 0;
}

.flow-note p {
    margin: 0;
    line-height: 1.7;
}

/* ----- FAQ ----- */
.faq-list {
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-white);
    transition: all 0.3s;
}

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

.faq-question {
    background: var(--primary-color);
    color: white;
    padding: 18px 20px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.faq-question i {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-style: normal;
    font-weight: 700;
}

.faq-answer {
    padding: 20px;
    background: var(--bg-light);
    display: flex;
    gap: 12px;
}

.faq-answer i {
    width: 28px;
    height: 28px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.8;
    color: var(--text-primary);
}

/* ----- 関連エリア ----- */
.related-areas {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.related-area-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.related-area-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s;
    border: 2px solid var(--border-light);
}

.related-area-list li a:hover {
    background: var(--primary-lighter);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.related-area-list .count {
    background: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    margin: 0 8px;
}

.view-all-link {
    text-align: center;
    margin-top: 25px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ----- お役立ちリンク ----- */
.useful-links {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.link-card {
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s;
    border: 2px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    background: var(--primary-lighter);
}

.link-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.link-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.link-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

/* ----- 免責事項 ----- */
.disclaimer {
    background: var(--warning-light);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    border-left: 4px solid var(--warning-color);
}

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

.disclaimer h3 i {
    color: var(--warning-color);
}

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

/* ----- ページネーション ----- */
.pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

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

.pagination a,
.pagination span {
    padding: 10px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 600;
}

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

.pagination .current {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ----- 検索結果なし ----- */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.no-results i {
    font-size: 60px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.no-results p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 15px 0;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-back:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ================================================
   オンライン診療セクション専用CSS
   ================================================ */
.online-service-section {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.online-service-header {
    margin-bottom: 35px;
}

.online-service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.online-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.online-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.online-card.featured {
    border-color: var(--primary-color);
}

.online-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    z-index: 10;
}

.badge-recommended,
.badge-popular {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.badge-recommended {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4081 100%);
}

.badge-popular {
    background: linear-gradient(135deg, #FFB300 0%, #FF6F00 100%);
}

.online-card-image {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    padding: 50px 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.online-card-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.online-card-image-secondary {
    background: linear-gradient(135deg, #78909C 0%, #546E7A 100%);
}

.online-card-image-content {
    position: relative;
    z-index: 1;
}

.online-service-name {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.online-service-subtitle {
    font-size: 15px;
    opacity: 0.95;
    margin-bottom: 20px;
}

.online-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.online-stats .stat-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.stat-icon {
    font-size: 16px;
}

.online-card-body {
    padding: 30px;
}

.online-info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
    background: var(--bg-white);
}

.online-info-table tr {
    border-bottom: 1px solid #EEEEEE;
}

.online-info-table tr:last-child {
    border-bottom: none;
}

.online-info-table th {
    text-align: left;
    padding: 16px;
    background: #F5F5F5;
    font-weight: 600;
    color: #757575;
    width: 30%;
    font-size: 14px;
    vertical-align: top;
}

.online-info-table td {
    padding: 16px;
    color: #212121;
    font-size: 14px;
    line-height: 1.6;
}

.price-highlight {
    font-size: 28px;
    font-weight: 900;
    color: #2196F3;
    line-height: 1.2;
}

.price-from {
    font-size: 16px;
    font-weight: 600;
    color: #757575;
}

.highlight-text {
    background: linear-gradient(transparent 60%, #FFF59D 60%);
    font-weight: 600;
}

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

.pill-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.pill-72h {
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
}

.pill-120h {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
}

.online-features {
    background: #F5F5F5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.features-title {
    font-size: 16px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 12px;
}

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

.features-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: #212121;
}

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

.online-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-tel {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.btn-tel:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.btn-tel-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-tel-label {
    font-size: 12px;
    opacity: 0.9;
}

.btn-tel-number {
    font-size: 20px;
    font-weight: 700;
}

.btn-web {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.btn-web:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

.btn-web-secondary {
    background: white;
    color: #2196F3;
    border: 2px solid #2196F3;
    box-shadow: none;
}

.btn-web-secondary:hover {
    background: #2196F3;
    color: white;
}

.online-note {
    background: #E3F2FD;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #2196F3;
    display: flex;
    gap: 15px;
}

.online-note-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.online-note-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 8px;
}

.online-note-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #212121;
    margin: 0;
}

/* ----- レスポンシブ対応 ----- */
@media (max-width: 968px) {
    .online-service-cards {
        grid-template-columns: 1fr;
    }

    .online-service-name {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .afterpill-header {
        padding: 30px 20px;
    }

    .afterpill-header .page-title {
        font-size: 22px;
    }

    .key-points {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .area-list,
    .station-list,
    .related-area-list {
        grid-template-columns: 1fr;
    }

    .info-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .section-title {
        font-size: 20px;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }

    .flow-step {
        flex-direction: column;
    }

    .flow-step::after {
        display: none;
    }

    .hospital-item::before {
        width: 35px;
        height: 35px;
        font-size: 16px;
        top: 15px;
        left: 15px;
    }

    .hospital-header {
        padding: 20px 15px 20px 60px;
    }

    .hospital-name {
        font-size: 18px;
    }

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

    .badge {
        font-size: 11px;
        padding: 5px 10px;
    }

    .hospital-info {
        padding: 20px 15px;
    }

    .hours-table {
        font-size: 11px;
    }

    .hours-table th,
    .hours-table td {
        padding: 8px 4px;
    }

    .hours-table th {
        font-size: 10px;
    }

    .hours-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .online-service-section {
        padding: 30px 20px;
    }

    .online-card-body {
        padding: 20px;
    }

    .online-info-table th,
    .online-info-table td {
        display: block;
        width: 100%;
        padding: 12px;
    }

    .online-info-table th {
        background: #E3F2FD;
        border-bottom: none;
        padding-bottom: 8px;
    }

    .online-info-table td {
        padding-top: 8px;
    }

    .online-info-table tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #EEEEEE;
        border-radius: 4px;
        overflow: hidden;
    }

    .price-highlight {
        font-size: 24px;
    }

    .online-note {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .afterpill-header .page-title {
        font-size: 19px;
    }

    .point-item {
        font-size: 13px;
        padding: 6px 12px;
    }

    .stat-number {
        font-size: 26px;
    }

    .hospital-name {
        font-size: 17px;
    }

    .afterpill-tags {
        flex-direction: column;
        gap: 8px;
    }

    .afterpill-tag {
        width: 100%;
        text-align: center;
    }

    .btn-detail {
        font-size: 14px;
        padding: 12px;
    }

    .area-pr-section {
        padding: 30px 20px;
    }

    .pr-content h2 {
        font-size: 20px;
    }

    .pr-point {
        flex-direction: column;
        text-align: center;
    }

    .pr-point i {
        font-size: 28px;
    }

    .online-service-name {
        font-size: 24px;
    }

    .online-card-badge {
        top: 10px;
        right: 10px;
        flex-direction: column;
        align-items: flex-end;
    }

    .price-grid {
        grid-template-columns: 1fr;
    }
}

/* ----- アニメーション ----- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hospital-item {
    animation: fadeIn 0.5s ease-out;
}

/* ----- プリント用 ----- */
@media print {
    .navigation,
    .btn-detail,
    .pagination-wrapper {
        display: none;
    }

    .hospital-item {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
    }
}

/* ==================== 詳細情報セクション（完全版） ==================== */
.detailed-features {
    margin-top: 20px;
    border-top: 2px solid var(--border-light);
    padding-top: 20px;
}

.details-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.details-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-light);
}

.details-content h4 i {
    color: var(--primary-color);
    font-size: 18px;
}

/* クリニック説明 */
.clinic-description {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.clinic-description p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-primary);
    margin: 0;
}

/* 特徴リスト */
.clinic-features {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
}

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

.feature-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.7;
    border-bottom: 1px solid var(--border-light);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 16px;
}

/* 休診日情報 */
.closed-days-info {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
}

.closed-days-text {
    font-size: 14px;
    color: var(--text-primary);
    margin: 0;
    padding: 10px 15px;
    background: white;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--danger-color);
}

/* 診療時間詳細テーブル */
.schedule-table {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
}

.schedule-content {
    background: white;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.schedule-content th,
.schedule-content td {
    padding: 12px;
    text-align: center;
    border: 1px solid var(--border-light);
    font-size: 14px;
}

.schedule-content th {
    background: var(--bg-gray);
    font-weight: 600;
    color: var(--text-primary);
}

.schedule-content td {
    color: var(--text-primary);
}

.schedule-content .day-header {
    background: var(--primary-lighter);
    font-weight: 600;
}

/* 簡易診療時間リスト */
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    padding: 8px 15px;
    background: white;
    margin-bottom: 6px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-primary);
    border-left: 3px solid var(--primary-color);
}

.hours-list.compact li {
    padding: 6px 12px;
    font-size: 12px;
}

.schedule-preview {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 10px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    margin: 0;
}

/* 地図・アクセスセクション */
.map-link-section {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
}

.btn-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.btn-map-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-map-link i {
    font-size: 16px;
}

/* 設備・サービス一覧 */
.clinic-services {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: white;
    border-radius: var(--radius-sm);
    font-size: 13px;
    border: 1px solid var(--border-light);
    transition: all 0.2s;
}

.service-item.available {
    background: linear-gradient(135deg, #e8f5e9, #f1f8f4);
    border-color: var(--accent-color);
}

.service-item.unavailable {
    background: white;
    opacity: 0.6;
}

.service-item i {
    font-size: 16px;
    color: var(--text-secondary);
    margin-right: 8px;
}

.service-item.available i {
    color: var(--accent-color);
}

.service-item span {
    flex: 1;
    font-weight: 500;
}

.service-item .check {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 16px;
}

.service-item .cross {
    color: var(--text-light);
    font-size: 16px;
}

/* 電話で予約リンク */
.phone-reservation {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s;
}

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

.phone-reservation i {
    font-size: 20px;
}

/* 詳細・地図ボタン */
.btn-detail-map {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
    margin-top: 20px;
}

.btn-detail-map:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* 支払い方法タグ */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-tag {
    background: white;
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s;
}

.payment-tag:hover {
    border-color: var(--primary-color);
    background: var(--primary-lighter);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .service-item {
        padding: 10px 12px;
        font-size: 12px;
    }

    .details-content h4 {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .schedule-content th,
    .schedule-content td {
        padding: 8px 4px;
        font-size: 12px;
    }

    .btn-map-link {
        width: 100%;
        justify-content: center;
    }

    .payment-methods {
        flex-direction: column;
    }

    .payment-tag {
        width: 100%;
        justify-content: center;
    }
}