@charset "utf-8";
/* --------------------------------------------------
	会社案内
-------------------------------------------------- */
/*　役員　*/
.l_dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border-bottom: 1px dotted #999;
    padding: 15px 0;
}
.l_dl dt {
    width: 26%;
}
.l_dl dd {
    width: 74%;
}
@media (max-width: 599px) {
    .l_dl {
			display: block;
        width: 100%;
    }
	.l_dl dt, .l_dl dd{
		width: 100%;
	}
	.l_dl dt{
		background-color: #ededed;
		text-align: center;
		margin-bottom: 10px;
	}
}
/* --------------------------------------------------
	沿革
-------------------------------------------------- */
/*　字下げ　*/
#history p {
    text-indent: 1em;
}
/* --------------------------------------------------
	事業拠点
-------------------------------------------------- */
.l_map_wrapper {
    /* flex */
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
}
.l_map_wrapper_right {
    /* flex */
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    /* flex-direction */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(60% - 50px);
    height: auto;
    padding-left: 50px;
}
    .l_map_wrapper_right p {
        margin: 15px 0 10px;
    }

/* Google Mapを囲う要素 */
.l_google_map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 400px; /* 比率を4:3に固定 */
}
/* Google Mapのiframe */
.l_google_map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.l_map_wrapper .add,.l_map_wrapper_right {
  width: 50%;
}
@media (max-width: 800px) {
/* Google Mapを囲う要素 */
.l_google_map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 300px; /* 比率を4:3に固定 */
}	
    .l_map_wrapper {
        display: block;
    }
    .l_map_wrapper .add {
        width: 100%;
    }  
    .l_map_wrapper_right {
        width: 100%;
        padding-left: 0;
    }
}