/*
Theme Name: Viola Dental Clinic
Description: Static site converted to WordPress theme while preserving design.
Version: 1.0.0
Text Domain: viola-dental-clinic
*/

/* リセット & ベーススタイル — 優心会（大塚歯科医院）風・清潔で信頼感のある医療サイトベース */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 白基調・清潔感（医療法人サイトベース） */
    --cream: #FAFAFA;
    --cream-dark: #F5F5F5;
    --ivory: #FFFFFF;
    --paper: #F8F8F8;
    /* メインカラー：紫系統 */
    --primary-color: #6B5B95;
    --primary-dark: #5A4D7E;
    --primary-light: #8B7BAE;
    --primary-soft: rgba(107, 91, 149, 0.12);
    --accent-color: #7D6B9E;
    --accent-light: #EDE8F2;
    --accent-soft: rgba(107, 91, 149, 0.08);
    /* テキスト：クリアなグレー */
    --text-color: #333333;
    --text-light: #555555;
    --text-muted: #777777;
    --bg-light: var(--paper);
    --bg-white: var(--ivory);
    --border-color: rgba(0, 0, 0, 0.08);
    /* 控えめな角丸・シャドウ */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.06);
    --gradient-primary: linear-gradient(135deg, #6B5B95 0%, #7D6B9E 100%);
    --gradient-accent: linear-gradient(135deg, #7D6B9E 0%, #8B7BAE 100%);
    --gradient-hero: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 100%);
    /* モダンなイージング・アニメーション */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.25s;
    --duration-normal: 0.4s;
    --duration-slow: 0.6s;
    /* デンタルクリニック向け：清潔感・信頼感 */
    --font-display: 'Noto Serif JP', serif;
    --font-body: 'Noto Sans JP', sans-serif;
    /* タイポグラフィ：見やすさ優先 */
    --fs-body: 1rem;
    --lh-body: 1.9;
    --lh-body-tight: 1.8;
    --lh-heading: 1.45;
    --ls-body: 0.04em;
    --ls-heading: 0.05em;
    --ls-label: 0.1em;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 400;
    color: var(--text-color);
    line-height: var(--lh-body);
    overflow-x: hidden;
    letter-spacing: var(--ls-body);
    background: var(--ivory);
    position: relative;
}

/* 長文ブロック：読みやすい行の長さに制限 */
.readable-block {
    max-width: 42em;
}

/* スキップリンク（アクセシビリティ） */
.skip-link {
    position: absolute;
    top: -100px;
    left: 24px;
    z-index: 9999;
    padding: 12px 20px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-hover);
    transition: top 0.2s ease, background 0.2s ease;
}
.skip-link:focus {
    top: 24px;
    outline: 3px solid var(--accent-light);
    outline-offset: 2px;
}

/* フォーカス表示（キーボード操作・アクセシビリティ） */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

/* スクロール連動アニメーション */
.animate-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity var(--duration-slow) var(--ease-out),
                transform var(--duration-slow) var(--ease-out);
}

.animate-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ヒーロー読み込みアニメーション */
.hero-panel {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.8s var(--ease-out) 0.15s,
                transform 0.8s var(--ease-out) 0.15s;
}

.hero-panel.hero-panel-visible {
    opacity: 1;
    transform: translateX(0);
}

.hero-visual {
    opacity: 0;
    transition: opacity 1s var(--ease-out) 0.1s;
}

.hero-visual.hero-visual-visible {
    opacity: 1;
}

/* ヘッダー・スクロール時 */
.header {
    transition: background var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out);
}

.header-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
}

/* トップへ戻るボタン */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(107, 91, 149, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity var(--duration-normal) var(--ease-out),
                transform var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-fast) var(--ease-out);
    z-index: 900;
}

.back-to-top:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 28px rgba(107, 91, 149, 0.45);
}

.back-to-top:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

/* ヘッダー — 柔らかいガラス風 */
body.menu-open {
    overflow: hidden;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(251, 248, 245, 0.92);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    box-shadow: 0 2px 32px rgba(44, 44, 44, 0.04);
    z-index: 1000;
    border-bottom: 1px solid rgba(125, 155, 122, 0.12);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
    line-height: 0;
}

.logo a:hover {
    opacity: 0.8;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav {
    display: flex;
    justify-content: center;
    flex: 1;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-list li {
    margin: 0;
}

.nav-list a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 8px 18px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.nav-en {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-light);
    margin-top: 2px;
    letter-spacing: 0.1em;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.nav-list a:hover .nav-en {
    color: var(--primary-color);
}

.nav-list a.current {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-list a.current .nav-en {
    color: var(--primary-color);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    transition: width var(--duration-normal) var(--ease-out);
}

.nav-list a:hover::after {
    width: calc(100% - 36px);
}

.nav-list a {
    position: relative;
    overflow: hidden;
}

.nav-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-soft), transparent);
    transition: left 0.5s ease;
}

