/* ========== V2 デザイン — 優心会（大塚歯科医院）風ベース ========== */
/* タイポグラフィは styles.css の :root（--lh-body, --ls-body, --lh-heading, --ls-heading, --ls-label）を継承 */

/* レスポンシブ用：画像・テーブルのはみ出し防止 */
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
img.hero-img-v2,
img.logo-img-v2 {
    max-width: none;
}

/* ----- ローディング画面（スピナー＋テキスト／中央から外へ消えてトップ画面が見える） ----- */
@property --loader-hole {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 0%;
}
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0efe8;
    visibility: visible;
    --loader-hole: 0%;
    -webkit-mask-image: radial-gradient(circle at 50% 50%, transparent var(--loader-hole), black var(--loader-hole));
    mask-image: radial-gradient(circle at 50% 50%, transparent var(--loader-hole), black var(--loader-hole));
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-position: center;
    mask-position: center;
    transition: --loader-hole 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-loader.is-hidden {
    pointer-events: none;
    --loader-hole: 150%;
}
.page-loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
/* 回転アーク（ボーダースピナー） */
.page-loader-spinner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid rgba(107, 91, 149, 0.2);
    border-top-color: #6B5B95;
    animation: pageLoaderSpin 0.9s linear infinite;
}
@keyframes pageLoaderSpin {
    to { transform: rotate(360deg); }
}
.page-loader-text {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #6B5B95;
    text-transform: uppercase;
}
@media (prefers-reduced-motion: reduce) {
    .page-loader-spinner { animation-duration: 1.8s; }
}

/* ローディング終了後のトップ画面：フェードイン＋軽いスライドアップ */
.page-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}
body.loaded .page-content {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .page-content {
        transition-duration: 0.4s;
        transition-delay: 0.1s;
    }
}

/* ----- ヘッダー V2：白背景・ミニマル1行 ----- */
.header-v2 {
    background: var(--ivory);
    border-bottom: 1px solid var(--border-color);
}
/* トップページのみ：最初は非表示、スクロールで表示 */
body.page-top .header-v2 {
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
body.page-top .header-v2.header-scrolled {
    transform: translateY(0);
}
.header-v2 .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
/* 左：ロゴ */
.header-v2 .logo-v2 {
    flex-shrink: 0;
}
.header-v2 .logo-img-v2 {
    height: 42px;
    width: auto;
    display: block;
}
/* 中央：ナビ（均等に中央寄せ） */
.header-v2 .nav-v2 {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
}
.header-v2 .nav-list-v2 {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}
.header-v2 .nav-list-v2 a {
    padding: 8px 14px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
    white-space: nowrap;
}
.header-v2 .nav-list-v2 a:hover {
    color: var(--primary-color);
}
.header-v2 .nav-list-v2 a.current {
    color: var(--primary-color);
    font-weight: 600;
}
/* 右：電話・WEB予約・インスタ（高さ揃え） */
.header-v2 .header-cta-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.header-v2 .header-tel-v2 {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    padding: 6px 0;
    line-height: 1.4;
}
.header-v2 .header-tel-v2 i,
.footer-v2 .footer-tel-v2 a i,
.access-phone a i,
.contact-tel a i,
a.btn.btn-primary i {
    margin-right: 0.35em;
}
.header-v2 .header-reserve-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: background 0.2s ease, transform 0.2s ease;
    line-height: 1.4;
    white-space: nowrap;
}
.header-v2 .header-reserve-v2:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}
.header-v2 .header-insta-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #E4405F;
    text-decoration: none;
    border-radius: 4px;
    transition: color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}
.header-v2 .header-insta-v2:hover {
    color: #c13584;
    transform: scale(1.06);
}
.header-v2 .header-insta-v2 i {
    font-size: 1.2rem;
}
.header-v2 .menu-toggle { display: none; }
.header-v2.header-scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

@media (max-width: 968px) {
    /* スマホ：全ページでヘッダーを画面上部に固定・高さ控えめ・半透明 */
    .header-v2 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom-color: rgba(0, 0, 0, 0.06);
    }
    .header-v2 .header-inner {
        height: 56px;
        padding: 0 16px;
    }
    .header-v2 .logo-img-v2 {
        height: 28px;
    }
    /* スマホメニュー：画面いっぱいオーバーレイ */
    .header-v2 .nav-v2 {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        width: 100dvw;
        min-width: 100%;
        height: 100vh;
        height: 100dvh;
        min-height: 100%;
        margin: 0;
        padding: 88px 24px 32px;
        box-sizing: border-box;
        background: var(--ivory);
        z-index: 10001;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        inset: 0;
    }
    /* メニュー表示中はヘッダーの transform を外し、fixed がビューポート基準になるようにする */
    body.menu-open .header-v2 {
        transform: none !important;
    }
    .header-v2 .nav-v2.is-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }
    .header-v2 .nav-list-v2 {
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-width: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
        border-top: 1px solid var(--border-color);
    }
    .header-v2 .nav-list-v2 li {
        border-bottom: 1px solid var(--border-color);
    }
    .header-v2 .nav-list-v2 a {
        display: block;
        padding: 18px 16px;
        font-size: 1.05rem;
        font-weight: 500;
        letter-spacing: 0.06em;
        color: var(--text-color);
        text-decoration: none;
        transition: background 0.2s ease, color 0.2s ease;
        min-height: 52px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
    }
    .header-v2 .nav-list-v2 a:hover,
    .header-v2 .nav-list-v2 a:focus {
        background: var(--primary-soft);
        color: var(--primary-color);
    }
    .header-v2 .nav-list-v2 a.current {
        color: var(--primary-color);
        font-weight: 600;
    }
    .header-v2 .header-cta-v2 { display: none; }
    .header-v2 .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
        z-index: 10002;
        position: relative;
    }
    .header-v2 .menu-toggle span {
        width: 22px;
        height: 2px;
        background: var(--text-color);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .header-v2 .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .header-v2 .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .header-v2 .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    body.menu-open {
        overflow: hidden;
    }
}

