/*--------------------------------------------------------------
# Main Sections - Hero, Content Areas, and Special Sections
--------------------------------------------------------------*/

/* === Hero Visual Section === */
section.mv {
    padding: 0;

}



/* === Hero Visual Section (old) === */
.hero-visual {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px; /* Account for fixed header */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/bg-sky2.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* filter: blur(5px) brightness(1.3) contrast(0.5); */
    transform: scale(1.05);
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: 
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%); */
    animation: schoolShimmer 25s ease-in-out infinite;
}


.hero-visual .womens {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
}
.hero-visual .womens .mv-women {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 150px;
}
.hero-visual .womens .mv-women4 {
    left: 29%;
    height: 230px;
}
.hero-visual .womens .mv-women2 {
    left: 50%;
}
.hero-visual .womens .mv-women3 {
    left: -6%;
    transform: scale(-1, 1);
    /* max-width: 130px; */
    max-width: 140px;
}
.hero-visual .womens .mv-women1 {
    left: 9%;
    height: 231px;
}
.hero-visual .womens .mv-women5 {
    width: ;
    left: auto;
    right: -6%;
    width: 125px;
}

@keyframes schoolShimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: 
        radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(0.5px); */
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}


.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    position: relative;
}

/* 黒板コンテナ */
.hero-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* width: 400px;
    height: 300px; */
    background-image: url('../images/blackboard.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    filter: drop-shadow(4px 4px 12px rgba(0, 0, 0, 0.3));
    animation: blackboardFloat 6s ease-in-out infinite;
    width: 100%;
    height: 300px;
}

/* チョークの装飾効果 */
.hero-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 280px;
    background: 
        linear-gradient(90deg, transparent 15%, rgba(255,255,255,0.1) 16%, rgba(255,255,255,0.1) 17%, transparent 18%),
        linear-gradient(90deg, transparent 75%, rgba(255,255,255,0.08) 76%, rgba(255,255,255,0.08) 77%, transparent 78%),
        linear-gradient(0deg, transparent 20%, rgba(255,255,255,0.06) 21%, rgba(255,255,255,0.06) 22%, transparent 23%),
        linear-gradient(0deg, transparent 80%, rgba(255,255,255,0.05) 81%, rgba(255,255,255,0.05) 82%, transparent 83%);
    z-index: 1;
    pointer-events: none;
    animation: chalkDust 8s ease-in-out infinite;
}

@keyframes blackboardFloat {
    0%, 100% { transform: translate(-50%, -50%) rotate(-1deg); }
    50% { transform: translate(-50%, -50%) rotate(1deg); }
}

@keyframes chalkDust {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.logo-image-main {
    /* width: 200px;
    height: 200px; */
    object-fit: contain;
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    margin: var(--space-lg) 0;
}

.logo-image-main:hover {
    transform: scale(1.08);
}

.hero-title h1 {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-black);
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.location-info {
    margin-top: var(--space-lg);
}

.location-info p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.hero-news {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    width: 90%;
}

.news-ticker {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-primary-gold);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    box-shadow: var(--shadow-medium);
}

.news-label {
    font-weight: var(--font-weight-bold);
    color: var(--color-accent-red);
    font-size: var(--font-size-sm);
}

.news-content p {
    color: var(--text-primary);
    font-weight: var(--font-weight-medium);
    margin: 0;
}



/* === Banners Section === */
.banners {
    padding: 0;
    background: var(--bg-primary);
    text-align: center;
}

.banners img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.banners img:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.banners.banners--bottom {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* === Main Content Section === */
.main-content {
    background: var(--bg-primary);
    /* padding: var(--space-4xl) 0; */
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* === News Section === */
.news-section {
    margin-bottom: var(--space-4xl);
}

.news-section h2 {
    font-size: var(--font-size-3xl);
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
}

.news-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
}

.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
}

.news-item {
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 178, 75, 0.2);
    transition: var(--transition-normal);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.news-date {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

.news-title {
    margin: var(--space-md) 0;
}

.news-title a {
    color: var(--text-primary);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    transition: var(--transition-normal);
}

.news-title a:hover {
    color: var(--text-accent);
}

.news-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === Featured Therapists Section === */
.featured-therapists {
    margin-bottom: var(--space-4xl);
}

.featured-therapists h2 {
    font-size: var(--font-size-3xl);
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
}

.featured-therapists h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
}

.therapists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.therapist-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-medium);
}

.therapist-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

