@charset "UTF-8";

/* ------------------------------- 
地域への取り組み
------------------------------- */
.page-lead {
    color: var(--c-green);
    text-align: center;
    font-size: clamp(18px, 3.8vw, 32px);
    font-weight: 500;
    margin: 0 0 34px;
}

.title-h4 {
    margin-top: 160px;
}

.community-grid {
    gap: 20px;
    padding: 0 0 80px;
    margin: 0;
    list-style: none;
}

.community-item {
    width: 100%;
    border: solid 1px var(--c-green);
    background: #fff;
    padding: 32px;
    position: relative;
}

.community-item .num {
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    color: var(--c-green);
    width: 82px;
    height: 82px;
    padding: 11px 0 0 17px;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/community/ico-tri.svg) no-repeat;
    background-size: contain;
    background-position: left -1px top -1px;
}

.community-item .title {
    color: var(--c-green);
    font-weight: 500;
    font-size: clamp(16px, 3.8vw, 18px);
    margin: 20px 0 5px;
}

.community-item .com {
    margin: 0;
}


@media (min-width: 768px) {
    .community-grid {
        gap: 40px 20px;
    }

    .community-item {
        width: calc(33.333% - 13.332px);
    }
}

@media (min-width: 1280px) {
    .community-grid {
        gap: 78px;
    }

    .community-item {
        width: calc(33.333% - 52px);
    }
}