@charset "utf-8";



.subTopImg{
    height: 280px;
    background: url(../images/pages/sub_tit_img.jpg)no-repeat center;
    background-size: cover;
    margin-left: 80px;
    position: relative;
}

.subTopImg::before{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/pages/sub_tit_bg_pattern.png);
    position: absolute;
    left: 0;
    top: 0;
}

.breadcrumbs{
    font-size: 1.4rem;
    line-height: 1.5;
    padding-top: 1em;
    background-color: #fff;
}

.breadcrumbs .inner > span{
    display: inline-block;
}

.breadcrumbs span a{
    transition: all .1s;
}

.breadcrumbs span a:hover{
    color: #232286;
}

.breadcrumbs span a.home::before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    background-color: #232286;
    border-radius: 50%;
    margin-right: 7px;
    margin-top: -2px;
}

.subTitBx{
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.subTitBx .container{
/*    width: 600px;
    padding: 40px;
    background-color: #232286;
    margin-top: -70px;
    z-index: 1; */
    text-align: center;
}

.subTitBx .container .subTit{
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 1.5;
}

.subTitBx .container .subTit span{
    display: block;
    font-family: "Roboto Condensed", 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right, rgba(35, 34, 134, 1) , rgba(0, 156, 66, 1));
    margin-top: .5em;
}

#sub .mainWrapper{
    padding-top: 100px;
}

.subTopContents{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.subTopContents figure{
    width: 50%;
}

.subTopContents .txtContents{
    width: 45%;
}

#sub .subContentsWrapper{
    padding-top: 100px;
    padding-bottom: 300px;
    background-color: #f2f2f8;
}

#sub .subContentsWrapper section .secTitL{
    display: block;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.5;
    padding-bottom: .75em;
    margin-bottom: 1.5em;
    position: relative;
}

#sub .subContentsWrapper section .secTitL::before{
    content: '';
    display: inline-block;
    width: 1em;
    height: 4px;
    background-color: #232286;
    position: absolute;
    left: 0;
    bottom: 0;
}

#sub .subContentsWrapper section .secTitL::after{
    content: '';
    display: inline-block;
    width: 1em;
    height: 4px;
    background-color: #009c42;
    position: absolute;
    left: 1em;
    bottom: 0;
}

#sub .subContentsWrapper section .inner > p{
    margin-bottom: 1em;
}

#sub .subContentsWrapper section .sec2Col{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#sub .subContentsWrapper section .sec2Col .txtContents{
    width: 50%;
}

#sub .subContentsWrapper section .sec2Col .txtContents p{
    margin-bottom: 1em;
}

#sub .subContentsWrapper section .sec2Col .txtContents p:last-child{
    margin: 0;
}

#sub .subContentsWrapper section .sec2Col figure{
    width: 45%;
}

/* 以下投稿用 */

.postCat span{
    display: inline-block;
    width: 7em;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1;
    color: #232286;
    padding: .5em;
    background-color: #fff;
    border: 1px solid #e0e0ee;
    border-radius: 50px;
}

.postTit{
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .025em;
    margin: .25em 0 .5em;
}

.postDate{
    display: block;
    font-size: 1.3rem;
    line-height: 1;
}

.postBody{
    margin-top: 50px;
}

.postBody p{
    min-height: 1em;
    margin-bottom: 1.25em;
}

.postBody h2{
    font-size: 2.6rem;
    line-height: 1.5;
    padding: .5em .75em;
    background-color: #f2f2f8;
    border-left: 8px solid #232286;
    margin: 3em 0 1em;
}

.postBody h2:first-child{
    margin-top: 0;
}

.postBody h3{
    font-size: 2.4rem;
    line-height: 1.5;
    padding-bottom: .25em;
    border-bottom: 2px dotted #232286;
    margin: 2em 0 .5em;
}

.postBody h4{
    font-size: 2rem;
    line-height: 1.5;
    margin: 1.5em 0 .5em;
}

.postBody ul,
.postBody ol{
    margin: 30px 0;
}

.postBody ul li,
.postBody ol li{
    padding-left: 1.25em;
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: .75em;
    position: relative;
}

.postBody ol li{
    counter-increment: number 1;
}

.postBody ul li::before{
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: #232286;
    position: absolute;
    left: .45em;
    top: .55em;
}

