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

/* メニューページ専用CSS */
/* 料金表ヘッダー */
.price-notice {
    text-align: center;
    background: #fff3e0;
    padding: 1rem;
    border-radius: 8px;
}

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

/* メニューアイテム */
.menu-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.menu-image {
    flex-shrink: 0;
    width: 200px;
}

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

.menu-content {
    flex: 1;
}

.menu-title {
    font-size: 1.5rem;
    color: #f48fb1;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.menu-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.menu-prices {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.price-item {
    background: white;
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    border: 2px solid #f48fb1;
    text-align: center;
    min-width: 120px;
}

.price-item .time {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.2rem;
}

.price-item .price {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    color: #f48fb1;
    margin-bottom: 0.2rem;
}

.price-item .note {
    display: block;
    font-size: 0.8rem;
    color: #999;
    line-height: 1.3;
}

.additional-times {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.additional-times span {
    background: #f0f0f0;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #666;
}

/* 特別オプション */
.special-option {
    margin-bottom: 1rem;
}

.option-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.price-item.special {
    background: #f48fb1;
    color: white;
    border: 2px solid #f48fb1;
}

.price-item.special .price {
    color: white;
}

.price-item.special .note {
    color: rgba(255,255,255,0.9);
}

.standalone-course {
    margin-top: 1rem;
}

.standalone-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

/* 電子ペン情報 */
.option-info {
    margin-bottom: 1rem;
}

.pen-notice {
    background: #e8f5e8;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.pen-notice p {
    color: #2e7d32;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.extension-notice {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #f48fb1;
    color: white;
    border-radius: 6px;
}

.extension-notice p {
    margin: 0;
    font-weight: bold;
}

/* オイルマッサージセクション */
.oil-massage-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.oil-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.oil-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

.oil-massage-content {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.oil-image {
    flex-shrink: 0;
    width: 300px;
}

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

.oil-info {
    flex: 1;
}

.oil-prices {
    margin-bottom: 1.5rem;
}

.price-item.oil-price {
    background: white;
    border: 2px solid #ec407a;
    margin-bottom: 1rem;
    position: relative;
}

.price-item.oil-price .price {
    color: #ec407a;
}

.price-item.slim-course .course-label {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff5722;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.oil-description p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* オイルウェアー情報 */
.wear-notice {
    background:#fff;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.wear-notice p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}





.final-notice {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #4caf50;
    color: white;
    border-radius: 6px;
}

.final-notice p {
    margin: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

/* サービスグリッド */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: #f48fb1;
    margin-bottom: 1rem;
}

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

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.service-note {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.4;
    margin-top: 0.5rem;
}



/* レスポンシブデザイン */
@media (max-width: 768px) {
    .menu-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .menu-image {
        width: 100%;
    }
    
    .menu-prices {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .oil-massage-content {
        flex-direction: column;
    }
    
    .oil-image {
        width: 100%;
    }
    
    .additional-times {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .menu-item {
        padding: 1.5rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .price-item {
        min-width: 100px;
    }
}
