@charset "utf-8";

/* お問い合わせページ（営業所一覧） */

.contactLead {
	text-align: center;
	margin-bottom: 40px;
}
.contactLeadTitle {
	font-size: 24px;
	font-weight: bold;
	color: #1b4996;
	margin-bottom: 20px;
}
.contactLeadText {
	font-size: 14px;
	line-height: 1.8;
}

/* 営業所カード */
.officeList {
	max-width: 900px;
	margin: 0 auto;
}
.officeCard {
	display: table;
	width: 100%;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	box-shadow: 0 4px 18px rgba(0,0,0,0.12);
	margin-bottom: 25px;
	padding: 30px 20px;
	box-sizing: border-box;
}
.officeName,
.officeAddress,
.officeContact {
	display: table-cell;
	vertical-align: middle;
	padding: 5px 20px;
}
.officeName {
	width: 24%;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	color: #1b4996;
}
.officeAddress {
	width: 51%;
	border-left: 1px solid #ccc;
	font-size: 16px;
	line-height: 1.7;
}
.officeAddress p {
	position: relative;
	margin-left: 25px;
	padding-left: 28px;
}
.officeAddress .officeIcon {
	position: absolute;
	left: 0;
	top: 5px;
	margin-right: 0;
}
.officeContact {
	width: 1%;
	white-space: nowrap;
	border-left: 1px solid #ccc;
	padding-right: 0;
}
.officeIcon {
	width: 16px;
	height: 16px;
	vertical-align: -2px;
	margin-right: 8px;
}
.officeTel {
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 8px;
	white-space: nowrap;
}
.officeTel a {
	color: #1b4996;
	text-decoration: none;
	pointer-events: none;
}
.officeTelNote {
	display: block;
	font-size: 14px;
	font-weight: bold;
	color: #1b4996;
	padding-left: 26px;
}
.officeTelLabel {
	display: block;
	width: 100%;
	box-sizing: border-box;
	background: #1b4996;
	color: #fff;
	font-size: 14px;
	line-height: 1;
	text-align: center;
	padding: 4px 0;
	border-radius: 3px;
	margin-bottom: 5px;
}
.officeTime {
	font-size: 16px;
	line-height: 1.6;
}
.officeTimeNote {
	padding-left: 24px;
}
.contactNote {
	text-align: center;
	font-size: 14px;
	margin: 40px 0 60px;
}

@media screen and (max-width:760px) {
	.contactLead {
		padding: 0 4%;
		margin-bottom: 25px;
	}
	.contactLeadTitle {
		font-size: 18px;
	}
	.officeList {
		padding: 0 4%;
	}
	.officeCard,
	.officeName,
	.officeAddress,
	.officeContact {
		display: block;
		width: 100%;
	}
	.officeCard {
		padding: 20px 15px;
	}
	.officeName {
		margin: 10px auto 20px;
		box-sizing: border-box;
	}
	.officeAddress {
		border-left: none;
		border-top: 1px solid #eee;
		border-bottom: 1px solid #eee;
		padding: 12px 5px;
	}
	.officeAddress p{
		margin-left: 0;
	}
	.officeContact {
		margin: 20px auto 10px;
		border-left: none;
        padding: 0 40px;
        box-sizing: border-box;
        text-align: center;
	}
	/* スマホでは電話番号をタップ可能にする */
	.officeTel a {
		pointer-events: auto;
	}
	.contactNote {
		margin: 25px 0 40px;
	}
}