/* Unified Therapist Image Styles */
.therapist-photo, .therapist-image {
    height: 350px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.therapist-photo img, .therapist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.therapist-card:hover .therapist-photo img,
.therapist-card:hover .therapist-image img {
    transform: scale(1.05);
}

.no-photo, .no-image {
    height: 350px;
    background: linear-gradient(135deg, #f1f2f6, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
}

.therapist-info {
    padding: var(--space-lg);
}

.therapist-name {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    text-align: center;
    letter-spacing: 0.5px;
}

.therapist-name a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.therapist-name a:hover {
    color: var(--color-primary-gold);
}

.therapist-stats {
    display: flex;
    gap: var(--space-lg);
    color: var(--text-secondary);
}

.therapist-stats span {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

/* === Today's Schedule Section === */
.today-schedule-section {
    margin-bottom: var(--space-md);
}

.today-schedule-section h2 {
    font-size: var(--font-size-3xl);
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--space-md);
    position: relative;
}

.today-schedule-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-primary-pink);
}

.section-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: var(--font-size-md);
    margin-bottom: var(--space-2xl);
}

.popular-badge {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: var(--color-white);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-xs);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
}

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

.btn {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-md);
    transition: var(--transition-medium);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.btn-primary {
    background: var(--color-primary-pink);
    color: var(--color-white);
}

/* === Buttons === */
.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: var(--space-md) var(--space-2xl);
    /* background: var(--gradient-gold); */
    color: var(--color-white);
    font-weight: var(--font-weight-bold);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-soft);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--color-white);
}


/* === Responsive Design === */
@media (max-width: 768px) {
    .hero-visual {
        /* min-height: 80vh; */
        min-height: 43vh;
        padding-top: 0;
        padding-bottom: 180px;
    }
    
    .hero-logo::before {
        /* width: 300px;
        height: 225px; */
    }
    
    .hero-logo::after {
        width: 280px;
        height: 205px;
    }
    
    .logo-image-main {
        /* width: 150px;
        height: 150px; */
        width: 68%;
        position: relative;
        top: 20px;
    }
    
    .banners {
        padding: 0;
    }
    
    .hero-title h1 {
        font-size: var(--font-size-3xl);
    }
    
    .location-info p {
        font-size: var(--font-size-base);
    }
    
    .news-ticker {
        padding: var(--space-sm) var(--space-lg);
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .therapists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .therapist-photo, .therapist-image {
        height: 300px;
    }
    
    .no-photo, .no-image {
        height: 300px;
        font-size: var(--font-size-base);
    }
    
    .today-schedule-section h2 {
        font-size: var(--font-size-2xl);
    }
    
    .section-description {
        font-size: var(--font-size-sm);
        margin-bottom: var(--space-xl);
    }

    .news-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-logo::before {
        /* width: 250px;
        height: 190px; */
    }
    
    .hero-logo::after {
        width: 230px;
        height: 170px;
    }
    
    .logo-image-main {
        /* width: 120px;
        height: 120px; */
    }
    
    .banners {
        padding: 0;
    }
}

/* === Page Headers === */
.page-header {
    background: var(--bg-secondary);
    padding: var(--space-4xl) 0 var(--space-2xl);
    margin-top: 80px; /* Account for fixed header */
    text-align: center;
    border-bottom: 3px solid var(--color-primary-gold);
}

.page-title {
    font-size: var(--font-size-4xl);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    font-weight: var(--font-weight-black);
}

.page-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin: 0;
}

/* === Schedule Styles === */
.schedule-filters {
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-2xl);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 178, 75, 0.2);
}

.schedule-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.filter-group label {
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
    font-size: var(--font-size-sm);
}

.filter-group input,
.filter-group select {
    padding: var(--space-md);
    border: 2px solid rgba(212, 178, 75, 0.3);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    background: var(--color-white);
    transition: var(--transition-normal);
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--color-primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 178, 75, 0.1);
}

.schedule-week-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xl) 0;
    margin-bottom: var(--space-xl);
}

.schedule-week-navigation h3 {
    font-size: var(--font-size-xl);
    color: var(--text-primary);
    margin: 0;
    font-weight: var(--font-weight-bold);
}

.btn-secondary {
    background: linear-gradient(45deg, var(--color-gray-light), var(--color-gray-medium));
    color: var(--color-white);
}

.btn-secondary:hover {
    background: linear-gradient(45deg, var(--color-gray-medium), var(--color-gray-dark));
    color: var(--color-white);
}

/* === Schedule Grid === */
.schedule-grid-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(212, 178, 75, 0.2);
    margin-bottom: var(--space-2xl);
}

.schedule-grid {
    display: grid;
    grid-template-columns: 200px repeat(7, 1fr);
    min-width: 1000px;
}

.schedule-header {
    display: contents;
}

