/* コンサルティング事業ページ固有スタイル */

/* メインビジュアル アニメーション */
@keyframes consulting-bg-animation {
    0%, 100% { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/img/consulting/160463223.jpg'); }
    20% { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/img/consulting/178245471.jpg'); }
    40% { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/img/consulting/281011184.jpg'); }
    60% { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/img/consulting/281463161.jpg'); }
    80% { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/img/consulting/40145915969.jpg'); }
}

.hero.consulting {
    /* 共通スタイルは main.css に依存 */
    animation: consulting-bg-animation 20s infinite; /* 20秒で1周、無限ループ */
}

/* 工事施工計画アウトソーシングセクション */
.outsourcing-section {
    background-color: var(--light-gray); /* 背景色を薄いグレーに */
    /* padding は .section 共通スタイルを使用 */
}

.outsourcing-section .section__inner {
    max-width: 1280px; /* 読みやすさのために最大幅を制限 */
    /* margin, padding は .section__inner 共通スタイルを使用 */
}

/* タイトルスタイルはHTMLの .section__title クラスで適用済み */

.outsourcing-section p {
    margin-bottom: 1.5rem; /* 段落間のスペース */
    line-height: 1.8; /* 行間を少し広げる */
    text-align: justify; /* テキストを両端揃えに */
}

.outsourcing-section p:last-child {
    margin-bottom: 0; /* 最後の段落の下マージンを削除 */
}