@charset "UTF-8";
/* CSS Document */

/* 店舗案内ページ専用CSS */

/* 施設案内 */
.facility-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.facility-item {
    display: flex;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.facility-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.facility-image {
    flex-shrink: 0;
    width: 250px;
}

.facility-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.facility-content {
    flex: 1;
}

.facility-title {
    font-size: 1.4rem;
    color: #f48fb1;
    margin-bottom: 1rem;
    font-weight: bold;
}

.facility-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.facility-note {
    color: #d84315;
    font-size: 0.9rem;
    background: #fff3e0;
    padding: 0.8rem;
    border-radius: 6px;
    border-left: 4px solid #ff9800;
}

.shower-info ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
}

.shower-info li {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.shower-info li:last-child {
    margin-bottom: 0;
}

/* スタッフセクション */
.staff-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.staff-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.staff-card {
    display: flex;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.staff-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.staff-photo {
    flex-shrink: 0;
    width: 180px;
}

.staff-photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

.staff-info {
    flex: 1;
}

.staff-name {
    font-size: 1.3rem;
    color: #f48fb1;
    margin-bottom: 0.8rem;
    font-weight: bold;
}

.staff-catch {
    color: #333;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.staff-details {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.staff-details p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.staff-details p:last-child {
    margin-bottom: 0;
}

.staff-message {
    color: #666;
    line-height: 1.8;
    font-style: italic;
}

/* メッセージセクション */
.message-section {
    background: linear-gradient(135deg, #f48fb1, #ec407a);
    color: white;
    text-align: center;
}

.message-section .section-title {
    color: white;
}

.message-section .section-title::after {
    background-color: white;
}

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

.message-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .facility-item,
    .staff-card {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .facility-image,
    .staff-photo {
        width: 100%;
    }
    
    .facility-image img,
    .staff-photo img {
        height: 250px;
    }
    
    .facility-item,
    .staff-card {
        padding: 1.5rem;
    }
    
    .message-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .facility-item,
    .staff-card {
        padding: 1rem;
    }
    
    .facility-title,
    .staff-name {
        font-size: 1.2rem;
    }
    
    .staff-details {
        padding: 0.8rem;
    }
}