/* ===========================
   リセット & ベーススタイル
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2a567c;
    --secondary-color: #43779d;
    /* 「初めての方へ」と電話予約で、操作時の色も共通にする。 */
    --button-primary-hover: #234764;
    --accent-color: #ad4969;
    --text-dark: #2d3b46;
    --text-light: #5f6d78;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --border-color: #dde5ec;
    --border-interactive: #7896ad;
    --shadow-sm: 0 8px 18px rgba(40, 70, 110, 0.06);
    --shadow-md: 0 12px 30px rgba(40, 70, 110, 0.08);
    --shadow-lg: 0 18px 40px rgba(40, 70, 110, 0.12);
    --transition: all 0.3s ease;

    /* カード共通トークン: 役割ごとの差は色と操作反応だけに限定する。 */
    --card-surface: #ffffff;
    --card-surface-hover: #eef4f8;
    --card-surface-active: #e4edf4;
    --card-border: #cdd9e3;
    --card-border-interactive: var(--border-interactive);
    --card-radius: 12px;
    --card-radius-shell: 18px;
    --card-padding-compact: 1rem;
    --card-padding: 1.5rem;
    --card-padding-spacious: 2rem;
    /* 本番の「初めての方」カードと同じ浮き上がり・影・速さに揃える。 */
    --card-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.12);
    --card-lift: -4px;
    --card-lift-transition: box-shadow 0.3s ease, transform 0.3s ease;
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --card-transition: background-color 0.18s var(--ease-out-quart), border-color 0.18s var(--ease-out-quart), var(--card-lift-transition);
    --booking-surface: rgba(236, 244, 249, 0.88);
    --booking-surface-hover: rgba(226, 238, 246, 0.96);
    --booking-border: #6d8ba5;
    --booking-kicker: #476983;
    --booking-note: #586a78;

    /* 注意・補足カードは淡色の面と左線で意味を伝える。 */
    --notice-info-surface: #f2f7fb;
    --notice-info-border: #5f82a0;
    --notice-accent-surface: #f8edf1;
    --notice-accent-border: #d7a3b4;
    --notice-warning-surface: #fff7ed;
    --notice-warning-border: #b86b14;
    --notice-danger-surface: #fff2f2;
    --notice-danger-border: #c94a44;
}

body {
    font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", Meiryo, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* キーボード操作時だけ画面内に表示する本文スキップ */
.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2000;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 700;
    transition: none;
    transform: translateY(calc(-100% - 1.5rem));
}

.skip-link:focus-visible {
    outline: 3px solid #174a70;
    outline-offset: 3px;
    box-shadow: 0 0 0 2px var(--bg-white);
    transform: translateY(0);
}

/* ===========================
   ヘッダー
   =========================== */
.site-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.header-banner {
    position: relative;
    display: grid;
    min-height: 220px;
    overflow: hidden;
}

/* 背景画像だけを絶対配置し、文字は通常フローでヘッダーの高さを決める。 */
.banner-picture,
.header-banner > .banner-image {
    position: absolute;
    inset: 0;
}

.banner-picture {
    display: block;
    width: 100%;
    height: 100%;
}

.banner-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-overlay {
    position: relative;
    width: 100%;
    background: linear-gradient(90deg, rgba(28, 44, 68, 0.44), rgba(28, 44, 68, 0.12) 56%, rgba(28, 44, 68, 0));
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.8rem clamp(1.5rem, 5vw, 4rem);
}

.site-title {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
    margin: 0;
}

.banner-copy,
.home-banner-copy {
    max-width: 560px;
    padding: 1.2rem 1.4rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.banner-label,
.home-banner-label {
    margin: 0 0 0.45rem;
    color: #f2f7fb;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.banner-copy .site-title,
.home-banner-copy .site-title {
    font-size: clamp(1.7rem, 3.2vw, 2.35rem);
    letter-spacing: 0.07em;
}

.banner-text,
.home-banner-text {
    margin: 0.6rem 0 0;
    color: #f7fbfe;
    font-size: 0.98rem;
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.24);
}

/* ===========================
   ナビゲーション
   =========================== */
.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
}

.nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: var(--transition);
}

.mobile-appointment-link {
    display: none;
}

/* ===========================
   コンテナ & グリッド
   =========================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 20px;
}

.main-content {
    min-height: calc(100vh - 400px);
    scroll-margin-top: 5rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    grid-template-rows: max-content 1fr;
    grid-template-areas:
        "sidebar-actions article"
        "sidebar article";
    column-gap: 2rem;
    row-gap: 1rem;
    align-items: start;
    margin-top: 2rem;
}

/* ===========================
   サイドバー
   =========================== */
.sidebar {
    grid-area: sidebar;
    min-width: 0;
    height: fit-content;
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: relative;
    top: auto;
}

.sidebar-action-cards {
    grid-area: sidebar-actions;
    min-width: 0;
    display: grid;
    gap: 0.75rem;
    align-self: start;
}

.sidebar-action-card {
    min-width: 0;
    min-height: 44px;
    padding: var(--card-padding-compact);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-white);
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.sidebar-action-link:focus:not(:focus-visible),
.sidebar-booking-card:focus:not(:focus-visible) {
    outline: none;
}

.sidebar-action-link:focus-visible,
.sidebar-booking-card:focus-visible {
    outline: 3px solid #174a70;
    outline-offset: 3px;
}

.sidebar-booking-card:focus-visible {
    box-shadow: 0 0 0 2px var(--bg-white);
}

.sidebar-action-kicker {
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.06em;
}

.sidebar-action-title {
    color: var(--primary-color);
    font-size: 1rem;
    line-height: 1.45;
}

.sidebar-action-kicker + .sidebar-action-title {
    margin-top: 0.15rem;
}

.sidebar-hours-row {
    margin-top: 0.3rem;
    font-size: 0.84rem;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    line-height: 1.55;
}

.sidebar-hours-closure {
    margin-top: 0.3rem;
    color: var(--text-light);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.5;
}

.sidebar-action-link {
    min-height: 44px;
    margin-top: 0.35rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    font-size: 0.82rem;
    font-weight: 700;
}

.sidebar-booking-note {
    margin-top: 0.3rem;
    font-size: 0.78rem;
    font-weight: 600;
}

/* 診察予約と販売問い合わせを区別し、コンタクト検診は電話へ案内する。 */
.sidebar-clinic-phone {
    display: flex;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    min-height: 76px;
    margin-top: 0.6rem;
    padding: 0.75rem 0.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    background: var(--primary-color);
    color: var(--bg-white);
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition: background-color 0.18s ease, border-color 0.18s ease;
}

.sidebar-clinic-phone strong {
    max-width: 100%;
    font-size: 1.375rem;
    font-variant-numeric: tabular-nums;
}

.sidebar-clinic-phone:focus-visible,
.mobile-appointment-link:focus-visible,
.first-visit-phone:focus-visible {
    outline: 3px solid #174a70;
    outline-offset: 3px;
}

.sidebar-web-booking {
    width: 100%;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--booking-border);
}

.sidebar-web-button {
    width: 100%;
    min-height: 56px;
    margin-top: 0;
    padding: 0.65rem 0.5rem;
    justify-content: center;
    gap: 0.35rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    background: var(--card-surface);
    color: var(--primary-color);
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition: background-color 0.18s ease, border-color 0.18s ease;
}

.sidebar-web-button > [aria-hidden="true"] {
    flex-shrink: 0;
}

.sidebar-web-booking .sidebar-booking-note {
    margin-top: 0.6rem;
}

@media (hover: hover) and (pointer: fine) {
    .sidebar-clinic-phone:hover {
        border-color: var(--button-primary-hover);
        background: var(--button-primary-hover);
    }

    .sidebar-web-booking .sidebar-web-button:hover {
        background: var(--card-surface-hover);
        text-decoration: none;
    }
}

.sidebar-clinic-phone:active {
    border-color: var(--button-primary-hover);
    background: var(--button-primary-hover);
}

.sidebar-web-booking .sidebar-web-button:active {
    background: var(--card-surface-active);
}