/* ----- ヒーロー V2：全面オーバーレイ・中央下 ----- */
.hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 96px;
}
.hero-v2 .hero-bg-v2 {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-v2 .hero-img-v2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
/* ヒーロー画像を先に表示 */
.hero-fv .hero-bg-v2 {
    opacity: 0;
    animation: heroImageIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s forwards;
}
@keyframes heroImageIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.hero-v2 .hero-overlay-v2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}
.hero-v2 .hero-cap-v2 {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: 80px 24px 64px;
    text-align: center;
}
.hero-v2 .hero-title-v2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.08em;
    line-height: 1.4;
    margin: 0 0 16px 0;
}
.hero-v2 .hero-sub-v2 {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.1em;
    margin: 0 0 32px 0;
}
.hero-v2 .hero-btn-v2 {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-v2 .hero-btn-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.hero-v2 .scroll-hint-v2 {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.7);
}
/* ========== ファーストビュー：Oops風・上下左右パディング＋角丸 ========== */
.hero-fv {
    align-items: center;
    justify-content: flex-start;
    padding: 96px 24px 56px;
    padding-top: max(96px, env(safe-area-inset-top));
    padding-bottom: max(56px, env(safe-area-inset-bottom));
    min-height: 100vh;
    min-height: 100dvh;
    background: #fff;
}
/* ヒーロー画像エリア：上下左右に余白・角丸・背景画像 */
.hero-fv .hero-bg-v2 {
    top: 24px;
    right: 24px;
    bottom: 24px;
    left: 24px;
    border-radius: 20px;
    overflow: hidden;
    background: #e8e6e2;
}
.hero-fv .hero-bg-v2 .hero-img-v2 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
@media (min-width: 769px) {
    .hero-fv {
        padding: 96px 32px 64px;
    }
    .hero-fv .hero-bg-v2 {
        top: 32px;
        right: 32px;
        bottom: 32px;
        left: 32px;
        border-radius: 24px;
    }
}
@media (max-width: 768px) {
    .hero-fv {
        padding: 96px 16px 32px;
    }
    .hero-fv .hero-bg-v2 {
        top: 16px;
        right: 16px;
        bottom: 16px;
        left: 16px;
        border-radius: 16px;
    }
}
.hero-fv .hero-overlay-v2 {
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.2) 45%, rgba(0,0,0,0.6) 100%);
}
/* ヒーロー上部：ロゴ左上・メニュー右（余白たっぷり） */
.hero-top-fv {
    position: absolute;
    top: 56px;
    left: 56px;
    right: 56px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
}
/* ヒーロー左上ロゴ：白背景の縦余白を最小に */
.hero-fv .hero-top-fv a.hero-logo-fv {
    display: inline-block;
    margin: 0;
    background: #fff;
    border-radius: 12px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 16px;
    padding-right: 16px;
    line-height: 0;
    vertical-align: top;
}
.hero-fv .hero-top-fv a.hero-logo-fv img {
    display: block;
    margin: 0;
    padding: 0;
    height: 52px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    vertical-align: bottom;
}
.hero-nav-fv {
    flex-shrink: 0;
}
.hero-nav-list-fv {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 12px 0;
}
.hero-nav-list-fv a {
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 10px 0;
    transition: opacity 0.2s ease;
}
.hero-nav-list-fv a:hover {
    opacity: 0.85;
}
@media (min-width: 769px) {
    .hero-top-fv {
        top: 64px;
        left: 64px;
        right: 64px;
    }
    .hero-fv .hero-top-fv a.hero-logo-fv {
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 20px;
        padding-right: 20px;
        border-radius: 16px;
    }
    .hero-fv .hero-top-fv a.hero-logo-fv img {
        height: 64px;
        max-width: 320px;
    }
    .hero-nav-list-fv {
        gap: 14px 0;
    }
    .hero-nav-list-fv a {
        font-size: 1.2rem;
        padding: 12px 0;
    }
    .hero-fv .scroll-hint-v2 {
        bottom: 64px;
        right: 64px;
    }
}
@media (max-width: 768px) {
    .hero-top-fv {
        top: 32px;
        left: 32px;
        right: 32px;
    }
    .hero-fv .hero-top-fv a.hero-logo-fv {
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 12px;
        padding-right: 12px;
        border-radius: 10px;
    }
    .hero-fv .hero-top-fv a.hero-logo-fv img {
        height: 40px;
        max-width: 220px;
    }
    .hero-nav-list-fv a {
        font-size: 1rem;
        padding: 8px 0;
    }
}
/* ヒーロー左下：文章（右のスクロールヒントと下を揃えた余白） */
.hero-fv .hero-cap-v2.hero-cap-fv {
    position: absolute;
    bottom: 90px;
    left: 56px;
    right: 56px;
    max-width: 560px;
    margin: 0;
    padding: 0;
    text-align: left;
}
@media (min-width: 769px) {
    .hero-fv .hero-cap-v2.hero-cap-fv {
        bottom: 100px;
        left: 64px;
        right: auto;
    }
}
@media (max-width: 768px) {
    /* スマホ：文章を左右上下中央に */
    .hero-fv .hero-cap-v2.hero-cap-fv {
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%);
        text-align: center;
        max-width: 90%;
        width: 100%;
    }
    /* スマホ：スクロールヒントを下部中央に */
    .hero-fv .scroll-hint-v2 {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: 32px;
        animation: scrollHintInMobile 0.6s ease-out 1.4s forwards;
    }
}
@keyframes scrollHintInMobile {
    from { opacity: 0; transform: translate(-50%, 12px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}
@media (max-width: 640px) {
    .hero-fv {
        padding: 96px 20px 40px;
    }
    .hero-fv .hero-bg-v2 {
        top: 20px;
        right: 20px;
        bottom: 20px;
        left: 20px;
        border-radius: 18px;
    }
    .hero-top-fv {
        top: 28px;
        left: 28px;
        right: 28px;
    }
    .hero-fv .hero-top-fv a.hero-logo-fv {
        padding-left: 10px;
        padding-right: 10px;
        border-radius: 10px;
    }
    .hero-fv .hero-top-fv a.hero-logo-fv img {
        height: 44px;
        max-width: 200px;
    }
    .hero-nav-list-fv {
        gap: 10px 0;
    }
    .hero-nav-list-fv a {
        font-size: 0.95rem;
        padding: 6px 0;
    }
    .hero-fv .hero-cap-v2.hero-cap-fv {
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%);
        max-width: 90%;
    }
    .hero-fv .scroll-hint-v2 {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: 40px;
    }
    .hero-fv .scroll-hint-line-fv {
        height: 48px;
    }
}
@media (max-width: 480px) {
    .hero-fv {
        padding: 96px 16px 32px;
    }
    .hero-fv .hero-bg-v2 {
        top: 12px;
        right: 12px;
        bottom: 12px;
        left: 12px;
        border-radius: 14px;
    }
    .hero-top-fv {
        top: 20px;
        left: 20px;
        right: 20px;
    }
    .hero-fv .hero-top-fv a.hero-logo-fv {
        padding-left: 8px;
        padding-right: 8px;
        border-radius: 8px;
    }
    .hero-fv .hero-top-fv a.hero-logo-fv img {
        height: 36px;
        max-width: 160px;
    }
    .hero-nav-list-fv {
        gap: 8px 0;
    }
    .hero-nav-list-fv a {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    .hero-fv .hero-cap-v2.hero-cap-fv {
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%);
        max-width: 90%;
    }
    .hero-fv .scroll-hint-v2 {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: 24px;
    }
    .hero-fv .scroll-hint-line-fv {
        height: 32px;
    }
    .hero-fv .scroll-hint-text-fv {
        font-size: 0.65rem;
    }
}

/* ファーストビュー：ラベル・文章（文字かなり大きく） */
.hero-fv .hero-label-fv {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: rgba(255,255,255,0.9);
    margin: 0 0 20px 0;
    opacity: 0;
    animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}
.hero-fv .hero-title-v2 {
    display: flex;
    flex-direction: column;
    gap: 0;
    font-size: clamp(2.75rem, 8vw, 5.5rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.15;
    margin: 0 0 24px 0;
    opacity: 0;
    animation: heroFadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.75s forwards;
}
.hero-fv .hero-title-line-fv {
    display: block;
}
.hero-fv .hero-title-line-fv:last-child {
    padding-left: 0.15em;
}
@media (max-width: 768px) {
    .hero-fv .hero-title-v2 {
        text-align: center;
    }
    .hero-fv .hero-title-line-fv:last-child {
        padding-left: 0;
    }
}
.hero-fv .hero-sub-v2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    margin: 0 0 12px 0;
    opacity: 0;
    animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
}
.hero-fv .hero-clinic-fv {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.9);
    margin: 0 0 0 0;
    opacity: 0;
    animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.95s forwards;
}
.hero-fv .hero-cta-wrap-fv {
    opacity: 0;
    animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.1s forwards;
}
.hero-fv .hero-btn-fv {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 44px;
    font-size: 1rem;
    letter-spacing: 0.12em;
    border-radius: 9999px;
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.hero-fv .hero-btn-fv:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.hero-fv .hero-btn-arrow-fv {
    display: inline-block;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}
.hero-fv .hero-btn-fv:hover .hero-btn-arrow-fv {
    transform: translateX(4px);
}

/* スクロールヒント：ヒーロー右下に配置（上ロゴ・メニューと同じ余白） */
.hero-fv .scroll-hint-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    left: auto;
    right: 56px;
    bottom: 56px;
    transform: none;
    opacity: 0;
    animation: scrollHintIn 0.6s ease-out 1.4s forwards;
}
@keyframes scrollHintIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-fv .scroll-hint-line-fv {
    width: 2px;
    height: 56px;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.3) 70%, transparent 100%);
    border-radius: 2px;
    animation: scrollHintBounce 1.8s ease-in-out infinite;
}
.hero-fv .scroll-hint-text-fv {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: rgba(255,255,255,0.95);
}
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes scrollHintBounce {
    0%, 100% { transform: translateY(0) scaleY(1); opacity: 0.9; }
    50% { transform: translateY(10px) scaleY(0.85); opacity: 1; }
}

