@charset "utf-8";
/* CSS Document */

.sec-page .contents{
    max-width: 1080px;
}

/* sec-service*/

.service_list .item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 45px;
}

.service_list .item figure{
    position: relative;
    width: 46%;
    padding: 0 10px 10px 0;
    order: 1;
    z-index: 10;
}

.service_list .item figure:before{
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background-color: rgba(66, 197, 199, 0.3);
    z-index: -1;
}

.service_list .item .text_area{
    width: 51%;
    order: 2;
}

.service_list .item .text_area .hd03-03{
    text-align: left;
    margin-top: 0;
}

.service_list .item .text_area p{
    text-align: left;
    margin-top: 20px;
    line-height: 1.5;
}

.service_list .item:nth-child(2n) figure{
    order: 2;
}

.service_list .item:nth-child(2n) .text_area{
    order: 1;
}

@media screen and (max-width: 768px) {
    .service_list .item{
        flex-direction: column;
    }

    .service_list .item figure,
    .service_list .item:nth-child(2n) figure{
        width: 100%;
        order: 1;
    }

    .service_list .item .text_area,
    .service_list .item:nth-child(2n) .text_area{
        width: 100%;
        order: 2;
    }

    .service_list .item .text_area .hd03-03{
        margin-top: 15px;
    }

    .service_list .item .text_area p{
        margin-top: 10px;
    }
}

/* sec-tokucho */

.tokucho_list{
    margin-top: 50px;
}

.tokucho_list ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.tokucho_list ul li{
    width: calc(100% / 2 - 15px);
    border: 1px solid #BABABA;
    padding: 30px 40px;
}

.tokucho_list ul li .text_area .hd03-04{
    margin-top: 10px;
}

.tokucho_list ul li .text_area p{
    text-align: left;
    font-size: 1.5rem;
    margin-top: 15px;
    line-height: 1.2;
}

@media screen and (max-width: 768px) {
    .tokucho_list ul li{
        width: 100%;
        padding: 30px 20px;
    }
}