/* ================================================
   Webサイト保守サービスページ 固有スタイル
   共通クラス(hero-title, section-title, cta-*等)は services.css を併用する。
   ================================================ */

.service-detail-lead {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
}

.service-target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-target-item {
    padding: 1.5rem;
    border-radius: 16px;
}

.service-scope-list {
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    .service-target-grid {
        grid-template-columns: 1fr;
    }
}
