/* サービス詳細ページ共通スタイル */

.service-detail {
    padding: 3rem 0;
}

.service-hero {
    background: linear-gradient(135deg, #4285F4 0%, #5a95f5 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.service-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-hero p {
    font-size: 1.2rem;
}

.service-section {
    margin-bottom: 4rem;
}

.service-section h2 {
    color: #4285F4;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #4285F4;
}

.service-section h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.service-section p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tech-category h4 {
    color: #4285F4;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: bold;
}

.tech-category ul {
    list-style: none;
    padding: 0;
}

.tech-category li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #e0e0e0;
}

.tech-category li:last-child {
    border-bottom: none;
}

.service-list {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.service-list ul {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.8rem 0;
    color: #333;
    font-size: 1.1rem;
    border-bottom: 1px solid #ddd;
    position: relative;
    padding-left: 1.5rem;
}

.service-list li:before {
    content: "✓";
    color: #4285F4;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.cta-section {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 4rem;
}

.cta-section h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}
