/* business.css - ビジネスサイト専用スタイル */

/* Hero section - business専用スタイル（medical.htmlとcorporate.html用） */
.business-hero {
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

.business-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
}

.business-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
}

.business-hero h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.business-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Target sections */
.targets {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}

.target-card {
    width: 48%;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.target-card:hover {
    transform: translateY(-5px);
}

.medical {
    border-top: 5px solid var(--medical-color, #a7c5eb);
}

.corporate {
    border-top: 5px solid var(--corporate-color, #f9ebc8);
}

.target-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.medical .target-image {
    background-image: url('../images/medical-bg.jpg');
}

.corporate .target-image {
    background-image: url('../images/corporate-bg.jpg');
}

.target-content {
    padding: 25px;
}

.target-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.target-content p {
    margin-bottom: 20px;
}

/* Benefits section */
.benefits {
    background-color: var(--light-bg);
    padding: 50px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Contact section */
.contact {
    padding: 50px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Page specific styles */
.page-header {
    background-color: var(--secondary-color);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.user-portal-link {
    background-color: var(--accent-color);
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--dark-text);
    font-weight: 600;
}

.user-portal-link:hover {
    background-color: #e9a883;
    color: var(--dark-text);
}

/* Responsive */
@media (max-width: 768px) {
    .targets {
        flex-direction: column;
    }
    
    .target-card {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}