.postBody ol li::before{
    content: counter(number)'.';
    display: inline-block;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.postBody ul li span,
.postBody ol li span{
    display: block;
    font-weight: 700;
}

.single .moreBtn{
    margin-top: 80px;
}

#sub .pagination{
    text-align: center;
}

#sub .pagination .page_num{
    display: block;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 1em;
}

#sub .pagination .pager{
    display: inline-block;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1;
    padding: .75em;
    border: 1px solid #f2f2f8;
    border-radius: 2px;
    margin: 0 .15em .5em;
}

#sub .pagination a.pager{
    transition: all .3s;
}

#sub .pagination a.pager:hover{
    background-color: #f2f2f8;
}

#sub .pagination .current{
    background-color: #f2f2f8;
}

#sub .pagination .prev,
#sub .pagination .next,
#sub .pagination .first,
#sub .pagination .last{
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1;
    padding: .75em;
    border: 1px solid #f2f2f8;
    border-radius: 2px;
    margin: 0 .15em .5em;
    transition: all .3s;
}

#sub .pagination .prev:hover,
#sub .pagination .next:hover,
#sub .pagination .first:hover,
#sub .pagination .last:hover{
    background-color: #f2f2f8;
}





/* ------------------------------------------------------- service / 事業内容 */
.serviceList ul li{
    counter-increment: serviceNum 1;
    display: flex;
    justify-content: space-between;
    padding: 50px 0;
    border-bottom: 1px solid #dadaeb;
}

.serviceList ul li figure{
    width: 155px;
    margin-right: 40px;
}

.serviceList ul li figure img{
    mix-blend-mode: multiply;
}

.serviceList ul li .txtContents{
    width: 100%;
    flex: 1;
}

.serviceList ul li .txtContents h3{
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1.25em;
}

.serviceList ul li .txtContents h3::before{
    content: '0'counter(serviceNum);
    display: inline-block;
    vertical-align: middle;
    font-family: "Roboto Condensed", 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1;
    color: #232286;
    margin-right: 10px;
    margin-top: -3px;
}

.serviceList ul li .txtContents h3 br{
    display: none;
}



/* ------------------------------------------------------- vehicle / 保有車両・設備 */
.vehicleList{
    margin-top: 30px;
}

.vehicleList ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.vehicleList ul li{
    width: 31%;
}

.vehicleList ul li > span{
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
    margin: .75em 0;
}

.equipmentList{
    margin-top: 30px;
}

.equipmentList ul li{
    display: flex;
    align-items: center;
    padding: 30px;
    background-color: #fff;
    margin-bottom: 10px;
}

.equipmentList ul li:last-child{
    margin: 0;
}

.equipmentList ul li span{
    width: 14em;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
}

.equipmentList ul li p{
    flex: 1;
    padding-left: 2em;
    border-left: 1px solid #e0e0ee;
}



/* ------------------------------------------------------- management / 安全管理・品質管理 */
.managementList ul li{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.managementList ul li:last-child{
    margin: 0;
}

.managementList ul li figure{
    width: 30%;
    margin-right: 40px;
}

.managementList ul li .txtContents{
    width: 100%;
    flex: 1;
}

.managementList ul li .txtContents h3{
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
    color: #232286;
    margin-bottom: 1em;
}

.managementList ul li .txtContents h3::before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 26px;
    height: 26px;
    background: url(../images/pages/icon_check.png)no-repeat center;
    background-size: 100%;
    margin-right: 8px;
    margin-top: -3px;
}



/* ------------------------------------------------------- works / 実績・事例紹介 */
.worksList ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.worksList ul li{
    counter-increment: worksNum 1;
    width: 31%;
}

.worksList ul li figure{
    position: relative;
}

.worksList ul li figure::before{
    content: 'Case 0'counter(worksNum);
    display: inline-block;
    font-family: "Roboto Condensed", 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    padding: .25em .5em;
    background-color: #232286;
    position: absolute;
    left: 0;
    top: 10px;
}

.worksList ul li figure img{
    padding-left: 20px;
}

.worksList ul li h3{
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
    color: #232286;
    padding-left: 1.5em;
    margin: .75em 0;
    position: relative;
}

