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

/*会社概要*/
.company-about {
	max-width: 960px;
	width: 100%;
	height: auto;
	padding: 0 40px;
	/*width: 60%;*/
	margin: 0 auto;
}
.company-about .section-content{
	padding:160px 0;
}
/*.company-about h2{
	font-size:40px;
	font-weight:normal;
	margin:0;
	line-height:35px;
	margin-bottom: 56px;
}
.company-about h2 span{
	color:#417E13;
	display:block;
	font-size:25px;
	margin:0;
}*/
.company-about-content1{
	
}

/*表*/
.company-table {
	border-collapse: collapse;
	width: 100%;
	color: #444444;
}
.company-table th, .company-table td {
	border-top: 2px solid #c1c7c6;
	border-bottom: 2px solid #c1c7c6;
	padding: 2em;
}
.company-table th {
	border-top: 2px solid #417E13;
	border-bottom: 2px solid #417E13;
	font-weight: bold;
	text-align: center;
	width: 20%;
	min-width: 3em;
}
.company-table td{
	line-height: 2;
}

@media(max-width:520px){
	.company-table th, .company-table td {
		font-size: 0.9rem;
	}
}
/*地図*/
.simple-map iframe{
	width: 100%;
	height: 300px;
	/*margin-top: 64px;*/
}
.simple-map-title{
	margin-top: 64px;
	margin-bottom: 16px;
	font-weight: bold;
	display: flex;
	align-items: center;
}
.simple-map-title::before{
	content: "●";
	font-size: 10px;
	color: #417E13;
	padding-right: 4px;
}

@media(max-width:520px){
	.simple-map-title{
		font-size: 0.9rem;
}
}

/*資格保有者*/
.qualification-title{
	margin-top: 64px;
	margin-bottom: 8px;
	font-weight: bold;
}
.qualification-flex{
	display: flex;
}
.qualification-space-1{
	width: 50%;
	margin-right: 8px;
}
.qualification-space-2{
	width: 50%;
	margin-left: 8px;
}
.qualification-table{
	border-collapse: collapse;
	/*width: 50%;*/
	color: #444444;
	margin: 8px 0px 40px;
	width: 100%;
	box-sizing: border-box;
}
.qualification-table th, .qualification-table td{
	border-top: 2px solid #c1c7c6;
	border-bottom: 2px solid #c1c7c6;
	padding: 1em;
	font-size: 14px;
}
.qualification-table td{
	border-left:  2px dashed #c1c7c6;
	width: 20%;
	text-align: center;
}
.qualification-table th{
	font-weight: normal;
	width: 80%;
}
@media(max-width:768px){
	.qualification-title{
		margin-top: 64px;
		margin-bottom: 8px;
		font-weight: bold;
	}
	.qualification-flex{
		display: flex;
		flex-direction: column;
	}
	.qualification-space-1{
		width: 100%;
		margin-right: 0px;
	}
	.qualification-space-2{
		width: 100%;
	    margin-left: 0px;
	}
	.qualification-table{
		width: 100%;
		text-align: left;
		margin: 8px 0px 40px;
	}
	.qualification-table th{
		padding-left: 24px
	}
	.qualification-table td{
		/*text-align: left;
		padding-left: 16px;*/
}
}

/*チェックマーク*/
.checkmark{
	padding-left:24px;
	position:relative;
}

.checkmark:before,
.checkmark:after{
	content:"";
	display:block;
	position:absolute;
}
.checkmark:before{
	width:16px;
	height:16px;
	border-radius:3px;
	background:#ffffff;
	border:1px solid #000000;
	left:0;top:5px;
}
.checkmark:after{
	border-left:2px solid #417E13;
	border-bottom:2px solid #417E13;
	width:15px;
	height:5px;
	-webkit-transform:rotate(-45deg);
	transform:rotate(-45deg);
	left:5px;
	top:6px;
}