@charset "UTF-8";

/* ------------------------------- 
ボランティア
------------------------------- */
.bg-lgly {
    padding: 60px 0;
}

.page-lead {
    margin: 0 0 34px;
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 500;
    text-align: center;
    color: var(--c-green);
}

.page-lead+.text-center {
    margin-bottom: 34px;
}

.volunteer-grid {
    gap: 28px 0;
    margin-top: 60px;
}

.volunteer-item {
    background: #fff;
    border-radius: 10px;
    border: solid 1px var(--c-green);
}

.volunteer-title {
    font-size: clamp(20px, 5vw, 24px);
    font-weight: 500;
    margin: 0;
    padding: 20px 44px;
    position: relative;
    border-bottom: dotted 1px var(--c-green);
}

.volunteer-title::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 24px;
    width: 8px;
    height: 32px;
    border-radius: 8px;
    background: var(--grd);
}

.volunteer-content {
    gap: 20px 30px;
    padding: 20px;
}

.volunteer-content .img .btn-green {
    width: 100%;
    text-align: center;
    margin-top: 25px;
}

.volunteer-content .list {
    align-items: baseline;
    gap: 15px;
    margin: 0;
}

.volunteer-content .list .label {
    width: 91px;
    display: block;
    border-radius: 5px;
    color: #fff;
    background: var(--c-green);
    font-weight: 500;
    text-align: center;
}

.volunteer-content .list .com {
    width: 100%;
    margin: 0 0 10px;
}

.volunteer-content .list .com ul.list-style-indent {
    list-style: none;
    padding: 0;
}

.volunteer-content .list .com ul.list-style-indent li {
    position: relative;
    padding-left: 20px;
}

.volunteer-content .list .com ul.list-style-indent li::before {
    content: "●";
    color: rgba(71, 159, 137, 0.4);
    position: absolute;
    left: 0;
    top: 0;
}

@media (min-width: 1024px) {
    .bg-lgly {
        padding: 80px 0;
    }

    .volunteer-grid {
        margin-top: 100px;
    }

    .volunteer-content .txt {
        width: 60%;
    }

    .volunteer-content .img {
        width: calc(40% - 30px);
    }

    .volunteer-title {
        padding: 32px 64px;
    }

    .volunteer-title::before {
        left: 40px;
        top: 34px;
        width: 8px;
        height: 42px;
    }

    .volunteer-content {
        padding: 38px 48px;
    }

    .volunteer-content .list {
        gap: 24px;
    }

    .volunteer-content .list .com {
        width: calc(100% - 91px - 24px);
        margin: 0;
    }
}