.header-item {
    background: var(--gradient-gold);
    color: var(--color-white);
    padding: var(--space-lg);
    font-weight: var(--font-weight-bold);
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.header-item:last-child {
    border-right: none;
}

.therapist-column {
    background: var(--color-deep-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.date-day {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-black);
}

.date-weekday {
    font-size: var(--font-size-sm);
    opacity: 0.9;
}

/* === Schedule Row === */
.schedule-row {
    display: contents;
}

.schedule-row:nth-child(even) .therapist-info,
.schedule-row:nth-child(even) .schedule-cell {
    background: rgba(212, 178, 75, 0.05);
}

.therapist-info {
    padding: var(--space-lg);
    border-right: 1px solid rgba(212, 178, 75, 0.2);
    border-bottom: 1px solid rgba(212, 178, 75, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    text-align: center;
    position: relative;
}

.therapist-info .therapist-photo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 3px solid var(--color-primary-gold);
    position: relative;
}

.therapist-info .therapist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.therapist-info .no-photo {
    width: 100%;
    height: 100%;
    background: var(--bg-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.new-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--color-accent-red);
    color: var(--color-white);
    font-size: var(--font-size-xs);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    font-weight: var(--font-weight-bold);
}

.therapist-info .therapist-name {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
}

.therapist-info .therapist-name a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-normal);
}

.therapist-info .therapist-name a:hover {
    color: var(--text-accent);
}

/* === Schedule Cells === */
.schedule-cell {
    padding: var(--space-md);
    border-right: 1px solid rgba(212, 178, 75, 0.2);
    border-bottom: 1px solid rgba(212, 178, 75, 0.2);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.schedule-cell:last-child {
    border-right: none;
}

.schedule-slot {
    background: var(--bg-accent);
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: var(--font-size-xs);
    border: 1px solid transparent;
    transition: var(--transition-normal);
}

.schedule-slot.status-available {
    background: #e8f5e8;
    border-color: #4caf50;
    color: #2e7d32;
}

.schedule-slot.status-reserved {
    background: #fff3e0;
    border-color: #ff9800;
    color: #ef6c00;
}

.schedule-slot.status-completed {
    background: #f3e5f5;
    border-color: #9c27b0;
    color: #7b1fa2;
}

.schedule-slot.status-cancelled {
    background: #ffebee;
    border-color: #f44336;
    color: #c62828;
}

.time-range {
    font-weight: var(--font-weight-bold);
    margin-bottom: 2px;
}

.status-text {
    font-weight: var(--font-weight-medium);
}

.no-schedule {
    text-align: center;
    color: var(--text-muted);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    padding: var(--space-lg) 0;
}

/* === Schedule Legend === */
.schedule-legend {
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 178, 75, 0.2);
}