/* ----- スクロール連動アニメーション（フジオカデンタル風・表示時フェードアップ） ----- */
.animate-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.animate-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* セクション見出しはやや遅延でまとめて表示 */
.news-head-v2.animate-in,
.treatments-head-v2.animate-in,
.staff-inner-v2 .staff-label-v2,
.staff-inner-v2 .staff-ttl-v2 {
    transition-delay: 0.05s;
}
.news-card-v2.animate-in { transition-duration: 0.5s; }
.treatment-row-v2.animate-in { transition-duration: 0.6s; }
.clinic-hook-inner.animate-in,
.clinic-hook-gallery.animate-in { transition-duration: 0.6s; }
.clinic-feature-v2.animate-in { transition-duration: 0.5s; }
.service-block-v2.animate-in { transition-duration: 0.5s; }
.staff-profile-v2.animate-in { transition-duration: 0.6s; }
.access-grid.animate-in,
.contact-link.animate-in { transition-duration: 0.55s; }

/* ----- 当院について（フジオカデンタル風・短いリード） ----- */
.about-lead-v2 {
    padding: 112px 0 104px;
    background: var(--ivory);
    border-bottom: 1px solid var(--border-color);
}
.about-lead-inner-v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    text-align: center;
}
.about-lead-inner-v2 .about-lead-title-v2,
.about-lead-inner-v2 .about-lead-ttl-v2,
.about-lead-inner-v2 .about-lead-txt-v2 {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.about-lead-title-v2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: var(--ls-heading);
    line-height: 1.35;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.about-lead-title-line-v2 {
    display: block;
}
.about-lead-ttl-v2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 20px 0;
    letter-spacing: 0.04em;
    line-height: 1.5;
}
.about-lead-txt-v2 {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin: 0;
    letter-spacing: var(--ls-body);
}

/* ----- 優心会風：セクション見出し（英語ラベル＋タイトル＋More） ----- */
.section-head-row-v2 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}
.section-head-row-v2 .section-head-label-v2 {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--primary-color);
    margin-bottom: 6px;
}
.section-head-row-v2 .section-head-ttl-v2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}
.section-more-link-v2 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s ease, gap 0.2s ease;
}
.section-more-link-v2:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* ----- ニュース V2：横スクロールストリップ（白背景・優心会風） ----- */
.news-v2 {
    padding: 120px 0 104px;
    background: var(--ivory);
}
.news-v2 .news-head-v2 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 0 28px 36px;
    max-width: 1200px;
    margin: 0 auto;
}
.news-v2 .news-label-v2 {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: var(--ls-label);
    line-height: 1.5;
    color: var(--primary-color);
    margin-bottom: 6px;
}
.news-v2 .news-ttl-v2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    font-weight: 600;
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-heading);
    color: var(--text-color);
    margin: 0;
}
.news-v2 .news-more-v2 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s ease, gap 0.2s ease;
}
.news-v2 .news-more-v2:hover {
    color: var(--primary-dark);
    gap: 10px;
}
.news-v2 .news-head-inner-v2 {
    display: block;
}
.news-v2 .news-head-inner-v2 .news-label-v2 {
    margin-bottom: 6px;
}
.news-v2 .news-strip-v2 {
    display: flex;
    gap: 24px;
    padding: 0 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
}
.news-v2 .news-card-v2 {
    flex: 0 0 320px;
    scroll-snap-align: start;
}
.news-v2 .news-card-link-v2 {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.news-v2 .news-card-link-v2:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}
.news-v2 .news-card-img-v2 {
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.news-v2 .news-card-img-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-v2 .news-card-meta-v2 {
    padding: 12px 16px 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    letter-spacing: var(--ls-body);
    color: var(--text-muted);
}
.news-v2 .news-card-ttl-v2 {
    padding: 8px 16px 12px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: 0.02em;
    color: var(--text-color);
}
.news-v2 .news-card-arrow-v2 {
    padding: 0 16px 16px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* ----- 診療案内 V2：番号＋縦並び・画像左右交互（薄グレー背景・優心会風） ----- */
.treatments-v2 {
    padding: 128px 0 120px;
    background: var(--paper);
}
.treatments-v2 .treatments-inner-v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}
.treatments-v2 .treatments-head-v2 {
    text-align: center;
    margin-bottom: 64px;
}
.treatments-v2 .treatments-label-v2 {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: var(--ls-label);
    line-height: 1.5;
    color: var(--primary-color);
    margin-bottom: 8px;
}
.treatments-v2 .treatments-ttl-v2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 600;
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-heading);
    color: var(--text-color);
    margin: 0 0 12px 0;
}
.treatments-v2 .treatments-lead-v2 {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin: 0 auto;
    max-width: 36em;
    line-height: 1.9;
    letter-spacing: var(--ls-body);
}
.treatments-v2 .treatment-rows-v2 {
    display: flex;
    flex-direction: column;
    gap: 72px;
}
.treatments-v2 .treatment-row-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
}
.treatments-v2 .treatment-row-reverse-v2 {
    direction: rtl;
}
.treatments-v2 .treatment-row-reverse-v2 > * {
    direction: ltr;
}
.treatments-v2 .treatment-num-v2 {
    position: absolute;
    top: -16px;
    left: 0;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 600;
    color: var(--primary-color);
    opacity: 0.25;
    line-height: 1;
}
.treatments-v2 .treatment-row-reverse-v2 .treatment-num-v2 {
    left: auto;
    right: 0;
}
.treatments-v2 .treatment-img-v2 {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.treatments-v2 .treatment-img-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.treatments-v2 .treatment-body-v2 {
    padding: 0 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.treatments-v2 .treatment-row-reverse-v2 .treatment-body-v2 {
    padding: 0 28px 0 0;
}
.treatments-v2 .treatment-ttl-v2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-heading);
    color: var(--text-color);
    margin: 0;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--primary-soft);
}
.treatments-v2 .treatment-catch-v2 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}
.treatments-v2 .treatment-desc-v2 {
    font-size: 0.9375rem;
    line-height: 1.9;
    letter-spacing: var(--ls-body);
    color: var(--text-light);
    margin: 0;
    max-width: 38em;
}
.treatments-v2 .treatments-cta-v2 {
    text-align: center;
    margin-top: 48px;
}
.treatments-v2 .btn-v2 {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
}
.treatments-v2 .btn-v2:hover {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 768px) {
    .treatments-v2 .treatment-row-v2,
    .treatments-v2 .treatment-row-reverse-v2 {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 24px;
    }
    .treatments-v2 .treatment-body-v2,
    .treatments-v2 .treatment-row-reverse-v2 .treatment-body-v2 {
        padding: 0;
    }
    .treatments-v2 .treatment-num-v2 {
        position: static;
        font-size: 2.5rem;
        margin-bottom: 8px;
    }
}

/* ----- 動画セクション V2（元サイトYouTube） ----- */
.video-section-v2 {
    padding: 112px 0 128px;
    background: var(--ivory);
}
.video-section-v2 .treatments-inner-v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}
.video-section-v2 .treatments-label-v2 {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: var(--ls-label);
    line-height: 1.5;
    color: var(--primary-color);
    margin-bottom: 8px;
}
.video-section-v2 .treatments-ttl-v2 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.5rem);
    font-weight: 600;
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-heading);
    color: var(--text-color);
    margin: 0 0 32px 0;
}
.video-wrap-v2 {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.video-wrap-v2 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ----- 院長紹介 V2：中央・円形写真（白背景） ----- */
.staff-v2 {
    padding: 128px 0;
    background: var(--ivory);
}
.staff-v2 .staff-inner-v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    text-align: center;
}
.staff-v2 .staff-profile-v2 {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.staff-v2 .staff-label-v2 {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: var(--ls-label);
    line-height: 1.5;
    color: var(--primary-color);
    margin-bottom: 8px;
}
.staff-v2 .staff-ttl-v2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 600;
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-heading);
    color: var(--text-color);
    margin: 0 0 48px 0;
}
.staff-v2 .staff-photo-v2 {
    width: 200px;
    height: 200px;
    margin: 0 auto 28px;
    border-radius: 50%;
    overflow: hidden;
}
.staff-v2 .staff-photo-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.staff-v2 .staff-name-v2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 32px 0;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--primary-soft);
}
.staff-v2 .staff-dl-v2 {
    text-align: left;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.85;
    max-width: 28em;
    margin-left: auto;
    margin-right: auto;
}
.staff-v2 .staff-dl-v2 dt {
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--primary-color);
    margin: 24px 0 8px 0;
    padding: 10px 0 10px 16px;
    border-left: 4px solid var(--primary-color);
    background: var(--primary-soft);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.staff-v2 .staff-dl-v2 dd {
    margin: 0 0 0 14px;
    padding: 0;
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.9;
    letter-spacing: var(--ls-body);
}