.visually-hidden {
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    border: 0 !important;
    position: absolute !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

@media (hover: hover) and (pointer: fine) {
    .sidebar-action-link:hover {
        text-decoration: underline;
        text-underline-offset: 0.18em;
    }

}

.sidebar-title {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.sidebar-icon {
    width: auto;
    height: 50px;
    margin: 0 auto;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem;
    color: var(--text-dark);
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.sidebar-link:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.link-icon {
    margin-right: 0.75rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.sidebar-link:hover .link-icon {
    color: white;
}

/* ===========================
   メインアーティクル
   =========================== */
.main-article {
    grid-area: article;
    container-type: inline-size;
    container-name: article;
    min-width: 0;
    background: var(--bg-white);
    border-radius: var(--card-radius-shell);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(221, 229, 236, 0.9);
    overflow: hidden;
}

/* イントロセクション */
.intro-section {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.intro-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
}

.intro-image {
    text-align: center;
}

.feature-image {
    max-width: 100%;
    border-radius: 8px;
}

.intro-text {
    flex: 1;
}

.intro-text p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.quick-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.quick-link-card {
    display: block;
    transition: var(--transition);
    border-radius: 8px;
    overflow: hidden;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quick-link-img {
    display: block;
    max-width: 100%;
}

/* 情報セクション */
.info-section {
    padding: 2rem;
}

.info-card {
    border-radius: 8px;
    overflow: hidden;
}

.card-header {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.header-icon {
    margin: 0 auto;
    max-width: 150px;
}

.card-body {
    padding: 2rem 1.5rem;
}

.info-point {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: start;
}

.point-marker {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.point-content {
    flex: 1;
}

.point-content h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.point-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.sub-heading {
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 0.5rem;
}

.inline-link {
    display: inline-block;
    margin-top: 1rem;
    transition: var(--transition);
}

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

.inline-img {
    border-radius: 4px;
}

/* チェックポイント */
.checkpoints {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checkpoint {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.checkpoint-icon {
    color: var(--secondary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.checkpoint p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* ===========================
   フッター
   =========================== */
.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
    text-align: center;
}

.site-footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

/* タブレット */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 240px minmax(0, 1fr);
        column-gap: 1.5rem;
        row-gap: 1rem;
    }

    .site-title {
        font-size: 2.5rem;
    }

    .intro-content {
        grid-template-columns: 250px 1fr;
        gap: 1.5rem;
    }
}

/* 左レールを置くには本文幅が不足するタブレット帯 */
@media (min-width: 769px) and (max-width: 959px) {
    .content-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "article"
            "sidebar-actions"
            "sidebar";
        gap: 1.5rem;
    }

    .sidebar-action-cards {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    }

    .sidebar,
    .sidebar-action-cards {
        position: static;
    }

    .main-article {
        width: 100%;
    }
}

/* タブレット幅でもナビは1段のドロワーに集約する。 */
@media (max-width: 959px) {
    /* キーボード移動・ページ内リンクが追従バーの下へ隠れない余白。 */
    html {
        scroll-padding-top: 4.5rem;
    }

    .main-content,
    #reservation,
    #store-hours {
        scroll-margin-top: 0.75rem;
    }

    .main-nav {
        position: sticky;
        top: 0;
    }

    .mobile-appointment-link {
        display: inline-flex;
        min-height: 56px;
        max-width: calc(100% - 64px);
        align-items: center;
        gap: 0.5rem;
        color: var(--primary-color);
        font-size: 0.95rem;
        font-weight: 600;
    }

    .nav-container {
        min-height: 56px;
        padding: 0 20px;
    }

    .mobile-menu-toggle {
        display: block;
        min-width: 44px;
        min-height: 44px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        height: 100dvh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 80px 20px 20px;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        overflow-y: auto;
        gap: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        right: 0;
        visibility: visible;
    }

    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link::after {
        display: none;
    }
}

/* モバイル */
@media (max-width: 768px) {
    .header-banner {
        min-height: 140px;
    }

    .site-title {
        font-size: 2rem;
    }

    .header-overlay {
        padding: 0.4rem 14px;
    }

    .banner-copy,
    .home-banner-copy {
        width: min(100%, 320px);
        padding: 0.8rem 0.9rem;
        border-radius: 16px;
    }

    .banner-copy .site-title,
    .home-banner-copy .site-title {
        font-size: 1.45rem;
        line-height: 1.25;
        letter-spacing: 0.03em;
    }

    .banner-label,
    .home-banner-label {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
        letter-spacing: 0.12em;
    }

    .banner-text,
    .home-banner-text {
        margin-top: 0.35rem;
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .content-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "article"
            "sidebar-actions"
            "sidebar";
        gap: 1.5rem;
    }

    .sidebar {
        height: fit-content;
        position: static;
    }

    .sidebar-action-cards {
        position: static;
    }

    .main-article {
        width: 100%;
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .intro-image {
        order: 1;
    }

    .intro-text {
        order: 2;
    }

    .quick-links {
        justify-content: center;
    }

    .container {
        padding: 1.5rem 15px;
    }

    .intro-section,
    .info-section {
        padding: 1.5rem;
    }

    .card-body {
        padding: 1.5rem 1rem;
    }

    .checkpoint {
        padding: 1rem;
    }
}

@media (min-width: 560px) and (max-width: 768px) {
    .sidebar-action-cards {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 1.5rem;
    }

    .nav-link {
        font-size: 0.95rem;
    }

    .sidebar-link {
        font-size: 0.9rem;
        padding: 0.75rem;
    }

    .intro-section,
    .info-section {
        padding: 1rem;
    }

    .checkpoint {
        flex-direction: column;
        gap: 0.5rem;
    }
}

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

.main-article,
.sidebar {
    animation: fadeIn 0.6s ease-out;
}

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

/* ポインター操作では出さず、キーボード操作では明確に示します。 */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid #174a70;
    outline-offset: 2px;
}

.mobile-menu-toggle:focus-visible {
    border-radius: 4px;
    box-shadow: 0 0 0 2px var(--bg-white);
}

/* 選択スタイル */
::selection {
    background: var(--primary-color);
    color: white;
}

/* ===========================
   ページ共通スタイル
   =========================== */
.page-section {
    padding: 2rem;
}

.page-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

/* ===========================
   アクセスページ
   =========================== */
.access-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.access-map img,
.access-building img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.access-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.transportation-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.info-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.transport-section {
    margin-bottom: 2rem;
}

.transport-section h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.transport-list {
    list-style: none;
    padding-left: 1.5rem;
}

.transport-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    line-height: 1.8;
}

.transport-list li.highlight {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.05rem;
}

.contact-info-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.address-info p {
    margin: 1rem 0;
}

.address {
    font-size: 1.1rem;
    line-height: 1.8;
}

.phone {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

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

    .access-info-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 1.5rem;
    }
}

/* ===========================
   受付ページ
   =========================== */
.schedule-table {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin: 2rem 0;
}

.schedule-header {
    display: grid;
    grid-template-columns: 150px repeat(7, 1fr);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.schedule-row {
    display: grid;
    grid-template-columns: 150px repeat(7, 1fr);
    border-bottom: 1px solid var(--border-color);
}

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

.schedule-cell {
    padding: 1.2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-cell {
    font-weight: 600;
    font-size: 1.1rem;
}

.time-cell {
    background: var(--bg-light);
    flex-direction: column;
    gap: 0.5rem;
    font-weight: 600;
    border-right: 2px solid var(--border-color);
}

.time-label {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.time-range {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 700;
}

.status-cell {
    font-size: 1.3rem;
    font-weight: 600;
}

.status-cell.open {
    color: var(--secondary-color);
}

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

.schedule-note {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 1rem;
    padding-left: 1rem;
}

.info-box {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.info-box.sales-info {
    background: #e8f5e9;
    border-left-color: #4caf50;
}

.info-box-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.info-box p {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.link-external {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.link-external:hover {
    color: var(--primary-color);
}

.phone-highlight {
    color: var(--accent-color);
    font-size: 1.2rem;
}

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

.sales-hours {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.sales-hours h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.sales-hours ul {
    list-style: none;
    padding-left: 1.5rem;
}

.sales-hours li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.sales-hours li::before {
    content: "・";
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.purchase-note {
    color: var(--secondary-color);
    font-weight: 500;
}

/* レスポンシブ: 受付ページ */
@media (max-width: 768px) {
    .schedule-header,
    .schedule-row {
        grid-template-columns: 80px repeat(7, 1fr);
        font-size: 0.85rem;
    }

    .schedule-cell {
        padding: 0.8rem 0.3rem;
    }

    .time-label {
        font-size: 0.9rem;
    }

    .time-range {
        font-size: 0.75rem;
    }

    .status-cell {
        font-size: 1rem;
    }

    .info-box {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .schedule-header,
    .schedule-row {
        grid-template-columns: 70px repeat(7, 1fr);
        font-size: 0.75rem;
    }

    .schedule-cell {
        padding: 0.6rem 0.2rem;
    }

    .header-cell {
        font-size: 0.85rem;
    }

    .time-label {
        font-size: 0.8rem;
    }

    .time-range {
        font-size: 0.65rem;
    }
}

/* ===========================
   お知らせページ
   =========================== */
.notice-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.notice-image {
    max-width: 800px;
    width: 100%;
}

.info-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* ===========================
   レガシーテーブルのスタイリング
   =========================== */
.legacy-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin: 1.5rem 0;
}

.legacy-table td,
.legacy-table th {
    padding: 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.legacy-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

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

/* リンクページ用のテーブルスタイル */
.legacy-table a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

/* コンタクトレンズ画像のサイズ統一 */
.legacy-table img[src*="hard.gif"],
.legacy-table img[src*="soft.gif"] {
    width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* テーブル内の画像を統一的に表示 */
.legacy-table img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* テーブルのセルを均等に配置 */
.legacy-table {
    table-layout: fixed;
    width: 100%;
}

/* テーブルのセルサイズを統一 */
.legacy-table tr > td {
    vertical-align: top;
    padding: 1rem;
}

/* 2カラムレイアウトのテーブルセルを均等に */
.legacy-table tr > td:first-child:nth-last-child(2),
.legacy-table tr > td:first-child:nth-last-child(2) ~ td {
    width: 50%;
}

@media (max-width: 768px) {
    .legacy-table {
        font-size: 0.9rem;
        table-layout: auto;
    }

    .legacy-table td,
    .legacy-table th {
        padding: 0.75rem 0.5rem;
    }

    /* モバイルでは画像をさらに小さく */
    .legacy-table img[src*="hard.gif"],
    .legacy-table img[src*="soft.gif"] {
        width: 180px;
    }
}

/* お知らせボックスのスタイル */
.notice-box {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.notice-box.important-notice {
    background: #fff5f5;
    border-color: #ff6b9d;
    border-width: 3px;
}

.notice-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.important-notice .notice-title {
    color: #d32f2f;
    border-bottom-color: #ff6b9d;
}

.notice-content {
    line-height: 1.8;
    color: var(--text-dark);
}

.notice-highlight {
    background: #ffebee;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #d32f2f;
    margin: 0 0 1rem 0;
}

.notice-highlight strong {
    color: #d32f2f;
    font-size: 1.1rem;
}

.notice-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.notice-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

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

.phone-number {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: 1.2rem;
    margin: 1rem 0;
}

.phone-number a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.phone-number a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .notice-box {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .notice-title {
        font-size: 1.1rem;
    }

    .phone-number {
        font-size: 1rem;
    }
}

/* ====================================
   初めての方ページ - カードグリッドUI
   ==================================== */

.hajimete-section {
    padding: 2rem 0;
}

.section-heading {
    font-size: clamp(1.75rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1.15rem 0;
    text-align: center;
    letter-spacing: 0.03em;
}

.section-intro {
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
    margin: 0 0 3rem 0;
    line-height: 1.6;
}

/* カードグリッドレイアウト */
.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 0 auto;
    max-width: 900px;
}

.practice-video-section {
    margin: 3rem auto 0;
    max-width: 900px;
    padding: 2rem;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid #dfeaf5;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(44, 90, 160, 0.08);
}

.practice-video-header {
    margin-bottom: 1.25rem;
    text-align: center;
}

.practice-video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.practice-video-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.practice-video-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
}

.practice-video-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.75rem 0;
}

.practice-video-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

.practice-video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    background: #000;
}

.practice-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.first-visit-guide {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 0 auto 2.5rem;
    max-width: 900px;
}

.first-visit-guide-main,
.first-visit-guide-links {
    border-radius: var(--card-radius);
}

.first-visit-guide-main {
    background: var(--card-surface);
    border: 1px solid var(--card-border);
    padding: 1.75rem;
}

.first-visit-guide-title {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin: 0 0 1rem;
}

.first-visit-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.first-visit-checklist li {
    position: relative;
    padding: 0.65rem 0 0.65rem 1.6rem;
    color: #4f5661;
    line-height: 1.8;
    border-bottom: 0;
}

.first-visit-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.first-visit-checklist strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.first-visit-phone {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-top: 0.3rem;
    font-weight: 600;
}

.first-visit-guide-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.first-visit-link-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.2rem 1.3rem;
    text-decoration: none;
    color: inherit;
}

.first-visit-link-card strong {
    color: var(--primary-color);
}

.first-visit-link-card span {
    line-height: 1.7;
    color: #5b6470;
}

/* 個別カード */
.info-card {
    display: block;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.info-card:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* カードアイコン */
.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

/* カードタイトル */
.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

/* カード説明文 */
.card-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
}

/* カードリンク */
.card-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: color 0.2s ease;
}

.info-card:focus-visible .card-link {
    color: var(--primary-color);
}

/* モバイル対応（768px以下） */
@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .section-intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .practice-video-section {
        margin-top: 2rem;
        padding: 1.25rem;
    }

    .first-visit-guide {
        margin-bottom: 2rem;
    }

    .first-visit-checklist,
    .first-visit-guide-links {
        grid-template-columns: 1fr;
    }

    .first-visit-guide-main {
        padding: 1.25rem;
    }

    .practice-video-title {
        font-size: 1.2rem;
    }

    .practice-video-text {
        font-size: 0.9rem;
    }

    .card-icon {
        width: 48px;
        height: 48px;
    }

    .card-icon svg {
        width: 24px;
        height: 24px;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-description {
        font-size: 0.9rem;
    }
}

/* ========================================
   Exam Flow Section (sakusei.html)
   ======================================== */

.exam-flow-section {
    padding: 2rem 0;
}

.exam-flow-section .section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.exam-flow-section .section-header img {
    max-width: 100%;
    height: auto;
}

.exam-intro {
    text-align: center;
    font-size: 1rem;
    line-height: 1.8;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    max-width: 700px;
}

.exam-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.exam-step {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.exam-step-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.exam-step-body {
    padding: 1.5rem;
    padding-top: 4rem;
}

.exam-step-header {
    margin-bottom: 1.5rem;
}

.exam-step-header img {
    max-width: 100%;
    height: auto;
}

.exam-step-title {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.35rem;
    line-height: 1.5;
}

.exam-step-content {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
}

.exam-step-content p {
    margin-bottom: 1rem;
}

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

.exam-step-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.exam-step-image {
    margin-top: 1.5rem;
    text-align: center;
}

.exam-step-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Tear test subsection within Step 3 */
.tear-test {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.tear-test h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tear-test-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tear-test-content p {
    margin: 0;
    line-height: 1.7;
}

.tear-test-content img {
    max-width: min(200px, 100%);
    align-self: center;
}

/* Related links section */
.related-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
    flex-wrap: wrap;
}

.related-links a {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.related-links a:hover {
    transform: translateY(-4px);
    opacity: 0.8;
}

.related-links img {
    max-width: 100%;
    height: auto;
}

/* Responsive design for exam flow */
@media (max-width: 768px) {
    .exam-intro {
        font-size: 0.9rem;
        padding: 1rem;
        margin: 1.5rem auto;
    }

    .exam-flow {
        gap: 1.5rem;
    }

    .exam-step-badge {
        top: 1rem;
        left: 1rem;
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .exam-step-body {
        padding: 1rem;
        padding-top: 3.5rem;
    }

    .exam-step-content {
        font-size: 0.9rem;
    }

    .tear-test {
        padding: 1rem;
    }

    .tear-test h4 {
        font-size: 0.95rem;
    }

    .related-links {
        gap: 1rem;
        margin-top: 2rem;
    }

    .related-links img {
        max-width: 150px;
    }
}

/* ========================================
   Info Page (info.html)
   ======================================== */

.info-page-section {
    padding: 2rem 0;
}

.info-page-section .section-intro,
.info-page-section .notice-list {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.page-title-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

.info-featured-notice {
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fff8f8 0%, #ffffff 100%);
    border: 1px solid #ffd6d6;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(211, 47, 47, 0.08);
}

.info-featured-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.info-featured-head h3 {
    margin: 0;
    font-size: 1.35rem;
    color: #b13c3c;
}

.info-featured-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: #ffe6e6;
    color: #bf3f3f;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.info-featured-notice p {
    margin: 0 0 1.25rem;
    color: #5a5252;
    line-height: 1.8;
}

.info-editor-note {
    margin-bottom: 2rem;
    padding: 1.25rem 1.4rem;
    background: #f6f9fc;
    border: 1px solid #d9e6f2;
    border-radius: 14px;
}

.info-editor-note h3 {
    margin: 0 0 0.6rem;
    color: var(--primary-color);
    font-size: 1rem;
}

.info-editor-note p {
    margin: 0;
    color: #5b6470;
    line-height: 1.8;
}

.info-editor-note code {
    background: #eaf1f7;
    padding: 0.1rem 0.35rem;
    border-radius: 6px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.9em;
}

.notice-list {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.notice-item {
    padding: 1.7rem;
    background: #fff;
    border: 1px solid #dde7f1;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(44, 90, 160, 0.08);
}

.notice-item-important {
    border-color: #ffd6d6;
    background: linear-gradient(135deg, #fff8f8 0%, #ffffff 100%);
}

.notice-meta-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.notice-date {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
}

.notice-tag {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: #ffe4e4;
    color: #bf3f3f;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.notice-item-title {
    margin: 0 0 0.75rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.notice-item-text {
    margin: 0;
    color: #4f5661;
    line-height: 1.8;
}

.notice-item-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.notice-item-link:hover {
    text-decoration: underline;
}

.no-info-message {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.no-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8f4f8, #d4e9f2);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.no-info-icon svg {
    width: 40px;
    height: 40px;
}

.no-info-message h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.no-info-message p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

.info-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.info-link-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.7rem 1.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.info-link-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.9rem;
    line-height: 1.5;
}

.info-link-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.info-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.info-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive design for info page */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.5rem;
    }

    .info-featured-notice {
        padding: 1.5rem;
    }

    .info-editor-note,
    .notice-item {
        padding: 1.25rem;
    }

    .info-featured-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .no-info-message {
        padding: 3rem 1.5rem;
    }

    .no-info-icon {
        width: 64px;
        height: 64px;
    }

    .no-info-icon svg {
        width: 32px;
        height: 32px;
    }

    .no-info-message h3 {
        font-size: 1.2rem;
    }

    .no-info-message p {
        font-size: 0.9rem;
    }

    .info-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-link-card {
        padding: 1.5rem;
    }

    .info-link-card h4 {
        font-size: 1.1rem;
    }

    .info-link-card p {
        font-size: 0.9rem;
    }
}

/* ========================================
   Reception Page (uketuke1.html)
   ======================================== */

.uketuke-page {
    padding: 2rem 0;
}

.uketuke-page > div {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.uketuke-page .section-heading {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color);
}

/* Clinic Hours Section */
.clinic-hours-section {
    margin-bottom: 3rem;
}

.clinic-hours-card {
    background: var(--card-surface);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    padding: 2.2rem 2.3rem;
}

.clinic-hours-note,
.booking-scope,
.reservation-first-visit {
    margin: 1rem 0 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.8;
}

#reservation,
#store-hours {
    scroll-margin-top: 0.75rem;
}

.clinic-hours-mobile-summary {
    display: none;
}

.clinic-hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.clinic-hours-table thead th {
    background: #f8f9fa;
    color: #333;
    font-weight: 600;
    padding: 1rem 0.5rem;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.clinic-hours-table thead th:first-child {
    background: transparent;
    border: none;
}

.clinic-hours-table tbody th,
.clinic-hours-table tbody td {
    padding: 1rem 0.5rem;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.clinic-hours-table tbody th.time-label {
    background: #f8f9fa;
    font-weight: 600;
    text-align: left;
    padding-left: 1rem;
}

.clinic-hours-table .time-detail {
    font-size: 0.85rem;
    font-weight: 400;
    color: #666;
}

.clinic-hours-table .available {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.clinic-hours-table .closed {
    color: var(--text-light);
    font-weight: 500;
}

.holiday-note {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Reservation Section */
.reservation-section {
    margin-bottom: 3rem;
}

.reservation-card {
    padding: 0;
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
    align-items: stretch;
}

.reservation-col-left,
.reservation-col-right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.reservation-col-right {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.reservation-info-block {
    padding: 1.9rem;
    background: var(--card-surface);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    height: 100%;
}

.info-block-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-intro {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 1rem;
}

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

.reservation-checklist li {
    font-size: 0.98rem;
    line-height: 1.85;
    color: #333;
    padding-left: 1.5rem;
    position: relative;
}

.reservation-checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.info-note {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Contact Info */
.contact-info {
    padding: 1.9rem;
    background: var(--card-surface);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    text-align: center;
}

.contact-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.phone-number-large {
    margin: 0;
}

.phone-number-large a {
    display: inline-block;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    background: #eef6ff;
    border: 1px solid #cfe1f5;
    transition: all 0.3s ease;
}

.phone-number-large a:hover {
    background: #e2f0ff;
    transform: translateY(-1px);
}

/* Web Booking Info */
.web-booking-info {
    padding: 1.9rem;
    background: var(--card-surface);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    height: 100%;
}

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

.web-features li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.web-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.web-booking-button {
    display: block;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #ffffff;
    text-align: center;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.web-booking-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Shop Info Section */
.shop-info-section {
    margin-bottom: 2rem;
}

.shop-info-card {
    background: var(--card-surface);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    padding: 2.1rem 2.2rem;
}

.shop-info-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.shop-info-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
}

.shop-hours {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.shop-hours h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.shop-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-hours li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
}

.shop-note {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Responsive Design for Reception Page */
@media (max-width: 768px) {
    .uketuke-page .section-heading {
        font-size: 1.4rem;
    }

    .clinic-hours-card {
        padding: 1.25rem 0.75rem;
        overflow-x: visible;
    }

    .clinic-hours-mobile-summary {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.4rem 0.75rem;
        margin: 0 0 1rem;
        padding: 0 0 0.85rem;
        border-bottom: 1px solid var(--border-color);
    }

    .clinic-hours-period {
        min-width: 0;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 0.4rem;
        align-items: baseline;
    }

    .clinic-hours-period dt {
        color: var(--primary-color);
        font-size: 0.875rem;
        font-weight: 700;
    }

    .clinic-hours-period dd {
        min-width: 0;
        margin: 0;
        color: var(--text-dark);
        font-size: 0.875rem;
        font-variant-numeric: tabular-nums;
        font-weight: 600;
        white-space: nowrap;
    }

    .clinic-hours-table {
        min-width: 0;
        table-layout: fixed;
    }

    .clinic-hours-table thead th:first-child {
        width: 19%;
    }

    .clinic-hours-table thead th,
    .clinic-hours-table tbody th,
    .clinic-hours-table tbody td {
        padding: 0.7rem 0;
        font-size: 0.875rem;
    }

    .clinic-hours-table tbody th.time-label {
        padding: 0.7rem 0.1rem;
        text-align: center;
    }

    .clinic-hours-table .time-label br,
    .clinic-hours-table .time-detail {
        display: none;
    }

    .clinic-hours-table .available {
        font-size: 1rem;
    }

    .holiday-note {
        padding: 0.8rem;
        font-size: 0.875rem;
    }

    .reservation-card {
        padding: 0;
    }

    .reservation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reservation-col-right {
        grid-template-columns: 1fr;
    }

    .reservation-info-block,
    .contact-info,
    .web-booking-info {
        padding: 1.25rem;
    }

    .phone-number-large a {
        min-height: 44px;
        padding: 0.65rem 0.75rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: clamp(1.15rem, 6vw, 1.4rem);
        white-space: nowrap;
    }

    .shop-info-card {
        padding: 1.5rem;
    }
}

/* ========================================
   Access Page (akuses.html)
   ======================================== */

.access-page {
    padding: 2rem 0;
}

.access-page .section-heading {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color);
}

/* Hero Section: Map + Building Photo */
.access-hero {
    margin-bottom: 3rem;
}

.access-hero-media {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.access-media-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.access-map-image,
.access-building-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Content Grid: Transport + Address */
.access-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Transport Section */
.transport-main-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-subheading {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 0.02em;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.transport-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.transport-card-header {
    background: linear-gradient(135deg, #e8f4f8, #d4e9f2);
    padding: 1.25rem 1.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.transport-station {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
}

.transport-company {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.transport-card-body {
    padding: 1.5rem;
}

.transport-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.75rem 0;
}

.transport-routes {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
}

.transport-routes li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.transport-routes li:last-child {
    border-bottom: none;
}

.transport-routes li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.route-dest {
    font-size: 0.85rem;
    color: #666;
}

.bus-stop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin: 0;
}

.icon-pin {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Address Card */
.access-address-card {
    background: linear-gradient(135deg, #35658f, #234764);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 14px 30px rgba(35, 71, 100, 0.18);
    color: #ffffff;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.address-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.address-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.address-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.address-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.address-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
}

.address-phone {
    margin: 0;
}

.address-phone a {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.address-phone a:hover {
    transform: scale(1.05);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Access Page */
@media (max-width: 1024px) {
    .access-content-grid {
        grid-template-columns: 1fr;
    }

    .access-address-card {
        position: static;
    }

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

@media (max-width: 768px) {
    .access-page .section-heading {
        font-size: 1.4rem;
    }

    .access-hero-media {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .access-media-item {
        padding: 0.75rem;
    }

    .section-subheading {
        font-size: 1.2rem;
    }

    .transport-card-header {
        padding: 1rem 1.25rem;
    }

    .transport-station {
        font-size: 1.1rem;
    }

    .transport-card-body {
        padding: 1.25rem;
    }

    .access-address-card {
        padding: 1.5rem;
    }

    .address-card-title {
        font-size: 1.2rem;
    }

    .address-phone a {
        font-size: 1.3rem;
    }
}

/* ========================================
   遠近両用コンタクトページ (.enkin-page)
   ======================================== */

/* 導入カード */
.enkin-intro-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.enkin-intro-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.intro-lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

/* 症状チェックセクション */
.enkin-symptom-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.symptom-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.enkin-symptom-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.7;
}

.enkin-symptom-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* イラストグリッド */
.enkin-illust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.enkin-illust-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 改善方法セクション */
.enkin-methods-section {
    margin-bottom: 2rem;
}

.methods-intro {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.enkin-methods {
    display: grid;
    gap: 1.5rem;
}

.enkin-method-card {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.2s, box-shadow 0.2s;
}

.enkin-method-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.method-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.method-description {
    line-height: 1.7;
    color: #555;
}

/* 注意事項 */
.enkin-note {
    background: #f0f7ff;
    border-left: 4px solid #4a90e2;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.enkin-note p {
    margin: 0;
    line-height: 1.7;
    color: #333;
}

/* CTAリンク */
.enkin-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.enkin-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 10px 22px rgba(40, 70, 110, 0.12);
}

.enkin-cta-link:hover {
    background: #234764;
    transform: translateY(-2px);
}

.cta-icon {
    font-size: 1.2rem;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .enkin-illust-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .enkin-intro-card,
    .enkin-method-card {
        padding: 1.25rem;
    }
}

/* ========================================
   トップページ (.home-page)
   ======================================== */

/* ヒーローセクション */
.home-hero {
    padding: 1rem 0 2.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.home-hero-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.05fr) minmax(0, 1.45fr);
    gap: 2.2rem;
    align-items: center;
}

.hero-picture {
    display: block;
}

.home-hero-image img {
    display: block;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4 / 5;
    margin: 0 auto;
    object-fit: cover;
    object-position: center 20%;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.home-hero-image {
    position: relative;
}

.home-hero-image::before {
    content: none;
}

.home-hero-image img {
    position: relative;
    z-index: 1;
}

.hero-catchcopy {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.home-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.home-action-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.home-action-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.35rem 1.4rem;
    background: #ffffff;
    border: 1px solid #dfeaf5;
    min-height: 44px;
    border-radius: 10px;
    color: inherit;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.home-action-card-phone {
    background: #f2f7fb;
}

.home-action-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #44566d;
    text-transform: uppercase;
}

.home-action-title {
    font-size: 1.12rem;
    line-height: 1.5;
    color: var(--primary-color);
}

.home-action-note {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #5b6470;
}

.hero-button {
    min-height: 44px;
    padding: 0.95rem 1.85rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    text-align: center;
}

.hero-button:hover {
    background: var(--button-primary-hover);
}

.hero-button-primary {
    background: var(--primary-color);
    color: var(--bg-white);
}

/* キーポイントセクション */
.home-keypoints {
    margin-bottom: 3rem;
}

.home-keypoint-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.home-keypoint-card {
    background: #f8fbfd;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
}

.keypoint-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.keypoint-icon svg {
    width: 32px;
    height: 32px;
}

.keypoint-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.keypoint-subtitle {
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    color: #333;
}

.keypoint-text {
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

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

.keypoint-list li {
    padding: 0.4rem 0 0.4rem 1.25rem;
    position: relative;
    line-height: 1.6;
    color: #555;
}

.keypoint-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.keypoint-link {
    min-height: 44px;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
    font-weight: 500;
    transition: color 0.3s;
}

.keypoint-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* クイックリンクセクション */
.home-quicklinks {
    margin-bottom: 3rem;
}

.home-quicklink-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.home-quicklink-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.25rem 1.35rem;
    border: 1px solid var(--border-interactive);
    border-radius: 8px;
    background: #fbfdff;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.quicklink-header {
    margin-bottom: 0.75rem;
}

.quicklink-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
}

.quicklink-description {
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.quicklink-arrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

/* クリニックリマインダー */
.home-clinic-reminder {
    background: #eef4f8;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
}

.clinic-reminder-content {
    text-align: center;
}

.reminder-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.reminder-text {
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.reminder-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.reminder-button:hover {
    background: #234764;
    transform: translateY(-2px);
}

/* レスポンシブ */
@media (max-width: 768px) {
    .home-hero {
        padding: 1.5rem;
    }

    .home-action-strip,
    .home-quicklink-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .home-hero-image img {
        max-width: 100%;
        aspect-ratio: 16 / 10;
    }

    .hero-catchcopy {
        font-size: 1.4rem;
    }

    .home-keypoint-grid {
        grid-template-columns: 1fr;
    }

    .home-keypoint-card {
        padding: 1.5rem;
    }

}

/* ========================================
   安全使用ページ (.anzen-page)
   ======================================== */

.anzen-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.anzen-card-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.anzen-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

.anzen-points-list {
    list-style: decimal;
    padding-left: 1.5rem;
    margin: 0;
}

.anzen-points-list li {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.anzen-sub-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 0.75rem;
}

.anzen-sub-list li {
    margin-bottom: 0.5rem;
}

.anzen-highlight {
    background: #fff3f5;
    border-left: 4px solid var(--primary-color);
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 6px;
}

.anzen-highlight p {
    margin: 0;
    color: #333;
    line-height: 1.7;
}

.anzen-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    font-weight: 500;
    margin-top: 1rem;
    transition: color 0.3s;
}

.anzen-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.anzen-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.anzen-card-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .anzen-card {
        padding: 1.25rem;
    }

    .anzen-card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .anzen-card-image {
        order: -1;
    }
}

/* ========================================
   Q&Aページ (.qa-page)
   ======================================== */

.qa-intro {
    background: #f8f9fa;
    padding: 1.25rem 1.75rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.qa-intro p {
    margin: 0;
    line-height: 1.7;
    color: #555;
}

.qa-list {
    display: grid;
    gap: 1.5rem;
}

.qa-card {
    background: var(--card-surface);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    overflow: hidden;
}

.qa-question {
    background: var(--notice-accent-surface);
    border-bottom: 1px solid var(--notice-accent-border);
    padding: 1.5rem;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.qa-badge {
    flex-shrink: 0;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
}

.qa-question-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
}

.qa-answer {
    padding: 1.5rem;
    background: white;
}

.qa-answer p {
    margin: 0;
    line-height: 1.8;
    color: #555;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .qa-question {
        padding: 1.25rem;
    }

    .qa-answer {
        padding: 1.25rem;
    }

    .qa-question-text {
        font-size: 1rem;
    }
}

/* ========================================
   コンタクト種類ページ (.lens-types-page)
   ======================================== */

.lens-type-section {
    margin-bottom: 3rem;
}

.lens-type-header {
    margin-bottom: 1.5rem;
}

.lens-type-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

.lens-type-logo {
    max-width: 300px;
    height: auto;
}

/* レンズタイプカード */
.lens-type-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.lens-type-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.lens-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.lens-illust {
    margin-top: 1rem;
}

.lens-illust img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.lens-type-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lens-type-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* レンズ特徴カード */
.lens-features-card {
    margin-top: 1.5rem;
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--card-border);
}

.features-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.lens-features-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.7;
    color: #555;
}

.lens-features-list li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ディスポーザブルレンズセクション */
.disposable-intro-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.disposable-types {
    background: #f0f7ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.disposable-types-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.disposable-types-list li {
    background: white;
    padding: 0.6rem 1.25rem;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
}

.disposable-note {
    margin: 0;
    line-height: 1.7;
    color: #333;
}

/* 商品テーブル */
.products-section {
    margin-top: 2rem;
}

.products-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    text-align: center;
}

.products-table-wrapper {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    overflow-x: auto;
}

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

.products-table thead th {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #234764;
}

.products-table tbody td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #e9ecef;
    color: #555;
    line-height: 1.6;
}

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

.products-table tbody tr:hover {
    background: #f8f9fa;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .lens-type-card {
        padding: 1.25rem;
    }

    .lens-type-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lens-type-image {
        order: -1;
    }

    .disposable-types-list {
        flex-direction: column;
    }

    .products-table-wrapper {
        padding: 1rem;
    }

    .products-table thead th,
    .products-table tbody td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   アクセスページ追加スタイル
   ======================================== */

.access-intro {
    background: #f8f9fa;
    padding: 1.25rem 1.75rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.access-intro p {
    margin: 0;
    line-height: 1.7;
    color: #555;
    font-size: 1.05rem;
}

/* ========================================
   共通CTAリンクグループ
   ======================================== */

.cta-link-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.cta-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    border: 1px solid #cce5ff;
    background: #f5fbff;
    font-size: 0.95rem;
    text-decoration: none;
    color: #2c5aa0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.cta-link--primary {
    background: #2c5aa0;
    color: #fff;
    border-color: #2c5aa0;
}

.cta-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    background: #e6f3ff;
}

.cta-link--primary:hover {
    background: #234a85;
}

.cta-link-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.cta-link-label {
    font-weight: 500;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .cta-link-group {
        gap: 0.5rem;
    }

    .cta-link {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* ========================================
   目の健康のためにページ (.mamoru-page)
   ======================================== */

.mamoru-intro {
    background: #f8f9fa;
    padding: 1.75rem 2rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--primary-color);
}

.mamoru-intro p {
    margin: 0.75rem 0 0 0;
    line-height: 1.7;
    color: #555;
}

.mamoru-rules {
    margin-bottom: 2rem;
}

.mamoru-rule-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.5rem;
}

.mamoru-rule-item {
    background: white;
    border-radius: 12px;
    padding: 1.75rem 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--primary-color);
    transition: box-shadow 0.2s, transform 0.2s;
}

.mamoru-rule-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
}

.mamoru-rule-text {
    margin: 0;
    line-height: 1.7;
    color: #555;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .mamoru-intro {
        padding: 1.25rem 1.5rem;
    }

    .mamoru-rule-item {
        padding: 1.25rem 1.5rem;
    }
}

/* ========================================
   なぜコンタクトにするの？ページ (.benri-page)
   ======================================== */

.benri-intro {
    background: #f8f9fa;
    padding: 1.75rem 2rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--primary-color);
}

.benri-intro p {
    margin: 0.75rem 0 0 0;
    line-height: 1.7;
    color: #555;
}

.benri-benefits {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.benri-benefit-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s;
}

.benri-benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
}

.benri-benefit-intro,
.benri-benefit-subtitle {
    font-weight: 500;
    color: #333;
    margin: 0 0 0.75rem 0;
}

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

.benri-benefit-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.7;
    color: #555;
}

.benri-benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.benri-benefit-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.benri-benefit-images img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.benri-note {
    background: #fff3f5;
    border-left: 4px solid #e74c3c;
    padding: 1.25rem 1.75rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.benri-note p {
    margin: 0 0 0.5rem 0;
    line-height: 1.7;
    color: #555;
}

.benri-note p:last-child {
    margin-bottom: 0;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .benri-intro,
    .benri-benefit-card {
        padding: 1.25rem 1.5rem;
    }

    .benri-benefit-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   よくある心配ごとページ (.sinpai-page)
   ======================================== */

.sinpai-intro {
    background: #f8f9fa;
    padding: 1.75rem 2rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--primary-color);
}

.sinpai-intro p {
    margin: 0.75rem 0 0 0;
    line-height: 1.7;
    color: #555;
}

.sinpai-qa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.sinpai-qa-card {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.sinpai-qa-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.sinpai-qa-answer {
    margin: 0;
    line-height: 1.7;
    color: #555;
}

.sinpai-qa-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.sinpai-qa-answer a:hover {
    text-decoration: underline;
}

.sinpai-qa-illustration {
    text-align: center;
    margin-top: auto;
}

.sinpai-qa-illustration img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .sinpai-intro {
        padding: 1.25rem 1.5rem;
    }

    .sinpai-qa-grid {
        grid-template-columns: 1fr;
    }

    .sinpai-qa-card {
        padding: 1.25rem 1.5rem;
    }
}

/* ========================================
   花粉症とコンタクトページ (.kahun-page)
   ======================================== */

.kahun-intro {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.kahun-intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.kahun-intro-text p {
    margin: 0.75rem 0 0 0;
    line-height: 1.7;
    color: #555;
}

.kahun-intro-image {
    text-align: center;
}

.kahun-intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.kahun-tips {
    margin-bottom: 2rem;
}

.kahun-tips-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
}

.kahun-tip-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.5rem;
}

.kahun-tip-item {
    background: white;
    border-radius: 12px;
    padding: 1.75rem 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #9a5b00;
    transition: box-shadow 0.2s, transform 0.2s;
}

.kahun-tip-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #9a5b00;
    margin: 0 0 1rem 0;
}

.kahun-tip-text {
    margin: 0;
    line-height: 1.7;
    color: #555;
}

.kahun-tip-image {
    margin-top: 1rem;
    text-align: center;
}

.kahun-tip-image img {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
}

.kahun-note {
    background: #fff3f5;
    border-left: 4px solid #e74c3c;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.kahun-note-icon img {
    max-width: 80px;
    height: auto;
}

.kahun-note-text p {
    margin: 0 0 0.5rem 0;
    line-height: 1.7;
    color: #555;
}

.kahun-note-text p:last-child {
    margin-bottom: 0;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .kahun-intro {
        padding: 1.25rem 1.5rem;
    }

    .kahun-intro-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .kahun-tip-item {
        padding: 1.25rem 1.5rem;
    }

    .kahun-note {
        flex-direction: column;
        padding: 1.25rem 1.5rem;
    }

    .kahun-note-icon {
        text-align: center;
    }
}

/* ========================================
   アクセスページV2 (.access-page-v2)
   ======================================== */

/* === 1. ヒーロー：アクセスまとめ === */
.access-hero-summary {
    margin-bottom: 3rem;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.hero-media-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-media-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background: #f8f9fa;
}

.hero-media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3;
}

.hero-media-item iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    display: block;
    aspect-ratio: 16 / 9;
}

.hero-summary-text {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0;
    padding-top: 1rem;
    border-top: 2px solid #e9ecef;
    line-height: 1.6;
}

.access-map-actions {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.access-map-button {
    display: inline-block;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(44, 90, 160, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.access-map-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(44, 90, 160, 0.22);
}

/* === 2. 最寄り駅からの行き方セクション === */
.access-stations-section {
    margin-top: 3rem;
}

.access-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 2rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color);
}

.stations-and-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

/* === 3. 駅カード === */
.station-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.station-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e9ecef;
}

.station-details {
    flex: 1;
    margin-bottom: 1rem;
}

.station-bus-info {
    margin-bottom: 1.25rem;
}

.bus-company {
    font-size: 0.95rem;
    font-weight: 600;
    color: #495057;
    margin: 0 0 0.75rem 0;
}

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

.bus-routes li {
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #495057;
}

.bus-routes li::before {
    content: '🚌';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.route-dest {
    font-size: 0.85rem;
    color: #6c757d;
}

.station-stop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f5f9ff 0%, #e6f3ff 100%);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.stop-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.station-stop span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
}

.station-summary {
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    font-size: 0.9rem;
    font-weight: 500;
    color: #6c757d;
    text-align: center;
}

/* === 4. 店舗情報カード === */
.store-info-card {
    background: #f7fafc;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: 1px solid #dfeaf5;
}

.store-info-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #d7e5f1;
}

.store-info-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.info-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.6;
}

.phone-link {
    min-height: 44px;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    font-weight: 600;
    transition: color 0.2s;
}

.phone-link:hover {
    color: #1a4d8f;
    text-decoration: underline;
}

/* === 5. レスポンシブ対応 === */
@media (max-width: 768px) {
    /* ヒーロー：縦積み */
    .hero-media-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .access-hero-summary {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .hero-summary-text {
        font-size: 1rem;
    }

    .hero-media-item iframe {
        min-height: 300px;
    }

    /* 駅カード＋店舗情報：縦積み */
    .stations-and-info-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .station-card,
    .store-info-card {
        padding: 1.5rem;
    }

    .access-section-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .station-name,
    .store-info-title {
        font-size: 1.2rem;
    }

    .bus-routes li {
        font-size: 0.85rem;
    }
}

/* ========================================
   共通カードスタイル
   ======================================== */
.card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e3ebf2;
    box-shadow: 0 12px 28px rgba(40, 70, 110, 0.07);
    padding: var(--card-padding-spacious);
    margin-bottom: 2rem;
}

/* ========================================
   カラーコンタクトページ (.karacon-page)
   ======================================== */

/* イントロセクション */
.karacon-intro {
    background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
}

.karacon-intro-inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.karacon-intro-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
}

.karacon-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.karacon-illustration {
    margin: 0;
}

.karacon-illustration img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* 注意点セクション */
.karacon-points {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    border-left: 4px solid #e74c3c;
}

.karacon-points-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #c0392b;
    margin: 0 0 1.5rem 0;
}

.karacon-point-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.karacon-point-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    line-height: 1.7;
    color: #495057;
}

.karacon-point-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.2rem;
}

.karacon-warning {
    background: #fff;
    border: 2px solid #e74c3c;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 0;
    font-weight: 600;
    color: #c0392b;
    line-height: 1.6;
}

/* サンプル画像セクション */
.karacon-samples-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
}

.karacon-sample-images {
    margin: 0;
}

.karacon-sample-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .karacon-intro-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        padding: var(--card-padding);
        margin-bottom: 1.5rem;
    }
}

/* ========================================
   レンズの種類ページ (.price-page)
   ======================================== */

.price-intro {
    background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.price-intro p {
    margin: 0;
    font-weight: 500;
    color: var(--text-dark);
}

/* カテゴリセクション */
.price-category {
    margin-bottom: 3rem;
}

.price-category + .price-category {
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
}

/* レンズカードグリッド */
.lens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.lens-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.lens-card-image {
    margin: 0;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    min-height: 180px;
}

.lens-card-image img {
    max-width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: contain;
}

.lens-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lens-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.lens-card-spec {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.lens-card-badge {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e9ecef;
}

.lens-card-badge img {
    max-width: 100%;
    height: auto;
}

/* 注記 */
.price-notes {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #6c757d;
}

.price-note {
    margin: 0;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .lens-grid {
        grid-template-columns: 1fr;
    }

    .category-title {
        font-size: 1.3rem;
    }
}

/* ========================================
   目の仕組みページ (.eye-structure-page)
   ======================================== */

.eye-section {
    margin-bottom: 2rem;
}

.eye-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
}

/* 目の構造セクション */
.eye-layout {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.eye-figure {
    margin: 0;
}

.eye-figure img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.eye-description p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    font-weight: 400;
}

.eye-description p:last-child {
    margin-bottom: 0;
}

/* 屈折セクション */
.eye-refraction {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.eye-refraction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.refraction-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.refraction-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
}

.refraction-figure {
    margin: 0 0 1rem 0;
}

.refraction-figure img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 6px;
}

.refraction-description {
    margin: 0;
    line-height: 1.7;
    color: #495057;
    font-size: 0.95rem;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .eye-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .eye-section-title {
        font-size: 1.3rem;
    }

    .eye-refraction-grid {
        grid-template-columns: 1fr;
    }

    .refraction-card {
        padding: 1.25rem;
    }
}

/* ========================================
   病気ページ (.disease-page)
   ======================================== */

/* イントロセクション */
.disease-intro {
    background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
    border-left: 4px solid var(--primary-color);
}

.disease-intro-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
}