.worksList ul li h3::before{
    content: '';
    display: inline-block;
    width: 1.25em;
    height: 1px;
    background-color: #232286;
    position: absolute;
    left: 0;
    top: .75em;
}

.voiceList ul li{
    padding: 30px;
    background-color: #fff;
    border-bottom: 2px solid #dcdcec;
    margin-bottom: 20px;
    position: relative;
}

.voiceList ul li:last-child{
    margin: 0;
}

.voiceList ul li::before{
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/pages/parts_dogear.png)no-repeat center;
    background-size: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.voiceList ul li span{
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1em;
}

.voiceList ul li p{
    padding-left: 2em;
}



/* ------------------------------------------------------- info / 新着情報 */
#sub.archive .subContentsWrapper,
#sub.single .subContentsWrapper{
    padding-top: 0;
    background: none;
}



/* ------------------------------------------------------- contact / お問い合わせ・お見積り */
#sub.contact .subContentsWrapper,
#sub.thanks .subContentsWrapper{
    padding-top: 0;
    background: none;
}

form#mailformpro{
    padding: 0;
}

.formTable table{
    width: 100%;
    /* background-color: #fff; */
}

.formTable table tr th,
.formTable table tr td{
    font-size: 1.5rem;
    padding: 1.5em;
    border-bottom: 1px solid #e0e0ee;
}

.formTable table tr:last-child th,
.formTable table tr:last-child td{
    border-bottom: none;
}

.formTable table tr th{
    width: 32%;
    font-weight: 700;
    border-right: 1px dotted #e0e0ee;
}

.formTable table tr td .formBlock{
    padding-bottom: 10px;
    border-bottom: 1px dotted #e0e0ee;
    margin-bottom: 10px;
}

.formTable table tr td .formBlock:last-child{
    padding: 0;
    border: none;
    margin: 0;
}

.formTable table tr td span.tdTit{
    display: block;
}

.formTable table p{
    font-size: 100%;
}

.formTable table h5{
    font-size: 107.143%;
}

.formTable table tr td .layputRow{
    display: inline-block;
}

.formItem2div div{
    float: left;
    margin-right: 5px;
}

.mfp_element_text,
.mfp_element_number,
.mfp_element_select-one,
.mfp_element_email,
.mfp_element_tel,
.mfp_element_textarea,
.mfp_element_date,
.mfp_element_password{
    display: block;
    box-shadow: none;
    background-color: #f2f2f8;
    border: 1px solid #e0e0ee;
    /* width: 100%; */
    max-width: 100%;
    margin: 0;
}

.must{
    border: none;
    text-shadow: none;
    font-size: 1rem;
    margin: 0 5px 0 0;
    box-shadow: none;
    background-image: none;
}

div.mfp_err{
    font-size: 1.2rem;
    background-position: 0 .5em;
}

form#mailformpro label.mfp_not_checked{
    padding: 3px 8px;
    background-color: #f2f2f8;
    border: solid 1px #e0e0ee;
    border-radius: 3px;
}

.formNote{
    text-indent: -1em;
    padding-left: 1em;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: .5em;
}

a.inlineLink,
#form a{
    color: #0c7780;
    text-decoration: underline;
    transition: 0s;
}

a.inlineLink:hover,
#form a:hover{
    opacity: 1;
    text-decoration: none;
	color: #D4552A;
}

form#mailformpro label{
    margin: 3px 0 0;
    white-space: normal;
}

.mfp_element_submit,
.mfp_element_reset,
.mfp_element_button,
button.mfp_next,
button.mfp_prev{
    font-size: 1.8rem;
    line-height: 1;
    padding: 1em 2em;
    margin-top: 20px;
    transition: all .3s;
}

.mfp_element_submit{
    width: 300px;
    color: #fff;
    background: #C00;
    text-shadow: none;
    border: 1px solid #AC0000;
    border-radius: 10px;
}

.mfp_element_submit:hover,
#mfp_button_send:hover{
    background: #AC0000;
}

#mfp_button_cancel{
    min-width: 200px;
    background: #ccc;
    text-shadow: none;
    border: 1px solid #aaa;
    border-radius: 10px;
}

#mfp_button_cancel:hover{
    background-color: #aaa;
}

#mfp_overlay_inner h4{
    text-align: center;
    font-size: 160%;
    margin: 1em 0;
}

