/* 事業内容ページ専用CSS */

.page-header {
    background: linear-gradient(135deg, #E63946 0%, #C8102E 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    opacity: 0.9;
}

.intro {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 2;
    text-align: center;
    color: var(--text-color);
}

.service-detail {
    background-color: white;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-item.reverse {
    grid-template-columns: 1.5fr 1fr;
}

.service-item.reverse .service-image {
    order: 2;
}

.service-item.reverse .service-content {
    order: 1;
}

.service-image {
    width: 100%;
    height: 350px;
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 5px solid var(--accent-color);
}

.service-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-color);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.cta {
    background: linear-gradient(135deg, #E63946 0%, #C8102E 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta .btn {
    background-color: white;
    color: var(--accent-color);
}

.cta .btn:hover {
    background-color: #f0f0f0;
}

.cta .btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.cta .btn-outline:hover {
    background-color: white;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1rem;
        text-align: left;
    }

    .service-item,
    .service-item.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .service-item.reverse .service-image,
    .service-item.reverse .service-content {
        order: 0;
    }

    .service-image {
        height: 250px;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