.nav-list a:hover::before {
    left: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-tel {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-tel:hover {
    background: var(--primary-soft);
    color: var(--primary-color);
}

.header-tel svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.header-btn svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.header-btn-reservation {
    background: var(--gradient-primary);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.header-btn-reservation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.header-btn-reservation:hover::before {
    left: 100%;
}

.header-btn-reservation:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(125, 155, 122, 0.35);
}

.header-btn-instagram {
    background: #ffffff;
    color: #E4405F;
    border: 1.5px solid #E4405F;
}

.header-btn-instagram:hover {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(228, 64, 95, 0.25);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* ヒーローセクション — 大胆スプリットレイアウト */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    overflow: hidden;
    background: var(--text-color);
    padding-top: 80px;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 42%;
    min-height: calc(100vh - 80px);
}

.hero-visual {
    position: relative;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, transparent 60%);
    z-index: 1;
}

.hero-panel {
    position: relative;
    z-index: 2;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 56px 80px;
    gap: 0;
}

.hero-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.08em;
    line-height: 1.35;
    margin: 0 0 16px 0;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: rgba(255,255,255,0.95);
    letter-spacing: 0.12em;
    margin-bottom: 40px;
}

.hero-clinic-name {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.2em;
    margin-bottom: 40px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: #fff;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all 0.35s ease;
    align-self: flex-start;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
    background: var(--cream);
    color: var(--primary-dark);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}




.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    text-decoration: none;
    font-weight: 500;
    transition: transform var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out),
                border-color var(--duration-fast) var(--ease-out),
                background var(--duration-fast) var(--ease-out),
                color var(--duration-fast) var(--ease-out);
    border: 2px solid transparent;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 24px rgba(125, 155, 122, 0.35);
    border: none;
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(125, 155, 122, 0.45);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.1);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 95, 141, 0.3);
}


.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
    z-index: 0;
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-outline span {
    position: relative;
    z-index: 1;
}

.btn-outline:hover {
    color: white;
    border-color: transparent;
}

/* メッセージセクション */
.message-section {
    padding: 120px 0;
    background: #ffffff;
}

.message-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.message-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.message-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 50px;
    line-height: 1.6;
    letter-spacing: 0.05em;
}

.message-text {
    text-align: left;
    font-size: 1.1rem;
    line-height: 2.2;
    color: var(--text-light);
}

.message-text p {
    margin-bottom: 25px;
}

.hero-split::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--cream);
    clip-path: polygon(0 100%, 0 0, 100% 100%, 100% 100%);
    z-index: 3;
    pointer-events: none;
}

.hero .scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.scroll-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-full);
    animation: scrollLine 2.2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0.4;
        transform: translateY(0) scaleY(0.6);
    }
    50% {
        opacity: 1;
        transform: translateY(12px) scaleY(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0.4;
        transform: translateY(0) scaleY(0.6);
    }
    50% {
        opacity: 1;
        transform: translateY(12px) scaleY(1);
    }
}

/* セクション共通スタイル */
section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.news-section {
    background: var(--ivory);
    position: relative;
    padding: 120px 0;
}

.news-section .container {
    position: relative;
    z-index: 1;
}
.news-section-page {
    padding-top: 0;
}

.treatments-section {
    background: var(--cream);
    position: relative;
    padding: 120px 0;
}

.treatments-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--primary-color);
    z-index: 0;
}

.treatments-section .container {
    position: relative;
    z-index: 1;
}

.clinic-section {
    background: var(--paper);
    position: relative;
    padding: 0 0 100px 0;
}

.clinic-section-hook .container {
    position: relative;
    z-index: 1;
}

/* 院内・設備紹介 — 目立つフックブロック */
.clinic-hook {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    background: var(--primary-color);
    min-height: 380px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.clinic-hook::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.clinic-hook-inner {
    position: relative;
    z-index: 1;
    padding: 64px 48px 64px 0;
}

.clinic-hook-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: var(--ls-label);
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.clinic-hook-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: var(--ls-heading);
    line-height: var(--lh-heading);
    margin: 0 0 20px 0;
}

.clinic-hook-lead {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.4vw, 1.1rem);
    color: rgba(255,255,255,0.92);
    line-height: 1.9;
    letter-spacing: var(--ls-body);
    margin: 0 0 32px 0;
}

.clinic-hook-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #fff;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all 0.35s ease;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.clinic-hook-cta {
    transition: transform var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out),
                background var(--duration-fast) var(--ease-out),
                color var(--duration-fast) var(--ease-out);
}

.clinic-hook-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    background: var(--cream);
    color: var(--primary-dark);
}

.clinic-hook-cta svg {
    transition: transform var(--duration-normal) var(--ease-out);
}