table#mfp_confirm_table tr th,
table#mfp_confirm_table tr td{
    font-size: 140%;
    padding: 1em;
}

#mfp_button_send{
    min-width: 200px;
    color: #fff;
    background: #C00;
    text-shadow: none;
    border: 1px solid #AC0000;
    border-radius: 10px;
}

.formPrivacyBx{
    width: 100%;
    height: 200px;
    overflow-y: scroll;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.thanksContents{
    text-align: center;
}

.thanksContents > p{
    line-height: 2;
    margin-bottom: 2em;
}



/* ------------------------------------------------------- outline / 会社概要 */
#sub.outline .subContentsWrapper{
    padding-top: 0;
    background: none;
}

.outlineTable{
    max-width: 800px;
    margin: 0 auto;
}

.outlineTable table{
    width: 100%;
}

.outlineTable table th{
    text-align: center;
    white-space: nowrap;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #232286;
    padding: 1.5em;
    border-bottom: 1px solid #232286;
}

.outlineTable table td{
    font-size: 1.6rem;
    line-height: 1.5;
    padding: 1.5em;
    border-bottom: 1px solid #e0e0ee;
}



/* ------------------------------------------------------- privacy-policy / プライバシーポリシー */
#sub.privacy-policy .subContentsWrapper{
    padding-top: 0;
    background: none;
}

.privacyList h3{
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.5;
    padding: .75em .75em .75em 1em;
    background-color: #f2f2f8;
    border-left: 8px solid #232286;
    margin: 3em 0 1em;
}

.privacyList p{
    margin-bottom: 1em;
}



/* ------------------------------------------------------- recruit / 採用情報 */
.recruitTable{
    padding: 40px;
    background-color: #fff;
}

.recruitTable table{
    width: 100%;
}

.recruitTable table tr{
    border-bottom: 1px solid #e0e0ee;
}

.recruitTable table tr:last-child{
    border: none;
}

.recruitTable table tr th{
    white-space: nowrap;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.8;
    color: #232286;
    padding: 1.5em;
}

.recruitTable table tr td{
    font-size: 1.6rem;
    line-height: 1.8;
    padding: 1.5em;
}

.recruitTable table tr td > span{
    display: block;
    font-weight: 600;
    margin-top: 1.5em;
}

.recruitTable table tr td > span:first-child{
    margin-top: 0;
}

.recruitOutro{
    margin-top: 50px;
    text-align: center;
}

.recruitOutro p{
    font-size: 2rem;
    font-weight: 600;
}








/* ------------------------------------------------------- tab / sp */
@media(max-width: 810px){
    .subTopImg{
        height: 200px;
        margin-left: 40px;
    }

    .breadcrumbs{
        font-size: 1.3rem;
    }

    .subTitBx .container .subTit{
        font-size: 3rem;
    }

    .subTitBx{
        margin-top: 60px;
    }

    #sub .mainWrapper{
        padding-top: 70px;
    }

    #sub .subContentsWrapper{
        padding-top: 70px;
        padding-bottom: 280px;
    }

    #sub .subContentsWrapper section .secTitL{
        font-size: 2.6rem;
    }

    .equipmentList ul li{
        padding: 20px;
    }

    .equipmentList ul li span{
        font-size: 1.6rem;
    }

    .formTable table tr th,
    .formTable table tr td{
        font-size: 1.4rem;
    }

    .privacyList h3{
        font-size: 2rem;
    }

    .recruitTable table tr th{
        font-size: 1.5rem;
    }

    .recruitTable table tr td{
        font-size: 1.5rem;
    }

    .recruitOutro p{
        font-size: 1.8rem;
    }








}