.schedule-legend h3 {
    font-size: var(--font-size-xl);
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.legend-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.legend-symbol {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    min-width: 60px;
    text-align: center;
    border: 1px solid;
}

.legend-symbol.status-available {
    background: #e8f5e8;
    border-color: #4caf50;
    color: #2e7d32;
}

.legend-symbol.status-reserved {
    background: #fff3e0;
    border-color: #ff9800;
    color: #ef6c00;
}

.legend-symbol.status-completed {
    background: #f3e5f5;
    border-color: #9c27b0;
    color: #7b1fa2;
}

.legend-symbol.no-schedule {
    background: var(--bg-accent);
    border-color: var(--color-gray-light);
    color: var(--text-muted);
}

.legend-text {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

/* === Responsive Design for Schedule === */
@media (max-width: 1200px) {
    .schedule-grid {
        grid-template-columns: 180px repeat(7, 1fr);
        min-width: 900px;
    }
    
    .therapist-info .therapist-photo {
        width: 60px;
        height: 60px;
    }
    
    .header-item {
        padding: var(--space-md);
        font-size: var(--font-size-sm);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: var(--space-2xl) 0 var(--space-lg);
        margin-top: 0;
    }
    
    .page-title {
        font-size: var(--font-size-3xl);
    }
    
    .schedule-filter-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .schedule-week-navigation {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .schedule-week-navigation h3 {
        font-size: var(--font-size-lg);
    }
    
    .schedule-grid-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .schedule-grid {
        min-width: 800px;
        grid-template-columns: 150px repeat(7, 100px);
    }
    
    .therapist-info {
        padding: var(--space-md);
    }
    
    .therapist-info .therapist-photo {
        width: 50px;
        height: 50px;
    }
    
    .schedule-cell {
        padding: var(--space-sm);
        min-height: 100px;
    }
    
    .legend-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .schedule-grid {
        grid-template-columns: 120px repeat(7, 80px);
        min-width: 680px;
    }
    
    .header-item {
        padding: var(--space-sm);
        font-size: var(--font-size-xs);
    }
    
    .date-day {
        font-size: var(--font-size-base);
    }
    
    .therapist-info .therapist-photo {
        width: 40px;
        height: 40px;
    }
    
    .therapist-info .therapist-name {
        font-size: var(--font-size-xs);
    }
    
    .schedule-slot {
        padding: 2px 4px;
        font-size: 10px;
    }
}

/* === Schedule Page Design (Screenshot Layout) === */

/* Schedule Page Header */
.schedule-page .page-header {
    background: #f8f9fa;
    text-align: center;
    padding: 40px 0;
    border-bottom: 1px solid #e9ecef;
}

.schedule-page .page-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.page-description {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 0;
}

/* Date Calendar */
.date-calendar {
    background: linear-gradient(135deg, #d4b24b, #b8941f);
    padding: 30px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.date-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.date-button {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 15px 20px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 80px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.date-button:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #2c3e50;
}

.date-button.active {
    background: #2c3e50;
    color: white;
    border-color: #495057;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.date-button.active:hover {
    background: #495057;
    color: white;
}

.date-number {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.date-weekday {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    letter-spacing: 1px;
}

.selected-date-info {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    border-radius: 8px;
    margin: 0 auto;
    max-width: 400px;
}

.selected-date-info h2 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: 1px;
}

/* Filter Styles */
.schedule-filters {
    padding: 30px 0;
    background: white;
}

.filter-form {
    max-width: 600px;
    margin: 0 auto;
}

.filter-row {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.filter-group select {
    padding: 12px 20px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    color: #495057;
    min-width: 160px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-group select:hover,
.filter-group select:focus {
    border-color: #d4b24b;
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 178, 75, 0.1);
}

/* Therapist Grid */
.therapist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Therapist Card */
.therapist-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e9ecef;
}

.therapist-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Top Badges (NEW, etc.) */
.top-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.new-badge {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Therapist Image */
.therapist-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: #f8f9fa;
}

.therapist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.therapist-card:hover .therapist-image img {
    transform: scale(1.05);
}

.therapist-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f2f6, #e9ecef);
    color: #6c757d;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Card Info Section */
.card-info {
    padding: 20px;
}

.therapist-name {
    font-size: 1.4rem;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Details Section */
.details {
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #f1f3f4;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item .label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.detail-item .value {
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 700;
}

/* Working Time */
.working-time {
    text-align: center;
    margin-bottom: 15px;
    padding: 12px;
    background: #f0f7ff;
    border-radius: 8px;
    border: 1px solid #cce7ff;
}

.time-label {
    display: block;
    font-size: 0.8rem;
    color: #495057;
    margin-bottom: 5px;
    font-weight: 600;
}

.time-value {
    font-size: 1rem;
    color: #0066cc;
    font-weight: 900;
}

/* Status Indicator */
.status-indicator {
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-working {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-scheduled {
    background: linear-gradient(135deg, #fff3cd, #ffeeba);
    color: #856404;
    border: 1px solid #ffeeba;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 10px;
}

.btn-detail, .btn-reserve {
    flex: 1;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid;
}

.btn-detail {
    background: white;
    color: #6c757d;
    border-color: #dee2e6;
}

.btn-detail:hover {
    background: #f8f9fa;
    color: #495057;
    border-color: #adb5bd;
}

.btn-reserve {
    background: linear-gradient(135deg, #d4b24b, #b8941f);
    color: white;
    border-color: #d4b24b;
}

.btn-reserve:hover {
    background: linear-gradient(135deg, #b8941f, #9e7e1a);
    color: white;
    transform: translateY(-1px);
}

/* No Therapists Message */
.no-therapists-message {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.no-therapists-message p {
    font-size: 1.2rem;
    color: #6c757d;
    margin: 0;
}

/* Contact Info Section */
.contact-info-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
}

.contact-info-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 900;
}

/* Pricing Info Section */
.pricing-info {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-info h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-list .price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    border: 2px solid #d4b24b;
}

.price-list .duration {
    font-size: 1.1rem;
    color: #495057;
    font-weight: 700;
}

.price-list .amount {
    font-size: 1.3rem;
    color: #d4b24b;
    font-weight: 900;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.phone-contact, .line-contact {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.phone-contact:hover, .line-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.phone-contact h3, .line-contact h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.phone-number a {
    font-size: 1.5rem;
    font-weight: 900;
    color: #d4b24b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-number a:hover {
    color: #b8941f;
}

.line-button {
    background: linear-gradient(135deg, #00c851, #00b74a);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.line-button:hover {
    background: linear-gradient(135deg, #00b74a, #00a63f);
    color: white;
    transform: translateY(-2px);
}

.hours {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 10px;
}

/* Responsive Design for Schedule Layout */
@media (max-width: 768px) {
    .date-calendar {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .date-buttons {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .date-button {
        padding: 12px 15px;
        min-width: 70px;
    }
    
    .date-number {
        font-size: 1rem;
    }
    
    .date-weekday {
        font-size: 0.75rem;
    }
    
    .selected-date-info {
        padding: 12px 20px;
    }
    
    .selected-date-info h2 {
        font-size: 1.1rem;
    }
    
    .therapist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 30px 0;
    }
    
    .filter-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group select {
        min-width: 200px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .therapist-image {
        height: 300px;
    }
    
    .card-info {
        padding: 15px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-info-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .date-calendar {
        padding: 15px 10px;
    }
    
    .date-buttons {
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .date-button {
        padding: 10px 12px;
        min-width: 60px;
    }
    
    .date-number {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    
    .date-weekday {
        font-size: 0.7rem;
    }
    
    .selected-date-info {
        padding: 10px 15px;
    }
    
    .selected-date-info h2 {
        font-size: 1rem;
    }
    
    .therapist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 20px 0;
    }
    
    .therapist-image {
        height: 250px;
    }
    
    .therapist-name {
        font-size: 1.2rem;
    }
    
    .schedule-page .page-title {
        font-size: 2rem;
    }
    
    .contact-info-section {
        padding: 30px 15px;
    }
    
    .phone-contact, .line-contact {
        padding: 20px 15px;
    }
    
    .schedule-filters {
        padding: 20px 0;
    }
}

/* プライシングページ */
.pricing-page {
    background: #f8f9fa;
    min-height: 100vh;
}

.pricing-page .page-header {
    /* background: linear-gradient(135deg, #d4af37, #f4e8c1); */
    text-align: center;
    padding: var(--space-xl) 0;
    margin-bottom: var(--space-xl);
}

.pricing-page .page-title {
    color: #2c1810;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pricing-page .page-title .subtitle {
    display: block;
    font-size: 0.6em;
    color: #5d4e37;
    font-weight: 400;
    margin-top: var(--space-xs);
}

/* セクション共通スタイル */
.pricing-page section {
    background: white;
    margin-bottom: var(--space-lg);
    padding: var(--space-lg);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.pricing-page .section-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    position: relative;
}

.pricing-page .section-title .subtitle {
    display: block;
    font-size: 0.6em;
    /* color: #5d4e37; */
    font-weight: 400;
    margin-top: var(--space-xs);
}

/* ポイントシステム */
.point-system-section {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border: 2px solid #d4af37;
}

.point-description {
    color: #5d4e37;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    text-align: center;
}

.point-table h3 {
    font-size: 1.25rem;
    color: #2c1810;
    margin-bottom: var(--space-md);
    text-align: center;
}

.point-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-sm);
    max-width: 800px;
    margin: 0 auto;
}

.point-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.point-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.point-item .time {
    font-weight: 600;
    color: #2c1810;
}

.point-item .points {
    font-weight: 700;
    color: #d4af37;
    font-size: 1.1em;
}

/* 料金テーブル */
.normal-price-section,
.vip-price-section {
    position: relative;
}

.vip-price-section {
    background: linear-gradient(135deg, #fff8e1, #f8f9fa);
    border: 2px solid #d4af37;
}

.vip-condition {
    text-align: center;
    font-size: 1.1rem;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.price-note {
    text-align: center;
    color: #5d4e37;
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.price-table {
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.price-row:hover {
    background-color: #f8f9fa;
}

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

.price-row .time {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c1810;
}

.price-row .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary-pink);
}

.price-row .tax {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

/* 追加料金 */
.additional-fees {
    max-width: 800px;
    margin: 0 auto;
}

.fee-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.fee-list {
    margin-bottom: var(--space-md);
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid #f0f0f0;
}

.fee-item:last-child {
    border-bottom: none;
}

.fee-name {
    color: #2c1810;
    font-weight: 500;
}

.fee-price {
    color: var(--color-primary-pink);
    font-weight: 600;
}

.special-note,
.date-note,
.cancel-note {
    text-align: left;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: var(--space-sm) 0;
}

.other-fees {
    margin: var(--space-md) 0;
    padding-top: var(--space-md);
    border-top: 1px solid #e0e0e0;
}

.payment-methods {
    text-align: center;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid #e0e0e0;
}

.payment-text {
    font-weight: 600;
    color: #2c1810;
    margin-bottom: var(--space-sm);
}

.credit-cards {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.card {
    background: var(--gradient-sakura);
    color: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* ランクセクション */
.rank-section {
    background: linear-gradient(135deg, #fff, #f8f9fa);
}

.rank-list {
    display: grid;
    gap: var(--space-md);
}

.rank-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: white;
    border-radius: 8px;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.rank-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.rank-item.legend {
    border-left-color: #8B0000;
}

.rank-item.master {
    border-left-color: #FF4500;
}

.rank-item.expert {
    border-left-color: #FFD700;
}

.rank-item.specialist {
    border-left-color: #32CD32;
}

.rank-item.beginner {
    border-left-color: #1E90FF;
}

.rank-item.trainee {
    border-left-color: #9370DB;
}

.rank-badge {
    min-width: 120px;
    padding: var(--space-sm) var(--space-md);
    border-radius: 6px;
    font-weight: 700;
    text-align: center;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.rank-item.legend .rank-badge {
    background: linear-gradient(135deg, #8B0000, #DC143C);
}

.rank-item.master .rank-badge {
    background: linear-gradient(135deg, #FF4500, #FF6347);
}

.rank-item.expert .rank-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.rank-item.specialist .rank-badge {
    background: linear-gradient(135deg, #32CD32, #90EE90);
}

.rank-item.beginner .rank-badge {
    background: linear-gradient(135deg, #1E90FF, #87CEEB);
}

.rank-item.trainee .rank-badge {
    background: linear-gradient(135deg, #9370DB, #BA55D3);
}

.rank-description {
    flex: 1;
    color: #2c1810;
    line-height: 1.5;
}

/* オプションセクション */
.option-section {
    background: linear-gradient(135deg, #fff, #f8f9fa);
}

.option-list {
    max-width: 800px;
    margin: 0 auto var(--space-md);
}

.option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.option-item:hover {
    background-color: #f8f9fa;
}

.option-item:last-child {
    border-bottom: none;
}

.option-name {
    color: #2c1810;
    font-weight: 500;
}

.option-price {
    color: var(--color-primary-pink);
    font-weight: 600;
}

.option-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ホテルセクション */
.hotel-section {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    text-align: center;
}

.hotel-note {
    color: #2c1810;
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.hotel-map {
    background: white;
    padding: var(--space-lg);
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.hotel-map p {
    color: #666;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.hotel-map p:last-child {
    margin-bottom: 0;
}

/* 交通費セクション */
.transportation-section {
    background: linear-gradient(135deg, #fff, #f8f9fa);
}

.transportation-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: var(--space-sm);
}

.transport-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.transport-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.transport-item.free {
    border-left: 4px solid #32CD32;
}

.transport-item:not(.free) {
    border-left: 4px solid var(--color-primary-pink);
}

.transport-price {
    min-width: 200px;
    font-weight: 700;
    color: var(--color-primary-pink);
    font-size: 1.1rem;
}

.transport-item.free .transport-price {
    color: #32CD32;
}

.transport-area {
    flex: 1;
    color: #2c1810;
    line-height: 1.4;
}

/* 利用規約セクション */
.terms-section {
    background: #fff;
    border: 2px solid #e0e0e0;
}

.terms-intro {
    color: #2c1810;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    font-weight: 500;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-lg);
}

.terms-list li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-md);
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    line-height: 1.5;
    position: relative;
}

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

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

.terms-warning {
    background: var(--bg-pink-light);
    color: var(--color-primary-pink);
    padding: var(--space-md);
    border-radius: 8px;
    border-left: 4px solid var(--color-primary-pink);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
    font-weight: 500;
}

.terms-subtitle {
    color: #2c1810;
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-primary-pink);
}

.terms-copyright {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .pricing-page section {
        margin-bottom: var(--space-md);
        padding: var(--space-md);
    }
    
    .point-list {
        grid-template-columns: 1fr;
    }
    
    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
    }
    
    .fee-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
    }
    
    .rank-item {
        flex-direction: column;
        text-align: center;
    }
    
    .rank-badge {
        min-width: auto;
        width: 100%;
    }
    
    .transport-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }
    
    .transport-price {
        min-width: auto;
    }
    
    .credit-cards {
        justify-content: center;
    }
}

/* セラピスト一覧ページ */
.therapists-page {
    background: #f8f9fa;
    min-height: 100vh;
}

.therapists-page .page-header {
    background: linear-gradient(135deg, #d4af37, #f4e8c1);
    text-align: center;
    padding: var(--space-xl) 0 var(--space-lg);
    margin-bottom: var(--space-xl);
}

.therapists-page .page-title {
    color: #2c1810;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.therapists-page .page-description {
    color: #5d4e37;
    font-size: 1.1rem;
    font-weight: 500;
}

/* フィルター */
.therapist-filters {
    background: white;
    padding: var(--space-lg);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    margin-bottom: var(--space-xl);
}

.filter-form .filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 600;
    color: #2c1810;
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
}

.filter-group select {
    padding: var(--space-sm) var(--space-md);
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.filter-group select:focus {
    border-color: #d4b24b;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.reset-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: var(--space-sm) var(--space-lg);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    height: fit-content;
}

.reset-btn:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* セラピストカード（スケジュールページと同じスタイル） */
.therapists-page .therapist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
    padding: var(--space-md) 0;
}

.therapists-page .therapist-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.therapists-page .therapist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.15);
}

.therapists-page .top-badges {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.therapists-page .badge {
    padding: var(--space-xs) var(--space-sm);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.therapists-page .new-badge {
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
    animation: pulse 2s infinite;
}

.therapists-page .popular-badge {
    background: linear-gradient(135deg, #d4af37, #f4e8c1);
    color: #2c1810;
}

.therapists-page .therapist-image {
    height: 350px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.therapists-page .therapist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.therapists-page .therapist-card:hover .therapist-image img {
    transform: scale(1.05);
}

.therapists-page .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #6c757d;
    font-size: 1.1rem;
    font-weight: 500;
}

.therapists-page .card-info {
    padding: var(--space-lg);
}

.therapists-page .therapist-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: var(--space-md);
    text-align: center;
}

.therapists-page .therapist-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.therapists-page .therapist-name a:hover {
    color: #d4af37;
}

.therapists-page .details {
    display: grid;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    background: #f8f9fa;
    padding: var(--space-md);
    border-radius: 8px;
}

.therapists-page .detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xs) 0;
}

.therapists-page .detail-item .label {
    color: #6c757d;
    font-weight: 500;
    font-size: 0.9rem;
}

.therapists-page .detail-item .value {
    color: #2c1810;
    font-weight: 600;
}

.therapists-page .working-time {
    background: linear-gradient(135deg, #fff8e1, #f8f9fa);
    padding: var(--space-md);
    border-radius: 8px;
    margin-bottom: var(--space-md);
    border-left: 4px solid #d4af37;
}

.therapists-page .time-label {
    display: block;
    color: #5d4e37;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.therapists-page .time-value {
    color: #2c1810;
    font-weight: 700;
    font-size: 1.1rem;
}

.therapists-page .status-indicator {
    text-align: center;
    padding: var(--space-sm) var(--space-md);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.therapists-page .status-working {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
}

.therapists-page .status-scheduled {
    background: linear-gradient(135deg, #ffc107, #ffdd57);
    color: #2c1810;
    text-shadow: 0 1px 2px rgba(255,255,255,0.3);
    box-shadow: 0 2px 4px rgba(255, 193, 7, 0.3);
}

.therapists-page .status-off {
    background: linear-gradient(135deg, #6c757d, #868e96);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.therapists-page .card-actions {
    text-align: center;
}

.therapists-page .card-actions .btn {
    background: linear-gradient(135deg, #d4af37, #f4e8c1);
    color: #2c1810;
    padding: var(--space-sm) var(--space-xl);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.therapists-page .card-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #c19b26, #e6d7a3);
}

/* メッセージエリア */
.no-results {
    text-align: center;
    padding: var(--space-xl);
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.no-results p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
}

.no-results .btn {
    background: #6c757d;
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.no-results .btn:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .therapists-page .page-header {
        padding: var(--space-lg) 0;
        margin-bottom: var(--space-lg);
    }
    
    .therapist-filters {
        padding: var(--space-md);
        margin-bottom: var(--space-lg);
    }
    
    .filter-form .filter-row {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .therapists-page .therapist-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .therapists-page .therapist-image {
        height: 250px;
    }
    
    .therapists-page .card-info {
        padding: var(--space-md);
    }
    
    .therapists-page .therapist-name {
        font-size: 1.25rem;
    }
    
    .therapists-page .details {
        padding: var(--space-sm);
    }
    
    .therapists-page .working-time {
        padding: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .therapists-page .therapist-card {
        margin-bottom: var(--space-lg);
    }
    
    .therapists-page .top-badges {
        top: 8px;
        right: 8px;
    }
    
    .therapists-page .badge {
        font-size: var(--font-size-xs);
        padding: 3px 6px;
    }
}

/* === Therapist Detail Page === */
.therapist-detail-page {
    background: #f8f9fa;
    min-height: 100vh;
    padding-top: 80px;
}

.therapist-detail-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* メインセクション */
.therapist-main-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.therapist-photo-section {
    margin-bottom: 30px;
}

.therapist-main-photo {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.no-photo-large {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #f1f2f6, #e9ecef);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 auto;
}

/* ランクバッジ */
.rank-badge-section {
    margin-bottom: 20px;
}

.rank-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 25px;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.rank-badge.master {
    background: linear-gradient(135deg, #d4b24b, #b8941f);
    color: white;
    border: 2px solid #d4b24b;
}

/* セラピスト名 */
.therapist-detail-name {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

/* プロフィール基本情報 */
.profile-basic-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.profile-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.profile-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
}

.profile-value {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 900;
}

/* セクション共通スタイル */
.section-title {
    background: var(--color-primary-pink-strong);
    color: white;
    padding: 15px 20px;
    margin: 0 0 20px 0;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 900;
    text-align: center;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Q&Aセクション */
.qa-section {
    background: white;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.qa-list {
    padding: 0 20px 20px 20px;
}

.qa-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f3f4;
}

.qa-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.question {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1rem;
}

.answer {
    color: #495057;
    line-height: 1.6;
    padding-left: 15px;
}

/* コメントセクション */
.comment-section {
    background: white;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.comment-list {
    padding: 0 20px 20px 20px;
}

.comment-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.comment-item:last-child {
    margin-bottom: 0;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-user {
    font-weight: 700;
    color: #2c3e50;
    font-size: 0.9rem;
}

.comment-date {
    font-size: 0.8rem;
    color: #6c757d;
}

.comment-text {
    color: #495057;
    line-height: 1.6;
}

/* オプションセクション */
.option-section {
    background: white;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 0 20px 20px 20px;
}

.option-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.option-item:hover {
    background: #fff3cd;
    border-color: #d4b24b;
}

.option-name {
    font-weight: 700;
    color: #2c3e50;
}

.option-price {
    /* font-weight: 900;
    color: #d4af37;
    font-size: 1.1rem; */
}

/* スケジュールセクション */
.schedule-section {
    background: white;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.schedule-table {
    padding: 0 20px 20px 20px;
}

.schedule-header,
.schedule-row {
    display: grid;
    grid-template-columns: 80px 1fr 1fr 1fr;
    gap: 10px;
    align-items: center;
}

.schedule-header {
    background: #f8f9fa;
    padding: 15px 10px;
    margin: 0 -20px 15px -20px;
    font-weight: 700;
    color: #2c3e50;
}

.schedule-row {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
    background: #f8f9fa;
}

.schedule-time {
    font-weight: 700;
    color: #2c3e50;
    font-size: 0.9rem;
}

.schedule-cell {
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
}

.schedule-cell.available {
    background: #d4edda;
    color: #155724;
}

.schedule-cell.unavailable {
    background: #f8d7da;
    color: #721c24;
}

.schedule-cell.reserved {
    background: #fff3cd;
    color: #856404;
}

/* マッサージタイプセクション */
.massage-type-section {
    background: white;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.massage-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    padding: 0 20px 20px 20px;
}

.massage-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.massage-item.active {
    background: linear-gradient(135deg, #d4b24b, #b8941f);
    color: white;
    border-color: #d4b24b;
}

.massage-item:not(.active):hover {
    background: #e9ecef;
    border-color: #d4b24b;
}

.massage-name {
    font-weight: 700;
    font-size: 1rem;
}

/* メッセージ送信セクション */
.send-message-section {
    background: white;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.message-form {
    padding: 0 20px 20px 20px;
}

.message-input {
    width: 100%;
    height: 120px;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    resize: vertical;
    margin-bottom: 15px;
    font-family: inherit;
}

.message-input:focus {
    outline: none;
    border-color: #d4b24b;
    box-shadow: 0 0 0 3px rgba(212, 178, 75, 0.1);
}

.send-button {
    background: linear-gradient(135deg, #d4b24b, #b8941f);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.send-button:hover {
    background: linear-gradient(135deg, #b8941f, #9e7e1a);
    transform: translateY(-2px);
}

/* 写真日記セクション */
.photo-diary-section {
    background: white;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.photo-diary-content {
    padding: 0 20px 20px 20px;
    text-align: center;
    color: #6c757d;
}

/* 予約セクション */
.reservation-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reservation-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.reservation-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 150px;
}

.phone-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.phone-btn:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
    transform: translateY(-3px);
    color: white;
}

.line-btn {
    background: linear-gradient(135deg, #00c851, #00b74a);
    color: white;
}

.line-btn:hover {
    background: linear-gradient(135deg, #00b74a, #00c851);
    transform: translateY(-3px);
    color: white;
}

.btn-icon {
    font-size: 2rem;
}

.btn-text {
    font-size: 1.1rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .therapist-detail-container {
        padding: 15px;
    }
    
    .therapist-main-photo {
        width: 250px;
        height: 330px;
    }
    
    .no-photo-large {
        width: 250px;
        height: 330px;
    }
    
    .therapist-detail-name {
        font-size: 2rem;
    }
    
    .profile-basic-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .option-grid,
    .massage-types {
        grid-template-columns: 1fr;
    }
    
    .reservation-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .reservation-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .therapist-main-section {
        padding: 20px;
    }
    
    .therapist-main-photo {
        width: 200px;
        height: 270px;
    }
    
    .no-photo-large {
        width: 200px;
        height: 270px;
    }
    
    .therapist-detail-name {
        font-size: 1.8rem;
    }
    
    .schedule-header,
    .schedule-row {
        grid-template-columns: 50px 1fr 1fr 1fr;
        font-size: 0.8rem;
    }
    
    .schedule-time {
        font-size: 0.8rem;
    }
    
    .schedule-cell {
        padding: 6px 4px;
        font-size: 0.8rem;
    }
}

/* 404 Not Found Page Styles */
.therapist-not-found {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.not-found-content h1 {
    color: #b8860b;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.not-found-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.6;
}

.not-found-content ul {
    text-align: left;
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #b8860b;
}

.not-found-content li {
    margin-bottom: 10px;
    color: #555;
}

.helpful-links {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn-link {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #b8860b, #daa520);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-link:hover {
    background: linear-gradient(135deg, #daa520, #b8860b);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.debug-info {
    text-align: left;
    font-size: 0.9em;
}

.debug-info h3 {
    color: #b8860b;
    margin-bottom: 10px;
}

.debug-info pre {
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    overflow-x: auto;
    font-size: 0.8em;
}

@media (max-width: 768px) {
    .therapist-not-found {
        padding: 20px 15px;
    }
    
    .not-found-content h1 {
        font-size: 2em;
    }
    
    .helpful-links {
        gap: 10px;
    }
    
    .btn-link {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
}


.blackboard_text {
    background-image: url('../images/blackboard_tate.jpg');
    /* background-image: url('../images/bg-sky2.jpg');; */

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}
.blackboard_text_inner {
    padding: 0 40px;

}
.blackboard_text_inner h2 ,
.blackboard_text_inner p {
    color: #fff;
}