.clinic-hook-cta:hover svg {
    transform: translateX(4px);
}

.clinic-hook-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 48px 0 48px 24px;
    position: relative;
    z-index: 1;
}

.clinic-hook-thumb {
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.clinic-hook-thumb {
    transition: transform var(--duration-normal) var(--ease-spring),
                box-shadow var(--duration-normal) var(--ease-out);
}

.clinic-hook-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.clinic-hook-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.clinic-hook-thumb:hover img {
    transform: scale(1.08);
}

.clinic-section-header {
    margin-top: 64px;
    margin-bottom: 40px;
}

.clinic-section-header::before {
    background: var(--accent-color);
}

.services-section {
    background: var(--ivory);
    position: relative;
    padding: 100px 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.access-section {
    background: var(--paper);
    position: relative;
    padding: 144px 0;
}

.access-section .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    padding: 0 24px;
}

.section-header::before {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: var(--primary-color);
    margin: 0 auto 24px;
    border-radius: var(--radius-full);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: var(--ls-label);
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
    line-height: 1.5;
}

.section-label::after {
    display: none;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: var(--ls-heading);
    line-height: var(--lh-heading);
    position: relative;
    margin-bottom: 0;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    line-height: var(--lh-body);
    letter-spacing: var(--ls-body);
    max-width: 680px;
    margin: 20px auto 0;
    letter-spacing: 0.04em;
    font-weight: 400;
}

/* 最新情報セクション — ベントグリッド */
.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 1;
}

.news-bento {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-item-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 48% 1fr;
    min-height: 320px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.news-item-featured .news-image {
    height: 100%;
    min-height: 320px;
}

.news-item-featured .news-content {
    padding: 40px 36px;
    justify-content: center;
}

.news-item-featured .news-title {
    font-size: 1.5rem;
    line-height: 1.5;
}

.news-item {
    background: var(--ivory);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out),
                border-color var(--duration-fast) var(--ease-out);
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
}

.news-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: var(--primary-soft);
    border-radius: 0 0 0 100%;
    transition: opacity 0.4s ease;
}

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
    z-index: 1;
    border-radius: var(--radius-full);
}

.news-item:hover::before {
    transform: scaleX(1);
}

.news-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(125, 155, 122, 0.2);
    transition: transform var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out),
                border-color var(--duration-fast) var(--ease-out);
}

.news-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.news-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-item:hover .news-image-img {
    transform: scale(1.1);
}

.news-content {
    padding: 28px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.news-date {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.news-category {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: white;
    letter-spacing: 0.06em;
    box-shadow: 0 2px 12px rgba(125, 155, 122, 0.3);
}

.news-category-info {
    background: var(--gradient-accent);
    box-shadow: 0 2px 12px rgba(196, 164, 148, 0.3);
}

.news-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.55;
    letter-spacing: 0.03em;
}

.news-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    flex: 1;
    font-size: 0.95rem;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.news-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

.news-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.news-pagination .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-pagination .page-numbers li {
    margin: 0;
}

.news-pagination .page-numbers a,
.news-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.news-pagination .page-numbers a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.news-pagination .page-numbers .current {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}

.news-pagination .page-numbers .dots {
    border: none;
    background: transparent;
    min-width: auto;
    padding: 0 4px;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-more {
    text-align: center;
}

/* おすすめ治療セクション */
.treatments-section {
    background: #ffffff;
    position: relative;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.treatments-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.treatment-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 40px 44px;
    background: var(--ivory);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.treatment-item {
    transition: transform var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out),
                border-color var(--duration-fast) var(--ease-out);
}

.treatment-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: rgba(125, 155, 122, 0.2);
}

.treatment-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    background: var(--primary-soft);
    border-radius: var(--radius-md);
}

.treatment-content {
    flex: 1;
}

.treatment-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
    letter-spacing: 0.03em;
    line-height: 1.45;
}

.treatment-catch {
    font-size: 0.88rem;
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
    font-style: italic;
}

.treatment-description {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-light);
    letter-spacing: 0.03em;
    text-align: left;
}

.treatment-image {
    width: 200px;
    height: 150px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

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

.treatment-item:hover .treatment-image img {
    transform: scale(1.05);
}

.treatment-item-inverse .treatment-icon {
    order: 2;
}

.treatment-item-inverse .treatment-content {
    order: 1;
}

.treatment-item-inverse .treatment-image {
    order: 0;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

.treatment-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 40px rgba(125, 155, 122, 0.18);
    border: 2px solid rgba(125, 155, 122, 0.15);
    position: relative;
    display: flex;
    flex-direction: column;
}

.treatment-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(125, 155, 122, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.treatment-card:hover::after {
    opacity: 1;
}

.treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.treatment-card:hover::before {
    transform: scaleX(1);
}

.treatment-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 50px rgba(125, 155, 122, 0.25);
    border-color: rgba(125, 155, 122, 0.2);
}

.treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.treatment-card:hover::before {
    transform: scaleX(1);
}

.treatment-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(44, 95, 141, 0.2);
}

