/* トップページ専用スタイル */

/* ========================================
   サービス一覧セクション
======================================== */
.services-section {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    border: 3px solid var(--primary-color);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f57c00 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #45a049 100%);
    color: white;
    border-radius: 50%;
    font-size: 48px;
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--text-color);
}

.service-description {
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-tag {
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.feature-tag i {
    color: var(--primary-color);
    font-size: 12px;
}

.service-price {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 20px;
}

.price-label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-amount {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.price-note {
    display: block;
    font-size: 14px;
    color: var(--text-light);
}

.service-notice {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color);
}

.service-notice i {
    color: var(--secondary-color);
    font-size: 16px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* サービスカード内のボタンスタイル */
.service-card .btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.service-card .btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.service-card .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.service-card .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

/* ========================================
   About（ホーミーとは）セクション
======================================== */
.about-section {
    background: var(--bg-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 12px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.about-feature-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
    align-items: start;
    transition: var(--transition);
}

.about-feature-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.about-feature-card .feature-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.about-feature-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-color);
}

.about-feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   サービスエリアセクション
======================================== */
.area-section {
    background: var(--bg-light);
}

.area-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.area-info h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--text-color);
}

.area-list {
    list-style: none;
    margin-bottom: 30px;
}

.area-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: var(--text-color);
}

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

.area-list i {
    color: var(--primary-color);
    font-size: 20px;
}

.area-notice {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    gap: 15px;
    box-shadow: var(--shadow);
}

.area-notice i {
    color: var(--primary-color);
    font-size: 24px;
    flex-shrink: 0;
}

.area-notice p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   レスポンシブデザイン（トップページ専用）
======================================== */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .area-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-features {
        gap: 15px;
    }
    
    .about-feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .about-feature-card .feature-icon {
        margin: 0 auto;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
    
    .service-card h3 {
        font-size: 24px;
    }
    
    .price-amount {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .service-badge {
        top: 10px;
        right: 10px;
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .about-text h3 {
        font-size: 24px;
    }
    
    .area-notice {
        flex-direction: column;
        text-align: center;
    }
}
