.about_wrap {
    margin: 60px 0 50px;
}

.about_wrap .logo {
    max-width: 180px;
    width: 35%;
    margin: 0 auto;
}

.about_lead {
    text-align: center;
    font-size: clamp(20px,2vw,24px);
    font-weight: 500;
    margin: 15px 0 15px;
}

.about_txt {
    text-align: center;
    font-size: clamp(14px,1.5vw,16px);
    line-height: 1.7;
}

/* SP調整 */
@media screen and (max-width:730px) {
    .about_wrap {
        margin: 50px 0 40px;
    }
}







.wrap_ttl {
    text-align: center;
    font-weight: bold;
    font-size: clamp(25px,3vw,30px);
}

.company_wrap {
    background-color: #dfe8c8;
    padding: 40px 0;
}

.company_wrap .flex_wrap {
    max-width: 1054px;
    width: 90%;
    margin: 30px auto 0;
    display: flex;
    justify-content: center;
    gap: 0 30px;
}

.company_wrap .flex_wrap .txt_wrap {
    flex-shrink: 0;
}

.company_wrap .com_lead {
    font-size: clamp(17px,1.8vw,19px);
}

.company_wrap .com_txt {
    font-size: clamp(14px,1.5vw,16px);
    line-height: 1.7;
    margin-top: 20px;
}

.company_wrap .map {
    width: 400px;
    height: 350px;
}

.company_wrap .map iframe {
    width: 100%;
    height: 100%;
}

.company_wrap .btn {
    max-width: 300px;
    width: 30%;
    margin: 50px auto 0;
}

/* SP調整 */
@media screen and (max-width:730px) {

    .company_wrap {
        padding: 25px 0 30px;
    }

    .company_wrap .flex_wrap {
        flex-direction: column;
        gap: 30px 0;
        margin-top: 20px;
    }

    .company_wrap .com_lead,
    .company_wrap .com_txt {
        text-align: center;
    }

    .company_wrap .map {
        width: 100%;
        height: 90vw;
    }

    .company_wrap .btn {
        width: 60%;
        margin-top: 30px;
    }
}








.business_wrap {
    margin: 50px 0 80px;
}

.business_wrap .list_wrap {
    max-width: 1054px;
    width: 90%;
    margin: 30px auto 0;
    display: flex;
    justify-content: space-between;
}

.business_wrap .list_wrap li {
    width: calc(95%/3);
}

.business_wrap .list_wrap li .list_ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 10px;
    margin-bottom: 5px;
    font-size: clamp(16px,2vw,20px);
    font-weight: bold;
}

.business_wrap .list_wrap li .list_ttl::before {
    margin-top: 5px;
}

.business_wrap .list_wrap li .list_lead {
    font-size: clamp(12px,1.3vw,14px);
    margin: 5px 0 5px;
}

.business_wrap .list_wrap li .list_txt {
    font-size: clamp(12px,1.3vw,14px);
    margin-top: 5px;
}

.business_wrap .list_wrap li.list01 .list_ttl {
    color: #ce7281;
}

.business_wrap .list_wrap li.list01 .list_ttl::before {
    content: url(../images/index/busi_icon01.svg);
    width: 11%;
}

.business_wrap .list_wrap li.list02 .list_ttl {
    color: #84b920;
}

.business_wrap .list_wrap li.list02 .list_ttl::before {
    content: url(../images/index/busi_icon02.svg);
    width: 14%;
}

.business_wrap .list_wrap li.list03 .list_ttl {
    color: #046eae;
}

.business_wrap .list_wrap li.list03 .list_ttl::before {
    content: url(../images/index/busi_icon03.svg);
    width: 11%;
}

.business_wrap .btn {
    max-width: 300px;
    width: 30%;
    margin: 50px auto 0;
}


/* SP調整 */
@media screen and (max-width:730px) {
    .business_wrap {
        margin: 40px 0 50px;
    }

    .business_wrap .list_wrap {
        margin-top: 30px;
        flex-direction: column;
        gap: 25px 0;
    }

    .business_wrap .list_wrap li {
        width: 100%;
        display: grid;
        grid-template-columns: 40% 1fr;
        gap: 0 10px;
    }

    .business_wrap .list_wrap li .list_ttl {
        grid-column: 1/3;
        grid-row: 1;
        margin-bottom: 8px;
    }

    .business_wrap .list_wrap li .list_ttl::before {
        margin-top: 0;
    }

    .business_wrap .list_wrap li.list01 .list_ttl::before {
        width: 8%;
    }

    .business_wrap .list_wrap li.list02 .list_ttl::before {
        width: 11%;
    }

    .business_wrap .list_wrap li.list03 .list_ttl::before {
        width: 8%;
        margin-top: 5px;
    }

    .business_wrap .list_wrap li .list_lead {
        grid-column: 2/3;
        margin-top: 0;
    }

    .business_wrap .list_wrap li .list_txt {
        margin-top: 0;
    }

    .business_wrap .list_wrap li .image {
        grid-column: 1/2;
        grid-row: 2/5;
    }

    .business_wrap .btn {
        width: 60%;
        margin-top: 40px;
    }
}