        /* ========================================
           クラブ会員ページ専用スタイル
        ======================================== */

        /* メンバーシップカードセクション */
        .membership-section {
            padding: var(--spacing-xl) 0;
            background: var(--bg-light);
        }

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

        .membership-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .membership-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .membership-card.featured {
            border: 3px solid var(--primary-color);
            position: relative;
        }

        .featured-badge {
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-color);
            color: white;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 0.3rem 1.5rem;
            border-radius: 0 0 12px 12px;
            letter-spacing: 0.05em;
        }

        .membership-header {
            padding: 2rem 2rem 1.5rem;
            text-align: center;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
            color: white;
        }

        .membership-card.junior .membership-header {
            background: linear-gradient(135deg, #1565C0 0%, #42A5F5 100%);
        }

        .membership-card.senior .membership-header {
            background: linear-gradient(135deg, #5D4037 0%, #A1887F 100%);
        }

        .membership-icon {
            font-size: 2.5rem;
            margin-bottom: 0.8rem;
            opacity: 0.9;
        }

        .membership-name {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 0.3rem;
        }

        .membership-name-en {
            font-size: 0.85rem;
            opacity: 0.85;
            letter-spacing: 0.1em;
        }

        .membership-body {
            padding: 2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .membership-price-block {
            text-align: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px dashed var(--border-color);
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .price-label {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .price-value {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .price-value.highlight {
            color: var(--primary-color);
            font-size: 1.6rem;
        }

        .price-note {
            font-size: 0.75rem;
            color: var(--text-light);
            margin-top: 0.5rem;
        }

        .membership-benefits {
            list-style: none;
            flex: 1;
            margin-bottom: 1.5rem;
        }

        .membership-benefits li {
            display: flex;
            align-items: flex-start;
            gap: 0.7rem;
            padding: 0.5rem 0;
            font-size: 0.92rem;
            color: var(--text-dark);
            border-bottom: 1px solid #f0f0f0;
        }

        .membership-benefits li:last-child {
            border-bottom: none;
        }

        .membership-benefits li i {
            color: var(--primary-color);
            margin-top: 0.15rem;
            flex-shrink: 0;
        }

        .membership-cta {
            display: block;
            text-align: center;
            background: var(--primary-color);
            color: white;
            padding: 0.9rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            transition: var(--transition);
        }

        .membership-card.junior .membership-cta {
            background: #1565C0;
        }

        .membership-card.senior .membership-cta {
            background: #5D4037;
        }

        .membership-cta:hover {
            opacity: 0.85;
            transform: translateY(-2px);
        }

        /* 会員特典セクション */
        .benefits-section {
            padding: var(--spacing-xl) 0;
            background: var(--bg-light);
        }

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

        .benefit-card {
            text-align: center;
            padding: 2.5rem 1.5rem;
            background: var(--bg-light);
            border-radius: 16px;
            transition: var(--transition);
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            background: white;
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem;
            flex-shrink: 0;
        }

        .benefit-icon i {
            font-size: 1.8rem;
            color: white;
            line-height: 1;
            display: block;
        }

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

        .benefit-desc {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* コート利用料金表 */
        .court-fees-section {
            padding: var(--spacing-xl) 0;
            background: var(--bg-light);
        }

        .fees-table-wrapper {
            overflow-x: auto;
            margin-top: 2.5rem;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
        }

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

        .fees-table thead th {
            background: var(--primary-color);
            color: white;
            padding: 1rem 1.5rem;
            text-align: center;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.03em;
        }

        .fees-table thead th:first-child {
            text-align: left;
            border-radius: 16px 0 0 0;
        }

        .fees-table thead th:last-child {
            border-radius: 0 16px 0 0;
        }

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

        .fees-table tbody tr:hover {
            background: #f8fdf8;
        }

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

        .fees-table tbody td {
            padding: 1rem 1.5rem;
            text-align: center;
            color: var(--text-dark);
        }

        .fees-table tbody td:first-child {
            text-align: left;
            font-weight: 600;
            color: var(--primary-color);
        }

        .fees-table .member-price {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.05rem;
        }

        .fees-table .non-member-price {
            color: var(--text-light);
        }

        .fees-table .discount-badge {
            display: inline-block;
            background: var(--secondary-color);
            color: white;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.15rem 0.5rem;
            border-radius: 4px;
            margin-left: 0.4rem;
        }

        /* 入会の流れ */
        .flow-section {
            padding: var(--spacing-xl) 0;
            background: white;
        }

        .flow-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            margin-top: 3rem;
            position: relative;
        }

        .flow-steps::before {
            content: '';
            position: absolute;
            top: 45px;
            left: calc(12.5% + 35px);
            right: calc(12.5% + 35px);
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--primary-light));
            z-index: 0;
        }

        .flow-step {
            text-align: center;
            padding: 0 1rem;
            position: relative;
            z-index: 1;
        }

        .flow-number {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem;
            font-family: var(--font-heading);
            font-weight: 800;
            box-shadow: 0 4px 16px rgba(44, 95, 45, 0.3);
        }

        .flow-number .step-label {
            font-size: 0.65rem;
            letter-spacing: 0.05em;
            opacity: 0.9;
        }

        .flow-number .step-num {
            font-size: 1.8rem;
            line-height: 1;
        }

        .flow-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.6rem;
        }

        .flow-desc {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* FAQ セクション */
        .faq-section {
            padding: var(--spacing-xl) 0;
            background: var(--bg-light);
        }

        .faq-list {
            margin-top: 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 1.4rem 1.8rem;
            text-align: left;
            display: flex;
            align-items: center;
            gap: 1rem;
            cursor: pointer;
            transition: background 0.2s;
        }

        .faq-question:hover {
            background: #f8fdf8;
        }

        .faq-q-icon {
            width: 32px;
            height: 32px;
            background: var(--primary-color);
            color: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .faq-q-text {
            flex: 1;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .faq-toggle {
            color: var(--primary-color);
            font-size: 1rem;
            transition: transform 0.3s;
            flex-shrink: 0;
        }

        .faq-item.open .faq-toggle {
            transform: rotate(180deg);
        }

        .faq-answer {
            display: none;
            padding: 0 1.8rem 1.4rem;
            padding-left: calc(1.8rem + 32px + 1rem);
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        .faq-a-text {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.8;
        }

        /* 入会申込CTAセクション */
        .cta-section {
            padding: var(--spacing-xl) 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
            text-align: center;
        }

        .cta-title {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .cta-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn-primary {
            background: var(--secondary-color);
            color: white;
            padding: 1.1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
        }

        .cta-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
        }

        .cta-btn-secondary {
            background: rgba(255,255,255,0.15);
            color: white;
            padding: 1.1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            border: 2px solid rgba(255,255,255,0.5);
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .cta-btn-secondary:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-3px);
        }

        /* 注意事項 */
        .notes-section {
            padding: var(--spacing-lg) 0;
            background: white;
        }

        .notes-box {
            background: #fffbf0;
            border: 1px solid #ffe0a0;
            border-radius: 12px;
            padding: 2rem;
            margin-top: 2rem;
        }

        .notes-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #b8860b;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .notes-list {
            list-style: none;
        }

        .notes-list li {
            font-size: 0.9rem;
            color: var(--text-dark);
            padding: 0.4rem 0;
            padding-left: 1.2rem;
            position: relative;
            line-height: 1.6;
        }

        .notes-list li::before {
            content: '※';
            position: absolute;
            left: 0;
            color: var(--text-light);
        }

        /* ========================================
           姉妹クラブセクション
        ======================================== */
        .sister-club-section {
            padding: var(--spacing-xl) 0;
            background: var(--bg-light);
        }

        .sister-club-plain {
            margin-bottom: 0;
        }

        .sc-body {
            padding: 0 0 2rem;
        }

        .sc-body p {
            font-size: 0.97rem;
            line-height: 1.9;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .sc-body p:last-child {
            margin-bottom: 0;
        }

        .sc-cta-text {
            background: #e8f5e9;
            border-left: 4px solid var(--primary-color);
            border-radius: 0 8px 8px 0;
            padding: 1rem 1.2rem !important;
            color: var(--primary-dark) !important;
            font-size: 1rem !important;
        }

        .sc-cta-text i {
            color: var(--secondary-color);
            margin-right: 0.3rem;
        }

        /* 写真ギャラリー */
        .sc-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: 260px;
            gap: 1rem;
        }

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

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

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

        .sc-gallery-item + .sc-gallery-item {
            border-left: none;
        }

        .sc-img-label {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background: rgba(0,0,0,0.55);
            color: white;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            backdrop-filter: blur(4px);
        }

        .sc-gallery-dots { display: none; }

        @media (max-width: 768px) {
            .sc-body {
                padding: 0 0 1.5rem;
            }

            .sc-gallery {
                display: block;
                position: relative;
                height: 260px;
                border-radius: 12px;
                overflow: hidden;
                margin-bottom: 1.5rem;
            }

            .sc-gallery-item {
                position: absolute;
                inset: 0;
                height: 100%;
                opacity: 0;
                transition: opacity 0.8s ease;
                border-radius: 12px;
            }

            .sc-gallery-item.slide-active {
                opacity: 1;
            }

            .sc-gallery-item + .sc-gallery-item {
                border-left: none;
                border-top: none;
            }

            .sc-gallery-dots {
                display: flex;
                justify-content: center;
                gap: 0.5rem;
                margin-top: 0.2rem;
                margin-bottom: 1.5rem;
            }

            .sc-gallery-dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: #ccc;
                border: none;
                padding: 0;
                cursor: pointer;
                transition: background 0.3s;
            }

            .sc-gallery-dot.active {
                background: var(--primary-color);
            }

            .sister-club-plain {
                margin-bottom: 0 !important;
                padding-bottom: 0 !important;
            }
        }

        /* レスポンシブ */
        @media (max-width: 1024px) {
            .membership-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .membership-card:last-child {
                grid-column: 1 / -1;
                max-width: 400px;
                margin: 0 auto;
            }

            .flow-steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .flow-steps::before {
                display: none;
            }

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

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

            .membership-card:last-child {
                grid-column: auto;
                max-width: 100%;
            }

            .flow-steps {
                grid-template-columns: 1fr;
            }

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

            .cta-title {
                font-size: 1.8rem;
            }

            .mem-table {
                min-width: 320px;
                font-size: 0.88rem;
            }

            .mem-table thead th,
            .mem-table tbody td {
                padding: 0.7rem 0.8rem;
            }
        }

        /* ---- 会員プラン新テーブル ---- */
        .mem-plan-block {
            margin-bottom: 3rem;
        }

        .mem-plan-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
            padding-bottom: 0.6rem;
            border-bottom: 2px solid #e0ede0;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .mem-table-wrap {
            overflow-x: auto;
            border-radius: 12px;
            box-shadow: 0 4px 18px rgba(0,0,0,0.07);
            max-width: 900px;
            margin: 0 auto;
        }

        .mem-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.97rem;
            background: #fff;
            min-width: 320px;
        }

        .mem-table thead tr {
            background: var(--primary-color);
            color: #fff;
        }

        .mem-table thead th {
            padding: 0.85rem 1.4rem;
            text-align: center;
            font-weight: 600;
            white-space: nowrap;
        }

        .mem-table thead th:first-child {
            text-align: left;
        }

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

        .mem-table tbody tr:hover {
            background: #f0f7f0;
        }

        .mem-table tbody tr.mem-alt {
            background: #f6faf6;
        }

        .mem-table tbody tr.mem-alt:hover {
            background: #ecf5ec;
        }

        .mem-table tbody td {
            padding: 0.85rem 1.4rem;
            text-align: center;
            color: #444;
            white-space: nowrap;
        }

        .mem-type {
            text-align: left !important;
            font-weight: 700;
            color: var(--primary-color) !important;
            border-right: 1px solid #e0ede0;
            width: 25%;
        }

        /* ---- 会員プラン説明（表形式） ---- */
        .mem-desc {
            max-width: 900px;
            margin: 0 auto 3.5rem;
        }

        .mem-desc-lead {
            text-align: center;
            font-size: 1rem;
            color: #444;
            margin: 0 0 1.5rem;
            line-height: 1.8;
        }

        /* 説明テーブルは均等列で見やすく */
        .mem-desc-table th,
        .mem-desc-table td {
            text-align: left !important;
            vertical-align: top;
            line-height: 1.7;
        }

        .mem-desc-table thead th {
            text-align: left !important;
        }

        .mem-desc-table td.mem-type {
            white-space: nowrap;
        }

        .mem-desc-note {
            display: inline-block;
            margin-top: 0.2rem;
            font-size: 0.82rem;
            color: #c0392b;
        }

        .mem-desc-foot {
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            margin-top: 1.5rem;
            padding-top: 1.3rem;
            border-top: 1px dashed #cdddcd;
        }

        .mem-desc-foot p {
            margin: 0 0 0.4rem;
            font-size: 0.85rem;
            color: #777;
            line-height: 1.7;
        }

        .mem-desc-foot p:last-child {
            margin-bottom: 0;
        }

        .mem-cta-wrap {
            text-align: center;
            margin-top: 2.5rem;
            margin-bottom: 0;
        }

        .mem-cta-wrap .membership-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.9rem 2.5rem;
            font-size: 1rem;
        }

        /* ========================================
           セクション幅制限ラッパー
        ======================================== */
        .section-inner-narrow {
            max-width: 1080px;
            width: 100%;
            margin: 0 auto;
        }

        /* ========================================
           天野スクール セクション
        ======================================== */
        .amano-school-section {
            padding: var(--spacing-xl) 0 0;
            background: white;
        }

        .amano-school-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .amano-school-intro-text h2 {
            font-family: var(--font-heading);
            font-size: 1.45rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 1.2rem;
            line-height: 1.55;
        }

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

        .amano-info-list {
            list-style: none;
            padding: 0;
            margin: 1.2rem 0;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .amano-info-list li {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.7;
            padding-left: 1.2rem;
            position: relative;
        }

        .amano-info-list li::before {
            content: "・";
            position: absolute;
            left: 0;
        }

        .amano-school-intro-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .amano-school-intro-img img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            display: block;
        }

        @media (max-width: 1024px) {
            .amano-school-intro {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .amano-school-intro-text h2 {
                font-size: 1.6rem;
            }
            .amano-school-intro-img img {
                height: 260px;
            }
        }

        .benefits-section {
            padding-top: 2rem;
        }

        /* ========================================
           本日のコート状況バー・セクション
        ======================================== */
        .court-status-bar {
            background: #1a3d1b;
            padding: 0.7rem 0;
            text-align: center;
        }

        .court-status-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            color: white;
            font-size: 0.97rem;
            font-weight: 600;
            text-decoration: none;
            padding: 0.4rem 1.4rem;
            border: 2px solid rgba(255,255,255,0.4);
            border-radius: 50px;
            transition: background 0.25s, border-color 0.25s;
        }

        .court-status-btn:hover {
            background: rgba(255,255,255,0.12);
            border-color: white;
        }

        .court-status-dot {
            color: #4cff6a;
            font-size: 0.6rem;
            animation: blink 1.4s ease-in-out infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50%       { opacity: 0.3; }
        }

        .court-status-section {
            padding: 3rem 0;
            background: #f6faf6;
            scroll-margin-top: 90px;
        }

        .court-status-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .court-status-body {
            background: white;
            border-radius: 14px;
            box-shadow: 0 4px 18px rgba(0,0,0,0.07);
            padding: 2.4rem 2rem;
            border-left: 5px solid #2C5F2D;
        }

        .court-status-date {
            font-size: 0.9rem;
            color: #2C5F2D;
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .court-status-text {
            font-size: 1rem;
            color: #333;
            line-height: 1.7;
        }

        .court-status-text p {
            margin: 0;
        }

        @media (max-width: 600px) {
            .court-status-body {
                padding: 0.8rem 1.2rem;
            }
        }
