/* ヒーローセクション */
.works-hero {
    background: linear-gradient(to bottom, #ffffff, #f8f9fc);
    padding: 140px 0 100px;
    text-align: center;
}

.works-hero h1 {
    font-family: var(--font-en);
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.works-hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary);
    opacity: 0.6;
}

.works-intro {
    max-width: 800px;
    margin: 0 auto;
}

.works-intro p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.works-intro p:last-child {
    margin-bottom: 0;
}

/* 実績コンテンツ */
.works-content {
    padding: 80px 0;
    background-color: var(--white);
}

.works-content .container {
    max-width: 900px;
}

.works-category {
    margin-bottom: 4rem;
    padding: 40px;
    background: var(--bg-lighter);
    border-radius: 12px;
    box-shadow: 0 5px 15px var(--shadow);
}

.works-category:last-child {
    margin-bottom: 0;
}

.works-category h2 {
    font-family: var(--font-en);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    padding-bottom: 15px;
}

.works-category h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(26, 79, 156, 0.1);
}

.works-category h2 i {
    font-size: 1.6rem;
    color: var(--primary);
    width: 1.6rem;
    text-align: center;
}

.works-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.works-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(26, 79, 156, 0.1);
}

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

.works-list li i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 5px;
    width: 1.1rem;
    text-align: center;
}

.works-list li span {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    max-width: 100%;
}

/* お問い合わせセクション */
.works-contact {
    padding: 80px 0;
    background-color: var(--bg-lighter);
    text-align: center;
}

.contact-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.contact-message br {
    content: "";
    display: block;
    margin-bottom: 1rem;
}

.contact-button {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .works-hero {
        padding: 120px 0 80px;
    }

    .works-hero h1 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .works-intro p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .works-content {
        padding: 60px 0;
    }

    .works-category {
        padding: 30px 25px;
        margin-bottom: 3rem;
    }

    .works-category h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
        padding-bottom: 12px;
    }

    .works-category h2 i {
        font-size: 1.4rem;
        width: 1.4rem;
    }

    .works-list li {
        padding: 12px 0;
    }

    .works-list li i {
        font-size: 1rem;
        width: 1rem;
    }

    .works-list li span {
        font-size: 1rem;
        line-height: 1.6;
    }

    .contact-message {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .contact-message br {
        margin-bottom: 0.8rem;
    }
} 