@charset "UTF-8";


:root {
    --bp: 768px;
    --bl_wd: 1080px;
    --pbm_primary: #0078D7;
    --text-body:#1A1A1A;
    /* --border: var(--gray300); */
}

html {
    font-size: 10px;
}
.sp{
    display: none;
}
@media screen and (max-width: 768px) {
    html {
        font-size: 8.5px;
    }  
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    font-family: 'Hiragino Sans', sans-serif;
    line-height: 1.7;
    margin: 0;
    font-size: 1.6rem;
    color: var(--text-body);
}
.bl_wd{
    max-width: var(--bl_wd);
    width: 100%;
}
.d_flex{
    display: flex;
}
@media screen and (max-width: 768px) {
    .d_flex{
        flex-flow: column;
        align-items: center;
    }
}
.bl_wrap{
    padding: 100px 6%;
    display: flex;
    flex-flow: column;
    gap: 100px;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 768px) {
    .bl_wrap{
        padding: 50px 6%;
        gap: 50px;
    }
}
/* kv */
.kv_container{
    width: 100%;
    background-image: url("../img/lp/pbm/kv_bg.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.kv_wrap{
    gap: 30px;
    justify-content: center;
    align-items: center;
}
.kv_left{
    max-width: 45%;
    width: 100%;
}
.kv_copy{
    width: 100%;
} 
.kv_copy img{
    width: 100%;
}
.kv_right{
    max-width: 45%;
    width: 100%;
    padding-top: 30px;
}
.kv_img{
    width: 100%;
    vertical-align:top;
}
@media screen and (max-width: 768px) {
    .kv_left{
        max-width: 480px;
    }
    .kv_wrap{
        padding:32px 6% 0;
    }
    .kv_right{
        max-width: 480px;
        padding-top: 0;
    }
}
/* about */
.about_subtitle{
    color: var(--pbm_primary);
    font-weight: 600;
    font-size: 2rem;
}
.about_copy{
    margin: 16px 0;
    font-size: 3.2rem;
    font-weight: 600;
}
.about_text{
    font-size: 1.8rem;
    line-height: 170%;
}
.about_img{
    width: 100%;
    margin-top: 32px;
}
/* feature */
.feature_title{
    font-size: 2.4rem;
    text-align: center;
    font-weight: 600;
}
.feature_list{
    gap: 30px;
    margin-top: 32px;
}
.feature_list_inner{
    width: 100%;
    max-width: calc((100% - 60px) / 3);
}

.feature_list_img{
    width: 100%;
}
.feature_list_title{
    margin: 12px 0 8px;
    font-size: 2rem;
    font-weight: 600;
}
.feature_list_text{
    font-size: 15px;
    line-height: 170%;
}
@media screen and (max-width: 768px) {
    .feature_list_inner{
        width: 100%;
        max-width: 480px;
    }
}

.point_list{
    gap: 30px;
    margin-top: 32px;
}
.point_list_inner{
    width: 100%;
    max-width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 768px) {
    .point_list{
        flex-flow: wrap;
        gap: 16px;
        margin-top: 16px;
        align-items: normal;
    }
    .point_list_inner{
        width: calc(50% - 8px);
        max-width: 480px;
    }
}
/* market */
.market_container{
    background-color: #f8f8f8;
}
.market_title{
    font-size: 3.2rem;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 600;
}
.market_desc{
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 24px;
    line-height: 170%;
}
.market_info_list{
    gap: 10px;
    display: flex;
    flex-flow: column;   
}
.market_info_inner{
    border-radius: 12px;
    background: #FFF;
    gap: 36px;
    align-items: center;
    padding: 16px;
}
.market_info_img{
    width: 420px;
}
.market_info_note small{
    font-size: 1rem;
    color: #767676;
}
.market_info_title{
    font-weight: 600;
}
.market_info_left{
    padding-right: 18px;
}
@media screen and (max-width: 768px) {
    .market_info_img{
        width: 100%;
        max-width: 480px;
    }
    .market_info_inner{
        gap: 16px;
    }
    .market_info_left{
        padding-right: 0;
    }
}


/* contact */
.contact_img{
    width: 100%;
    max-width: 445px;
    margin-top: 16px;
}
.contact_container{
 background-color: #F7F2ED;
 padding: 30px 6%;
 display: flex;
 flex-flow: column;
 gap: 100px;
 justify-content: center;
 align-items: center;
}
.contact_inner{
    gap: 100px;
}
.contact_copy{
    margin: 2px 0;
    font-size: 3.2rem;
    font-weight: bold;
}
@media screen and (max-width: 768px) {
    .contact_inner{
        gap: 30px;
    }
}

/* 配送BPO */
.about_list{
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 40px;
}
.about_list li{
    display: flex;
    gap: 7%;
    justify-content: space-between;
    align-items: center;
}
.about_list .even{
    flex-direction: row-reverse;
}
.about_list li .about_list_img{
    width: 46.5%;
}
.about_list li .about_list_text_wrap{
    width: 46.5%;
    display: flex;
    flex-flow: column;
    gap: 8px;
}
.about_list_text_sub{
    color: #0078D7;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 21px */
}
.about_list_text_main{
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 36px */
}
.about_list_text_desc{
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 200%; /* 36px */
}
@media screen and (max-width: 768px) {
    .about_list li{
        flex-flow: column;
        gap: 16px;
    }
    .about_list li .about_list_img{
        width: 100%;
    }
    .about_list li .about_list_text_wrap{
        width: 100%;
    }
    .about_list .even{
        flex-direction: column;
    }
}
/* march配送代行サービスでできること */
.point_title{
    text-align: center;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 600;
    margin-top: 16px;
    line-height: 150%; /* 27px */
}

/* お悩み */
.pain_wrap{
    display: flex;
    flex-flow: column;
    gap: 30px;
}
.pain_list{
    width: 100%;
    display: flex;
    gap: 16px;
}
.pain_list li{
    padding: 16px 20px;
    border-radius: 8px;
    background-color: #f0f0f0;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%; /* 27.2px */
    width: calc(20% - 13px);
}
.pain_img{
    width: 100%;
    max-width: 608px;
    margin: 0 auto;
    display: block;
}
.pain_main{
    text-align: center;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 170%; /* 54.4px */
}
.pain_wrap .market_title{
    margin-bottom: 0;
}
@media screen and (max-width: 768px) {
    .pain_list{
        flex-flow: wrap;
    }
    .pain_list li{
        width: calc(50% - 8px);
    }
}