@charset "UTF-8";
/* CSS Document */
/* 出張サービスページ専用CSS */

/* サービス概要 */
.service-overview {
    margin-top: 2rem;
}

.overview-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.overview-text {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #f48fb1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    color: #f48fb1;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-text p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* 料金表 */
.price-notice {
    text-align: center;
    background: #fff3e0;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.price-notice p {
    color: #d84315;
    font-weight: bold;
    margin: 0;
}

.price-table-container {
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.price-table th,
.price-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.price-table thead th {
    background: linear-gradient(135deg, #f48fb1, #ec407a);
    color: white;
    font-weight: bold;
}

.price-table tbody td {
    color: #666;
}

.price-table tbody td:first-child {
    background: #f8f9fa;
    font-weight: bold;
    color: #333;
}

.total-price {
    background: #e8f5e8 !important;
    color: #2e7d32 !important;
    font-weight: bold;
}

.note-cell {
    background: #fff3e0 !important;
    color: #d84315 !important;
    font-size: 0.8rem;
    line-height: 1.4;
    text-align: left;
    vertical-align: middle;
}

/* おすすめセクション */
.recommend-section {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
}

.recommend-content {
    margin-top: 2rem;
}

.recommend-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.recommend-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.recommend-text h3 {
    color: #ff9800;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.recommend-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.recommend-note {
    color: #2e7d32;
    font-weight: bold;
}

/* 営業時間セクション */
.business-info-section {
    background: linear-gradient(135deg, #f48fb1, #ec407a);
    color: white;
}

.business-info-section .section-title {
    color: white;
}

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

.business-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.info-card .info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.info-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.business-hours {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.phone-number {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.reservation-required,
.early-booking,
.availability-note,
.silver-discount,
.discount-amount {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.3rem;
}

.discount-amount {
    font-weight: bold;
    font-size: 1.1rem;
}

/* 注意事項セクション */
.notes-section {
    background: #fff3e0;
}

.notes-content {
    margin-top: 2rem;
}

.notes-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.note-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.note-icon {
    color: #ff9800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.note-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .price-table {
        font-size: 0.8rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 0.5rem;
    }
    
    .recommend-box {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .business-info {
        grid-template-columns: 1fr;
    }
    
    .note-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .overview-content {
        padding: 1.5rem;
    }
    
    .recommend-box {
        padding: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .note-item {
        padding: 1rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 0.3rem;
        font-size: 0.7rem;
    }
}