/*
--------------------------------
タイトル
--------------------------------
*/
.business_title-box {
    position: relative;
    margin: 0 auto 40px;
    align-self: center;
    width: fit-content;
}
.business_title-box .logo-imgL.lp-pc {
    left: -3rem;
}
.business_title-box .logo-imgL.lp-sp {
    left: -2.5rem;
}
.business_title-box .logo-imgR.lp-pc {
    right: -3rem;
}
.business_title-box .logo-imgR.lp-sp {
    right: -2.5rem;
}
.business_title {
    color: #546C35;
    font-size: 28px;
    font-weight: 700;
    line-height: 160%; /* 44.8px */
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}
.business_title__span {
    font-size: 12px;
}

/*
--------------------------------
メインビジュアル
--------------------------------
*/
.business_mv {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #546C35;
    font-size: 40px;
    font-weight: 700;
    line-height: 160%; /* 64px */
    display: flex;
    align-items: center;
    justify-content: center;
}
.business_breadcrumbs {
    width: 100%;
    background-color: #F6F6F6;
    padding: 12px 0;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    margin-bottom: 30px;
}
.business_breadcrumbs ul {
    display: flex;
    gap: 8px;
    padding: 0 10px;
    margin: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.business_breadcrumbs ul li {
    list-style: none;
    font-size: 12px;
    font-weight: 500;
    line-height: 160%; /* 19.2px */
}
.business_breadcrumbs ul li a {
    color: #4C7D97;
}

/*
--------------------------------
施工事例
--------------------------------
*/
.example_article_container {
    margin: 70px 0 0;
}
.example_article_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
    justify-content: left;
}
.example_article_item {
    width: calc(25% - 20px);
}
.example_article_item__image {
    aspect-ratio: 220/147;
    object-fit: cover;
    margin-bottom: 12px;
}
.example_article_item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.example_article_item__date {
    font-size: 16px;
    font-weight: 400;
    line-height: 160%; /* 25.6px */
    margin-bottom: 4px;
}
.example_article_item__title {
    font-size: 19.2px;
    font-weight: 700;
    line-height: 160%; /* 30.72px */
    line-clamp: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.example_article_more {
    display: flex;
    justify-content: center;
    border: 1px solid #546C35;
    background: #FFF;
    padding: 6px 56px;
    width: fit-content;
    margin: 0 auto 70px;
}
.example_article_more a {
    color: #546C35;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 160%; /* 38.4px */
}
@media (max-width: 800px) {
    .example_article_item {
        width: calc(50% - 20px);
    }
}
@media (max-width: 600px) {
    .example_article_container {
        margin-top: 50px;
    }
    .example_article_more {
        margin-bottom: 50px;
    }
}


