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

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #4a90e2;
    --accent-color: #ff6b9d;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Noto Sans JP', -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);
}

/* ===========================
   ヘッダー
   =========================== */
.site-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-banner {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* ===========================
   ナビゲーション
   =========================== */
.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.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);
}

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

.main-content {
    min-height: calc(100vh - 400px);
}

.content-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

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

.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 {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    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:hover {
    background: #e8f4fd;
    box-shadow: var(--shadow-sm);
}

.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 1fr;
        gap: 1.5rem;
    }

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

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

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

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

    .nav-container {
        padding: 1rem 20px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        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;
    }

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

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

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

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

    .sidebar {
        position: static;
        order: 2;
    }

    .main-article {
        order: 1;
    }

    .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 (max-width: 480px) {
    .site-title {
        font-size: 1.5rem;
    }

    .header-banner {
        height: 150px;
    }

    .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,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* 選択スタイル */
::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: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    text-align: center;
}

.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;
}

/* 個別カード */
.info-card {
    display: block;
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.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:hover .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;
    }

    .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:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.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-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: 200px;
    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;
}

.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;
}

.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(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

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

.info-link-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

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

.info-link-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    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;
    }

    .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 .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: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.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 td {
    padding: 1rem 0.5rem;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.clinic-hours-table tbody td.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: #999;
    font-weight: 500;
}

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

/* Alert Important Section */
.alert-important-section {
    margin-bottom: 3rem;
}

.alert-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.alert-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ffe6e6, #ffcccc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d32f2f;
}

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

.alert-content {
    flex: 1;
    background: #fff5f5;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ff6b9d;
}

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

.alert-text strong {
    color: #d32f2f;
}

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

.reservation-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

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

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

.reservation-info-block {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.info-block-title {
    font-size: 1.1rem;
    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.95rem;
    line-height: 1.8;
    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.5rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 8px;
    text-align: center;
}

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

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

.phone-number-large a {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.phone-number-large a:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

/* Web Booking Info */
.web-booking-info {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.web-features li {
    font-size: 0.9rem;
    line-height: 1.7;
    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: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.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.5rem 1rem;
        overflow-x: auto;
    }

    .clinic-hours-table {
        min-width: 600px;
    }

    .clinic-hours-table thead th,
    .clinic-hours-table tbody td {
        padding: 0.75rem 0.25rem;
        font-size: 0.85rem;
    }

    .alert-box {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .alert-icon {
        width: 40px;
        height: 40px;
    }

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

    .alert-content {
        padding: 1.25rem;
    }

    .reservation-card {
        padding: 1.5rem;
    }

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

    .phone-number-large a {
        font-size: 1.4rem;
    }

    .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.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.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:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.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, #7b68ee, #6a5acd);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    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-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.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: 8px;
    font-weight: 500;
    transition: background 0.3s, transform 0.2s;
}

.enkin-cta-link:hover {
    background: #c55a7d;
    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 {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.home-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
    align-items: center;
}

.home-hero-image img {
    max-width: 100%;
    height: auto;
}

.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;
}

.hero-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

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

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

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

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

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

.home-keypoint-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 1.5rem;
}

.keypoint-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ec87a8 0%, #d66890 100%);
    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 {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.keypoint-link:hover {
    color: #c55a7d;
    text-decoration: underline;
}

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

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

.home-quicklink-card {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    border-top: 4px solid var(--primary-color);
}

.home-quicklink-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.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 {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
}

/* クリニックリマインダー */
.home-clinic-reminder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
}

.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 {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s, transform 0.2s;
}

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

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

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

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

    .home-keypoint-grid,
    .home-quicklink-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 {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: color 0.3s;
}

.anzen-link:hover {
    color: #c55a7d;
    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: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s;
}

.qa-card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.qa-question {
    background: linear-gradient(135deg, #ec87a8 0%, #d66890 100%);
    padding: 1.5rem;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.qa-badge {
    flex-shrink: 0;
    background: white;
    color: var(--primary-color);
    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: white;
    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 {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.75rem;
    border-left: 4px solid var(--primary-color);
}

.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, #ec87a8 0%, #d66890 100%);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #c55a7d;
}

.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 {
    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-item:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.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-card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.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-card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.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 #f39c12;
    transition: box-shadow 0.2s, transform 0.2s;
}

.kahun-tip-item:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.kahun-tip-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f39c12;
    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 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-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;
}

/* === 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(3, 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-card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.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: linear-gradient(135deg, #f8f5ff 0%, #f0ebff 100%);
    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 #e6d9ff;
}

.store-info-card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.store-info-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #6a4c93;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #d9c7f0;
}

.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: #6a4c93;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.phone-link {
    color: var(--primary-color);
    text-decoration: none;
    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;
    }

    /* 駅カード＋店舗情報：縦積み */
    .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: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    padding: 2rem;
    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: 1.5rem;
        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:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.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:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.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:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.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:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.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: 250px;
    }

    .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:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.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 {
    color: var(--primary-color);
    text-decoration: none;
    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:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.link-item-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
}

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

/* レスポンシブ */
@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;
    }
}
