@charset "utf-8";
/*
-------------------------
サービス　CSS


-------------------------*/


/*
service item
---------------------------------*/
/*.serviceFlexWrap{
    padding-bottom: 80px;
}*/
.serviceFlex {
    display: flex;
    justify-content: space-evenly;
}

.serviceFlex.right {
    flex-direction: row-reverse;
}

.serviceFlex.left {
    flex-direction: row;
}

.serviceFlex .textBlock {
    width: 50%;
}

.serviceFlex.right .textBlock {
   /* margin-left: 60px;*/
}

.serviceFlex.left .textBlock {
    margin-right: 60px;
}

.serviceFlex .imgBlock {
    /* max-width: 440px; */
    width: 40%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.serviceFlex .imgBlock img {
    border-radius: 0px;
}

.serviceFlex .titeItem {
    display: flex;
    align-items: center;
    flex-direction: row;
    /*border-bottom: 2px dotted var(--color-main);*/
    font-size: 26px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: bold;
}

.serviceFlex .titeItem .number {
    background: var(--color-main);
    color: #fff;
    border-radius: 100px;
    padding: 10px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
    font-size: 40px;
}

.serviceFlex .titeItem .text {
    color: var(--color-main);
    font-weight: bold;
    flex: 1;
}

.serviceFlex .textWrap p {
    font-size: 16px;
    line-height: 2;
}

@media screen and (max-width: 768px) {

    /* .serviceFlexWrap{
        padding-bottom: 50px;
    }*/
    .serviceFlex {
        display: block;
    }

    .serviceFlex .textBlock {
        margin-bottom: 40px;
    }

    .serviceFlex.right .textBlock {
        margin-left: 0;
    }

    .serviceFlex.left .textBlock {
        margin-right: 0;
    }

    .serviceFlex .imgBlock {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }

    .serviceFlex .textBlock {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }
}

@media screen and (max-width: 640px) {
    .serviceFlex .titeItem {
        font-size: 22px;
    }

    .serviceFlex .textWrap p {
        font-size: 14px;
    }
}




/*
リスト
---------------------------------*/
.serviceFlex .serviceFlexList .listItem {
    list-style: none;
}

.serviceFlex .serviceFlexList .listItem {
    display: flex;
    margin-bottom: 15px;
    background: var(--color-main);
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
}

.serviceFlex .serviceFlexList .listItem:before {
    content: '';
    background: url(../img/service/list_icon.svg) no-repeat;
    background-size: contain;
    background-position: top center;
    width: 24px;
    height: auto;
    margin-right: 10px;
}

.serviceFlex .serviceFlexList .listItem .text {
    flex: 1;
    display: block;
    line-height: 1.7;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}


.serviceFlex .serviceFlexList .listItem.wrapItem {
    flex-wrap: wrap;
}

.serviceFlex .listInnerFlex {
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.serviceFlex .listInnerFlex .listInnerFlex_item {
    width: 48%;
    border-radius: 5px;
    background: #2D2A28;
    color: #fff;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
    padding: 15px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
}

@media screen and (max-width: 900px) {
    .serviceFlex .listInnerFlex {
        display: block;
    }

    .serviceFlex .listInnerFlex .listInnerFlex_item {
        width: 100%;
        margin-top: 5px;
    }
}


@media screen and (max-width: 768px) {
    .serviceFlex .listInnerFlex {
        display: flex;
    }

    .serviceFlex .listInnerFlex .listInnerFlex_item {
        width: 48%;
    }
}

@media screen and (max-width: 640px) {
    .serviceFlex .serviceFlexList .listItem .text {
        font-size: 14px;
    }

    .serviceFlex .listInnerFlex {
        display: block;
    }

    .serviceFlex .listInnerFlex .listInnerFlex_item {
        width: 100%;
    }
}




/*
配信イメージ
---------------------------------*/
.sampleImgwrap {
    padding: 60px;
    border: 2px solid #ddd;
    width: 94%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}

.sampleImgwrap .pc_img {
    display: block;
}

.sampleImgwrap .sp_img {
    display: none;
}

@media screen and (max-width: 768px) {
    .sampleImgwrap .pc_img {
        display: none;
    }

    .sampleImgwrap .sp_img {
        display: block;
    }
}