.disease-intro p {
    margin: 0;
    line-height: 1.8;
    color: #495057;
}

/* 病気リスト */
.disease-list {
    margin-top: 2rem;
}

.disease-item {
    margin-bottom: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.disease-item-inner {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
}

.disease-illustration {
    margin: 0;
}

.disease-illustration img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    margin-bottom: 0.5rem;
}

.disease-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #c0392b;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffe0e0;
}

.disease-description p {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    color: #495057;
}

.disease-description strong {
    color: var(--text-dark);
    font-weight: 600;
}

.disease-description ul {
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0 1rem 0;
}

.disease-description ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.4rem;
    line-height: 1.7;
}

.disease-description ul li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.disease-note {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    margin-top: 1rem;
}

/* 予防セクション */
.disease-prevention {
    background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%);
    border-left: 4px solid var(--primary-color);
    margin-top: 3rem;
}

.prevention-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
}

.prevention-inner {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    align-items: start;
}

.prevention-visual {
    margin: 0;
}

.prevention-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.prevention-list {
    list-style: none;
    counter-reset: prevention-counter;
    padding: 0;
    margin: 0;
}

.prevention-list li {
    counter-increment: prevention-counter;
    padding: 1rem 1rem 1rem 3rem;
    position: relative;
    margin-bottom: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    line-height: 1.7;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prevention-list li::before {
    content: counter(prevention-counter);
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.75rem;
    height: 1.75rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .disease-item-inner {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .disease-illustration {
        text-align: center;
    }

    .disease-illustration img {
        max-width: min(250px, 100%);
    }

    .disease-name {
        font-size: 1.2rem;
    }

    .prevention-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .prevention-visual {
        text-align: center;
    }

    .prevention-visual img {
        max-width: 200px;
    }

    .prevention-list li {
        padding-left: 2.75rem;
        font-size: 0.95rem;
    }
}

/* ========================================
   レンズケアページ (.lenscare-page)
   ======================================== */

/* イントロセクション */
.lenscare-page .care-intro {
    background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%);
    border-left: 4px solid var(--primary-color);
    text-align: center;
}

.lenscare-page .care-intro p {
    margin: 0;
    line-height: 1.8;
    font-weight: 500;
    color: #495057;
}

/* ケアセクション */
.lenscare-page .care-section {
    margin-bottom: 2rem;
}

.lenscare-page .care-section-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.lenscare-page .care-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.lenscare-page .care-section-subtitle {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0.5rem 0 0 0;
    font-weight: 500;
}

/* ケアステップ */
.lenscare-page .care-steps {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem;
}

.lenscare-page .care-step {
    text-align: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.25rem 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lenscare-page .care-step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.lenscare-page .care-step-visual {
    margin: 0 0 0.75rem 0;
}

.lenscare-page .care-step-visual img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.lenscare-page .care-step-caption {
    font-size: 0.9rem;
    color: #495057;
    margin: 0.5rem 0 0 0;
    line-height: 1.5;
    font-weight: 500;
}

/* 注意書き */
.lenscare-page .care-note {
    background: #fff9f0;
    border-left: 4px solid #ff9800;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0 0 0;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #495057;
}

/* 追加の注意書き（ソフトレンズ用） */
.lenscare-page .care-additional-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f0f7ff;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.lenscare-page .care-note-visual {
    margin: 0;
    flex-shrink: 0;
}

.lenscare-page .care-note-visual img {
    max-width: 120px;
    height: auto;
    border-radius: 6px;
}

.lenscare-page .care-note-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #495057;
}

/* ケア用品リスト */
.lenscare-page .care-products {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.lenscare-page .care-products-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

.lenscare-page .care-products-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lenscare-page .care-products-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.lenscare-page .care-products-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.lenscare-page .care-products-list a {
    min-width: 44px;
    min-height: 44px;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    font-weight: 500;
    transition: color 0.2s;
}

.lenscare-page .care-products-list a:hover {
    color: #1a4d8f;
    text-decoration: underline;
}

/* 過酸化水素システム */
.lenscare-page .care-peroxide-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
}

.lenscare-page .care-peroxide-visual {
    margin: 0;
}

.lenscare-page .care-peroxide-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lenscare-page .care-peroxide-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.lenscare-page .care-warning {
    background: #fff3f3;
    border-left: 4px solid #e74c3c;
    padding: 1rem 1.25rem;
    margin: 1rem 0;
    border-radius: 4px;
    font-weight: 600;
    color: #c0392b;
    line-height: 1.6;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .lenscare-page .care-steps {
        grid-template-columns: 1fr;
    }

    .lenscare-page .care-step {
        padding: 1rem;
    }

    .lenscare-page .care-section-title {
        font-size: 1.3rem;
    }

    .lenscare-page .care-peroxide-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lenscare-page .care-peroxide-visual {
        text-align: center;
    }

    .lenscare-page .care-peroxide-visual img {
        max-width: 200px;
    }

    .lenscare-page .care-additional-note {
        flex-direction: column;
        text-align: center;
    }

    .lenscare-page .care-note-visual img {
        max-width: 150px;
    }
}

/* 小さめのタブレット/大きめのスマホ用 */
@media (min-width: 480px) and (max-width: 768px) {
    .lenscare-page .care-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* PC大画面用 */
@media (min-width: 1200px) {
    .lenscare-page .care-steps {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* ========================================
   リンクページ (.link-page)
   ======================================== */

/* イントロセクション */
.link-intro {
    background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%);
    border-left: 4px solid var(--primary-color);
    text-align: center;
    padding: 1.5rem;
}

.link-intro p {
    margin: 0;
    line-height: 1.8;
    font-weight: 500;
    color: #495057;
}

/* リンクセクション */
.link-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.link-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color);
}

/* リンクグリッド */
.link-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.link-item {
    display: block;
    padding: 1.25rem 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.link-item-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .link-grid {
        grid-template-columns: 1fr;
    }

    .link-section {
        padding: 1.5rem;
    }

    .link-section-title {
        font-size: 1.3rem;
    }

    .link-item {
        padding: 1rem 1.25rem;
    }

    .link-item-text {
        font-size: 0.95rem;
    }
}

/* ========================================
   Trouble Page (troubel.html)
   ======================================== */

.trouble-page-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) 180px;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid #dfeaf5;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(44, 90, 160, 0.08);
}