/* ----- 院内紹介 V2：紫背景は画面いっぱい、中のコンテンツは他と横幅統一 ----- */
.clinic-section-hook .clinic-hook {
    max-width: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}
.clinic-section-hook .clinic-hook-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 28px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 380px;
}
@media (max-width: 968px) {
    .clinic-section-hook .clinic-hook-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}

/* 院内・設備紹介：画像エリア＝リンクなし・大きく・自動スクロール */
.clinic-section-hook .clinic-hook-gallery-scroll {
    overflow: hidden;
    width: 100%;
    padding: 24px 0 24px 24px;
    position: relative;
    z-index: 1;
}
.clinic-section-hook .clinic-hook-gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: clinicHookScroll 25s linear infinite;
}
.clinic-section-hook .clinic-hook-gallery-scroll .clinic-hook-thumb {
    flex-shrink: 0;
    width: 320px;
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.clinic-section-hook .clinic-hook-gallery-scroll .clinic-hook-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* ギャラリーはリンクなしのためホバーアニメーションなし */
.clinic-section-hook .clinic-hook-gallery-scroll .clinic-hook-thumb:hover {
    transform: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.clinic-section-hook .clinic-hook-gallery-scroll .clinic-hook-thumb:hover img {
    transform: none;
}
@keyframes clinicHookScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .clinic-section-hook .clinic-hook-gallery-track {
        animation: none;
    }
}
@media (max-width: 968px) {
    .clinic-section-hook .clinic-hook-gallery-scroll {
        padding: 24px 0 32px;
    }
    .clinic-section-hook .clinic-hook-gallery-scroll .clinic-hook-thumb {
        width: 280px;
    }
}

.clinic-section-hook .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}
.clinic-section-hook .section-header.clinic-section-header {
    margin-top: 48px;
    margin-bottom: 48px;
}

/* 当院の特徴：画像左右交互レイアウト（院内のご案内のストリップと被らない別デザイン） */
.features-alt-wrap {
    margin-bottom: 80px;
}
.features-alt-list {
    display: flex;
    flex-direction: column;
    gap: 72px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.feature-alt-row-v2 {
    display: grid;
    grid-template-columns: minmax(140px, 180px) 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
}
.feature-alt-row-reverse-v2 {
    direction: rtl;
}
.feature-alt-row-reverse-v2 > * {
    direction: ltr;
}
.feature-alt-num-v2 {
    position: absolute;
    top: -12px;
    left: 0;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.22;
    line-height: 1;
}
.feature-alt-row-reverse-v2 .feature-alt-num-v2 {
    left: auto;
    right: 0;
}
.feature-alt-img-v2 {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--cream-dark);
}
.feature-alt-img-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 当院の特徴：アイコンデザイン */
.feature-alt-icon-v2 {
    width: 100%;
    max-width: 180px;
    aspect-ratio: 1;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-soft) 0%, rgba(107, 91, 149, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-alt-icon-v2 i {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.9;
}
.feature-alt-body-v2 {
    padding: 0 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.feature-alt-row-reverse-v2 .feature-alt-body-v2 {
    padding: 0 28px 0 0;
}
.feature-alt-ttl-v2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-heading);
    color: var(--text-color);
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-soft);
}
.feature-alt-txt-v2 {
    font-size: 0.9375rem;
    line-height: 1.9;
    letter-spacing: var(--ls-body);
    color: var(--text-light);
    margin: 0;
    max-width: 52em;
}

/* 当院の特徴：横長ストリップ（院内のご案内用） */
.clinic-features-strip-v2 {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
    list-style: none;
    margin-left: 0;
    padding: 0;
}
.clinic-feature-strip-v2 {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border-color);
}
.clinic-feature-strip-v2:last-child {
    border-bottom: none;
}
.clinic-feature-strip-num-v2 {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.35;
    width: 2.5rem;
    text-align: right;
    line-height: 1;
}
.clinic-feature-strip-img-v2 {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--cream-dark);
}
.clinic-feature-strip-img-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 院内のご案内：アイコンデザイン */
.clinic-feature-strip-icon-v2 {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-soft) 0%, rgba(107, 91, 149, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.clinic-feature-strip-icon-v2 i {
    font-size: 1.75rem;
    color: var(--primary-color);
}
.clinic-feature-strip-body-v2 {
    flex: 1;
    min-width: 0;
}
.clinic-feature-strip-ttl-v2 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-heading);
    color: var(--text-color);
    margin: 0 0 8px 0;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--primary-soft);
}
.clinic-feature-strip-txt-v2 {
    font-size: 0.9375rem;
    line-height: 1.9;
    letter-spacing: var(--ls-body);
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 768px) {
    .clinic-feature-strip-v2 {
        flex-wrap: wrap;
        gap: 12px 16px;
        padding: 20px 0;
    }
    .clinic-feature-strip-num-v2 {
        width: auto;
        font-size: 1.5rem;
        text-align: left;
        flex-shrink: 0;
    }
    .clinic-feature-strip-img-v2 {
        width: 72px;
        height: 72px;
        flex-shrink: 0;
    }
    .clinic-feature-strip-icon-v2 {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }
    .clinic-feature-strip-icon-v2 i {
        font-size: 1.5rem;
    }
    .clinic-feature-strip-body-v2 {
        width: 100%;
        flex: 1 1 100%;
        min-width: 0;
    }
    .clinic-feature-strip-ttl-v2 {
        font-size: 1rem;
    }
    .clinic-feature-strip-txt-v2 {
        font-size: 0.875rem;
    }
}

/* 院内のご案内（白背景は横幅いっぱい・中身は同じ幅） */
.clinic-interior-block-v2 {
    margin-top: 96px;
    margin-bottom: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 80px 0 88px;
    background: var(--ivory);
    border-top: 1px solid var(--border-color);
    border-radius: 0;
    box-sizing: border-box;
}
.clinic-interior-inner-v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}
.clinic-interior-block-v2 .section-header.clinic-section-header {
    margin-top: 0;
    margin-bottom: 28px;
}
.clinic-interior-lead-v2 {
    font-size: 1rem;
    line-height: 1.9;
    letter-spacing: var(--ls-body);
    color: var(--text-light);
    margin: 0 0 40px 0;
    max-width: 100%;
    text-align: center;
}
.clinic-interior-block-v2 .clinic-features-strip-v2 {
    margin-bottom: 0;
}

/* 主な設備（2列グリッド・背景なし） */
.clinic-equipment-block-v2 {
    margin-top: 96px;
    margin-bottom: 0;
}
.clinic-equipment-block-v2 .section-header.clinic-section-header {
    margin-top: 0;
    margin-bottom: 28px;
}
.clinic-equipment-block-v2 .clinic-equipment-lead-v2 {
    font-size: 1rem;
    line-height: 1.9;
    letter-spacing: var(--ls-body);
    color: var(--text-light);
    margin: 0 0 40px 0;
    max-width: 52em;
}
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.equipment-grid-item {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.equipment-grid-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--cream-dark);
}
.equipment-grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 主な設備：アイコンデザイン */
.equipment-grid-icons .equipment-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 26px;
}
.equipment-grid-icon-v2 {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-soft) 0%, rgba(107, 91, 149, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.equipment-grid-icon-v2 i {
    font-size: 2.25rem;
    color: var(--primary-color);
}
.equipment-grid-body {
    padding: 22px 26px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.equipment-grid-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-heading);
    color: var(--text-color);
    margin: 0;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--primary-soft);
}
.equipment-grid-desc {
    font-size: 0.9375rem;
    line-height: 1.9;
    letter-spacing: var(--ls-body);
    color: var(--text-light);
    margin: 0;
}
.clinic-equipment-block-v2 .equipment-grid {
    margin-bottom: 0;
}