.treatment-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.treatment-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(125, 155, 122, 0.4);
    animation: floatBadge 3s ease-in-out infinite;
}

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

.treatment-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.treatment-card:hover .treatment-image-img {
    transform: scale(1.1);
}

.treatment-content {

    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.treatment-icon {
    font-size: 4rem;
}

.treatment-title {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.treatment-description {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 1rem;
    letter-spacing: 0.02em;
    flex: 1;
}

/* 院長・スタッフ紹介セクション */
.staff-section {
    padding: 100px 0;
    background: var(--ivory);
    position: relative;
}

.staff-content {
    max-width: 900px;
    margin: 0 auto;
}

.staff-profile {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.staff-image-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.staff-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.staff-name {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary-soft);
}

.staff-detail {
    margin: 0;
}

.staff-detail dt {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 18px;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.staff-detail dd {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-light);
}

.staff-detail dd:first-of-type {
    margin-top: 0;
}

/* 院内・設備紹介セクション */
.clinic-features-list {
    margin-bottom: 60px;
}

.clinic-feature-block {
    background: var(--ivory);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.clinic-feature-block-with-img {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
}

.clinic-feature-block-img {
    width: 100%;
    min-height: 200px;
    overflow: hidden;
    background: var(--cream);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.clinic-feature-block-img img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.clinic-feature-block-with-img:hover .clinic-feature-block-img img {
    transform: scale(1.05);
}

.clinic-feature-block-body {
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.clinic-feature-title {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.clinic-feature-title i {
    color: var(--primary-color);
    font-size: 1.05rem;
}

.clinic-feature-text {
    font-size: 0.95rem;
    line-height: 1.95;
    color: var(--text-light);
    margin: 0;
}

.clinic-feature-list {
    margin: 0;
    padding-left: 1.2em;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 2;
}

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

.clinic-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.clinic-content-bottom {
    margin-top: 20px;
}

.clinic-description {
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 25px;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.clinic-features {
    display: flex;
    gap: 25px;
    margin: 35px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--primary-soft);
    border-radius: var(--radius-md);
    transition: all 0.35s ease;
}

.feature-item:hover {
    background: rgba(125, 155, 122, 0.22);
    transform: translateY(-2px);
}

.feature-icon-wrapper {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    color: white;
    transition: all 0.35s ease;
    font-size: 1rem;
}

.feature-item:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-text {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.clinic-image {
    position: relative;
}

.clinic-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: transform 0.45s ease;
}

.clinic-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-soft) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.clinic-image:hover .clinic-image-wrapper::after {
    opacity: 1;
}

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

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

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

/* 診療案内セクション */
.services-section {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--ivory);
    padding: 48px 44px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(125, 155, 122, 0.2);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-soft), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.4;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.service-list {
    list-style: none;
    margin-bottom: 30px;
}

.service-list {
    text-align: left;
    margin: 0 auto 30px;
    max-width: 300px;
}

.service-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(44, 95, 141, 0.1);
    position: relative;
    padding-left: 30px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

/* ブログセクション */
.blog-section {
    background: #ffffff;
    position: relative;
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.blog-item {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44, 95, 141, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(44, 95, 141, 0.08);
    position: relative;
}

.blog-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.blog-item:hover::before {
    transform: scaleX(1);
}

.blog-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(44, 95, 141, 0.2);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.blog-item:hover .blog-image-img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.blog-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.blog-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 25px;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

/* アクセスセクション */
.access-section {
    position: relative;
}

.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
}

.access-clinic-image {
    grid-column: 1;
    grid-row: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.clinic-exterior-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.access-map {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.access-info-left {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.access-info-right {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.access-item {
    margin-bottom: 0;
}

.access-hours,
.access-contact,
.access-address,
.access-parking,
.access-station {
    margin-bottom: 0;
}

.access-label {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-heading);
    color: #333333;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 8px;
}

.access-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.access-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.9;
    letter-spacing: var(--ls-body);
}

.access-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.access-text a:hover {
    text-decoration: underline;
}

.access-station-list {
    list-style: none;
}

.access-station-list li {
    padding: 10px 0;
    color: var(--text-light);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.hours-table th,
.hours-table td {
    padding: 12px 10px;
    text-align: center;

    font-size: 0.95rem;
}

.hours-table th {
    color: #333333;
    font-weight: 600;
    font-size: 0.9rem;
}

.hours-table td:first-child {
    font-weight: 500;
    text-align: left;
    padding-left: 15px;
    color: #333333;
    font-size: 0.95rem;
}

.hours-table td {
    color: #333333;
    font-size: 1rem;
}

.hours-table td:not(:first-child) {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e3a8a;
}

.hours-table td.available {
    color: #1e3a8a;
}

.hours-table td.unavailable {
    color: #999999;
    font-weight: 400;
}

.hours-note {
    font-size: 0.9rem;
    color: #666666;
    margin-top: 12px;
    line-height: 1.6;
    padding-left: 2px;
}

.access-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.access-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    margin: 10px 0 15px 0;
}

.access-phone a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.access-phone a:hover {
    color: var(--primary-color);
}

.contact-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.contact-detail-btn:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.contact-detail-btn svg {
    transition: transform 0.3s ease;
}

.contact-detail-btn:hover svg {
    transform: translateX(4px);
}

.google-map-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.google-map-link:hover {
    gap: 8px;
    color: var(--primary-dark);
}

.google-map-link svg {
    transition: transform 0.3s ease;
}

.google-map-link:hover svg {
    transform: translateX(4px);
}

/* コンタクトセクション — 全面アクセント */
.contact-section {
    background: var(--primary-color);
    padding: 128px 60px;
    position: relative;
    overflow: visible;
}

.contact-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: transparent;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    border: none;
}

.contact-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(44, 44, 44, 0.1);
}

.contact-link:hover .contact-background {
    transform: scale(1.05);
}

.contact-link:hover .contact-arrow {
    transform: translateX(10px);
    opacity: 1;
}

.contact-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    padding: 0;
    overflow: hidden;
}

.contact-background-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(50, 50, 50, 0.65);
    z-index: 1;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./images/DSC_4273.jpg');
    background-size: cover;
    background-position: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(20%);
}

.contact-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    position: relative;
    z-index: 1;
    min-height: 300px;
}

.contact-title-wrapper {
    flex: 0 0 auto;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px 0;
    letter-spacing: 0.06em;
    line-height: 1.2;
}

.contact-title-ja {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    letter-spacing: 0.05em;
    font-weight: 400;
}

.contact-description {
    flex: 1;
    padding-top: 10px;
}

.contact-description p {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.9;
    letter-spacing: 0.02em;
    margin: 0;
}

.contact-arrow {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    opacity: 0.95;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.contact-arrow svg {
    width: 32px;
    height: 32px;
    display: block;
}

/* フッター */
.footer {
    background: var(--cream-dark);
    color: var(--text-color);
    padding: 80px 0 30px;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand {
    flex: 0 0 auto;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.footer-nav-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: rgba(51, 51, 51, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-nav a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
    padding-left: 15px;
}

.footer-nav a:hover::before {
    width: 10px;
}

.footer-info {
    margin-bottom: 30px;
    text-align: center;
}

.footer-director {
    margin: 0 0 8px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.footer-address,
.footer-tel {
    margin: 8px 0;
    font-size: 0.9rem;
    color: rgba(51, 51, 51, 0.7);
    letter-spacing: 0.02em;
}

.footer-services {
    margin: 16px 0 8px;
    font-size: 0.8rem;
    color: rgba(51, 51, 51, 0.65);
    line-height: 1.7;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.footer-card {
    margin: 12px 0 0;
    font-size: 0.8rem;
    color: rgba(51, 51, 51, 0.6);
}

.footer-tel a {
    color: rgba(51, 51, 51, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-tel a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(51, 51, 51, 0.6);
    letter-spacing: 0.02em;
}

/* レスポンシブデザイン */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 30px;
        gap: 30px;
    }

    .nav-list a {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .header-btn {
        padding: 7px 14px;
        font-size: 0.8rem;
    }

    .hero-split {
        grid-template-columns: 1fr 38%;
    }

    .access-grid {
        gap: 25px;
    }

    .access-clinic-image,
    .access-map {
        height: 350px;
    }

    .contact-content {
        gap: 40px;
    }

    .footer-logo-img {
        height: 45px;
    }
}

@media (max-width: 968px) {
    .hero-split {
        grid-template-columns: 1fr;
        grid-template-rows: 50vh 1fr;
    }

    .hero-panel {
        padding: 48px 32px 56px;
        text-align: center;
    }

    .hero-cta {
        align-self: center;
    }

    .news-bento {
        grid-template-columns: 1fr;
    }

    .news-item-featured {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .news-item-featured .news-image {
        min-height: 240px;
    }

    .clinic-hook {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 0 32px;
    }

    .clinic-hook-inner {
        padding: 56px 0 40px;
        text-align: center;
    }

    .clinic-hook-cta {
        align-self: center;
    }

    .clinic-hook-gallery {
        padding: 0 0 56px;
    }

    .clinic-section-header {
        margin-top: 56px;
    }

    .header-container {
        padding: 0 20px;
        gap: 20px;
    }

    .logo-img {
        height: 40px;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: var(--shadow);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

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

    .nav-list a {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
    }

    .nav-en {
        margin-top: 0;
        margin-left: 10px;
        font-size: 0.75rem;
    }

    .nav-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        border-top: 1px solid var(--border-color);
        margin-top: 10px;
    }

    .header-actions {
        display: none;
    }

    .nav-actions .header-tel,
    .nav-actions .header-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .vertical-text-item {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
    }

    .vertical-text {
        font-size: clamp(1rem, 2vw, 1.4rem);
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 4rem);
    }

    .hero-title-clinic::before,
    .hero-title-clinic::after {
        width: 20px;
    }

    .hero-title-clinic::before {
        left: -30px;
    }

    .hero-title-clinic::after {
        right: -30px;
    }

    .treatment-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .treatment-image {
        width: 100%;
        height: 200px;
    }

    .scroll-indicator {
        right: 20px;
        bottom: 30px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .treatments-grid,
    .services-grid,
    .blog-list,
    .news-list {
        grid-template-columns: 1fr;
    }

    .treatments-grid {
        gap: 30px;
    }

    .services-grid {
        gap: 30px;
    }

    .clinic-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .staff-profile {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 28px 24px;
    }

    .staff-image-wrapper {
        max-width: 260px;
        margin: 0 auto;
    }

    .clinic-feature-block {
        padding: 24px 24px;
    }

    .clinic-feature-block-with-img {
        grid-template-columns: 1fr;
    }

    .clinic-feature-block-img {
        min-height: 220px;
    }

    .clinic-feature-block-img img {
        min-height: 220px;
    }

    .clinic-hook {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 0 24px;
    }

    .clinic-hook-inner {
        padding: 48px 0 32px;
        text-align: center;
    }

    .clinic-hook-cta {
        align-self: center;
    }

    .clinic-hook-gallery {
        padding: 0 0 48px;
        gap: 10px;
    }

    .clinic-section-header {
        margin-top: 48px;
    }

    .clinic-feature-block-body {
        padding: 28px 28px;
    }

    .clinic-feature-title {
        font-size: 1.1rem;
    }

    .access-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 30px;
    }

    .access-clinic-image {
        grid-column: 1;
        grid-row: 1;
        height: 300px;
    }

    .access-map {
        grid-column: 1;
        grid-row: 2;
        height: 300px;
    }

    .access-info-left {
        grid-column: 1;
        grid-row: 3;
    }

    .access-info-right {
        grid-column: 1;
        grid-row: 4;
    }

    .contact-section {
        padding: 80px 30px;
    }

    .contact-link {
        border-radius: 20px;
    }

    .contact-content {
        flex-direction: column;
        gap: 30px;
        padding: 60px 30px;
        min-height: auto;
    }

    .contact-description {
        padding-top: 0;
    }

    .contact-arrow {
        position: static;
        transform: none;
        margin-top: 20px;
        align-self: flex-end;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-nav-wrapper {
        justify-content: flex-start;
    }

    .footer-logo-img {
        height: 45px;
    }

    .footer .container {
        padding: 0 30px;
    }

    .access-grid {
        gap: 25px;
    }

    .access-clinic-image,
    .access-map {
        height: 350px;
    }

    .contact-section {
        padding: 80px 40px;
    }

    .contact-content {
        padding: 60px 40px;
    }
}

@media (max-width: 640px) {
    .staff-section {
        padding: 60px 0;
    }

    .staff-profile {
        padding: 24px 20px;
    }

    .clinic-feature-block {
        padding: 20px 18px;
    }

    .clinic-feature-block-body {
        padding: 24px 20px;
    }

    .clinic-feature-title {
        font-size: 1rem;
    }

    .hero-split {
        grid-template-columns: 1fr;
        grid-template-rows: 45vh 1fr;
        min-height: auto;
    }

    .hero-visual {
        min-height: 45vh;
    }

    .hero-panel {
        padding: 48px 24px 56px;
        text-align: center;
    }

    .hero-cta {
        align-self: center;
    }

    .hero-headline {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }


    .treatment-item {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .treatment-icon {
        width: 50px;
        height: 50px;
    }

    .hero .scroll-indicator {
        display: none;
    }

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

    .news-list {
        grid-template-columns: 1fr;
    }

    .treatments-grid,
    .services-grid,
    .blog-list {
        grid-template-columns: 1fr;
    }

    .treatment-card {
        border-radius: 20px;
    }

    .treatment-content {
        padding: 25px;
    }

    .service-card {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .news-list,
    .news-bento {
        grid-template-columns: 1fr;
    }

    .news-item-featured {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .news-item-featured .news-image {
        min-height: 220px;
    }

    .news-item-featured .news-content {
        padding: 28px 20px;
    }

    .news-item-featured .news-title {
        font-size: 1.25rem;
    }

    .news-item {
        border-radius: 20px;
    }

    .news-content {
        padding: 25px 0;
    }

    .access-hours {
        overflow-x: auto;
    }

    .hours-table {
        font-size: 0.8rem;
        min-width: 320px;
    }

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

    .hero {
        min-height: 80vh;
        padding: 100px 20px 40px;
    }

    .hero-visual {
        width: calc(100% - 40px);
        border-radius: 20px;
        aspect-ratio: 16 / 9;
    }


    .access-clinic-image {
        height: 250px;
    }

    .access-map {
        height: 250px;
    }

    .access-info-left,
    .access-info-right {
        gap: 20px;
    }

    .access-phone {
        font-size: 1.3rem;
    }

    .contact-detail-btn {
        font-size: 0.9rem;
    }

    .footer-logo-img {
        height: 40px;
    }

    .footer .container {
        padding: 0 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    section {
        padding: 80px 0;
    }

    .hours-table th,
    .hours-table td {
        padding: 8px 6px;
        font-size: 0.85rem;
    }

    .hours-table td:first-child {
        font-size: 0.85rem;
        padding-left: 10px;
    }

    .hours-table td:not(:first-child) {
        font-size: 1rem;
    }
}

/* スムーズスクロール */
html {
    scroll-behavior: smooth;
}

/* セクション間のスペーシング調整 */
section:not(:first-child) {
    margin-top: 0;
}

/* ===== サブページ共通 ===== */
body.subpage {
    padding-top: 0;
}

.page-header {
    padding: 128px 0 48px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
    border-bottom: 1px solid var(--border-color);
}

.page-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.breadcrumb {
    font-size: 0.875rem;
    line-height: 1.6;
    letter-spacing: var(--ls-body);
    color: var(--text-light);
    margin-bottom: 12px;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb span {
    margin: 0 8px;
    color: #999;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 600;
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-heading);
    color: var(--text-color);
}

.page-main {
    padding: 72px 0 112px;
}

@media (max-width: 968px) {
    .page-header {
        padding: 108px 0 36px;
    }
    .page-main {
        padding: 48px 0 88px;
    }
}

@media (max-width: 640px) {
    .page-header {
        padding: 96px 0 28px;
    }
    .page-title {
        font-size: 1.5rem;
    }
}

/* ===== お問い合わせページ ===== */
.page-main .section-subtitle {
    margin-bottom: 40px;
    color: var(--text-light);
    line-height: var(--lh-body);
    letter-spacing: var(--ls-body);
}
.contact-page-content {
    max-width: 720px;
    margin: 0 auto;
}
.contact-page-block {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: var(--shadow);
}
.contact-page-block:last-child {
    margin-bottom: 0;
}
.contact-page-block h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-page-block h2 i {
    color: var(--primary-color);
    font-size: 1.1rem;
}
.contact-page-block p {
    margin-bottom: 16px;
    color: var(--text-light);
    line-height: 1.8;
}
.contact-page-block p:last-of-type {
    margin-bottom: 20px;
}
.contact-page-block .contact-tel {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
}
.contact-page-block .contact-tel a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}
.contact-page-block .contact-tel a:hover {
    color: var(--primary-dark);
}
.contact-page-block .contact-clinic-name {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 8px;
}
.contact-page-block .btn {
    margin-top: 0;
}

/* ===== 診療案内ページ（詳細ブロック・料金表） ===== */
.service-menu-nav {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    margin-bottom: 48px;
    box-shadow: var(--shadow);
}
.service-menu-nav h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.service-menu-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.service-menu-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.service-menu-links a:hover {
    border-bottom-color: var(--primary-color);
}

.service-detail {
    margin-bottom: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-color);
}

.service-detail:last-of-type {
    border-bottom: none;
}

.service-detail-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(125, 155, 122, 0.2);
}

/* タイトル下：左画像・右内容の2カラム */
.service-detail-row {
    display: grid;
    grid-template-columns: minmax(280px, 0.4fr) 1fr;
    gap: 40px;
    align-items: start;
}
.service-detail-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--cream-dark);
}
.service-detail-visual img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}
.service-detail-body {
    min-width: 0;
}
.service-detail-body .service-detail-subtitle:first-child {
    margin-top: 0;
}

@media (max-width: 768px) {
    .service-detail-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.service-detail-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 24px 0 12px;
}

.service-detail p,
.service-detail li {
    color: var(--text-light);
    line-height: 1.95;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.service-detail ul {
    padding-left: 1.2em;
    margin-bottom: 16px;
}

.service-detail ul li {
    margin-bottom: 8px;
}

.price-section-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 48px 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(125, 155, 122, 0.2);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 0.9rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.price-table th,
.price-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.price-table th {
    background: rgba(125, 155, 122, 0.08);
    font-weight: 600;
    color: var(--text-color);
}

.price-table td:last-child {
    white-space: nowrap;
    font-weight: 500;
    color: var(--primary-color);
}

.service-faq dt {
    font-weight: 600;
    color: var(--text-color);
    margin-top: 16px;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.service-faq dd {
    margin: 0 0 0 1em;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.9;
}

/* ===== クリニックについてページ（院長挨拶・院内・設備・アクセス） ===== */
.clinic-about-nav {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 28px 36px;
    margin-bottom: 48px;
    box-shadow: var(--shadow);
}

.clinic-about-nav h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.clinic-about-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.clinic-about-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.clinic-about-links a:hover {
    border-bottom-color: var(--primary-color);
}

.director-greeting {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 48px;
    margin-bottom: 48px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    width: 100%;
}

.director-greeting-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 28px 0;
    padding-bottom: 14px;
    border-bottom: 3px solid var(--primary-color);
}

.director-greeting-intro {
    margin-bottom: 28px;
}
.director-greeting-intro p {
    color: var(--text-light);
    line-height: 1.95;
    margin: 0 0 16px 0;
    font-size: 0.95rem;
}
.director-greeting-intro p:last-child {
    margin-bottom: 0;
}

.director-greeting-question {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
    margin: 0 0 16px 0;
    padding: 14px 20px;
    background: var(--primary-soft);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-color);
    line-height: 1.85;
}

.director-greeting-list {
    list-style: none;
    margin: 0 0 28px 0;
    padding: 0;
}
.director-greeting-list li {
    position: relative;
    padding: 10px 0 10px 28px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    border-bottom: 1px solid var(--border-color);
}
.director-greeting-list li:last-child {
    border-bottom: none;
}
.director-greeting-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1em;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.director-greeting-body {
    margin-top: 0;
}
.director-greeting-body > p {
    color: var(--text-light);
    line-height: 1.95;
    margin: 0 0 24px 0;
    font-size: 0.95rem;
}

.director-greeting-block {
    padding: 20px 24px;
    margin-bottom: 24px;
    background: var(--paper);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-color);
}
.director-greeting-block:last-child {
    margin-bottom: 0;
}
.director-greeting-block p {
    color: var(--text-light);
    line-height: 1.95;
    margin: 0;
    font-size: 0.95rem;
}
.director-greeting-block strong {
    color: var(--primary-color);
    font-weight: 600;
}

.clinic-interior-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.clinic-interior-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(125, 155, 122, 0.08);
    display: flex;
    flex-direction: column;
}

.clinic-interior-item-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--bg-light);
}

.clinic-interior-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.clinic-interior-item:hover .clinic-interior-item-img img {
    transform: scale(1.05);
}

.clinic-interior-item-body {
    padding: 24px 28px;
}

.clinic-interior-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.clinic-interior-item h3 i {
    font-size: 1rem;
}

.clinic-interior-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.9;
    margin: 0;
}