.trouble-page-intro-text .page-title {
    display: block;
    margin-bottom: 1rem;
}

.trouble-page-intro-text p {
    margin: 0;
    color: #4f5661;
    line-height: 1.85;
}

.trouble-page-intro-visual img {
    max-width: 100%;
    height: auto;
}

.trouble-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.trouble-card {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #dde7f1;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(44, 90, 160, 0.08);
}

.trouble-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.85rem;
    border-radius: 999px;
    background: #eef5fb;
    color: var(--primary-color);
    font-weight: 700;
}

.trouble-card-title {
    margin: 0 0 0.75rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.trouble-card-problem,
.trouble-card-result {
    margin: 0;
    line-height: 1.8;
    color: #4f5661;
}

.trouble-card-result {
    margin-top: 0.9rem;
    padding: 1rem 1.1rem;
    border-top: 1px solid #eef3f8;
    background: #f7fbff;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.trouble-related-links {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2.5rem;
    padding: 0 0.5rem;
}

.trouble-related-title {
    margin: 0 0 1rem;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.trouble-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.trouble-related-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 100%;
    padding: 1.4rem 1.45rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #dfeaf5;
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.08);
    text-decoration: none;
    color: inherit;
}

.trouble-related-card strong {
    color: var(--primary-color);
    line-height: 1.6;
}