/* 院内のご案内・主な設備（詳細表示・他ページ用） */
.clinic-interior-intro-v2 {
    margin-bottom: 48px;
}
.clinic-equipment-intro-v2 {
    margin-bottom: 48px;
}
/* 主な設備 — 推しポイントとして強調（clinic.html等で使用） */
.clinic-equipment-highlight {
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--accent-soft) 100%);
    border: 1px solid rgba(107, 91, 149, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px 28px 36px;
    margin-top: 32px;
    margin-bottom: 48px;
    position: relative;
}
.clinic-equipment-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--primary-color);
    margin: 0 0 12px 0;
    padding: 6px 14px;
    background: var(--ivory);
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(107, 91, 149, 0.12);
}
.clinic-equipment-ttl-v2 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 12px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary-color);
    letter-spacing: 0.04em;
}
.clinic-equipment-lead-v2 {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-light);
    margin: 0 0 28px 0;
    max-width: 40em;
}
.clinic-intro-ttl-v2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 8px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
    letter-spacing: 0.02em;
}
.clinic-intro-lead-v2 {
    font-size: 0.9rem;
    line-height: 1.85;
    color: var(--text-light);
    margin: 0 0 20px 0;
    max-width: 36em;
}
.clinic-interior-list-v2,
.clinic-equipment-list-v2 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
}
@media (min-width: 769px) {
    .clinic-interior-list-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .clinic-equipment-list-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}
.clinic-interior-item-v2,
.clinic-equipment-item-v2 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 20px;
    background: var(--ivory);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
/* 主な設備：写真付きカード */
.clinic-equipment-highlight .clinic-equipment-item-v2 {
    padding: 0;
    overflow: hidden;
    border-color: rgba(107, 91, 149, 0.12);
}
.clinic-equipment-item-img-v2 {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--cream-dark);
}
.clinic-equipment-item-img-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.clinic-equipment-item-body-v2 {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.clinic-equipment-highlight .clinic-equipment-item-v2 .clinic-equipment-name-v2 {
    margin-top: 0;
}
.clinic-equipment-highlight .clinic-equipment-item-v2 .clinic-equipment-desc-v2 {
    margin-top: 2px;
}
/* 院内のご案内：写真付きカード */
.clinic-interior-intro-v2 .clinic-interior-item-v2 {
    padding: 0;
    overflow: hidden;
}
.clinic-interior-item-img-v2 {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--cream-dark);
}
.clinic-interior-item-img-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.clinic-interior-item-body-v2 {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.clinic-interior-intro-v2 .clinic-interior-item-v2 .clinic-interior-name-v2 {
    margin-top: 0;
}
.clinic-interior-intro-v2 .clinic-interior-item-v2 .clinic-interior-desc-v2 {
    margin-top: 2px;
}


/* 院内紹介ページ：設備紹介（推しポイント強調） */
.equipment-section-highlight {
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--accent-soft) 100%);
    border: 1px solid rgba(107, 91, 149, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px 28px 48px;
    margin-top: 8px;
}
.equipment-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--primary-color);
    margin: 0 0 12px 0;
    padding: 6px 14px;
    background: var(--ivory);
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(107, 91, 149, 0.12);
}
.equipment-section-title {
    margin-bottom: 12px !important;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary-color);
}
.equipment-section-lead {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-light);
    margin: 0 0 28px 0;
    max-width: 40em;
}

.clinic-interior-name-v2,
.clinic-equipment-name-v2 {
    font-weight: 700;
    font-size: 1rem;
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-heading);
    color: var(--primary-color);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border-color);
}
.clinic-interior-desc-v2,
.clinic-equipment-desc-v2 {
    font-size: 0.9375rem;
    line-height: 1.9;
    letter-spacing: var(--ls-body);
    color: var(--text-light);
    margin-top: 4px;
}

.clinic-bottom-v2 {
    padding: 64px 0 0;
    margin-top: 24px;
    border-top: 1px solid var(--border-color);
}
.clinic-desc-v2 {
    font-size: 1rem;
    line-height: 1.9;
    letter-spacing: var(--ls-body);
    color: var(--text-light);
    margin: 0 0 24px 0;
    max-width: 40em;
}
.clinic-tags-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
}
.clinic-tags-v2 li {
    padding: 8px 16px;
    background: var(--primary-soft);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 4px;
}
.clinic-bottom-v2 .btn-primary-v2 {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 4px;
    margin-bottom: 32px;
    transition: background 0.2s ease, transform 0.2s ease;
}
.clinic-bottom-v2 .btn-primary-v2:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}
.clinic-exterior-v2 {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.clinic-exterior-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ----- 診療・料金 V2：左線アクセント ----- */
.services-v2 {
    padding: 128px 0;
    background: var(--ivory);
}
.services-v2 .services-inner-v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}
.services-v2 .services-label-v2 {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: var(--ls-label);
    line-height: 1.5;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.services-v2 .services-ttl-v2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-heading);
    color: var(--text-color);
    margin: 0 0 48px 0;
}
.services-cards-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.service-block-v2 {
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.service-block-ttl-v2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-heading);
    color: var(--text-color);
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-soft);
}
.service-list-v2 {
    list-style: none;
    margin: 0 0 28px 0;
    padding: 0;
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: var(--ls-body);
    color: var(--text-light);
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}
.service-list-v2 li {
    padding: 4px 0;
    position: relative;
    padding-left: 14px;
}
.service-list-v2 li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 50%;
}
.service-block-desc-v2 {
    font-size: 0.9375rem;
    line-height: 1.9;
    letter-spacing: var(--ls-body);
    color: var(--text-light);
    margin: 0 0 28px 0;
    max-width: 28em;
}
.service-block-v2 .btn-v2 {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
}
.service-block-v2 .btn-v2:hover {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 768px) {
    .services-cards-v2 {
        grid-template-columns: 1fr;
    }
}

/* ----- フッター V2：左＝ロゴ・住所など / 右＝メニュー / 下＝コピーライト中央 ----- */
.footer-v2 {
    background: var(--paper);
    border-top: 1px solid var(--border-color);
}
.footer-v2 .footer-inner-v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 28px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto 1fr auto;
    gap: 0 48px;
    align-items: start;
    text-align: left;
}
.footer-v2 .footer-logo-v2 {
    display: block;
    margin-bottom: 24px;
    grid-column: 1;
    grid-row: 1;
}
.footer-v2 .footer-logo-v2 img {
    height: 40px;
    width: auto;
}
.footer-v2 .footer-addr-v2 {
    grid-column: 1;
    grid-row: 2;
    font-size: 0.875rem;
    line-height: 1.7;
    letter-spacing: var(--ls-body);
    color: var(--text-muted);
    margin: 0 0 4px 0;
}
.footer-v2 .footer-tel-v2 {
    grid-column: 1;
    grid-row: 3;
    margin: 0 0 20px 0;
    font-size: 1rem;
    font-weight: 600;
}
.footer-v2 .footer-tel-v2 a {
    color: var(--primary-color);
    text-decoration: none;
}
.footer-v2 .footer-tel-v2 a:hover {
    text-decoration: underline;
}
/* フッター：WEB予約＋Instagram 横並び（左カラム・インスタの左にWEB予約） */
.footer-v2 .footer-cta-row-v2 {
    grid-column: 1;
    grid-row: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px 0;
}
.footer-v2 .footer-reserve-btn-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}
.footer-v2 .footer-reserve-btn-v2:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}
.footer-v2 .footer-cta-row-v2 .footer-insta-v2 {
    margin: 0;
}
.footer-v2 .footer-insta-v2 {
    margin: 0 0 16px 0;
}
.footer-v2 .footer-insta-v2 a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #E4405F;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}
.footer-v2 .footer-insta-v2 a:hover {
    color: #c13584;
    transform: scale(1.1);
}
.footer-v2 .footer-insta-v2 i {
    font-size: 1.5rem;
}
.footer-v2 .footer-nav-v2 {
    grid-column: 2;
    grid-row: 5;
    align-self: end;
    justify-self: end;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 8px 28px;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}
