section {
    max-width: 800px;
    width: 90%;
    margin: 0 auto 80px;
}

.sec_top {
    display: flex;
    justify-content: space-between;
}

.sec_top>div {
    width: calc(50% - 10px);
}

.sec_ttl {
    font-weight: bold;
    font-size: clamp(20px,2vw,25px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 15px;
    margin-bottom: 20px;
}

.sec_ttl .ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
    flex-shrink: 0;
    margin-right: 40px;
}

.sec_ttl::before {
    content: '';
    background-repeat: no-repeat;
    background-position: center;
}

.sec_lead {
    font-size: clamp(13px,1.4vw,16px);
    line-height: 1.6;
}

.sec_txt {
    font-size: clamp(13px,1.4vw,16px);
    line-height: 1.6;
    margin-top: 10px;
}

section .image_wrap {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

section .image_wrap .image {
    width: calc(95%/3);
}

.list_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.list_wrap li {
    width: calc(50% - 10px);
    background-color: #dfe8c8;
    padding: 13px 15px 35px;
    position: relative;
}

.list_ttl {
    font-size: clamp(14px,1.4vw,15px);
    border-bottom: 0.5px solid #000;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.list_txt {
    font-size: clamp(12px,1.2vw,13px);
}

.list_wrap li .btn {
    max-width: 156px;
    position: absolute;
    bottom: 0;
    right: 0;
}



.sec01 {
    margin-top: 50px;
}

.sec01 .sec_ttl {
    color: #ce7281;
}

.sec01 .sec_ttl .icon {
    max-width: 50px;
    width: 24%;
}


.sec02 .sec_ttl {
    color: #84b920;
}

.sec02 .sec_ttl .icon {
    max-width: 60px;
    width: 28%;
}

.sec03 .sec_ttl {
    color: #046eae;
}

.sec03 .sec_ttl .icon {
    max-width: 50px;
    width: 20%;
}

.sec03 .list_wrap li {
    width: 100%;
    padding: 15px 15px 20px;
}


.sec03 .list_wrap li .txt_wrap {
    display: flex;
    justify-content: space-between;
}


.sec03 .list_wrap li .txt_wrap .list_txt {
    width: 48%;
}


/* SP調整 */
@media screen and (max-width:730px) {
    .sec_top {
        flex-direction: column;
    }

    .sec_top>div {
        width: 100%;
    }

    .sec_top .image {
        width: 70%;
        margin: 20px auto 0;
        order: 1;
    }

    .sec_lead {
        text-align: center;
    }

    .sec_txt {
        text-align: center;
    }

    .sec_ttl .ttl {
        margin-right: 0;
    }

    .sec_ttl::before,
    .sec_ttl::after {
        content: '';
        width: 100%;
        height:1px;
    }

    .list_wrap li {
        width: 100%;
    }

    .sec01 .sec_ttl::before,
    .sec01 .sec_ttl::after {
        background-color: #ce7281;
    }


    .sec02 .sec_ttl::before,
    .sec02 .sec_ttl::after {
        background-color: #84b920;
    }

    .sec03 .sec_ttl::before,
    .sec03 .sec_ttl::after {
        background-color: #046eae;
    }

    .sec03 .list_wrap li .txt_wrap {
        flex-direction: column;
        gap: 20px 0;
    }

    .sec03 .list_wrap li .txt_wrap .list_txt {
        width: 100%;
    }
}