.sec_wrap {
    display: flex;
    flex-direction: column;
    gap: 80px 0;
    margin-top: 50px;
}

.page_sec_ttl {
    margin-bottom: 50px;
}

.sec_lead {
    font-size: clamp(14px,1.6vw,18px);
    font-weight: 500;
    line-height: 1.6;
}

.sec_container {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
}

/* SP調整 */
@media screen and (max-width:730px) {

    .page_sec_ttl {
        margin-bottom: 30px;
    }

    .sec_wrap {
        margin-top: 30px;
        gap: 60px 0;
    }

}


.sec01 .sec_container {
    display: flex;
    flex-direction: column;
}

.sec01 .box {
    width: 48%;
}

.sec01 .box_ttl {
    position: relative;
    padding-bottom: 10px;
    font-weight: 500;
    font-size: clamp(15px,1.5vw,18px);
}

.sec01 .box_ttl span {
    display: inline-block;
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

.sec01 .box_ttl::before {
    position: absolute;
    bottom: 0;
    content: '';
    width: 100%;
    height: 20px;
    z-index: 1;
}

.sec01 .list_wrap {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sec01 .list_wrap li {
    font-size: clamp(12px, 1.4vw, 15px);
    display: flex;
    gap: 0 3px;
}

.sec01 .list_wrap li::before {
    content: '\025bd';
}



.sec01 .box01 .box_ttl::before {
    background-color: #9dacd2;
}

.sec01 .box01 .box_ttl::after {
    position: absolute;
    content: '';
    background-image: url(../images/system/sec01_box_ttl_deco01.png);
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    width: 31%;
    max-height: 120px;
    height: 12vw;
    translate: 0 100%;
    bottom: 0;
    left: 0;
}

.sec01 .box01 .list_wrap {
    width: 68%;
    margin-left: auto;
}

.sec01 .box02 {
    margin-left: auto;
}



.sec01 .box02 .box_ttl::before {
    background-color: #f7d568;
}
.sec01 .box02 .box_ttl::after {
    position: absolute;
    content: '';
    background-image: url(../images/system/sec01_box_ttl_deco02.png);
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    width: 21%;
    max-height: 95px;
    height: 10vw;
    translate: 0 0;
    bottom: 20px;
    right: 0;
}


.sec01 .box03 .box_ttl::before {
    background-color: #89c370;
}
.sec01 .box03 .box_ttl::after {
    position: absolute;
    content: '';
    background-image: url(../images/system/sec01_box_ttl_deco03.png);
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    width: 25%;
    max-height: 110px;
    height: 11vw;
    translate: 0 0;
    bottom: 20px;
    right: 0;
}

.sec01 .box04 {
    margin-left: auto;
}

.sec01 .box04 .box_ttl::before {
    background-color: #8cbec3;
}

.sec01 .box04 .box_ttl::after {
    position: absolute;
    content: '';
    background-image: url(../images/system/sec01_box_ttl_deco04.png);
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    width: 25%;
    max-height: 100px;
    height: 10vw;
    translate: 0 0;
    bottom: 17px;
    right: 0;
}


.sec02 .sec_container {
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px 0;
}

.sec02 .box {
    width: 49%;
}

.sec02 .box_ttl {
    color: #2d6a61;
    border: 1px solid #2d6a61;
    padding: 10px 15px;
    font-size: clamp(16px,2vw,20px);
    font-weight: 500;
}

.sec02 .box01 {
    width: 100%;
}

.sec02 .box01 .box_inner {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 20px;
    margin-top: 20px;
}

.sec02 .box01 .box_inner .image {
    grid-column: 1;
    grid-row: 1/3;
    align-self: flex-start;
}

.sec02 .box01 .box_inner .box_txt {
    display: flex;
    gap: 0 3px;
    font-size: clamp(12px, 1.4vw, 15px);
    line-height: 1.7;
}

.sec02 .box01 .box_inner .box_txt::before {
    content: '\025bd';
}




.sec03 .box_wrap {
    display: flex;
    flex-direction: column;
    gap: 40px 0;
}

.sec03 .box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.sec03 .box_ttl {
    min-height: 50px;
    color: #009e41;
    border-left: 5px solid #009e41;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: clamp(16px,2vw,25px);
    padding: 0 20px;
    width: 33%;
}

.sec03 .list_wrap {
    border-left: 1px solid var(--pageBlack);
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 5px 0;
    width: 67%;
    font-size: clamp(12px, 1.4vw, 16px);
}

.sec03 .list_wrap li {
    display: flex;
}

.sec03 .list_wrap li::before {
    content: '・';
}

.sec03 .list_wrap li.unique {
    display: block;
}

.sec03 .list_wrap li.unique::before {
    content: '';
}

.sec03 .list_wrap li.unique .unique_txt {
    color: #fff;
    background-color: #009e41;
    display: inline-block;
    padding: 3px 10px 5px;
    font-size: clamp(13px,1.4vw,16px);
    margin: 20px 0 5px;
}

.sec03 .list_wrap li.unique ul {
    display: flex;
    flex-direction: column;
    gap: 5px 0;
}


.sec04 .sec_container {
    max-width: 800px;
}

.sec04 .sec_lead {
    color: #009e41;
    margin-bottom: 10px;
}

.sec04 .sec_txt {
    display: flex;
    gap: 0 20px;
    font-size: clamp(12px, 1.4vw, 15px);
    line-height: 1.8;
}

.sec04 .image {
    width: 40%;
    flex-shrink: 0;
    align-self: flex-start;
}

.sec05 .sec_lead {
    text-align: center;
}

.sec05 .contents {
    margin-top: 50px;
}

.sec05 .con_ttl {
    font-weight: 500;
    text-align: center;
    font-size: clamp(16px,2vw,20px);
    color: #009e41;
    border-bottom: 1px solid #009e41;
    padding-bottom: 10px;
    margin-bottom: 40px;
    position: relative;
}

.sec05 .con_ttl::after {
    content: '';
    width: 20px;
    height: 10px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    position: absolute;
    translate: -50% 100%;
    left: 50%;
    bottom: 0;
    background-color: #009e41;
}

.sec05 .con_ttl .note {
    position: absolute;
    right: 0;
    bottom: 10px;
}

.sec05 .box_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.sec05 .box {
    width: calc(50% - 30px/2);
}

.sec05 .box_ttl {
    padding: 5px 0;
    text-align: center;
    font-size: clamp(15px,1.5vw,16px);
}

.sec05 .list_wrap {
    display: flex;
    flex-direction: column;
    gap: 8px 0;
    margin-top: 10px;
    font-size: clamp(13px,1.4vw,16px);
}

.sec05 .list_wrap li {
    display: flex;
    justify-content: space-between;
    gap: 0 30px;
    background-color: #fff;
    background-image: radial-gradient(#000000 15%, transparent 15%);
    background-size: 10px 10px;
    background-repeat: repeat-x;
    background-position: 50%;
}

.sec05 .list_wrap li .name {
    border-left: 5px solid;
    padding: 0 5px;
}

.sec05 .list_wrap li .txt {
    padding-left: 5px;
    flex-shrink: 0;
}

.sec05 .list_wrap li p {
    background-color: #fff;
}


.sec05 .box01 .box_ttl {
    background-color: #b2e2c6;
}

.sec05 .box01 .list_wrap li .name {
    border-color: #009e41;
}


.sec05 .box02 .box_ttl {
    background-color: #b6c1dd;
}

.sec05 .box02 .list_wrap li .name {
    border-color: #0071b9;
}


.sec05 .box03 .box_ttl {
    background-color: #f7d568;
}

.sec05 .box03 .list_wrap li .name {
    border-color: #f8ad3b;
}

.sec05 .box04 .box_ttl {
    background-color: #c0d2d0;
}

.sec05 .box04 .list_wrap li .name {
    border-color: #00a69a;
}



.sec06 .sec_container {
    max-width: 950px;
    display: flex;
    justify-content: space-between;
}

.sec06 .sec_lead {
    width: 48%;
}

.sec06 .image_wrap {
    width: 50%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sec06 .image {
    width: 48%;
}

.sec06 .image_wrap .txt {
    font-size: clamp(13px,1.4vw,16px);
    margin-top: 5px;
}



/* SP調整 */
@media screen and (max-width:730px) {

    .sec01 .sec_container {
        gap: 60px 0;
    }

    .sec01 .box04 {
        margin-top: -10px;
    }

    .sec01 .box {
        width: 100%;
    }

    .sec01 .box02 {
        margin-top: -20px;
    }

    .sec02 .sec_container {
        gap: 20px 0;
    }

    .sec02 .box {
        width: 100%;
    }

    .sec02 .box_ttl {
        padding: 8px 10px;
    }

    .sec02 .box01 .box_inner {
        display: flex;
        flex-direction: column;
        gap: 20px 0;
    }

    .sec02 .box01 .box_inner .image {
        width: 70%;
        margin: 0 auto;
    }

    .sec02 .box01 .box_inner .box_txt {
        width: 100%;
    }


    .sec03 .box_wrap {
        gap: 20px 0;
    }

    .sec03 .box {
        flex-direction: column;
        gap: 10px 0;
    }

    .sec03 .box_ttl {
        width: 100%;
        min-height: auto;
        padding: 3px 0 3px 10px;
    }

    .sec03 .list_wrap {
        width: 100%;
        border-left: none;
        border-top: 1px solid var(--pageBlack);
        padding: 10px 0 0;
    }


    .sec04 .sec_txt {
        display: block;
    }

    .sec04 .image {
        float: right;
        margin: 5px 0 5px 10px;
        width: 50%;
    }


    .sec05 .contents {
        margin-top: 40px;
    }

    .sec05 .con_ttl {
        margin-bottom: 25px;
    }

    .sec05 .con_ttl::after {
        width: 18px;
        height: 8px;
    }

    .sec05 .con_ttl .note {
        position: static;
    }
    
    .sec05 .box {
        width: 100%;
    }

    .sec05 .list_wrap li .txt {
        padding-left: 8px;
    }

    .sec06 .sec_container {
        flex-direction: column;
        gap: 20px 0;
    }

    .sec06 .sec_container .sec_lead {
        width: 100%;
        text-align: center;
    }

    .sec06 .image_wrap {
        width: 100%;
    }
}