.footer-v2 .footer-nav-v2 a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 1.6;
    letter-spacing: var(--ls-body);
    transition: color 0.2s ease;
    padding: 4px 0;
}
.footer-v2 .footer-nav-v2 a:hover {
    color: var(--primary-color);
}
.footer-v2 .footer-copy-v2 {
    grid-column: 1 / -1;
    grid-row: 6;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
    padding-top: 32px;
    margin-top: 24px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

/* ----- ブログ詳細ページ ----- */
.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 28px;
}
.page-title-detail {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-heading);
    margin-bottom: 0;
}
.breadcrumb span {
    margin: 0 6px;
}
.post-detail {
    padding: 0 0 128px;
}
.post-meta-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.post-date-detail {
    font-size: 0.9375rem;
    line-height: 1.5;
    letter-spacing: var(--ls-body);
    color: var(--text-light);
}
.post-category-detail {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: var(--ls-label);
    padding: 4px 10px;
    background: var(--primary-soft);
    color: var(--primary-color);
    border-radius: 4px;
}
.post-category-detail.post-category-info {
    background: var(--gradient-accent);
    color: #fff;
}
.post-eyecatch {
    width: 100%;
    margin-bottom: 40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--cream-dark);
}
.post-eyecatch img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}
.post-body {
    font-size: 1rem;
    line-height: 1.9;
    letter-spacing: var(--ls-body);
    color: var(--text-color);
}
.post-body p {
    margin: 0 0 1.25em 0;
}
.post-body p:last-child {
    margin-bottom: 0;
}
.post-body h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-heading);
    color: var(--text-color);
    margin: 2em 0 0.6em 0;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--primary-soft);
}
.post-body h2:first-child {
    margin-top: 0;
}
.post-body strong {
    color: var(--primary-color);
    font-weight: 600;
}
.post-back {
    margin: 40px 0 0;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}
.post-back .btn-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ----- 診療案内ページ：治療料金表（診療メニューとは別枠） ----- */
.service-price-section {
    margin-top: 72px;
    padding-top: 48px;
    border-top: 2px solid var(--border-color);
}
/* 治療料金表（フレーム・灰色背景なし） */
.price-section-frame {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 40px 0 48px;
    box-shadow: none;
}
.price-section-frame .section-header {
    margin-top: 0;
    margin-bottom: 32px;
    text-align: left;
}
.price-section-frame .section-header::before {
    margin-left: 0;
    margin-right: auto;
}
.price-section-blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.price-block {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.price-block-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    padding: 20px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--border-color);
    letter-spacing: var(--ls-heading);
}
.price-block-insurance .price-block-title { border-left: 4px solid var(--primary-color); }
.price-block-selfpay .price-block-title { border-left: 4px solid var(--accent-color, #8b7355); }
.price-block-warranty .price-block-title { border-left: 4px solid var(--text-muted); }
.price-block-note,
.price-block-footer {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 24px 16px;
    padding: 0;
}
.price-block-note {
    margin-top: 16px;
    margin-bottom: 0;
}
.price-block p:not(.price-block-note):not(.price-block-footer) {
    margin: 16px 24px 0;
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-light);
}
.price-block p:last-of-type {
    margin-bottom: 20px;
}
.price-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0;
}
.service-price-section .price-table {
    width: 100%;
    min-width: 420px;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin: 0;
}
.service-price-section .price-table th,
.service-price-section .price-table td {
    padding: 12px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}
.service-price-section .price-table thead th {
    background: var(--paper);
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: none;
}
.service-price-section .price-table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}
.service-price-section .price-table tbody tr:hover {
    background: rgba(125, 155, 122, 0.04);
}
.service-price-section .price-table td:first-child {
    font-weight: 500;
    color: var(--text-color);
}
.service-price-section .price-table td:nth-child(2) {
    color: var(--text-light);
    font-size: 0.85rem;
}
.service-price-section .price-table td:last-child {
    white-space: nowrap;
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
}
.price-warranty-list {
    list-style: none;
    margin: 16px 24px 20px;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-light);
}
.price-warranty-list li {
    margin-bottom: 12px;
    padding-left: 0;
    position: relative;
}
.price-warranty-list li::before {
    display: none;
}
.price-warranty-list strong {
    color: var(--text-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .service-price-section {
        margin-top: 56px;
        padding-top: 40px;
    }
    .price-section-frame {
        padding: 28px 0 36px;
    }
    .price-section-frame .section-header {
        margin-bottom: 28px;
    }
    .price-block-title {
        padding: 16px 20px;
        font-size: 1.1rem;
    }
    /* スマホ：表をカード形式にして横スクロール不要・見やすく */
    .price-table-wrap {
        overflow-x: visible;
        margin: 0 -4px;
    }
    .service-price-section .price-table {
        min-width: 0;
        width: 100%;
    }
    .service-price-section .price-table thead {
        display: none;
    }
    .service-price-section .price-table tbody tr {
        display: block;
        margin-bottom: 12px;
        padding: 16px;
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: 10px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    }
    .service-price-section .price-table tbody tr:last-child {
        margin-bottom: 0;
    }
    .service-price-section .price-table tbody td {
        display: block;
        padding: 0;
        border: none;
        font-size: 0.9rem;
        text-align: left;
    }
    .service-price-section .price-table tbody td::before {
        display: block;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        color: var(--text-muted);
        margin-bottom: 4px;
    }
    .service-price-section .price-table tbody td:first-child {
        font-weight: 600;
        color: var(--text-color);
        padding-bottom: 10px;
        font-size: 0.95rem;
    }
    .service-price-section .price-table tbody td:first-child::before {
        content: "内容";
    }
    .service-price-section .price-table tbody td:nth-child(2) {
        font-size: 0.85rem;
        color: var(--text-light);
        padding-bottom: 12px;
        line-height: 1.5;
    }
    .service-price-section .price-table tbody td:nth-child(2)::before {
        content: "備考";
    }
    .service-price-section .price-table tbody td:last-child {
        padding-top: 12px;
        border-top: 1px dashed var(--border-color);
        margin-top: 0;
        font-size: 1rem;
        font-weight: 600;
        color: var(--primary-color);
    }
    .service-price-section .price-table tbody td:last-child::before {
        content: "料金";
    }
    /* 保険診療の表は3列目が「料金目安」 */
    .price-block-insurance .price-table tbody td:last-child::before {
        content: "料金目安";
    }
    .price-block-note,
    .price-block-footer,
    .price-block p:not(.price-block-note):not(.price-block-footer) {
        margin-left: 20px;
        margin-right: 20px;
    }
    .price-warranty-list {
        margin-left: 20px;
        margin-right: 20px;
    }
}

/* ----- クリニックページ：ページ内ナビ V2（カード風リンク） ----- */
.clinic-about-nav-v2 {
    margin-bottom: 56px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
}
.clinic-about-nav-v2 .clinic-about-nav-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: var(--ls-label);
    color: var(--primary-color);
    margin: 0 0 16px 0;
    text-transform: uppercase;
}
.clinic-about-nav-v2 .clinic-about-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.clinic-about-nav-v2 .clinic-about-nav-list a {
    display: block;
    padding: 14px 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: var(--ls-body);
    transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.clinic-about-nav-v2 .clinic-about-nav-list a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(125, 155, 122, 0.15);
}

/* 診療案内ページのみ：治療料金表リンクを別枠に（線なし） */
.service-menu-nav .page-inner-nav-price-wrap {
    margin-top: 20px;
    padding: 20px 0 0;
}
.service-menu-nav .page-inner-nav-price-wrap .clinic-about-nav-label {
    margin-bottom: 12px;
}
.service-menu-nav .page-inner-nav-price-wrap .clinic-about-nav-list {
    margin: 0;
}