.trouble-related-card span {
    color: #5b6470;
    line-height: 1.7;
}

.trouble-related-card p {
    margin: 0.15rem 0 0;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .trouble-page-intro,
    .trouble-grid {
        grid-template-columns: 1fr;
    }

    .trouble-page-intro {
        padding: 1.25rem;
    }

    .trouble-card {
        padding: 1.25rem;
    }

    .trouble-related-links {
        padding: 0;
    }
}

/* 関連ページは十分な本文幅では常に2×2、狭いスマホだけ1列にします。 */
@container article (max-width: 600px) {
    .trouble-related-grid {
        grid-template-columns: 1fr;
    }
}

.wear-page-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.9fr);
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, #fff8fb, #f7fbff);
    border: 1px solid #e7edf5;
    border-radius: 20px;
}

.wear-page-intro p {
    margin: 0.85rem 0 0;
    color: #4f5661;
    line-height: 1.85;
}

.wear-page-intro img {
    max-width: 100%;
    height: auto;
}

.wear-step-grid {
    display: grid;
    gap: 1.25rem;
}

.wear-step-card {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 1.4rem;
    align-items: center;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #dde7f1;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(44, 90, 160, 0.08);
}

.wear-step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.wear-step-visual img {
    max-width: 100%;
    height: auto;
}