@media(max-width: 670px){
    .subTopImg{
        height: 100px;
        margin-left: 20px;
    }

    .breadcrumbs{
        font-size: 1.1rem;
    }

    .subTitBx .container .subTit{
        font-size: 2.6rem;
    }

    .subTitBx .container .subTit span{
        font-size: 1.4rem;
    }

    #sub .mainWrapper{
        padding-top: 60px;
    }

    .subTopContents figure{
        width: 100%;
        margin-bottom: 20px;
    }

    .subTopContents .txtContents{
        width: 100%;
    }

    #sub .subContentsWrapper{
        padding-top: 50px;
    }

    #sub .subContentsWrapper section .secTitL{
        font-size: 2.2rem;
    }

    .serviceList ul li{
        flex-wrap: wrap;
        padding: 30px 0;
    }

    .serviceList ul li:first-child{
        padding-top: 20px;
    }

    .serviceList ul li figure{
        width: 50%;
        margin: 0 auto 20px;
    }

    .serviceList ul li .txtContents{
        flex: auto;
    }

    .serviceList ul li .txtContents h3{
        text-align: center;
        font-size: 1.8rem;
    }

    .serviceList ul li .txtContents h3::before{
        font-size: 2.4rem;
    }

    .serviceList ul li .txtContents h3 br{
        display: block;
    }

    #sub .subContentsWrapper section .sec2Col .txtContents{
        width: 100%;
    }

    #sub .subContentsWrapper section .sec2Col figure{
        width: 100%;
        margin-top: 25px;
    }

    #sub .subContentsWrapper{
        padding-bottom: 180px;
    }

    .vehicleList ul li{
        width: 100%;
        margin-bottom: 30px;
    }

    .vehicleList ul li:last-child{
        margin: 0;
    }

    .vehicleList ul li > span{
        font-size: 1.6rem;
    }

    .equipmentList ul li{
        flex-wrap: wrap;
    }

    .equipmentList ul li span{
        width: 100%;
        margin-bottom: .5em;
    }

    .equipmentList ul li p{
        padding-left: .75em;
        margin-left: .5em;
    }

    .managementList ul li{
        margin-bottom: 40px;
    }

    .managementList ul li figure{
        width: 100%;
        margin: 0 auto 20px;
    }

    .managementList ul li .txtContents{
        flex: auto;
    }

    .managementList ul li .txtContents h3{
        font-size: 1.8rem;
        margin-bottom: .75em;
    }

    .worksList ul li{
        width: 100%;
        margin-bottom: 30px;
    }

    .worksList ul li:last-child{
        margin: 0;
    }

    .worksList ul li figure{
        width: 100%;
    }

    .worksList ul li h3{
        font-size: 1.6rem;
    }

    .voiceList ul li span{
        text-align: center;
    }

    .voiceList ul li p{
        padding: 0;
    }

    .postTit{
        font-size: 2.8rem;
    }

    .postBody h2{
        font-size: 2rem;
    }

    .postBody h3{
        font-size: 1.8rem;
    }

    .postBody h4{
        font-size: 1.6rem;
    }

    .single .moreBtn{
        margin-top: 60px;
    }

    .formTable table tr th{
        display: block;
        width: 100%;
        padding: 1.5em .5em .5em;
        border: none;
    }

    .formTable table tr td{
        display: block;
        width: 100%;
        padding: 0 .5em 1.5em ;
    }

    .mfp_element_text,
    .mfp_element_number,
    .mfp_element_select-one,
    .mfp_element_email,
    .mfp_element_tel,
    .mfp_element_textarea,
    .mfp_element_date,
    .mfp_element_password{
        width: 100% !important;
    }

    .formTable table tr td .layputRow{
        margin-top: 3px;
    }

    div.mfp_buttons button{
        font-size: 1.8rem;
    }

    table#mfp_confirm_table tr th,
    table#mfp_confirm_table tr td{
        display: block;
        width: 100%;
        font-size: 1.3rem;
        padding: .5em;
    }

    table#mfp_confirm_table tr th{
        font-weight: 700;
    }

    table#mfp_confirm_table tr td{
        border-top: none;
        padding: 0 .5em .5em 1.5em;
    }

    .outlineTable table th{
        display: block;
        text-align: left;
        font-size: 1.5rem;
        padding: 1em 1em .25em;
        border: none;
    }

    .outlineTable table td{
        display: block;
        font-size: 1.5rem;
        padding: .5em 1em 1em 2em;
    }

    .privacyList h3{
        font-size: 1.6rem;
        border-left-width: 6px;
    }

    .recruitTable{
        padding: 15px;
    }

    .recruitTable table tr th{
        display: block;
        padding: 1em .5em .25em;
    }

    .recruitTable table tr td{
        display: block;
        padding: .25em .5em 1em 2em;
    }

    .recruitOutro p{
        font-size: 1.6rem;
    }














}