@media (max-width: 768px) {
    .clinic-about-nav-v2 {
        margin-bottom: 40px;
    }
    .clinic-about-nav-v2 .clinic-about-nav-list {
        flex-direction: column;
        gap: 8px;
    }
    .clinic-about-nav-v2 .clinic-about-nav-list a {
        padding: 16px 20px;
    }
}

/* ----- サブページ：ページヘッダー（背景画像） ----- */
.page-header.page-header-visual {
    position: relative;
    min-height: 280px;
    padding: 160px 0 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream) url("https://www.viola-dc.com/img/clinic/img03-4.jpg") center center / cover no-repeat;
    border-bottom: none;
}
.page-header.page-header-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(40, 35, 55, 0.55);
    pointer-events: none;
}
.page-header.page-header-visual .container {
    position: relative;
    z-index: 1;
    text-align: center;
}
.page-header.page-header-visual .breadcrumb {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 16px;
}
.page-header.page-header-visual .breadcrumb a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color 0.2s ease;
}
.page-header.page-header-visual .breadcrumb a:hover {
    color: #fff;
}
.page-header.page-header-visual .breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 8px;
}
.page-header.page-header-visual .page-title {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
    .page-header.page-header-visual {
        min-height: 220px;
        padding: 120px 0 48px;
    }
}
@media (max-width: 640px) {
    .page-header.page-header-visual {
        min-height: 200px;
        padding: 108px 0 36px;
    }
    .page-header.page-header-visual .page-title {
        font-size: 1.5rem;
    }
}

