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

#company {
}

#company .philosophy {
    width: 100%;
    background-color: #EBEBEB;
    padding: 60px 0 140px 0;
}
@media screen and (max-width: 767px) {
    #company .philosophy {
        padding: 60px 0 60px 0;
    }
}

#company .philosophy .philosophy_text {
    text-align: center;
}

#company .philosophy .philosophy_text .lead {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 16px;
    letter-spacing: 1.5px;
}

#company .philosophy .philosophy_text .lead span {
    font-size: 34px;
    color: #F29600;
}

#company .philosophy .philosophy_text .text {
    line-height: 1.8;
}

#company .company_info {
    /*padding: 40px 0 80px 0;*/
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

#company .company_info h3 {
    text-align: left;
    font-size: 28px;
    margin-bottom: 26px;
}


#company .company_info table {
	width: 100%;
	border-collapse: collapse;
}

#company .company_info table th {
    width: 25%;
	text-align: left;
	background-color: #F29600;
    color: #fff;
    border-bottom: solid 1px #fff;
    padding: 15px
}

#company .company_info table td {
    width: 75%
}

#company .company_info table td {
    border: solid 1px #ccc;
	border-left: none;
	border-right: none;
	padding: 15px
}

#company .company_info table td.sign {
    display: flex;
    align-items: center;
    border: none;
}

#company .company_info table td.sign p {
    margin-right: 18px;
}

#company .company_info table td img {
    width: 67px;
    padding-bottom: 1px;
}

#company .company_info table tr:first-of-type td {
	border-top: none;
}
#company .company_info table tr:last-of-type td {
	border-bottom: none;
}

@media screen and (max-width: 767px) {
    #company .philosophy .philosophy_text .lead {
        font-size: 18px;
    }

    #company .philosophy .philosophy_text .text {
        line-height: 1.4;
        font-size: 14px;
        text-align: left;
    }
    
	#company .company_info table tr {
		display: flex;
		flex-direction: column;
		margin-bottom: 15px;
	}
	#company .company_info table th {
		width: 100%;
		background-color: #F29600;
		color: #fff;
		height: 40px;
		display: flex;
		align-items: center;
	}

	#company .company_info table td {
		width: 100%;
		background-color: #F7F7F7;
	}
	
	#company .company_info table th,
	#company .company_info table td {
		border: none;
        font-size: 14px;
	}
}

/*----------------------------------------------
支店サイト用
----------------------------------------------*/
.branch_info {
    display: flex;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    margin-top: 48px;
}

.branch_info .address {
    width: 38%;
    margin-right: 2%;
}
.branch_info .address img {
    width: 100%;
    margin-bottom: 12px;
}

.branch_info .area {
    margin: 0 auto;
    width: 60%;
    background-color: #fff;
    padding: 14px;
}

.branch_info .area .area_title {
    font-size: 20px;
    margin-bottom: 16px;
    position: relative;
    padding-left: 20px;
    line-height: 1;
}
.branch_info .area .area_title::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: #F29600;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 2px;
    margin: auto;
}

.branch_info .area div p {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
}

.branch_info .area div ul {
    padding-left: 15px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.branch_info .area div ul li {
    width: 20%;
    margin-bottom: 12px;
    list-style: inside;
    font-size: 16px;
}
.branch_info .area div ul li span {
    margin-left: -12px;
}
.branch_info .area div ul li:last-of-type {
    margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
    .branch_info .area div ul li {
        width: 25%;
        font-size: 14px;
    }
    
    .branch_info .area .area_title {
        font-size: 18px;
    }

    .branch_info .area div p {
        font-size: 16px;
    }

}

@media screen and (max-width: 767px) {
    .branch_info {
        flex-direction: column-reverse;
    }
    
    .branch_info .address {
        width: 100%;
        margin-right: 0;
        margin-top: 12px;
    }
    
    .branch_info .address img {
        width: 100%;
        margin-bottom: 8px;
    }

    .branch_info .area {
        width: 100%;
        padding: 10px;
    }
    
    .branch_info .area div ul {
        justify-content: flex-start;
    }
    
    .branch_info .area div ul li {
        width: 33%;
        font-size: 14px;
    }
}

