        /* ========================================
           施設紹介ページ専用スタイル
        ======================================== */

        /* 施設ナビタブ */
        .facility-nav {
            background: white;
            border-bottom: 2px solid var(--border-color);
            position: sticky;
            top: 80px;
            z-index: 100;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }

        .facility-nav .container {
            display: flex;
            gap: 0;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .facility-nav .container::-webkit-scrollbar { display: none; }

        .facility-tab {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1.1rem 1.8rem;
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--text-light);
            text-decoration: none;
            white-space: nowrap;
            border-bottom: 3px solid transparent;
            transition: var(--transition);
        }

        .facility-tab:hover,
        .facility-tab.active {
            color: var(--primary-color);
            border-bottom-color: var(--primary-color);
        }

        .facility-tab i {
            font-size: 1rem;
        }

        /* セクション共通 */
        .facility-section {
            padding: var(--spacing-xl) 0;
        }

        .facility-section:nth-child(even) {
            background: var(--bg-light);
        }

        .facility-section:nth-child(odd) {
            background: white;
        }

        /* セクションタイトルブロック */
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--primary-color);
            color: white;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            padding: 0.3rem 1rem;
            border-radius: 4px;
            margin-bottom: 1rem;
        }

        .section-label-icon {
            width: 1em;
            height: 1em;
            vertical-align: middle;
        }

        .facility-section-title {
            font-family: var(--font-heading);
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .facility-section-sub {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        /* ギャラリーグリッド */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: auto;
            gap: 0.8rem;
            margin-bottom: 3rem;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 12px;
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            display: block;
        }

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

        /* テニスコートレイアウト */
        .gallery-item.col-8  { grid-column: span 8; height: 340px; }
        .gallery-item.col-4  { grid-column: span 4; height: 340px; }
        .gallery-item.col-4-half { grid-column: span 4; height: 163px; }
        .gallery-item.col-6  { grid-column: span 6; height: 280px; }


        /* コート情報カード */
        .court-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .court-card {
            background: white;
            border-radius: 16px;
            padding: 1.8rem;
            box-shadow: var(--shadow-sm);
            border-left: 4px solid var(--primary-color);
            transition: var(--transition);
        }

        .court-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }

        .court-card-icon {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .court-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.8rem;
        }

        .court-spec-list {
            list-style: none;
        }

        .court-spec-list li {
            display: flex;
            justify-content: space-between;
            padding: 0.4rem 0;
            font-size: 0.88rem;
            border-bottom: 1px dashed #eee;
            color: var(--text-dark);
        }

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

        .court-spec-list .spec-label {
            color: var(--text-light);
            flex-shrink: 0;
        }

        .court-spec-list .spec-val {
            font-weight: 600;
            text-align: right;
        }

        /* クラブハウス設備リスト */
        .clubhouse-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .clubhouse-feature-item {
            display: flex;
            gap: 1.2rem;
            align-items: flex-start;
        }

        .cf-icon {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .cf-text h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.3rem;
        }

        .cf-text p {
            font-size: 0.88rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* クラブハウスギャラリー：横2列5列など */
        .ch-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }

        .ch-gallery .gallery-item { height: 240px; }
        .ch-gallery .gallery-item.tall { height: 490px; grid-row: span 2; }
        .ch-gallery-dots { display: none; }

        /* パデルコート */
        .padel-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: stretch;
            margin-bottom: 4rem;
        }

        .padel-intro-text h2 {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .padel-intro-text p {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.9;
            margin-bottom: 1rem;
        }

        .padel-intro-img {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            min-height: 300px;
        }

        .padel-intro-img img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .fureai-intro-img {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            min-height: 300px;
        }

        .fureai-intro-img img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .padel-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.8rem;
            margin-top: 2rem;
            margin-bottom: 3rem;
        }

        .padel-gallery .gallery-item { height: 300px; }
        .padel-gallery-dots { display: none; }
        .padel-cta-mobile { display: none; }
        .fureai-cta-mobile { display: none; }

        /* パデルの特徴タグ */
        .padel-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin: 1.5rem 0;
        }

        .padel-tag {
            background: #e8f5e9;
            color: var(--primary-color);
            border: 1px solid #c8e6c9;
            border-radius: 50px;
            padding: 0.35rem 1rem;
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* 利用案内テーブル */
        .usage-table-wrap {
            overflow-x: auto;
            border-radius: 14px;
            box-shadow: var(--shadow-md);
            margin-bottom: 2rem;
        }

        .usage-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            font-size: 0.92rem;
        }

        .usage-table thead th {
            background: var(--primary-color);
            color: white;
            padding: 0.9rem 1.2rem;
            text-align: left;
            font-weight: 600;
            font-size: 0.88rem;
        }

        .usage-table thead th:first-child { border-radius: 14px 0 0 0; }
        .usage-table thead th:last-child  { border-radius: 0 14px 0 0; text-align: center; }

        .usage-table tbody tr {
            border-bottom: 1px solid #f0f0f0;
            transition: background 0.2s;
        }

        .usage-table tbody tr:hover { background: #f8fdf8; }
        .usage-table tbody tr:last-child { border-bottom: none; }

        .usage-table tbody td {
            padding: 0.85rem 1.2rem;
            color: var(--text-dark);
            vertical-align: middle;
        }

        .usage-table tbody td:last-child { text-align: center; }

        .usage-table .tag-ok {
            display: inline-block;
            background: #e8f5e9;
            color: var(--primary-color);
            border-radius: 4px;
            padding: 0.15rem 0.6rem;
            font-size: 0.8rem;
            font-weight: 700;
        }

        .usage-table .tag-no {
            display: inline-block;
            background: #ffeaea;
            color: #c62828;
            border-radius: 4px;
            padding: 0.15rem 0.6rem;
            font-size: 0.8rem;
            font-weight: 700;
        }

        /* アクセスバナー */
        .access-banner {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            border-radius: 20px;
            padding: 3rem;
            color: white;
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 2rem;
            margin-top: 4rem;
        }

        .access-banner h3 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .access-info-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .access-info-list li {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-size: 0.95rem;
            opacity: 0.92;
        }

        .access-info-list li i {
            width: 20px;
            text-align: center;
            color: var(--accent-color);
        }

        .access-route-title {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.05rem;
            font-weight: 700;
            margin: 1.5rem 0 0.8rem;
        }

        .access-route-title i {
            color: var(--accent-color);
        }

        .access-route-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            padding: 0;
            margin: 0;
        }

        .access-route-list li {
            position: relative;
            padding-left: 1.2rem;
            font-size: 0.92rem;
            line-height: 1.7;
            opacity: 0.92;
            color: white;
        }

        .access-route-list li::before {
            content: "・";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--accent-color);
            font-weight: 700;
        }

        .access-banner-btns {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .access-banner-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.9rem 1.8rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
            white-space: nowrap;
        }

        .access-banner-btn.primary {
            background: var(--secondary-color);
            color: white;
            box-shadow: 0 4px 16px rgba(255,107,53,0.4);
        }

        .access-banner-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(255,107,53,0.5);
        }

        .access-banner-btn.outline {
            background: rgba(255,255,255,0.15);
            color: white;
            border: 2px solid rgba(255,255,255,0.5);
            backdrop-filter: blur(8px);
        }

        .access-banner-btn.outline:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-2px);
        }

        /* ページ内アンカーのオフセット調整 */
        .anchor-target {
            scroll-margin-top: 140px;
        }

        /* レスポンシブ */
        @media (max-width: 1024px) {
            .gallery-item.col-8  { grid-column: span 12; height: 280px; }
            .gallery-item.col-4  { grid-column: span 6;  height: 220px; }
            .gallery-item.col-4-half { grid-column: span 6; height: 220px; }
            .court-cards { grid-template-columns: repeat(2, 1fr); }
            .padel-intro { grid-template-columns: 1fr; gap: 2rem; }
            .access-banner { grid-template-columns: 1fr; }
            .access-banner-btns { flex-direction: row; }
        }

        @media (max-width: 768px) {
            .gallery-item.col-8, .gallery-item.col-4, .gallery-item.col-4-half, .gallery-item.col-6 {
                grid-column: span 12;
                height: 220px;
            }
            .court-cards { grid-template-columns: 1fr; }
            .clubhouse-features { grid-template-columns: 1fr; }
            .ch-gallery {
                display: block;
                position: relative;
                height: 260px;
                border-radius: 12px;
                overflow: hidden;
            }
            .ch-gallery .gallery-item {
                position: absolute;
                inset: 0;
                height: 100%;
                opacity: 0;
                transition: opacity 0.8s ease;
                border-radius: 12px;
            }
            .ch-gallery .gallery-item.tall {
                grid-row: unset;
                height: 100%;
            }
            .ch-gallery .gallery-item.slide-active {
                opacity: 1;
            }
            .ch-gallery-dots {
                display: flex;
                justify-content: center;
                gap: 0.5rem;
                margin-top: 0.2rem;
                margin-bottom: 1.5rem;
            }
            .ch-gallery-dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: #ccc;
                border: none;
                padding: 0;
                cursor: pointer;
                transition: background 0.3s;
            }
            .ch-gallery-dot.active {
                background: var(--primary-color);
            }
            .padel-gallery {
                display: block;
                position: relative;
                height: 260px;
                border-radius: 12px;
                overflow: hidden;
                margin-top: 0;
                margin-bottom: 1.5rem;
            }
            .padel-gallery .gallery-item {
                position: absolute;
                inset: 0;
                height: 100%;
                opacity: 0;
                transition: opacity 0.8s ease;
                border-radius: 12px;
            }
            .padel-gallery .gallery-item.slide-active {
                opacity: 1;
            }
            .padel-gallery-dots {
                display: flex;
                justify-content: center;
                gap: 0.5rem;
                margin-top: 0.2rem;
                margin-bottom: 1.5rem;
            }
            .padel-gallery-dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: #ccc;
                border: none;
                padding: 0;
                cursor: pointer;
                transition: background 0.3s;
            }
            .padel-gallery-dot.active {
                background: var(--primary-color);
            }
            .padel-intro { margin-bottom: 1.5rem; }
            .padel-intro-img { display: none; }
            .fureai-intro-img {
                min-height: auto;
                height: 260px;
                border-radius: 12px;
            }
            .padel-cta-desktop { display: none !important; }
            .padel-cta-mobile { display: block; text-align: center; margin-top: 1rem; }
            .fureai-cta-desktop { display: none !important; }
            .fureai-cta-mobile { display: block; text-align: center; margin-top: 1rem; }
            .facility-section-title { font-size: 1.8rem; }
            .access-banner { padding: 2rem; }
            .access-banner-btns { flex-direction: column; }
        }

        /* ========================================
           クラブの歴史 タイムライン
        ======================================== */
        .history-timeline {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 4rem;
        }

        .history-timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
            border-radius: 3px;
        }

        .history-item {
            position: relative;
            display: grid;
            grid-template-columns: 120px 1fr;
            gap: 2rem;
            padding: 0 0 3rem 2rem;
        }

        .history-item::before {
            content: '';
            position: absolute;
            left: -0.45rem;
            top: 0.4rem;
            width: 14px;
            height: 14px;
            background: var(--primary-color);
            border: 3px solid white;
            border-radius: 50%;
            box-shadow: 0 0 0 3px var(--primary-color);
        }

        .history-year {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            padding: 0.45rem 0.9rem;
            border-radius: 50px;
            text-align: center;
            height: fit-content;
            white-space: nowrap;
        }

        .history-content h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.6rem;
            line-height: 1.4;
        }

        .history-content p {
            font-size: 0.92rem;
            color: var(--text-light);
            line-height: 1.85;
        }

        /* 理念バナー */
        .history-philosophy {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            color: white;
        }

        .philosophy-icon {
            width: 72px;
            height: 72px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--accent-color);
            margin: 0 auto 1.2rem;
        }

        .history-philosophy h3 {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .history-philosophy p {
            font-size: 1rem;
            line-height: 1.9;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .history-item {
                grid-template-columns: 1fr;
                gap: 0.8rem;
                padding-left: 1.5rem;
            }

            .history-year {
                width: fit-content;
            }

            .history-philosophy {
                padding: 2rem 1.5rem;
            }
        }

        /* ---- ふれあいパーク ---- */
        .fureai-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.2rem;
            margin-top: 2rem;
        }

        .fureai-img {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }

        .fureai-img img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .fureai-img:hover img {
            transform: scale(1.04);
        }

        /* ---- 提携サービス ---- */
        .partner-banners {
            display: flex;
            flex-direction: row;
            gap: 1.2rem;
            margin-top: 2rem;
            align-items: flex-start;
        }

        .partner-banner-link {
            display: block;
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.1);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .partner-banner-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }

        .partner-banner-link img {
            width: 100%;
            height: auto;
            display: block;
        }

        @media (max-width: 1024px) {
            .partner-banners {
                flex-direction: column;
                align-items: center;
            }
            .partner-banner-link {
                flex: none;
                width: 100%;
                max-width: 480px;
            }
            .fureai-gallery {
                grid-template-columns: 1fr;
            }
            .fureai-img img {
                height: 220px;
            }
        }

        /* ---- コート種別ブロック ---- */
        .court-type-block {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 2.5rem;
            align-items: center;
            margin-bottom: 3.5rem;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.07);
        }

        .court-type-block--rev {
            grid-template-columns: 1.4fr 1fr;
        }

        .court-type-block--rev .court-type-img {
            order: 2;
        }

        .court-type-block--rev .court-type-body {
            order: 1;
            padding-left: 2.5rem;
            padding-right: 0;
        }

        .court-type-img {
            height: 280px;
            overflow: hidden;
        }

        .court-type-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .court-type-block:hover .court-type-img img {
            transform: scale(1.04);
        }

        .court-type-body {
            padding: 2rem 2.5rem 2rem 0;
        }

        .court-type-block--rev .court-type-body {
            padding: 2rem 0 2rem 2.5rem;
        }

        .court-type-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-color, #2C5F2D);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            flex-wrap: wrap;
        }

        .court-count {
            display: inline-block;
            background: var(--primary-color, #2C5F2D);
            color: #fff;
            font-size: 0.85rem;
            font-weight: 700;
            padding: 0.2rem 0.8rem;
            border-radius: 50px;
        }

        .court-type-body p {
            color: #555;
            line-height: 1.9;
            font-size: 0.97rem;
        }

        @media (max-width: 768px) {
            .court-type-block,
            .court-type-block--rev {
                grid-template-columns: 1fr;
            }

            .court-type-block--rev .court-type-img { order: 0; }
            .court-type-block--rev .court-type-body { order: 0; padding: 1.5rem; }

            .court-type-img { height: 220px; }

            .court-type-body {
                padding: 1.5rem;
            }
        }