.wear-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.85rem;
    border-radius: 999px;
    background: #eef5fb;
    color: var(--primary-color);
    font-weight: 700;
}

.wear-step-card h3,
.wear-step-card h4 {
    margin: 0 0 0.75rem;
    color: var(--primary-color);
}

.wear-step-card p,
.wear-step-card li {
    color: #4f5661;
    line-height: 1.8;
}

.wear-step-card ul {
    margin: 0;
    padding-left: 1.25rem;
}

.wear-advice-box {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    background: #f7fbff;
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
}

.wear-note-box {
    margin-top: 1.5rem;
    padding: 1.25rem 1.35rem;
    background: #fff;
    border: 1px solid #dfeaf5;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.08);
    color: #4f5661;
    line-height: 1.85;
}

.wear-note-box strong {
    color: var(--primary-color);
}

.wear-navigation {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.wear-navigation-card {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1.15rem 1.2rem;
    background: #fff;
    border: 1px solid #dfeaf5;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.08);
}

.wear-navigation-card strong {
    color: var(--primary-color);
}

.wear-navigation-card span {
    color: #5b6470;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .wear-page-intro,
    .wear-step-card,
    .wear-navigation {
        grid-template-columns: 1fr;
    }

    .wear-page-intro,
    .wear-step-card {
        padding: 1.25rem;
    }
}

/* 医療情報の確認日・参考資料（医療ページ共通） */
.medical-review-note {
    margin: 0 2rem 2rem;
    padding: 1.5rem;
    border: 1px solid #d7e5f1;
    border-radius: 12px;
    background: #f7fafc;
    color: var(--text-dark);
}

.medical-review-note .section-subheading {
    margin: 0 0 1rem;
    font-size: 1.2rem;
}

.medical-review-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.5rem;
    margin: 0 0 1rem;
}