/* ----- サブページ（V2ヘッダー使用時） ----- */
body.subpage .page-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}
body.subpage .page-main .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ========== レスポンシブ対応（全体の整え） ========== */
/* 共通：小画面でコンテナ余白を統一 */
@media (max-width: 768px) {
    .container,
    .about-lead-inner-v2,
    .treatments-v2 .treatments-inner-v2,
    .video-section-v2 .treatments-inner-v2,
    .staff-v2 .staff-inner-v2,
    .clinic-section-hook .clinic-hook-container,
    .clinic-section-hook .container,
    .services-v2 .services-inner-v2 {
        padding-left: 20px;
        padding-right: 20px;
    }
    .news-v2 .news-head-v2 {
        padding-left: 16px;
        padding-right: 16px;
    }
    .news-v2 .news-strip-v2 {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ヒーロー：スマホで縦幅いっぱい・上部にヘッダー分の余白なし */
@media (max-width: 768px) {
    .hero-v2 {
        min-height: 100vh;
        min-height: 100dvh;
    }
    .hero-fv {
        padding-top: 0;
        padding-top: env(safe-area-inset-top);
    }
    .hero-v2 .hero-bg-v2 {
        min-height: 100%;
    }
    .hero-v2 .hero-img-v2 {
        min-height: 100%;
        object-fit: cover;
        object-position: center center;
    }
    .hero-fv .hero-cap-v2 {
        padding: 48px 16px 64px;
    }
    .hero-fv .hero-label-fv {
        font-size: 0.7rem;
        letter-spacing: 0.25em;
    }
    .hero-fv .hero-sub-v2 {
        font-size: 0.9rem;
    }
    .hero-fv .hero-clinic-fv {
        font-size: 0.7rem;
    }
    .hero-fv .hero-btn-fv {
        padding: 16px 28px;
        font-size: 0.9rem;
    }
    .hero-fv .scroll-hint-v2 {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: 32px;
        animation: scrollHintInMobile 0.6s ease-out 1.4s forwards;
    }
    .scroll-hint-v2 {
        bottom: 20px;
    }
    .scroll-hint-line-fv {
        height: 36px;
    }
}

@media (max-width: 480px) {
    .hero-v2 {
        min-height: 100vh;
        min-height: 100dvh;
    }
    .hero-fv .hero-cap-v2 {
        padding: 40px 16px 56px;
    }
    .hero-fv .hero-label-fv {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
    }
    .hero-fv .hero-sub-v2 {
        font-size: 0.85rem;
    }
    .hero-fv .hero-clinic-fv {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
    }
}

/* 当院について */
@media (max-width: 768px) {
    .about-lead-v2 {
        padding: 72px 0 64px;
    }
    .about-lead-title-v2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 20px;
    }
    .about-lead-txt-v2 {
        font-size: 0.9rem;
    }
}

/* ブログ・お知らせ */
@media (max-width: 768px) {
    .news-v2 {
        padding: 72px 0 64px;
    }
    .news-v2 .news-ttl-v2 {
        font-size: 1.35rem;
    }
    .news-v2 .news-more-v2 {
        font-size: 0.8rem;
    }
    .news-v2 .news-card-v2 {
        flex: 0 0 280px;
    }
    .news-v2 .news-card-ttl-v2 {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .news-v2 .news-card-v2 {
        flex: 0 0 260px;
    }
}

/* 診療案内 */
@media (max-width: 768px) {
    .treatments-v2 {
        padding: 80px 0 72px;
    }
    .treatments-v2 .treatments-head-v2 {
        margin-bottom: 48px;
    }
    .treatments-v2 .treatments-ttl-v2 {
        font-size: 1.5rem;
    }
    .treatments-v2 .treatment-rows-v2 {
        gap: 48px;
    }
    .treatments-v2 .treatments-cta-v2 {
        margin-top: 32px;
    }
}

/* 動画セクション */
@media (max-width: 768px) {
    .video-section-v2 {
        padding: 72px 0 80px;
    }
    .video-section-v2 .treatments-ttl-v2 {
        font-size: 1.25rem;
    }
}

/* 院長紹介 */
@media (max-width: 768px) {
    .staff-v2 {
        padding: 80px 0 72px;
    }
    .staff-v2 .staff-ttl-v2 {
        font-size: 1.35rem;
        margin-bottom: 36px;
    }
    .staff-v2 .staff-photo-v2 {
        width: 160px;
        height: 160px;
    }
    .staff-v2 .staff-name-v2 {
        font-size: 1.1rem;
    }
    .staff-v2 .staff-dl-v2 {
        font-size: 0.85rem;
    }
}

/* 院内・設備紹介（紫ブロック＋コンテンツ） */
@media (max-width: 768px) {
    .clinic-section-hook .clinic-hook-container {
        padding: 20px;
    }
    .clinic-hook-inner {
        padding: 56px 0 48px !important;
    }
    .clinic-hook-title {
        font-size: 1.5rem !important;
    }
    .clinic-hook-lead {
        font-size: 0.9rem !important;
    }
    .clinic-hook-cta {
        padding: 14px 28px !important;
        font-size: 0.9rem !important;
    }
    .clinic-section-hook .section-header.clinic-section-header {
        margin-top: 32px;
        margin-bottom: 28px;
    }
    .clinic-interior-block-v2 {
        margin-top: 72px;
        padding: 56px 0 64px;
    }
    .clinic-interior-inner-v2 {
        padding: 0 20px;
    }
    .clinic-interior-block-v2 .section-header.clinic-section-header {
        margin-bottom: 24px;
    }
    .clinic-interior-lead-v2 {
        font-size: 0.9rem;
        margin-bottom: 32px;
    }
    .clinic-equipment-block-v2 {
        margin-top: 72px;
    }
    .clinic-equipment-block-v2 .section-header.clinic-section-header {
        margin-bottom: 24px;
    }
    .clinic-equipment-block-v2 .clinic-equipment-lead-v2 {
        font-size: 0.9rem;
        margin-bottom: 32px;
    }
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .equipment-grid-body {
        padding: 18px 20px 22px;
    }
    .equipment-grid-name {
        font-size: 1rem;
    }
    .equipment-grid-desc {
        font-size: 0.875rem;
    }
    .clinic-feature-strip-v2 {
        padding: 24px 0;
    }
    /* 当院の特徴：画像左右交互（モバイルは縦積み） */
    .features-alt-wrap {
        margin-bottom: 56px;
    }
    .features-alt-list {
        gap: 56px;
    }
    .feature-alt-row-v2,
    .feature-alt-row-reverse-v2 {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 20px;
    }
    .feature-alt-num-v2 {
        position: static;
        font-size: 2.25rem;
        margin-bottom: 4px;
    }
    .feature-alt-row-reverse-v2 .feature-alt-num-v2 {
        margin-bottom: 4px;
    }
    .feature-alt-icon-v2 {
        max-width: 140px;
        margin-left: auto;
        margin-right: auto;
    }
    .feature-alt-icon-v2 i {
        font-size: 2rem;
    }
    .feature-alt-body-v2,
    .feature-alt-row-reverse-v2 .feature-alt-body-v2 {
        padding: 0;
    }
    .feature-alt-ttl-v2 {
        font-size: 1.15rem;
    }
    .feature-alt-txt-v2 {
        font-size: 0.875rem;
    }
    .clinic-interior-list-v2 {
        grid-template-columns: 1fr;
    }
    .clinic-interior-item-body-v2 {
        padding: 16px;
    }
    .clinic-equipment-highlight {
        padding: 28px 20px 24px;
    }
    .clinic-equipment-ttl-v2 {
        font-size: 1.25rem;
    }
    .clinic-bottom-v2 {
        padding-top: 32px;
    }
    .clinic-bottom-v2 .btn-primary-v2 {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}

/* 診療・料金 */
@media (max-width: 768px) {
    .services-v2 {
        padding: 80px 0 72px;
    }
    .services-v2 .services-ttl-v2 {
        font-size: 1.35rem;
        margin-bottom: 36px;
    }
    .services-cards-v2 {
        gap: 24px;
    }
    .service-block-v2 {
        padding: 24px;
    }
    .service-block-ttl-v2 {
        font-size: 1.1rem;
    }
    .service-list-v2 {
        font-size: 0.85rem;
    }
}

/* アクセスセクション：白背景（clinic.html などで使用） */
.access-section-bg-white {
    background: #fff;
}

/* アクセスページ専用：2カラム・白背景 */
body.page-access .access-section {
    background: #fff;
}
body.page-access .access-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 32px 48px;
}
/* 左：写真・診療時間・ご予約・お問い合わせ */
body.page-access .access-clinic-image {
    grid-column: 1;
    grid-row: 1;
    height: 320px;
}
body.page-access .access-hours {
    grid-column: 1;
    grid-row: 2;
    padding-left: 0;
    margin-left: 0;
}
/* 診療時間表：左の隙間をなくす・月と●を中央揃えで揃える */
body.page-access .hours-table th:first-child,
body.page-access .hours-table td:first-child,
.hours-table th:first-child,
.hours-table td:first-child {
    padding-left: 0;
    text-align: center;
}
body.page-access .access-contact {
    grid-column: 1;
    grid-row: 3;
}
/* 右：地図・住所・駐車場・アクセス */
body.page-access .access-map {
    grid-column: 2;
    grid-row: 1;
    height: 320px;
}
body.page-access .access-address {
    grid-column: 2;
    grid-row: 2;
}
body.page-access .access-parking {
    grid-column: 2;
    grid-row: 3;
}
body.page-access .access-station {
    grid-column: 2;
    grid-row: 4;
}

/* アクセス：グリッド1列・テーブル横スクロール */
@media (max-width: 768px) {
    body.page-access .access-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 32px;
    }
    body.page-access .access-clinic-image,
    body.page-access .access-map,
    body.page-access .access-hours,
    body.page-access .access-contact,
    body.page-access .access-address,
    body.page-access .access-parking,
    body.page-access .access-station {
        grid-column: 1;
        grid-row: auto;
    }
    .access-section {
        padding: 80px 0 72px;
    }
    .access-section .section-header {
        margin-bottom: 32px;
    }
    .access-section .section-title {
        font-size: 1.35rem;
    }
    .access-grid {
        gap: 24px;
    }
    .access-hours {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .hours-table {
        min-width: 280px;
        font-size: 0.85rem;
    }
    .hours-table th,
    .hours-table td {
        padding: 10px 6px;
    }
    .hours-table th:first-child,
    .hours-table td:first-child {
        padding-left: 0;
    }
    .access-phone {
        font-size: 1.1rem;
    }
    .access-contact .contact-detail-btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .access-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .hours-table {
        min-width: 260px;
    }
}

/* お問い合わせセクション */
@media (max-width: 768px) {
    .contact-section {
        padding: 76px 24px !important;
    }
    .contact-content {
        padding: 64px 24px !important;
        flex-direction: column;
        gap: 24px;
    }
    .contact-title {
        font-size: 1.75rem !important;
    }
    .contact-arrow {
        position: static !important;
        transform: none !important;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 64px 16px !important;
    }
    .contact-content {
        padding: 56px 16px !important;
    }
}

/* フッター：スマホで見やすく整列 */
@media (max-width: 768px) {
    .footer-v2 .footer-inner-v2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 48px 20px 32px;
        gap: 0;
        text-align: center;
    }
    .footer-v2 .footer-logo-v2 {
        order: 1;
        margin-bottom: 24px;
    }
    .footer-v2 .footer-logo-v2 img {
        height: 32px;
        width: auto;
        display: block;
    }
    .footer-v2 .footer-addr-v2 {
        order: 2;
        font-size: 0.8125rem;
        line-height: 1.7;
        margin: 0 0 12px 0;
        max-width: 280px;
    }
    .footer-v2 .footer-tel-v2 {
        order: 3;
        margin: 0 0 20px 0;
        font-size: 1rem;
    }
    .footer-v2 .footer-cta-row-v2 {
        order: 4;
        justify-content: center;
        margin: 0 0 24px 0;
        gap: 12px;
    }
    .footer-v2 .footer-cta-row-v2 .footer-insta-v2 {
        margin: 0;
    }
    .footer-v2 .footer-insta-v2 {
        margin: 0;
    }
    .footer-v2 .footer-insta-v2 a {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .footer-v2 .footer-reserve-btn-v2 {
        min-height: 44px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .footer-v2 .footer-nav-v2 {
        order: 5;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 4px 20px;
        margin: 0 0 24px 0;
        padding: 0;
        list-style: none;
        text-align: center;
    }
    .footer-v2 .footer-nav-v2 a {
        padding: 10px 4px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.875rem;
    }
    .footer-v2 .footer-copy-v2 {
        order: 6;
        margin: 0;
        padding-top: 20px;
        border-top: 1px solid var(--border-color);
        font-size: 0.7rem;
        color: var(--text-muted);
    }
}

@media (max-width: 480px) {
    .footer-v2 .footer-inner-v2 {
        padding: 40px 16px 28px;
    }
    .footer-v2 .footer-logo-v2 img {
        height: 28px;
    }
    .footer-v2 .footer-addr-v2 {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    .footer-v2 .footer-tel-v2 {
        font-size: 0.9375rem;
        margin-bottom: 18px;
    }
    .footer-v2 .footer-nav-v2 {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .footer-v2 .footer-nav-v2 a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    .footer-v2 .footer-nav-v2 li:last-child a {
        border-bottom: none;
    }
    .footer-v2 .footer-copy-v2 {
        padding-top: 16px;
        font-size: 0.65rem;
    }
}

/* トップへ戻るボタン */
@media (max-width: 768px) {
    .back-to-top {
        right: 16px;
        bottom: 24px;
        width: 44px;
        height: 44px;
    }
}

/* セクション見出し・ラベル（小画面で少し縮小） */
@media (max-width: 768px) {
    .section-header .section-title {
        font-size: 1.35rem;
    }
    .section-label {
        font-size: 0.65rem;
    }
}

/* タッチ操作：ボタン・リンクの最小タップ領域 */
@media (max-width: 768px) {
    .btn-v2,
    .header-v2 .header-reserve-v2,
    .hero-fv .hero-btn-fv,
    .news-v2 .news-more-v2 {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .header-v2 .header-insta-v2 {
        min-width: 44px;
        min-height: 44px;
    }
}
