@charset "UTF-8";

.compnayContents {
    padding: 40px 0 0;
}
.companyTable {
    border-radius: 10px;
    padding: 20px 40px 68px;
    background-color: #fff;
}
.companyTableLine {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.companyTableTitle {
    width: 170px;
    border-bottom: 1px solid #EFEFEF;
    padding: 19px 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}
.companyTableText {
    width: 750px;
    border-bottom: 1px solid #EFEFEF;
    padding: 18px 0;
    font-size: 14px;
}

/*----------------------------------------
 _画面の横幅が750pxまで
----------------------------------------*/
@media screen and (max-width:750px) {
    .compnayContents {
        padding: 6.667vw 0 0;
    }
    .companyTable {
        border-radius: 2.667vw;
        padding: 1.867vw 5.333vw 5.333vw;
    }
    .companyTableTitle {
        width: 100%;
        border-bottom: none;
        padding: 3.467vw 0 0;
        font-size: 3.733vw;
        font-weight: bold;
        line-height: 1.35;
    }
    .companyTableText {
        width: 100%;
        padding: 1.333vw 0 4vw;
        font-size: 3.733vw;
    }
}