.medical-review-meta > div {
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.6rem;
    align-items: baseline;
}

.medical-review-meta dt {
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 700;
}

.medical-review-meta dd {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.medical-review-note p {
    margin: 0 0 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
}

.medical-review-note h3 {
    margin: 0 0 0.4rem;
    color: var(--primary-color);
    font-size: 1rem;
}

.medical-review-note ul {
    margin: 0;
    padding-left: 1.25rem;
}

.medical-review-note a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    overflow-wrap: anywhere;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

/* ========================================
   カードデザインシステム

   役割を「主要CTA・ページ導線・情報・注意」の4種類に限定する。
   ページ固有の内容レイアウトは維持し、面・枠・角丸・操作反応を
   このブロックで一元管理する。
   ======================================== */

/* 新規実装で使う基底クラス。既存カードも以下の各役割へマッピングする。 */
.ui-card {
    border-radius: var(--card-radius);
}

/* 1. 主要CTA: サイト内で最優先の予約導線だけに使う。 */
.ui-card--primary {
    border: 1px solid var(--primary-color);
    border-radius: var(--card-radius);
    background: var(--primary-color);
    box-shadow: var(--card-shadow);
    color: var(--bg-white);
    transition: var(--card-transition);
}

.ui-card--primary:active {
    background: #1e405e;
    box-shadow: none;
    transform: translateY(1px);
}

/* 2. ページ導線: 枠と操作反応を共通化し、押せることを明示する。 */
.ui-card--interactive,
.home-action-card,
.home-quicklink-card,
.first-visit-link-card,
.info-card,
.link-item,
.trouble-related-card,
.wear-navigation-card {
    min-height: 44px;
    padding: var(--card-padding);
    border: 1px solid var(--card-border-interactive);
    border-radius: var(--card-radius);
    background: var(--card-surface);
    box-shadow: var(--card-shadow);
    color: inherit;
    text-decoration: none;
    transition: var(--card-transition);
}

.ui-card--interactive:active,
.home-action-card:active,
.home-quicklink-card:active,
.first-visit-link-card:active,
.info-card:active,
.link-item:active,
.trouble-related-card:active,
.wear-navigation-card:active {
    border-color: var(--primary-color);
    background: var(--card-surface-active);
    box-shadow: none;
    transform: translateY(1px);
}

@media (hover: hover) and (pointer: fine) {
    .ui-card--primary:hover {
        border-color: #234a6d;
        background: #234a6d;
        box-shadow: var(--card-shadow-hover);
        color: var(--bg-white);
        transform: translateY(var(--card-lift));
    }

    .ui-card--interactive:hover,
    .home-action-card:hover,
    .home-quicklink-card:hover,
    .first-visit-link-card:hover,
    .info-card:hover,
    .link-item:hover,
    .trouble-related-card:hover,
    .wear-navigation-card:hover {
        border-color: var(--primary-color);
        background: var(--card-surface-hover);
        box-shadow: var(--card-shadow-hover);
        transform: translateY(var(--card-lift));
    }

    /* hover中のクリックでも押し込みを優先する。 */
    .ui-card--primary:hover:active {
        background: #1e405e;
        box-shadow: none;
        transform: translateY(1px);
    }

    .ui-card--interactive:hover:active,
    .home-action-card:hover:active,
    .home-quicklink-card:hover:active,
    .first-visit-link-card:hover:active,
    .info-card:hover:active,
    .link-item:hover:active,
    .trouble-related-card:hover:active,
    .wear-navigation-card:hover:active {
        background: var(--card-surface-active);
        box-shadow: none;
        transform: translateY(1px);
    }

    .info-card:hover .card-link,
    .link-item:hover .link-item-text {
        color: var(--primary-color);
    }
}

/* 3. 情報カード: 読むための面。濃い枠や押下色を持たせず、リンクと区別する。 */
.ui-card--info,
.first-visit-guide-main,
.practice-video-section,
.home-keypoint-card,
.notice-item,
.no-info-message,
.info-link-card,
.clinic-hours-card,
.reservation-info-block,
.contact-info,
.web-booking-info,
.shop-info-card,
.transport-card,
.enkin-intro-card,
.enkin-method-card,
.anzen-card,
.qa-card,
.lens-type-card,
.disposable-intro-card,
.products-table-wrapper,
.mamoru-rule-item,
.benri-benefit-card,
.sinpai-qa-card,
.kahun-intro,
.station-card,
.store-info-card,
.lens-card,
.refraction-card,
.disease-item,
.prevention-list li,
.lenscare-page .care-step,
.link-section,
.trouble-page-intro,
.trouble-card,
.wear-page-intro,
.wear-step-card {
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    background: var(--card-surface);
    box-shadow: var(--card-shadow);
    transition: none;
}

/* 汎用.cardは警告などの固有背景を保持し、形と奥行きだけ統一する。 */
.card {
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
}

/* サイドバーの営業時間カードも、本文の情報カードと同じ骨格にする。 */
.sidebar-action-card {
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
}

/* Web予約は主要導線のまま、濃紺のベタ塗りを避けた淡いガラス面にする。 */
.sidebar-booking-card {
    border-color: var(--booking-border);
    background: var(--booking-surface);
    box-shadow: var(--card-shadow);
    color: var(--text-dark);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: var(--card-transition);
}

.sidebar-booking-card .sidebar-action-kicker {
    color: var(--booking-kicker);
}

.sidebar-booking-card .sidebar-action-title {
    color: var(--primary-color);
}

.sidebar-booking-card .sidebar-booking-note {
    color: var(--booking-note);
}

.sidebar-booking-card:active {
    border-color: var(--primary-color);
    background: var(--card-surface-active);
    box-shadow: none;
    transform: translateY(1px);
}

@media (hover: hover) and (pointer: fine) {
    .sidebar-booking-card:hover {
        border-color: var(--primary-color);
        background: var(--booking-surface-hover);
        box-shadow: var(--card-shadow-hover);
        color: var(--text-dark);
        transform: translateY(var(--card-lift));
    }

    .sidebar-booking-card:hover:active {
        background: var(--card-surface-active);
        box-shadow: none;
        transform: translateY(1px);
    }
}

/* 4. 注意・補足カード: 淡色の面と左線で意味を表し、影は使わない。 */
.ui-card--notice,
.checkpoint,
.info-box,
.exam-intro,
.info-editor-note,
.home-clinic-reminder,
.anzen-highlight,
.qa-intro,
.access-intro,
.mamoru-intro,
.benri-intro,
.sinpai-intro,
.enkin-note,
.price-intro,
.price-notes,
.disease-intro,
.lenscare-page .care-intro,
.lenscare-page .care-additional-note,
.link-intro,
.wear-advice-box,
.wear-note-box,
.medical-review-note {
    border: 1px solid var(--card-border);
    border-left: 4px solid var(--notice-info-border);
    border-radius: var(--card-radius);
    background: var(--notice-info-surface);
    box-shadow: none;
    transition: none;
}

.ui-card--warning,
.kahun-tip-item,
.lenscare-page .care-note {
    border: 1px solid #e2c9a7;
    border-left: 4px solid var(--notice-warning-border);
    border-radius: var(--card-radius);
    background: var(--notice-warning-surface);
    box-shadow: none;
    transition: none;
}

.ui-card--danger,
.notice-highlight,
.notice-item-important,
.benri-note,
.kahun-note,
.karacon-points,
.karacon-warning,
.lenscare-page .care-warning {
    border: 1px solid #ecc7c5;
    border-left: 4px solid var(--notice-danger-border);
    border-radius: var(--card-radius);
    background: var(--notice-danger-surface);
    box-shadow: none;
    transition: none;
}

/* 元サイトの質感を残す、独立した情報タイルの控えめなリフト。 */
.ui-card--lift,
.sidebar-hours-card,
.exam-step,
.info-link-card,
.transport-card,
.enkin-method-card,
.qa-card,
.mamoru-rule-item,
.benri-benefit-card,
.sinpai-qa-card,
.kahun-tip-item,
.station-card,
.store-info-card,
.lens-card,
.refraction-card,
.disease-item,
.prevention-list li,
.lenscare-page .care-step {
    box-shadow: var(--card-shadow);
    transition: var(--card-lift-transition);
}

@media (hover: hover) and (pointer: fine) {
    .ui-card--lift:hover,
    .sidebar-hours-card:hover,
    .exam-step:hover,
    .info-link-card:hover,
    .transport-card:hover,
    .enkin-method-card:hover,
    .qa-card:hover,
    .mamoru-rule-item:hover,
    .benri-benefit-card:hover,
    .sinpai-qa-card:hover,
    .kahun-tip-item:hover,
    .station-card:hover,
    .store-info-card:hover,
    .lens-card:hover,
    .refraction-card:hover,
    .disease-item:hover,
    .prevention-list li:hover,
    .lenscare-page .care-step:hover {
        box-shadow: var(--card-shadow-hover);
        transform: translateY(var(--card-lift));
    }
}

/* 入れ子の外枠を外し、同じ階層のカードだけが見える構成にする。 */
.reservation-card,
.first-visit-guide-links,
.lenscare-page .care-section {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.lens-features-card {
    margin-top: 1.5rem;
    padding: 1.5rem 0 0;
    border: 0;
    border-top: 1px solid var(--card-border);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

/* 商品画像や地図など、内容上必要な例外も角丸だけは共通値へ揃える。 */
.access-address-card,
.practice-video-frame {
    border-radius: var(--card-radius);
}

/* ========================================
   レスポンシブ・アクセシビリティ最終調整
   ======================================== */

/* 本文の文章中リンクは、色だけに頼らず常時識別できるようにする。 */
.main-article :is(p, li, dd, blockquote, figcaption) a {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

/* 本文幅が狭くなる場合は、内部の複数カラムも1列に切り替える。 */
@container article (max-width: 650px) {
    .intro-content,
    .card-grid,
    .first-visit-checklist,
    .first-visit-guide-links,
    .reservation-col-right,
    .home-hero-grid,
    .home-keypoint-grid,
    .home-quicklink-grid,
    .anzen-card-grid,
    .lens-type-grid,
    .sinpai-qa-grid,
    .kahun-intro-grid,
    .karacon-intro-inner,
    .eye-layout,
    .disease-item-inner,
    .prevention-inner,
    .lenscare-page .care-peroxide-layout,
    .link-grid,
    .trouble-page-intro,
    .trouble-grid,
    .wear-page-intro,
    .wear-step-card,
    .wear-navigation {
        grid-template-columns: 1fr;
    }
}

/* アイコン付きカードと3分割導線は、一般の2列より早めに縦積みにする。 */
@container article (max-width: 720px) {
    .home-keypoint-grid,
    .first-visit-guide-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-section {
        padding: 1.5rem;
    }

    .main-content > .container {
        padding-top: 0.75rem;
    }

    .content-grid {
        margin-top: 0;
    }

    .hajimete-section .section-intro {
        margin-bottom: 1.25rem;
    }

    .first-visit-guide-main {
        padding: 1rem;
    }

    .home-hero {
        padding: 0 0 2rem;
    }

    .medical-review-note {
        margin: 0 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-section {
        padding: 1rem;
    }

    .access-hero-summary {
        padding: 1rem;
    }

    .medical-review-note {
        margin: 0 1rem 1rem;
        padding: 1rem;
    }
}

@media (max-width: 360px) {
    .home-keypoint-card {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }

    .keypoint-icon {
        width: 48px;
        height: 48px;
    }

    .keypoint-icon svg {
        width: 26px;
        height: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-delay: 0ms !important;
        transition-duration: 0.01ms !important;
    }

    .sidebar-link:hover {
        transform: none !important;
    }
}

/* ご指定の滑らかなカード反応は、Windowsのアニメーション設定にかかわらず保つ。
   常時アニメーションやスクロールは抑えたまま、マウス操作時の位置と影だけを補間する。
   :hoverだけでなく通常状態にも指定し、カーソルを離したときも滑らかに戻す。 */
@media (prefers-reduced-motion: reduce) and (hover: hover) and (pointer: fine) {
    .ui-card--primary,
    .ui-card--interactive,
    .home-action-card,
    .home-quicklink-card,
    .first-visit-link-card,
    .info-card,
    .link-item,
    .trouble-related-card,
    .wear-navigation-card,
    .sidebar-booking-card,
    .ui-card--lift,
    .sidebar-hours-card,
    .exam-step,
    .info-link-card,
    .transport-card,
    .enkin-method-card,
    .qa-card,
    .mamoru-rule-item,
    .benri-benefit-card,
    .sinpai-qa-card,
    .kahun-tip-item,
    .station-card,
    .store-info-card,
    .lens-card,
    .refraction-card,
    .disease-item,
    .prevention-list li,
    .lenscare-page .care-step {
        transition: var(--card-lift-transition) !important;
    }
}
