@charset "UTF-8";

.contact_container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
}

.contact_group {
	margin-bottom: 50px;
	width: 49%;
}

.contact_secttl {
	background: #E3E3DF;
	border-left: 5px solid #8B3E2D;
	line-height: 1.3;
	padding: 8px 10px;
	font-size: 19px;
	border-color: ;
}

.contact_table {
	width: 100%;
	list-style: none;
}

.contact_table th,
.contact_table td {
	border-bottom: 1px solid #bbb;
}

.contact_table th {
	padding: 10px;
	text-align: left;
}

.contact_table td {
	padding: 10px;
	text-align: right;
}


/* All SP & Tablet */
@media screen and (max-width:1040px) {
	.contact_container {
		flex-direction: column;
	}

	.contact_group {
		width: 100%;
	}
}

/* All SP */
@media screen and (max-width:640px) {
	.contact_table tr {
		display: flex;
		flex-direction: column;
	}

	.contact_table th {
		border-bottom: none;
	}

	.contact_table th {
		padding-bottom: 0;
	}

	.contact_table td {
		padding-top: 0;
	}
}