.main_contents {
    max-width: 1054px;
    width: 90%;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px 6%;
}

.sec_ttl_wrap {
    display: flex;
    align-items: center;
    gap: 0 20px;
    margin-bottom: 15px;
}

.sec_ttl_wrap .icon {
    max-width: 32px;
}

.sec_ttl {
    font-weight: 400;
    font-size: clamp(17px, 2vw, 20px);
}

.sec_txt {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.8;
    margin-bottom: 20px;
}

.sec01 .image {
    max-width: 450px;
    width: 90%;
    margin: 0 auto;
}

.sec03 {
    grid-column: 1/3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 6%;
}

.sec04 {
    grid-column: 1/3;
}

.sec04 .image .cap {
    right: 3%;
    bottom: 5%;
}

.sec05 .image .cap {
    bottom: 0;
    right: 0;
}

.sec06 .box02 {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.sec06 .box02-01 {
    width: 55%;
}

.sec06 .box02-02 {
    width: 40%;
}


/* SPのみ */
@media screen and (max-width:730px) {
    .main_contents {
        display: flex;
        flex-direction: column;
        margin-top: 30px;
        gap: 60px 0;
    }

    .sec03 {
        display: block;
    }
    
    .sec04 .image {
        margin: 0 -5.5%;
    }

    .sec04 .image .cap {
        bottom: -2%;
    }

    .sec06 .box02 .sec_ttl_wrap {
        gap: 0 15px;
    }

    .sec06 .box02-01 {
        width: 60%;
    }

    .sec06 .box02-02 {
        width: 36%;
    }
}