.equipment-list {
    display: grid;
    gap: 24px;
    margin-bottom: 48px;
}

.equipment-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(125, 155, 122, 0.08);
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    align-items: stretch;
}

.equipment-item-img {
    width: 100%;
    min-height: 220px;
    overflow: hidden;
    background: var(--bg-light);
}

.equipment-item-img img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.equipment-item:hover .equipment-item-img img {
    transform: scale(1.05);
}

.equipment-item-body {
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.equipment-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.equipment-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 16px 0 8px;
}

.equipment-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.9;
    margin: 0;
}

.clinic-page-section-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(125, 155, 122, 0.2);
}

.staff-intro-block {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 48px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(125, 155, 122, 0.08);
}

.staff-intro-image {
    width: 100%;
    overflow: hidden;
    background: var(--bg-light);
}

.staff-intro-img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.staff-intro-block p {
    color: var(--text-light);
    line-height: 1.9;
    margin: 0;
    padding: 32px 40px;
    text-align: center;
}

@media (max-width: 968px) {
    .clinic-interior-list {
        grid-template-columns: 1fr;
    }
    .equipment-item {
        grid-template-columns: 1fr;
    }
    .equipment-item-img {
        min-height: 240px;
    }
    .equipment-item-img img {
        min-height: 240px;
    }
    .equipment-item-body {
        padding: 28px 32px;
    }
}

@media (max-width: 640px) {
    .clinic-about-nav {
        padding: 20px 20px;
    }
    .clinic-about-links {
        flex-direction: column;
        gap: 8px;
    }
    .director-greeting {
        padding: 24px 20px;
    }
    .clinic-interior-item-body {
        padding: 20px 24px;
    }
    .equipment-item-body {
        padding: 24px 24px;
    }
    .staff-intro-block p {
        padding: 24px 20px;
    }
    .service-menu-nav {
        padding: 20px 20px;
    }
    .service-menu-links {
        flex-direction: column;
        gap: 8px;
    }
    .price-table {
        font-size: 0.8rem;
    }
    .price-table th,
    .price-table td {
        padding: 10px 12px;
    }
}
